locale: add Bahasa Indonesia translation (#2003)

pull/1741/merge
Fiqri Syah Redha 2024-05-07 01:45:28 +07:00 zatwierdzone przez GitHub
rodzic 3ad6364678
commit eb42671ef3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 39 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,39 @@
import { registerTranslation } from '@shoelace-style/localize';
import type { Translation } from '../utilities/localize.js';
const translation: Translation = {
$code: 'id',
$name: 'Bahasa Indonesia',
$dir: 'ltr',
carousel: 'Karousel',
clearEntry: 'Hapus entri',
close: 'Tutup',
copied: 'Disalin',
copy: 'Salin',
currentValue: 'Nilai saat ini',
error: 'Kesalahan',
goToSlide: (slide, count) => `Pergi ke slide ${slide} dari ${count}`,
hidePassword: 'Sembunyikan sandi',
loading: 'Memuat',
nextSlide: 'Slide berikutnya',
numOptionsSelected: num => {
if (num === 0) return 'Tidak ada opsi yang dipilih';
if (num === 1) return '1 opsi yang dipilih';
return `${num} opsi yang dipilih`;
},
previousSlide: 'Slide sebelumnya',
progress: 'Kemajuan',
remove: 'Hapus',
resize: 'Ubah ukuran',
scrollToEnd: 'Gulir ke akhir',
scrollToStart: 'Gulir ke awal',
selectAColorFromTheScreen: 'Pilih warna dari layar',
showPassword: 'Tampilkan sandi',
slideNum: slide => `Slide ${slide}`,
toggleColorFormat: 'Beralih format warna'
};
registerTranslation(translation);
export default translation;