mirror of
https://github.com/samuelthomas2774/nxapi.git
synced 2026-04-26 08:18:59 -05:00
Added and updated (missing) keys
This commit is contained in:
parent
b0603e1e82
commit
82744fec54
|
|
@ -13,6 +13,13 @@ export const languages = {
|
||||||
['Samuel Elliott', 'https://gitlab.fancy.org.uk/samuel', 'https://github.com/samuelthomas2774'],
|
['Samuel Elliott', 'https://gitlab.fancy.org.uk/samuel', 'https://github.com/samuelthomas2774'],
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
'de-DE': {
|
||||||
|
name: 'Deutsch',
|
||||||
|
app: () => import('./locale/de-de.js'),
|
||||||
|
authors: [
|
||||||
|
['Inkception', 'https://github.com/Inkception'],
|
||||||
|
],
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const namespaces = {
|
const namespaces = {
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ export const app = {
|
||||||
|
|
||||||
licence: LICENCE_NOTICE,
|
licence: LICENCE_NOTICE,
|
||||||
credits: CREDITS_NOTICE,
|
credits: CREDITS_NOTICE,
|
||||||
|
translation_credits: '{{language}} Übersetzungen von {{authors, list}}.',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const app_menu = {
|
export const app_menu = {
|
||||||
|
|
@ -14,7 +15,7 @@ export const app_menu = {
|
||||||
learn_more_github: 'Mehr erfahren (GitHub)',
|
learn_more_github: 'Mehr erfahren (GitHub)',
|
||||||
search_issues: 'Probleme untersuchen',
|
search_issues: 'Probleme untersuchen',
|
||||||
|
|
||||||
refresh: 'Refresh',
|
refresh: 'Aktualisieren',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const menu_app = {
|
export const menu_app = {
|
||||||
|
|
@ -68,8 +69,16 @@ export const menus = {
|
||||||
friend: {
|
friend: {
|
||||||
presence_online: 'Online',
|
presence_online: 'Online',
|
||||||
game_first_played: 'Zuerst gespielt: {{date, datetime}}',
|
game_first_played: 'Zuerst gespielt: {{date, datetime}}',
|
||||||
game_play_time: 'Spielzeit: {{time, datetime}}',
|
|
||||||
presence_inactive: 'Offline (console online)',
|
game_play_time_h: 'Spielzeit: $t(friend.hours, {"count": {{hours}}})',
|
||||||
|
game_play_time_hm: 'Spielzeit: $t(friend.hours, {"count": {{hours}}}), $t(friend.minutes, {"count": {{minutes}}})',
|
||||||
|
game_play_time_m: 'Spielzeit: $t(friend.minutes, {"count": {{minutes}}})',
|
||||||
|
hours_one: '{{count}} Stunde',
|
||||||
|
hours_other: '{{count}} Stunden',
|
||||||
|
minutes_one: '{{count}} Minute',
|
||||||
|
minutes_other: '{{count}} Minuten',
|
||||||
|
|
||||||
|
presence_inactive: 'Offline (Konsole online)',
|
||||||
presence_offline: 'Offline',
|
presence_offline: 'Offline',
|
||||||
presence_updated: 'Aktualisiert: {{date, datetime}}',
|
presence_updated: 'Aktualisiert: {{date, datetime}}',
|
||||||
presence_logout_time: 'Ausgeloggt: {{date, datetime}}',
|
presence_logout_time: 'Ausgeloggt: {{date, datetime}}',
|
||||||
|
|
@ -90,6 +99,32 @@ export const handle_uri = {
|
||||||
cancel: 'Abbrechen',
|
cancel: 'Abbrechen',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const time_since = {
|
||||||
|
default: {
|
||||||
|
now: 'Jetzt gerade',
|
||||||
|
seconds_one: 'Vor {{count}} Sekunde',
|
||||||
|
seconds_other: 'Vor {{count}} Sekunden',
|
||||||
|
minutes_one: 'Vor {{count}} Minute',
|
||||||
|
minutes_other: 'Vor {{count}} Minuten',
|
||||||
|
hours_one: 'Vor {{count}} Stunde',
|
||||||
|
hours_other: 'Vor {{count}} Stunden',
|
||||||
|
days_one: 'Vor {{count}} Tag',
|
||||||
|
days_other: 'Vor {{count}} Tagen',
|
||||||
|
},
|
||||||
|
|
||||||
|
short: {
|
||||||
|
now: 'Jetzt gerade',
|
||||||
|
seconds_one: '{{count}}Sek',
|
||||||
|
seconds_other: '{{count}}Sek',
|
||||||
|
minutes_one: '{{count}}Min',
|
||||||
|
minutes_other: '{{count}}Min',
|
||||||
|
hours_one: '{{count}}Std',
|
||||||
|
hours_other: '{{count}}Std',
|
||||||
|
days_one: '{{count}}Tg',
|
||||||
|
days_other: '{{count}}Tg',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export const main_window = {
|
export const main_window = {
|
||||||
sidebar: {
|
sidebar: {
|
||||||
discord_active: 'Discord Rich Presence aktiv',
|
discord_active: 'Discord Rich Presence aktiv',
|
||||||
|
|
@ -127,6 +162,8 @@ export const main_window = {
|
||||||
desc_2: 'Logge dich mit der Nintendo Switch Online App ein, um Details einzusehen oder benutze den nxapi Befehl, um auf Altersbeschränkungen zuzugreifen.',
|
desc_2: 'Logge dich mit der Nintendo Switch Online App ein, um Details einzusehen oder benutze den nxapi Befehl, um auf Altersbeschränkungen zuzugreifen.',
|
||||||
login: 'Login',
|
login: 'Login',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
section_error: 'Fehler beim Aktualisieren der Daten',
|
||||||
},
|
},
|
||||||
|
|
||||||
discord_section: {
|
discord_section: {
|
||||||
|
|
@ -147,7 +184,7 @@ export const main_window = {
|
||||||
title: 'Freunde',
|
title: 'Freunde',
|
||||||
|
|
||||||
no_friends: 'Füge Freunde mit deiner Nintendo Switch Konsole hinzu.',
|
no_friends: 'Füge Freunde mit deiner Nintendo Switch Konsole hinzu.',
|
||||||
friend_code: 'Dein Freundescode',
|
friend_code: 'Dein Freundescode: <0></0>',
|
||||||
|
|
||||||
presence_playing: 'Spielt',
|
presence_playing: 'Spielt',
|
||||||
presence_offline: 'Offline',
|
presence_offline: 'Offline',
|
||||||
|
|
@ -240,7 +277,14 @@ export const friend_window = {
|
||||||
presence_offline: 'Offline',
|
presence_offline: 'Offline',
|
||||||
presence_last_seen: 'Zuletzt gesehen: {{since_logout}}',
|
presence_last_seen: 'Zuletzt gesehen: {{since_logout}}',
|
||||||
|
|
||||||
game_played_for: 'Gespielt für {{duration}}',
|
game_played_for_h: 'Gespielt für $t(hours, {"count": {{hours}}})',
|
||||||
|
game_played_for_hm: 'Gespielt für $t(hours, {"count": {{hours}}}), $t(minutes, {"count": {{minutes}}})',
|
||||||
|
game_played_for_m: 'Gespielt für $t(minutes, {"count": {{minutes}}})',
|
||||||
|
hours_one: '{{count}} Stunde',
|
||||||
|
hours_other: '{{count}} Stunden',
|
||||||
|
minutes_one: '{{count}} Minute',
|
||||||
|
minutes_other: '{{count}} Minuten',
|
||||||
|
|
||||||
game_first_played: 'Zuerst gespielt am {{date, datetime}}',
|
game_first_played: 'Zuerst gespielt am {{date, datetime}}',
|
||||||
game_first_played_now: 'Zuerst gespielt jetzt',
|
game_first_played_now: 'Zuerst gespielt jetzt',
|
||||||
game_title_id: 'Titel ID',
|
game_title_id: 'Titel ID',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user