feat(l10n): Add localization placeholders for various messages

This commit is contained in:
cogwheel0
2025-12-07 20:20:01 +05:30
parent 391bbc2b77
commit 790ed222c3
9 changed files with 432 additions and 9 deletions

View File

@@ -776,6 +776,13 @@
"failedToLoadNotes": "Notizen konnten nicht geladen werden",
"deleteNoteTitle": "Notiz löschen",
"deleteNoteMessage": "\"{title}\" löschen? Dies kann nicht rückgängig gemacht werden.",
"@deleteNoteMessage": {
"placeholders": {
"title": {
"type": "String"
}
}
},
"noteTitle": "Notiz-Titel",
"writeNote": "Schreibe etwas...",
"noteSaved": "Notiz gespeichert",
@@ -806,10 +813,50 @@
"older": "Älter",
"tapToExpand": "Tippen zum Erweitern",
"byAuthor": "Von {name}",
"@byAuthor": {
"placeholders": {
"name": {
"type": "String"
}
}
},
"wordCount": "{count} Wörter",
"@wordCount": {
"placeholders": {
"count": {
"type": "int"
}
}
},
"charCount": "{count} Zeichen",
"@charCount": {
"placeholders": {
"count": {
"type": "int"
}
}
},
"promptVariablesTitle": "Details ausfüllen",
"promptVariablesDescription": "Füllen Sie die folgenden Felder aus, um diese Vorlage anzupassen.",
"promptVariableNumberMin": "Mindestwert ist {min}",
"promptVariableNumberMax": "Höchstwert ist {max}"
"@promptVariableNumberMin": {
"placeholders": {
"min": {
"type": "double"
}
}
},
"promptVariableNumberMax": "Höchstwert ist {max}",
"@promptVariableNumberMax": {
"placeholders": {
"max": {
"type": "double"
}
}
},
"widgetAskConduit": "Conduit fragen",
"widgetCamera": "Kamera",
"widgetPhotos": "Fotos",
"widgetClipboard": "Zwischenablage",
"widgetDescription": "Schnellzugriff auf den Conduit-Chat mit Kamera, Fotos und Zwischenablage-Verknüpfungen"
}