jeresig / i18n-node-2

Lightweight simple translation module for node.js / express.js with dynamic json storage. Uses common __('...') syntax in app and templates.
MIT License
507 stars 79 forks source link

i18n-2 upd #130

Open serebriakov19 opened 2 years ago

serebriakov19 commented 2 years ago

Hi! πŸ‘‹

Firstly, thanks for your work on this project! πŸ™‚

Today I used patch-package to patch i18n-2@0.7.3 for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/i18n-2/i18n.js b/node_modules/i18n-2/i18n.js
index dda2fab..943d24c 100644
--- a/node_modules/i18n-2/i18n.js
+++ b/node_modules/i18n-2/i18n.js
@@ -456,6 +456,14 @@ i18n.prototype = {
        return path.normalize(this.directory + '/' + locale + this.extension);
    },

+   appendLocale: function (locale, data) {
+       this.locales[locale] = {...this.locales[locale], data}
+   },
+
+   getLocales: function () {
+       return this.locales
+   },
+
    initLocale: function (locale, data) {
        if (!this.locales[locale]) {
            this.locales[locale] = data;

This issue body was partially generated by patch-package.