Added turkish, british and austrian translations (#989)

* turkish translation

* austrian translation

* british translations

* updated changelog

* Update src/translations/en-gb.ts

Co-authored-by: Cory LaViska <cory@abeautifulsite.net>
This commit is contained in:
Buni48
2022-11-02 16:37:22 +03:00
committed by GitHub
parent 5b4197da2c
commit 4e1cf11461
4 changed files with 82 additions and 0 deletions

27
src/translations/de-at.ts Normal file
View File

@@ -0,0 +1,27 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';
const translation: Translation = {
$code: 'de-AT',
$name: 'Deutsch (Österreich)',
$dir: 'ltr',
clearEntry: 'Eingabe löschen',
close: 'Schließen',
copy: 'Kopieren',
currentValue: 'Aktueller Wert',
hidePassword: 'Passwort verbergen',
loading: 'Wird geladen',
progress: 'Fortschritt',
remove: 'Entfernen',
resize: 'Größe ändern',
scrollToEnd: 'Zum Ende scrollen',
scrollToStart: 'Zum Anfang scrollen',
selectAColorFromTheScreen: 'Wähle eine Farbe vom Bildschirm',
showPassword: 'Passwort anzeigen',
toggleColorFormat: 'Farbformat umschalten'
};
registerTranslation(translation);
export default translation;

27
src/translations/en-gb.ts Normal file
View File

@@ -0,0 +1,27 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';
const translation: Translation = {
$code: 'en-GB',
$name: 'English (United Kingdom)',
$dir: 'ltr',
clearEntry: 'Clear entry',
close: 'Close',
copy: 'Copy',
currentValue: 'Current value',
hidePassword: 'Hide password',
loading: 'Loading',
progress: 'Progress',
remove: 'Remove',
resize: 'Resize',
scrollToEnd: 'Scroll to end',
scrollToStart: 'Scroll to start',
selectAColorFromTheScreen: 'Select a colour from the screen',
showPassword: 'Show password',
toggleColorFormat: 'Toggle colour format'
};
registerTranslation(translation);
export default translation;

27
src/translations/tr.ts Normal file
View File

@@ -0,0 +1,27 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';
const translation: Translation = {
$code: 'tr',
$name: 'Türkçe',
$dir: 'ltr',
clearEntry: 'Girişi sil',
close: 'Kapat',
copy: 'Kopya',
currentValue: 'Mevcut değer',
hidePassword: 'Şifreyi sakla',
loading: 'Yükleme',
progress: 'İlerleme',
remove: 'Kaldır',
resize: 'Yeniden boyutlandır',
scrollToEnd: 'Sona kay',
scrollToStart: 'Başa kay',
selectAColorFromTheScreen: 'Ekrandan bir renk seçin',
showPassword: 'Şifreyi göster',
toggleColorFormat: 'Renk biçimini değiştir'
};
registerTranslation(translation);
export default translation;