-
-
Notifications
You must be signed in to change notification settings - Fork 849
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
locale: add Bahasa Indonesia translation (#2003)
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; |