first attempt at making a UI (clickdummy)
This commit is contained in:
parent
66c22a915f
commit
b80e3fe4f0
13 changed files with 4775 additions and 0 deletions
41
app/src/i18n/ui.ts
Normal file
41
app/src/i18n/ui.ts
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
export const languages = {
|
||||
en: "English",
|
||||
de: "Deutsch",
|
||||
}
|
||||
|
||||
export const defaultLang = "en"
|
||||
|
||||
export const ui = {
|
||||
en: {
|
||||
"unauthorized.title": "Unauthorized",
|
||||
"unauthorized.description": `To use the locks you have to have the "intern@" status.<br>
|
||||
More infos: <a class='underline' href='https://wiki.hamburg.ccc.de/club:prozesse:aufnahmeprozesse-fuer-berechtigungsgruppen'>CCCHH Wiki</a>`,
|
||||
"unauthenticated.title": "Unauthenticated",
|
||||
"unauthenticated.description": `To use the locks you have to log in with your CCCHH ID and have the "intern@" status.<br>
|
||||
More infos: <a class='underline' href='https://wiki.hamburg.ccc.de/club:prozesse:aufnahmeprozesse-fuer-berechtigungsgruppen'>CCCHH Wiki</a>`,
|
||||
"state.open": "Open",
|
||||
"state.closed": "Closed",
|
||||
"state.unknown": "Unknown",
|
||||
"state.moving": "Moving",
|
||||
"batteryLow": "Battery low",
|
||||
"button.open": "Open",
|
||||
"button.close": "Close",
|
||||
"login": "Login",
|
||||
},
|
||||
de: {
|
||||
"unauthorized.title": "Nicht berechtigt",
|
||||
"unauthorized.description": `Um die Schlösser bedienen zu können, musst du den "intern@" Status haben.<br>
|
||||
Weitere Infos: <a class='underline' href='https://wiki.hamburg.ccc.de/club:prozesse:aufnahmeprozesse-fuer-berechtigungsgruppen'>CCCHH Wiki</a>`,
|
||||
"unauthenticated.title": "Nicht angemeldet",
|
||||
"unauthenticated.description": `Um die Schlösser bedienen zu können, musst du dich mit deiner CCCHH ID anmelden und den "intern@" Status haben.<br>
|
||||
Weitere Infos: <a class='underline' href='https://wiki.hamburg.ccc.de/club:prozesse:aufnahmeprozesse-fuer-berechtigungsgruppen'>CCCHH Wiki</a>`,
|
||||
"state.open": "Offen",
|
||||
"state.closed": "Geschlossen",
|
||||
"state.unknown": "Unbekannt",
|
||||
"state.moving": "In Bewegung",
|
||||
"batteryLow": "Batterie fast leer",
|
||||
"button.open": "Öffnen",
|
||||
"button.close": "Schließen",
|
||||
"login": "Anmelden",
|
||||
},
|
||||
} as const
|
||||
Loading…
Add table
Add a link
Reference in a new issue