Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf: add Indonesian #361

Merged
merged 1 commit into from Jan 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
84 changes: 84 additions & 0 deletions src/lang/id.js
@@ -0,0 +1,84 @@
const locale = {
/** General */
category: 'kategori',
settings: 'pengaturan',
pause: 'jeda',
delete: 'hapus',
save: 'simpan',
cancel: 'batalkan',
confirm: 'konfirmasi',

/** Torrent */
torrent: {
title: 'judul',
added: 'ditambahkan pada',
availability: 'ketersediaan',
size: 'ukuran',
progress: 'progres',
directory: 'direktori',
downloaded: 'didownload',
uploaded: 'diupload',
created: 'dibuat oleh',
comments: 'komentar'
},
/** Navbar */
navbar: {
currentSpeed: 'kecepatan sekarang',
freeSpace: 'ruang bebas',
topActions: {
addTorrent: 'tambah torrent',
resumeSelected: 'lanjutkan torrent yang dipilih',
pauseSelected: 'jeda torrent yang dipilih',
removeSelected: 'hapus torrent yang dipilih',
openSettings: 'buka pengaturan',
searchNew: 'cari torrent baru'
},
sessionStats: {
tooltip: 'Sejak terakhir kali qBittorrent dijalankan ulang.'
}
},

/** Modals */
modals: {
add: {
title: 'Tambahkan Torrent baru',
selectFiles: 'Pilih berkas anda'
},
delete: {
check: 'Dan hapus berkas dari penyimpanan'
}
},

/** Toast */
toast: {
loginSuccess: 'Berhasil masuk! 🎉',
loginFailed: 'Gagal masuk 😕',
settingsSaved: 'Pengaturan sukses disimpan!',
categorySaved: 'Kategori sukses diubah!'
},

/** RightClick **/
rightClick: {
resume: 'lanjutkan',
forceResume: 'paksa lanjutkan',
advanced: {
advanced: 'lebih lanjut',
changeLocation: 'ubah lokasi',
rename: 'ubah nama'
},
prio: {
prio: 'tetapkan prioritas',
top: 'atas',
bottom: 'bawah',
increase: 'tingkatkan',
decrease: 'turunkan'
},
category: 'tetapkan kategori',
limit: 'tetapkan limit',
copy: 'salin',
info: 'tampilkan info'
}
}

export default locale