Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added German Language Support #37

Merged
merged 2 commits into from
May 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions html/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,104 @@
}
}
},
"DE": {
"DYNAMIC_FORM_DATA": [
{
"componentName": "moreGraph",
"elementID": "#wrapper",
"title": "",
"closeButtonText": "Schließen",
"bankTitle": "Fleeca Bank",
"mainExitButtonText": "Abmelden"
},
{
"elementID": "#cpincode",
"name": "cpincode",
"buttonText": "Zustimmen",
"inputPlaceholder": "4 Ziffern eingeben...",
"title": "PIN-CODE EINRICHTEN",
"description": "Hier kannst du deinen Pin einstellen oder ändern.",
"type": "password"
},
{
"elementID": "#withdraw",
"name": "withdraw",
"buttonText": "Zustimmen",
"inputPlaceholder": "Betrag",
"title": "ABHEBEN",
"description": "Hier kannst du dein Geld bei der Bank abheben.",
"type": "number"
},
{
"elementID": "#deposit",
"name": "deposit",
"buttonText": "Zustimmen",
"inputPlaceholder": "Betrag",
"title": "EINZAHLEN",
"description": "Hier kannst du dein Geld bei der Bank einzahlen.",
"type": "number"
},
{
"elementID": "#transfer",
"name": "transfer",
"buttonText": "Überweisung",
"inputPlaceholder": "Betrag",
"inputPlaceholder2": "Spieler ID",
"title": "ÜBERWEISUNG",
"description": "Hier kannst du dein Geld an eine anderen Person überweisen."
},
{
"componentName": "trans",
"elementID": "#third-column",
"title": "TRANSAKTIONSVERLAUF",
"description": "Hier kannst du deinen Transaktionsverlauf einsehen.",
"moreHistoryText": "Mehr Informationen anzeigen",
"moreGraphText": "Mehr Grafiken anzeigen"
},
{
"componentName": "pincodePanel",
"elementID": "#wrapper",
"title": "PIN Eingeben",
"deleteButtonText": "<i class='fa-solid fa-ban'></i>",
"loginButtonText": "<i class='fa-solid fa-right-to-bracket'></i>",
"closeButtonText": "Schließen"
},
{
"componentName": "atmComponent",
"elementID": "#wrapper",
"title": "Fleeca Bank",
"closeButtonText": "Abmelden"
}
],
"LAUNGAGE": {
"your_money_title": "Kontostand",
"your_money_desc": "Hier kannst du deinen aktuellen Kontostand und dein Bargeld einsehen.",
"your_money_cash_label": "Dein Bargeld",
"your_money_bank_label": "Dein Kontostand",
"withdraw": "ABHEBEN",
"deposit": "EINZAHLEN",
"transfer": "ÜBERWEISUNG",
"transferReceive": "EMPFANGENE ÜBERWEISUNGEN",
"moneyFormat": "$__replaceData__",
"graphTitle": "Dein Guthaben",
"moreGraphTitle": "Detailliertere Grafik",
"moreHistoryTitle": "Mehr Informationen anzeigen",
"inputErrorTitle": "Die angegebenen Daten sind falsch",
"inputErrorMessage": "Der Wert darf nicht leer oder kleiner als 1 sein!",
"showPincodeErrorTitle": "Pin falsch",
"showPincodeErrorMessage": "Der Pin muss mindestens 4 Zahlen haben!",
"tableLang": {
"typeLabel": "Transaktionsart",
"transactionLabel": "Transaktion",
"balanceLabel": "Kontostand",
"amountLabel": "Betrag",
"timeLabel": "Zeit",
"searchInputPlaceholder": "Suche ...",
"_comment": "tableFullLanguage options: English, German, Hungarian, Italian, Spanish, French, you can find here all lang: https://cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/",
"tableFullLanguage": "German"
}
}
},
"HU": {
"DYNAMIC_FORM_DATA": [
{
Expand Down