From 30367ee32bd9312b666e0ad855c5ebfc57110018 Mon Sep 17 00:00:00 2001 From: Quy Dang Quoc <32502276+quyvsquy@users.noreply.github.com> Date: Mon, 19 Feb 2024 17:04:56 +0700 Subject: [PATCH 1/2] Add Vietnamese language --- README.md | 2 +- src/www/js/i18n.js | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cdb4034..b0a96905 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ These options can be configured by setting environment variables using `-e KEY=" | `WG_POST_UP` | `...` | `iptables ...` | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L20) for the default value. | | `WG_PRE_DOWN` | `...` | - | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L27) for the default value. | | `WG_POST_DOWN` | `...` | `iptables ...` | See [config.js](https://github.com/wg-easy/wg-easy/blob/master/src/config.js#L28) for the default value. | -| `LANG` | `en` | `de` | Web UI language (Supports: en, ru, tr, no, pl, fr, de, ca, es). | +| `LANG` | `en` | `de` | Web UI language (Supports: en, ru, tr, no, pl, fr, de, ca, es, vi). | > If you change `WG_PORT`, make sure to also change the exposed port. diff --git a/src/www/js/i18n.js b/src/www/js/i18n.js index 246b80c1..3afee237 100644 --- a/src/www/js/i18n.js +++ b/src/www/js/i18n.js @@ -272,4 +272,31 @@ const messages = { // eslint-disable-line no-unused-vars madeBy: '만든 사람', donate: '기부', }, + vi: { + name: 'Tên', + password: 'Mật khẩu', + signIn: 'Đăng nhập', + logout: 'Đăng xuất', + updateAvailable: 'Có bản cập nhật mới!', + update: 'Cập nhật', + clients: 'Danh sách người dùng', + new: 'Mới', + deleteClient: 'Xóa người dùng', + deleteDialog1: 'Bạn có chắc chắn muốn xóa', + deleteDialog2: 'Thao tác này không thể hoàn tác.', + cancel: 'Huỷ', + create: 'Tạo', + createdOn: 'Được tạo lúc ', + lastSeen: 'Lần xem cuối vào ', + totalDownload: 'Tổng dung lượng tải xuống: ', + totalUpload: 'Tổng dung lượng tải lên: ', + newClient: 'Người dùng mới', + disableClient: 'Vô hiệu hóa người dùng', + enableClient: 'Kích hoạt người dùng', + noClients: 'Hiện chưa có người dùng nào.', + showQR: 'Hiển thị mã QR', + downloadConfig: 'Tải xuống cấu hình', + madeBy: 'Được tạo bởi', + donate: 'Ủng hộ', + } }; From 264eb078ca68d2ce81b43737ddde6495fa275b2c Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Mon, 19 Feb 2024 12:36:11 +0100 Subject: [PATCH 2/2] fixup: Missing trailing comma --- src/www/js/i18n.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/js/i18n.js b/src/www/js/i18n.js index 3afee237..438d56f6 100644 --- a/src/www/js/i18n.js +++ b/src/www/js/i18n.js @@ -298,5 +298,5 @@ const messages = { // eslint-disable-line no-unused-vars downloadConfig: 'Tải xuống cấu hình', madeBy: 'Được tạo bởi', donate: 'Ủng hộ', - } + }, };