i18n.js: add Hindi language translation (#902)
This commit is contained in:
commit
f0ec8e45a0
|
@ -101,7 +101,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_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_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. |
|
| `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, ua, ru, tr, no, pl, fr, de, ca, es, ko, vi, nl, is, pt, chs, cht, it, th). |
|
| `LANG` | `en` | `de` | Web UI language (Supports: en, ua, ru, tr, no, pl, fr, de, ca, es, ko, vi, nl, is, pt, chs, cht, it, th, hi). |
|
||||||
| `UI_TRAFFIC_STATS` | `false` | `true` | Enable detailed RX / TX client stats in Web UI |
|
| `UI_TRAFFIC_STATS` | `false` | `true` | Enable detailed RX / TX client stats in Web UI |
|
||||||
|
|
||||||
> If you change `WG_PORT`, make sure to also change the exposed port.
|
> If you change `WG_PORT`, make sure to also change the exposed port.
|
||||||
|
|
|
@ -6,7 +6,7 @@ services:
|
||||||
wg-easy:
|
wg-easy:
|
||||||
environment:
|
environment:
|
||||||
# Change Language:
|
# Change Language:
|
||||||
# (Supports: en, ua, ru, tr, no, pl, fr, de, ca, es, ko, vi, nl, is, pt, chs, cht, it, th)
|
# (Supports: en, ua, ru, tr, no, pl, fr, de, ca, es, ko, vi, nl, is, pt, chs, cht, it, th, hi)
|
||||||
- LANG=de
|
- LANG=de
|
||||||
# ⚠️ Required:
|
# ⚠️ Required:
|
||||||
# Change this to your host's public address
|
# Change this to your host's public address
|
||||||
|
|
|
@ -517,4 +517,32 @@ const messages = { // eslint-disable-line no-unused-vars
|
||||||
madeBy: 'สร้างโดย',
|
madeBy: 'สร้างโดย',
|
||||||
donate: 'บริจาค',
|
donate: 'บริจาค',
|
||||||
},
|
},
|
||||||
|
hi: { // github.com/rahilarious
|
||||||
|
name: 'नाम',
|
||||||
|
password: 'पासवर्ड',
|
||||||
|
signIn: 'लॉगिन',
|
||||||
|
logout: 'लॉगआउट',
|
||||||
|
updateAvailable: 'अपडेट उपलब्ध है!',
|
||||||
|
update: 'अपडेट',
|
||||||
|
clients: 'उपयोगकर्ताये',
|
||||||
|
new: 'नया',
|
||||||
|
deleteClient: 'उपयोगकर्ता हटाएँ',
|
||||||
|
deleteDialog1: 'क्या आपको पक्का हटाना है',
|
||||||
|
deleteDialog2: 'यह निर्णय पलट नहीं सकता।',
|
||||||
|
cancel: 'कुछ ना करें',
|
||||||
|
create: 'बनाएं',
|
||||||
|
createdOn: 'सर्जन तारीख ',
|
||||||
|
lastSeen: 'पिछली बार देखे गए थे ',
|
||||||
|
totalDownload: 'कुल डाउनलोड: ',
|
||||||
|
totalUpload: 'कुल अपलोड: ',
|
||||||
|
newClient: 'नया उपयोगकर्ता',
|
||||||
|
disableClient: 'उपयोगकर्ता स्थगित कीजिये',
|
||||||
|
enableClient: 'उपयोगकर्ता शुरू कीजिये',
|
||||||
|
noClients: 'अभी तक कोई भी उपयोगकर्ता नहीं है।',
|
||||||
|
noPrivKey: 'ये उपयोगकर्ता की कोई भी गुप्त चाबी नहीं हे। बना नहीं सकते।',
|
||||||
|
showQR: 'क्यू आर कोड देखिये',
|
||||||
|
downloadConfig: 'डाउनलोड कॉन्फीग्यूरेशन',
|
||||||
|
madeBy: 'सर्जक',
|
||||||
|
donate: 'दान करें',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue