id_ID.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* eslint camelcase: 0 */
  2. const id_ID = {}
  3. id_ID.strings = {
  4. chooseFile: 'Pilih berkas',
  5. youHaveChosen: 'Berkas yang dipilih: %{fileName}',
  6. orDragDrop: 'atau tarik dan taruh berkas ke sini',
  7. filesChosen: {
  8. 0: '%{smart_count} berkas dipilih',
  9. 1: '%{smart_count} berkas dipilih'
  10. },
  11. filesUploaded: {
  12. 0: '%{smart_count} berkas terunggah',
  13. 1: '%{smart_count} berkas terunggah'
  14. },
  15. files: {
  16. 0: '%{smart_count} berkas',
  17. 1: '%{smart_count} berkas'
  18. },
  19. uploadFiles: {
  20. 0: 'Unggah %{smart_count} berkas',
  21. 1: 'Unggah %{smart_count} berkas'
  22. },
  23. selectToUpload: 'Pilih berkas untuk mengunggah',
  24. closeModal: 'Tutup Modal',
  25. upload: 'Unggah',
  26. importFrom: 'Import berkas dari',
  27. dashboardWindowTitle: 'Uppy Beranda Window (Tekan escape untuk menutup)',
  28. dashboardTitle: 'Beranda Uppy',
  29. copyLinkToClipboardSuccess: 'Link tersalin.',
  30. copyLinkToClipboardFallback: 'Salin URL di bawah ini',
  31. done: 'Selesai',
  32. localDisk: 'Penyimpanan Lokal',
  33. dropPasteImport: 'Taruh berkas di sini, tempel, import dari salah satu lokasi di atas atau',
  34. dropPaste: 'Taruh berkas di sini, tempel atau',
  35. browse: 'cari',
  36. fileProgress: 'Proses berkas: kecepatan unggah dan ETA',
  37. numberOfSelectedFiles: 'Total berkas yang di pilih',
  38. uploadAllNewFiles: 'Unggah semua berkas baru'
  39. }
  40. id_ID.pluralize = function (n) {
  41. if (n === 1) {
  42. return 0
  43. }
  44. return 1
  45. }
  46. if (typeof window !== 'undefined' && typeof window.Uppy !== 'undefined') {
  47. window.Uppy.locales.id_ID = id_ID
  48. }
  49. module.exports = id_ID