feedback.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. /******************************************************************************
  3. * Each entry of that file can be associated with a comment to indicate its *
  4. * state. When there is no comment, it means the entry is fully translated. *
  5. * The recognized comments are (comment matching is case-insensitive): *
  6. * + TODO: the entry has never been translated. *
  7. * + DIRTY: the entry has been translated but needs to be updated. *
  8. * + IGNORE: the entry does not need to be translated. *
  9. * When a comment is not recognized, it is discarded. *
  10. ******************************************************************************/
  11. return array(
  12. 'access' => array(
  13. 'denied' => 'Anda tidak memiliki izin untuk mengakses halaman ini',
  14. 'not_found' => 'Halaman ini tidak ada',
  15. ),
  16. 'admin' => array(
  17. 'optimization_complete' => 'Optimalisasi selesai',
  18. ),
  19. 'api' => array(
  20. 'password' => array(
  21. 'failed' => 'Kata sandi Anda tidak dapat diubah',
  22. 'updated' => 'Kata sandi Anda telah diubah',
  23. ),
  24. ),
  25. 'auth' => array(
  26. 'login' => array(
  27. 'invalid' => 'Tidak valid',
  28. 'success' => 'Sudah terhubung',
  29. ),
  30. 'logout' => array(
  31. 'success' => 'Terputus',
  32. ),
  33. ),
  34. 'conf' => array(
  35. 'error' => 'Galat terjadi ketika menyimpan konfigurasi',
  36. 'query_created' => 'Kueri “%s” telah dibuat.',
  37. 'shortcuts_updated' => 'Pintasan telah diperbarui',
  38. 'updated' => 'Konfigurasi telah diperbarui',
  39. ),
  40. 'extensions' => array(
  41. 'already_enabled' => '%s telah diaktifkan',
  42. 'cannot_remove' => '%s tidak dapat dihapus',
  43. 'disable' => array(
  44. 'ko' => '%s tidak dapat dinonaktifkan. <a href="%s">Periksa log FreshRSS</a> untuk informasi lebih lanjut.',
  45. 'ok' => '%s telah dinonaktifkan',
  46. ),
  47. 'enable' => array(
  48. 'ko' => '%s tidak dapat diaktifkan. <a href="%s">Periksa log FreshRSS</a> untuk informasi lebih lanjut.',
  49. 'ok' => '%s telah diaktifkan',
  50. ),
  51. 'invalid_view_mode' => 'Mode tampilan tidak valid “%s”! Balik ke “Tampilan normal”.',
  52. 'no_access' => 'Anda tidak memiliki akses ke %s',
  53. 'not_enabled' => '%s tidak diaktifkan',
  54. 'not_found' => '%s tidak ada',
  55. 'removed' => '%s dihapus',
  56. ),
  57. 'import_export' => array(
  58. 'export_no_zip_extension' => 'Ekstensi ZIP tidak tersedia di peladen Anda. Coba untuk mengekspor berkasnya satu per satu.',
  59. 'feeds_imported' => 'Umpan Anda telah diimpor. Jika Anda sudah selesai mengimpor, Anda bisa mengklik tombol <i>Perbarui umpan</i>.',
  60. 'feeds_imported_with_errors' => 'Umpan Anda telah diimpor, tapi ada beberapa galat. Jika Anda sudah selesai mengimpor, Anda bisa mengklik tombol <i>Perbarui umpan</i>.',
  61. 'file_cannot_be_uploaded' => 'Berkas tidak dapt diunggah!',
  62. 'no_zip_extension' => 'Ekstensi ZIP tidak tersedia di peladen Anda.',
  63. 'zip_error' => 'Galat terjadi ketika pemrosesan ZIP.',
  64. ),
  65. 'profile' => array(
  66. 'error' => 'Profil Anda tidak dapat diubah',
  67. 'passwords_dont_match' => 'Passwords don’t match', // TODO
  68. 'updated' => 'Profil Anda telah diubah',
  69. ),
  70. 'sub' => array(
  71. 'actualize' => 'Memperbarui',
  72. 'articles' => array(
  73. 'marked_read' => 'Artikel yang dipilih telah ditandai sebagai sudah dibaca',
  74. 'marked_unread' => 'Artikel telah ditandai sebagai belum dibaca',
  75. ),
  76. 'category' => array(
  77. 'created' => 'Kategori %s telah dibuat.',
  78. 'deleted' => 'Kategori telah dihapus.',
  79. 'emptied' => 'Kategori telah dikosongkan',
  80. 'error' => 'Kategori tidak dapat diperbarui',
  81. 'name_exists' => 'Nama kategori sudah ada.',
  82. 'no_id' => 'You must specify the id of the category.', // TODO
  83. 'no_name' => 'Nama kategori tidak boleh kosong.',
  84. 'not_delete_default' => 'Tidak dapat menghapus kategori baku!',
  85. 'not_exist' => 'Kategori ini tidak ada!',
  86. 'over_max' => 'Batas kategori Anda sudah tercapai (%d)',
  87. 'updated' => 'Kategori ini telah diperbarui.',
  88. ),
  89. 'feed' => array(
  90. 'actualized' => '<em>%s</em> telah diperbarui',
  91. 'actualizeds' => 'Umpan RSS telah diperbarui',
  92. 'added' => 'Umpan RSS <em>%s</em> telah ditambahkan',
  93. 'already_subscribed' => 'Anda telah berlangganan ke <em>%s</em>',
  94. 'cache_cleared' => 'Tembolok <em>%s</em> telah dikosongkan',
  95. 'deleted' => 'Umpan telah dihapus',
  96. 'error' => 'Umpan tidak dapat diperbarui',
  97. 'favicon' => array(
  98. 'too_large' => 'Ikon yang diunggah terlalu besar. Ukuran maksimal berkas adalah <em>%s</em>.',
  99. 'unsupported_format' => 'Format gambar tidak didukung!',
  100. ),
  101. 'internal_problem' => 'Umpan tidak dapat ditambahkan. <a href="%s">Periksa log FreshRSS</a> untuk informasi lebih lanjut. Anda bisa memaksa penambahan dengan menambahkan <code>#force_feed</code> ke URL.',
  102. 'invalid_url' => 'URL <em>%s</em> tidak valid',
  103. 'n_actualized' => '%d umpan telah diperbarui',
  104. 'n_entries_deleted' => '%d artikel telah dihapus',
  105. 'no_refresh' => 'Tidak ada umpan untuk disegarkan',
  106. 'not_added' => '<em>%s</em> tidak dapat ditambahkan',
  107. 'not_found' => 'Umpan tidak dapat ditemukan',
  108. 'over_max' => 'Anda telah mencapai batas umpan Anda (%d)',
  109. 'reloaded' => '<em>%s</em> telah dimuat ulang',
  110. 'selector_preview' => array(
  111. 'http_error' => 'Tidak dapat memuat konten situs.',
  112. 'no_entries' => 'Tidak ada artikel di umpan ini. Anda harus paling tidak memiliki satu artikel untuk membuat tinjauan.',
  113. 'no_feed' => 'Galat internal (umpan tidak dapat ditemukan).',
  114. 'no_result' => 'Pemilihan tidak cocok dengan apapun. Sebagai ganti, teks umpan aslinya akan ditampilkan di sini.',
  115. 'selector_empty' => 'Pemilihan kosong. Anda harus paling tidak memasukkan satu untuk membuat tinjauan.',
  116. ),
  117. 'updated' => 'Umpan telah diperbarui',
  118. ),
  119. 'purge_completed' => 'Selesai penghapusan (%d artikel dihapus)',
  120. ),
  121. 'tag' => array(
  122. 'created' => 'Label “%s” telah dibuat.',
  123. 'error' => 'Label tidak dapat diperbarui!',
  124. 'name_exists' => 'Label telah ada.',
  125. 'renamed' => 'Label “%s” telah dinamai ulang ke “%s”.',
  126. 'updated' => 'Label telah diperbarui.',
  127. ),
  128. 'update' => array(
  129. 'can_apply' => 'Pembaruan FreshRSS tersedia: <strong>Versi %s</strong>.',
  130. 'error' => 'Galat terjadi dalam proses pembaruan: %s',
  131. 'file_is_nok' => 'Pembaruan FreshRSS tersedia (<strong>Versi %s</strong>), but check permissions on <em>%s</em> directory. HTTP server must have have write permission , dan periksa izin di direktori <em>%s</em>. Peladen HTTP harus memiliki izin menulis di direktori tersebut',
  132. 'finished' => 'Pembaruan selesai!',
  133. 'none' => 'Tidak ada pembaruan yang tersedia',
  134. 'server_not_found' => 'Peladen pembaruan tidak dapat ditemukan. [%s]',
  135. ),
  136. 'user' => array(
  137. 'created' => array(
  138. '_' => 'Pengguna %s telah dibuat',
  139. 'error' => 'Pengguna %s tidak dapat dibuat',
  140. ),
  141. 'deleted' => array(
  142. '_' => 'Pengguna %s telah dihapus',
  143. 'error' => 'Pengguna %s tidak dapat dihapus',
  144. ),
  145. 'updated' => array(
  146. '_' => 'Pengguna %s telah diperbarui',
  147. 'error' => 'Pengguna %s tidak dapat diperbarui',
  148. ),
  149. ),
  150. );