This commit is contained in:
Cory LaViska
2023-01-06 11:50:10 -05:00
parent c814e9e94e
commit 27a6b4a8c9
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ const translation: Translation = {
numOptionsSelected: (num: number) => {
if (num === 0) return 'Keine Optionen ausgewählt';
if (num === 1) return '1 Option ausgewählt';
return `${num} optionen ausgewählt`;
return `${num} Optionen ausgewählt`;
},
currentValue: 'Aktueller Wert',
hidePassword: 'Passwort verbergen',

View File

@@ -12,7 +12,7 @@ const translation: Translation = {
numOptionsSelected: (num: number) => {
if (num === 0) return 'Keine Optionen ausgewählt';
if (num === 1) return '1 Option ausgewählt';
return `${num} optionen ausgewählt`;
return `${num} Optionen ausgewählt`;
},
currentValue: 'Aktueller Wert',
hidePassword: 'Passwort verbergen',

View File

@@ -12,7 +12,7 @@ const translation: Translation = {
numOptionsSelected: (num: number) => {
if (num === 0) return 'Keine Optionen ausgewählt';
if (num === 1) return '1 Option ausgewählt';
return `${num} optionen ausgewählt`;
return `${num} Optionen ausgewählt`;
},
currentValue: 'Aktueller Wert',
hidePassword: 'Passwort verbergen',