i18next-conv
Advanced tools
Comparing version 9.1.0 to 9.2.0
@@ -0,1 +1,5 @@ | ||
### 9.2.0 | ||
- add ignoreCtx option [89](https://github.com/i18next/i18next-gettext-converter/pull/89) | ||
### 9.1.0 | ||
@@ -2,0 +6,0 @@ |
@@ -126,3 +126,3 @@ "use strict"; | ||
if (m !== '') targetKey = `${targetKey}${ctxSeparator}${m}`; | ||
if (m !== '' && !options.ignoreCtx) targetKey = `${targetKey}${ctxSeparator}${m}`; | ||
const values = context[key].msgstr; | ||
@@ -129,0 +129,0 @@ |
@@ -127,3 +127,3 @@ "use strict"; | ||
if (options.persistMsgIdPlural && kv.key.indexOf('|#|') > -1) { | ||
if (kv.key.indexOf('|#|') > -1) { | ||
const p = kv.key.split('|#|'); | ||
@@ -130,0 +130,0 @@ msgid = p[0]; // eslint-disable-next-line camelcase |
@@ -9,3 +9,3 @@ { | ||
], | ||
"version": "9.1.0", | ||
"version": "9.2.0", | ||
"private": false, | ||
@@ -12,0 +12,0 @@ "main": "lib", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43955