Skip to content

Commit d59e77f

Browse files
authored
Merge pull request #1088 from suhindra/feat/i18n-id-translation
js: add Indonesian translation (id)
2 parents 967bc0a + caebfb6 commit d59e77f

3 files changed

Lines changed: 44 additions & 0 deletions

File tree

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ New Features
1616
- admin: Add log out button (`#870`_, bbaovanc)
1717
- Add support for environment variables in config (`#1037`_, pkvach)
1818
- Add Japanese localisation (`#1051`_, zurukumo)
19+
- Add Indonesian localisation (`#1088`_, suhindra)
1920

2021
.. _#870: https://github.com/posativ/isso/pull/870
2122
.. _#966: https://github.com/posativ/isso/pull/966
@@ -26,6 +27,7 @@ New Features
2627
.. _#1005: https://github.com/isso-comments/isso/pull/1005
2728
.. _#1037: https://github.com/isso-comments/isso/pull/1037
2829
.. _#1051: https://github.com/isso-comments/isso/pull/1051
30+
.. _#1088: https://github.com/isso-comments/isso/pull/1088
2931

3032
Breaking Changes
3133
^^^^^^^^^^^^^^^^

isso/js/app/i18n.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ var catalogue = {
1717
fr: require("app/i18n/fr"),
1818
hr: require("app/i18n/hr"),
1919
hu: require("app/i18n/hu"),
20+
id: require("app/i18n/id"),
2021
it: require("app/i18n/it"),
2122
ja: require("app/i18n/ja"),
2223
ko: require("app/i18n/ko"),
@@ -54,6 +55,7 @@ var pluralforms = function(lang) {
5455
case "fi":
5556
case "hr":
5657
case "hu":
58+
case "id":
5759
case "it":
5860
case "ja":
5961
case "ko":

isso/js/app/i18n/id.js

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
"use strict";
2+
3+
module.exports = {
4+
"postbox-text": "Tulis komentar di sini (minimal 3 karakter)",
5+
"postbox-author": "Nama (opsional)",
6+
"postbox-author-placeholder": "Budi",
7+
"postbox-email": "Email (opsional)",
8+
"postbox-email-placeholder": "budi@example.com",
9+
"postbox-website": "Situs web (opsional)",
10+
"postbox-website-placeholder": "https://example.com/",
11+
"postbox-preview": "Pratinjau",
12+
"postbox-edit": "Edit",
13+
"postbox-submit": "Kirim",
14+
"postbox-notification": "Dapatkan notifikasi balasan lewat email",
15+
16+
"num-comments": "Satu komentar\n{{ n }} komentar",
17+
"no-comments": "Belum ada komentar",
18+
"atom-feed": "Feed Atom",
19+
20+
"comment-reply": "Balas",
21+
"comment-edit": "Edit",
22+
"comment-save": "Simpan",
23+
"comment-delete": "Hapus",
24+
"comment-confirm": "Konfirmasi",
25+
"comment-close": "Tutup",
26+
"comment-cancel": "Batal",
27+
"comment-deleted": "Komentar dihapus.",
28+
"comment-queued": "Komentar menunggu moderasi.",
29+
"comment-anonymous": "Anonim",
30+
"comment-hidden": "{{ n }} disembunyikan",
31+
"comment-page-author-suffix": "Penulis",
32+
33+
"date-now": "baru saja",
34+
"date-minute": "1 menit yang lalu\n{{ n }} menit yang lalu",
35+
"date-hour": "1 jam yang lalu\n{{ n }} jam yang lalu",
36+
"date-day": "kemarin\n{{ n }} hari yang lalu",
37+
"date-week": "1 minggu lalu\n{{ n }} minggu lalu",
38+
"date-month": "1 bulan lalu\n{{ n }} bulan lalu",
39+
"date-year": "1 tahun lalu\n{{ n }} tahun lalu"
40+
};

0 commit comments

Comments
 (0)