shoelace/src/translations/tr.ts

33 wiersze
898 B
TypeScript
Czysty Wina Historia

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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',
numOptionsSelected: (num: number) => {
if (num === 0) return 'Hiçbir seçenek seçilmedi';
if (num === 1) return '1 seçenek seçildi';
return `${num} seçenek seçildi`;
},
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;