react-localization 1.0.18 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -19,7 +19,7 @@ It's possible to force a language different from the interface one.
19
19
 
20
20
  ## Usage
21
21
 
22
- In the React class that you want to localize require the library and define the strings object passing to the constructor a simple object containing a language key (i.e. en, it, fr..) and then a list of key-value pairs with the needed localized strings.
22
+ In the React class that you want to localize, require the library and define the strings object passing to the constructor a simple object containing a language key (i.e. en, it, fr..) and then a list of key-value pairs with the needed localized strings.
23
23
 
24
24
  ```js
25
25
  // ES6 module syntax
@@ -0,0 +1,216 @@
1
+ import f from "react";
2
+ function h() {
3
+ const i = "en-US";
4
+ if (typeof navigator > "u")
5
+ return i;
6
+ const e = navigator;
7
+ if (e) {
8
+ if (e.language)
9
+ return e.language;
10
+ if (e.languages && e.languages[0])
11
+ return e.languages[0];
12
+ if (e.userLanguage)
13
+ return e.userLanguage;
14
+ if (e.browserLanguage)
15
+ return e.browserLanguage;
16
+ }
17
+ return i;
18
+ }
19
+ function d(i, e) {
20
+ if (e[i]) return i;
21
+ const t = i.indexOf("-"), a = t >= 0 ? i.substring(0, t) : i;
22
+ return e[a] ? a : Object.keys(e)[0];
23
+ }
24
+ function _(i) {
25
+ const e = ["_interfaceLanguage", "_language", "_defaultLanguage", "_defaultLanguageFirstLevelKeys", "_props"];
26
+ i.forEach((t) => {
27
+ if (e.indexOf(t) !== -1)
28
+ throw new Error(`${t} cannot be used as a key. It is a reserved word.`);
29
+ });
30
+ }
31
+ function p(i) {
32
+ let e = "";
33
+ const t = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
34
+ for (let a = 0; a < i; a += 1) e += t.charAt(Math.floor(Math.random() * t.length));
35
+ return e;
36
+ }
37
+ const g = /(\{[\d|\w]+\})/, o = /(\$ref\{[\w|.]+\})/;
38
+ class L {
39
+ /**
40
+ * Constructor used to provide the strings objects in various language and the optional callback to get
41
+ * the interface language
42
+ * @param {*} props - the strings object
43
+ * @param {Function} options.customLanguageInterface - the optional method to use to get the InterfaceLanguage
44
+ * @param {Boolean} options.pseudo - convert all strings to pseudo, helpful when implementing
45
+ * @param {Boolean} options.pseudoMultipleLanguages - add 40% to pseudo, helps with translations in the future
46
+ * @param {Boolean} options.logsEnabled - Enable/Disable console.log outputs (default=true)
47
+ */
48
+ constructor(e, t) {
49
+ typeof t == "function" && (t = {
50
+ customLanguageInterface: t
51
+ }), this._opts = Object.assign({}, {
52
+ customLanguageInterface: h,
53
+ pseudo: !1,
54
+ pseudoMultipleLanguages: !1,
55
+ logsEnabled: !0
56
+ }, t), this._interfaceLanguage = this._opts.customLanguageInterface(), this._language = this._interfaceLanguage, this.setContent(e);
57
+ }
58
+ /**
59
+ * Set the strings objects based on the parameter passed in the constructor
60
+ * @param {*} props
61
+ */
62
+ setContent(e) {
63
+ const [t] = Object.keys(e);
64
+ this._defaultLanguage = t, this._defaultLanguageFirstLevelKeys = [], this._props = e, _(Object.keys(e[this._defaultLanguage])), Object.keys(this._props[this._defaultLanguage]).forEach((a) => {
65
+ typeof this._props[this._defaultLanguage][a] == "string" && this._defaultLanguageFirstLevelKeys.push(a);
66
+ }), this.setLanguage(this._interfaceLanguage), this._opts.pseudo && this._pseudoAllValues(this._props);
67
+ }
68
+ /**
69
+ * Replace all strings to pseudo value
70
+ * @param {Object} obj - Loopable object
71
+ */
72
+ _pseudoAllValues(e) {
73
+ Object.keys(e).forEach((t) => {
74
+ if (typeof e[t] == "object")
75
+ this._pseudoAllValues(e[t]);
76
+ else if (typeof e[t] == "string") {
77
+ if (e[t].indexOf("[") === 0 && e[t].lastIndexOf("]") === e[t].length - 1)
78
+ return;
79
+ const a = e[t].split(" ");
80
+ for (let s = 0; s < a.length; s += 1)
81
+ if (!a[s].match(g)) {
82
+ if (!a[s].match(o)) {
83
+ let n = a[s].length;
84
+ this._opts.pseudoMultipleLanguages && (n = parseInt(n * 1.4, 10)), a[s] = p(n);
85
+ }
86
+ }
87
+ e[t] = `[${a.join(" ")}]`;
88
+ }
89
+ });
90
+ }
91
+ /**
92
+ * Can be used from ouside the class to force a particular language
93
+ * indipendently from the interface one
94
+ * @param {*} language
95
+ */
96
+ setLanguage(e) {
97
+ const t = d(e, this._props), a = Object.keys(this._props)[0];
98
+ if (this._language = t, this._props[t]) {
99
+ for (let n = 0; n < this._defaultLanguageFirstLevelKeys.length; n += 1)
100
+ delete this[this._defaultLanguageFirstLevelKeys[n]];
101
+ let s = Object.assign({}, this._props[this._language]);
102
+ Object.keys(s).forEach((n) => {
103
+ this[n] = s[n];
104
+ }), a !== this._language && (s = this._props[a], this._fallbackValues(s, this));
105
+ }
106
+ }
107
+ /**
108
+ * Load fallback values for missing translations
109
+ * @param {*} defaultStrings
110
+ * @param {*} strings
111
+ */
112
+ _fallbackValues(e, t) {
113
+ Object.keys(e).forEach((a) => {
114
+ Object.prototype.hasOwnProperty.call(e, a) && !t[a] && t[a] !== "" ? (t[a] = e[a], this._opts.logsEnabled && console.log(`🚧 👷 key '${a}' not found in localizedStrings for language ${this._language} 🚧`)) : typeof t[a] != "string" && this._fallbackValues(e[a], t[a]);
115
+ });
116
+ }
117
+ /**
118
+ * The current language displayed (could differ from the interface language
119
+ * if it has been forced manually and a matching translation has been found)
120
+ */
121
+ getLanguage() {
122
+ return this._language;
123
+ }
124
+ /**
125
+ * The current interface language (could differ from the language displayed)
126
+ */
127
+ getInterfaceLanguage() {
128
+ return this._interfaceLanguage;
129
+ }
130
+ /**
131
+ * Return an array containing the available languages passed as props in the constructor
132
+ */
133
+ getAvailableLanguages() {
134
+ return this._availableLanguages || (this._availableLanguages = [], Object.keys(this._props).forEach((e) => {
135
+ this._availableLanguages.push(e);
136
+ })), this._availableLanguages;
137
+ }
138
+ // Format the passed string replacing the numbered or tokenized placeholders
139
+ // eg. 1: I'd like some {0} and {1}, or just {0}
140
+ // eg. 2: I'd like some {bread} and {butter}, or just {bread}
141
+ // eg. 3: I'd like some $ref{bread} and $ref{butter}, or just $ref{bread}
142
+ // Use example:
143
+ // eg. 1: strings.formatString(strings.question, strings.bread, strings.butter)
144
+ // eg. 2: strings.formatString(strings.question, { bread: strings.bread, butter: strings.butter })
145
+ // eg. 3: strings.formatString(strings.question)
146
+ formatString(e, ...t) {
147
+ let a = e || "";
148
+ return typeof a == "string" && (a = this.getString(e, null, !0) || a), a.split(o).filter((n) => !!n).map((n) => {
149
+ if (n.match(o)) {
150
+ const l = n.slice(5, -1), r = this.getString(l);
151
+ return r || (this._opts.logsEnabled && console.log(`No Localization ref found for '${n}' in string '${e}'`), `$ref(id:${l})`);
152
+ }
153
+ return n;
154
+ }).join("").split(g).filter((n) => !!n).map((n) => {
155
+ if (n.match(g)) {
156
+ const l = n.slice(1, -1);
157
+ let r = t[l];
158
+ if (r === void 0) {
159
+ const u = t[0][l];
160
+ if (u !== void 0)
161
+ r = u;
162
+ else
163
+ return r;
164
+ }
165
+ return r;
166
+ }
167
+ return n;
168
+ }).join("");
169
+ }
170
+ // Return a string with the passed key in a different language or defalt if not set
171
+ // We allow deep . notation for finding strings
172
+ getString(e, t, a = !1) {
173
+ try {
174
+ let s = this._props[t || this._language];
175
+ const n = e.split(".");
176
+ for (let l = 0; l < n.length; l += 1) {
177
+ if (s[n[l]] === void 0)
178
+ throw Error(n[l]);
179
+ s = s[n[l]];
180
+ }
181
+ return s;
182
+ } catch (s) {
183
+ !a && this._opts.logsEnabled && console.log(`No localization found for key '${e}' and language '${t}', failed on ${s.message}`);
184
+ }
185
+ return null;
186
+ }
187
+ /**
188
+ * The current props (locale object)
189
+ */
190
+ getContent() {
191
+ return this._props;
192
+ }
193
+ }
194
+ const c = /(\{[\d|\w]+\})/;
195
+ L.prototype.formatString = (i, ...e) => {
196
+ let t = !1;
197
+ const a = (i || "").split(c).filter((s) => !!s).map((s, n) => {
198
+ if (s.match(c)) {
199
+ const l = s.slice(1, -1);
200
+ let r = e[l];
201
+ if (r == null) {
202
+ const u = e[0][l];
203
+ if (u !== void 0)
204
+ r = u;
205
+ else
206
+ return r;
207
+ }
208
+ return f.isValidElement(r) ? (t = !0, f.Children.toArray(r).map((u) => ({ ...u, key: n.toString() }))) : r;
209
+ }
210
+ return s;
211
+ });
212
+ return t ? a : a.join("");
213
+ };
214
+ export {
215
+ L as default
216
+ };
@@ -0,0 +1 @@
1
+ (function(u,o){typeof exports=="object"&&typeof module<"u"?module.exports=o(require("react")):typeof define=="function"&&define.amd?define(["react"],o):(u=typeof globalThis<"u"?globalThis:u||self,u.ReactLocalization=o(u.React))})(this,function(u){"use strict";function o(){const i="en-US";if(typeof navigator>"u")return i;const e=navigator;if(e){if(e.language)return e.language;if(e.languages&&e.languages[0])return e.languages[0];if(e.userLanguage)return e.userLanguage;if(e.browserLanguage)return e.browserLanguage}return i}function p(i,e){if(e[i])return i;const t=i.indexOf("-"),a=t>=0?i.substring(0,t):i;return e[a]?a:Object.keys(e)[0]}function _(i){const e=["_interfaceLanguage","_language","_defaultLanguage","_defaultLanguageFirstLevelKeys","_props"];i.forEach(t=>{if(e.indexOf(t)!==-1)throw new Error(`${t} cannot be used as a key. It is a reserved word.`)})}function L(i){let e="";const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";for(let a=0;a<i;a+=1)e+=t.charAt(Math.floor(Math.random()*t.length));return e}const f=/(\{[\d|\w]+\})/,c=/(\$ref\{[\w|.]+\})/;class h{constructor(e,t){typeof t=="function"&&(t={customLanguageInterface:t}),this._opts=Object.assign({},{customLanguageInterface:o,pseudo:!1,pseudoMultipleLanguages:!1,logsEnabled:!0},t),this._interfaceLanguage=this._opts.customLanguageInterface(),this._language=this._interfaceLanguage,this.setContent(e)}setContent(e){const[t]=Object.keys(e);this._defaultLanguage=t,this._defaultLanguageFirstLevelKeys=[],this._props=e,_(Object.keys(e[this._defaultLanguage])),Object.keys(this._props[this._defaultLanguage]).forEach(a=>{typeof this._props[this._defaultLanguage][a]=="string"&&this._defaultLanguageFirstLevelKeys.push(a)}),this.setLanguage(this._interfaceLanguage),this._opts.pseudo&&this._pseudoAllValues(this._props)}_pseudoAllValues(e){Object.keys(e).forEach(t=>{if(typeof e[t]=="object")this._pseudoAllValues(e[t]);else if(typeof e[t]=="string"){if(e[t].indexOf("[")===0&&e[t].lastIndexOf("]")===e[t].length-1)return;const a=e[t].split(" ");for(let s=0;s<a.length;s+=1)if(!a[s].match(f)){if(!a[s].match(c)){let n=a[s].length;this._opts.pseudoMultipleLanguages&&(n=parseInt(n*1.4,10)),a[s]=L(n)}}e[t]=`[${a.join(" ")}]`}})}setLanguage(e){const t=p(e,this._props),a=Object.keys(this._props)[0];if(this._language=t,this._props[t]){for(let n=0;n<this._defaultLanguageFirstLevelKeys.length;n+=1)delete this[this._defaultLanguageFirstLevelKeys[n]];let s=Object.assign({},this._props[this._language]);Object.keys(s).forEach(n=>{this[n]=s[n]}),a!==this._language&&(s=this._props[a],this._fallbackValues(s,this))}}_fallbackValues(e,t){Object.keys(e).forEach(a=>{Object.prototype.hasOwnProperty.call(e,a)&&!t[a]&&t[a]!==""?(t[a]=e[a],this._opts.logsEnabled&&console.log(`🚧 👷 key '${a}' not found in localizedStrings for language ${this._language} 🚧`)):typeof t[a]!="string"&&this._fallbackValues(e[a],t[a])})}getLanguage(){return this._language}getInterfaceLanguage(){return this._interfaceLanguage}getAvailableLanguages(){return this._availableLanguages||(this._availableLanguages=[],Object.keys(this._props).forEach(e=>{this._availableLanguages.push(e)})),this._availableLanguages}formatString(e,...t){let a=e||"";return typeof a=="string"&&(a=this.getString(e,null,!0)||a),a.split(c).filter(n=>!!n).map(n=>{if(n.match(c)){const r=n.slice(5,-1),l=this.getString(r);return l||(this._opts.logsEnabled&&console.log(`No Localization ref found for '${n}' in string '${e}'`),`$ref(id:${r})`)}return n}).join("").split(f).filter(n=>!!n).map(n=>{if(n.match(f)){const r=n.slice(1,-1);let l=t[r];if(l===void 0){const g=t[0][r];if(g!==void 0)l=g;else return l}return l}return n}).join("")}getString(e,t,a=!1){try{let s=this._props[t||this._language];const n=e.split(".");for(let r=0;r<n.length;r+=1){if(s[n[r]]===void 0)throw Error(n[r]);s=s[n[r]]}return s}catch(s){!a&&this._opts.logsEnabled&&console.log(`No localization found for key '${e}' and language '${t}', failed on ${s.message}`)}return null}getContent(){return this._props}}const d=/(\{[\d|\w]+\})/;return h.prototype.formatString=(i,...e)=>{let t=!1;const a=(i||"").split(d).filter(s=>!!s).map((s,n)=>{if(s.match(d)){const r=s.slice(1,-1);let l=e[r];if(l==null){const g=e[0][r];if(g!==void 0)l=g;else return l}return u.isValidElement(l)?(t=!0,u.Children.toArray(l).map(g=>({...g,key:n.toString()}))):l}return s});return t?a:a.join("")},h});
package/package.json CHANGED
@@ -1,11 +1,24 @@
1
1
  {
2
2
  "name": "react-localization",
3
- "version": "1.0.18",
4
- "description": "Simple module to localize the React interface using the same syntax used in the ReactNativeLocalization module, use 'npm run build' before publishing",
3
+ "version": "2.0.1",
4
+ "description": "Simple module to localize the React interface using the same syntax used in the ReactNativeLocalization module",
5
+ "type": "module",
6
+ "main": "./dist/react-localization.umd.js",
7
+ "module": "./dist/react-localization.es.js",
8
+ "types": "./dist/LocalizedStrings.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/react-localization.es.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
5
17
  "scripts": {
6
- "babel-version": "babel --version",
7
- "test": "jasmine",
8
- "build": "babel src --out-dir lib"
18
+ "dev": "vite",
19
+ "build": "tsc && vite build",
20
+ "test": "vitest",
21
+ "prepare": "npm run build"
9
22
  },
10
23
  "repository": {
11
24
  "type": "git",
@@ -17,30 +30,32 @@
17
30
  "localization",
18
31
  "internationalization",
19
32
  "javascript",
20
- "typescript",
21
- "react",
22
- "react-component"
33
+ "typescript"
23
34
  ],
24
- "main": "./lib/LocalizedStrings.js",
25
- "types": "./lib/LocalizedStrings.d.ts",
26
35
  "author": "Stefano Falda <stefano.falda@gmail.com> (http://www.babisoft.com)",
27
36
  "license": "MIT",
28
37
  "bugs": {
29
38
  "url": "https://github.com/stefalda/react-localization/issues"
30
39
  },
31
40
  "homepage": "https://github.com/stefalda/react-localization#readme",
41
+ "peerDependencies": {
42
+ "react": "^19.0.0",
43
+ "react-dom": "^19.0.0"
44
+ },
32
45
  "devDependencies": {
33
- "babel-cli": "^6.24.1",
34
- "babel-preset-es2015": "^6.24.1",
35
- "babel-preset-react": "^6.24.1",
36
- "babel-preset-stage-2": "^6.24.1",
37
- "jasmine": "^2.7.0",
38
- "react": "^15.6.0"
46
+ "@testing-library/react": "^16.1.0",
47
+ "@types/node": "^22.10.5",
48
+ "@types/react": "^19.0.4",
49
+ "@types/react-dom": "^19.0.2",
50
+ "@vitejs/plugin-react": "^4.3.4",
51
+ "react": "^19.0.0",
52
+ "react-dom": "^19.0.0",
53
+ "typescript": "^5.7.3",
54
+ "vite": "^6.0.7",
55
+ "vitest": "^2.1.8",
56
+ "jsdom": "^26.0.0"
39
57
  },
40
58
  "dependencies": {
41
- "localized-strings": "^0.2.0"
42
- },
43
- "peerDependencies": {
44
- "react": "^17.0.0 || ^16.0.0 || ^15.6.0"
59
+ "localized-strings": "^1.0.0"
45
60
  }
46
61
  }
@@ -1,72 +0,0 @@
1
- declare module 'react-localization' {
2
- type Formatted = number | string | JSX.Element;
3
- type FormatObject<U extends Formatted> = { [key: string]: U };
4
-
5
- export interface GlobalStrings<T> {
6
- [language: string]: T;
7
- }
8
-
9
- export interface LocalizedStringsMethods {
10
- /**
11
- * Can be used from ouside the class to force a particular language
12
- * independently from the interface one
13
- * @param language
14
- */
15
- setLanguage(language: string): void;
16
-
17
- /**
18
- * The current language displayed (could differ from the interface language
19
- * if it has been forced manually and a matching translation has been found)
20
- */
21
- getLanguage(): string;
22
-
23
- /**
24
- * The current interface language (could differ from the language displayed)
25
- */
26
- getInterfaceLanguage(): string;
27
-
28
- /**
29
- * Format the passed string replacing the numbered placeholders
30
- * i.e. I'd like some {0} and {1}, or just {0}
31
- * Use example:
32
- * strings.formatString(strings.question, strings.bread, strings.butter)
33
- */
34
- formatString<T extends Formatted>(str: string, ...values: Array<T | FormatObject<T>>): Array<string | T> | string;
35
-
36
- /**
37
- * Return an array containing the available languages passed as props in the constructor
38
- */
39
- getAvailableLanguages(): string[];
40
-
41
- /**
42
- * Return a string with the passed key in a different language
43
- * @param key
44
- * @param language
45
- */
46
- getString(key: string, language?: string, omitWarning?: boolean): string;
47
-
48
- /**
49
- * Replace the NamedLocalization object without reinstantiating the object
50
- * @param props
51
- */
52
- setContent(props: any): void;
53
- }
54
-
55
- export type LocalizedStrings<T> = LocalizedStringsMethods & T;
56
-
57
- type GetInterfaceLanguageCallback = () => string;
58
-
59
- interface Options {
60
- customLanguageInterface?: GetInterfaceLanguageCallback;
61
- logsEnabled?: boolean;
62
- pseudo?: boolean;
63
- pseudoMultipleLanguages?: boolean;
64
- }
65
-
66
- interface LocalizedStringsFactory {
67
- new <T>(props: GlobalStrings<T>, options?: Options): LocalizedStrings<T>;
68
- }
69
-
70
- var LocalizedStrings: LocalizedStringsFactory;
71
- export default LocalizedStrings;
72
- }
@@ -1,89 +0,0 @@
1
- 'use strict';
2
- /**
3
- * Simple module to localize the React interface using the same syntax
4
- * used in the ReactNativeLocalization module
5
- * (https://github.com/stefalda/ReactNativeLocalization)
6
- *
7
- * Originally developed by Stefano Falda (stefano.falda@gmail.com)
8
- *
9
- * It uses a call to the Navigator/Browser object to get the current interface language,
10
- * then display the correct language strings or the default language (the first
11
- * one if a match is not found).
12
- *
13
- * This library has been refactored to use the newly created localized-strings package so to
14
- * unify the code and make it easier to mantain
15
- *
16
- * How to use:
17
- * Check the instructions at:
18
- * https://github.com/stefalda/react-localization
19
- */
20
-
21
- Object.defineProperty(exports, "__esModule", {
22
- value: true
23
- });
24
-
25
- var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
26
-
27
- var _react = require('react');
28
-
29
- var _react2 = _interopRequireDefault(_react);
30
-
31
- var _localizedStrings = require('localized-strings');
32
-
33
- var _localizedStrings2 = _interopRequireDefault(_localizedStrings);
34
-
35
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
36
-
37
- var placeholderRegex = /(\{[\d|\w]+\})/;
38
-
39
- /**
40
- * Format the passed string replacing the numbered or tokenized placeholders
41
- * eg. 1: I'd like some {0} and {1}, or just {0}
42
- * eg. 2: I'd like some {bread} and {butter}, or just {bread}
43
- * Use example:
44
- * eg. 1: strings.formatString(strings.question, strings.bread, strings.butter)
45
- * eg. 2: strings.formatString(strings.question, { bread: strings.bread, butter: strings.butter }
46
- *
47
- * THIS METHOD OVERRIDE the one of the parent class by adding support for JSX code
48
- */
49
- _localizedStrings2.default.prototype.formatString = function (str) {
50
- for (var _len = arguments.length, valuesForPlaceholders = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
51
- valuesForPlaceholders[_key - 1] = arguments[_key];
52
- }
53
-
54
- var hasObject = false;
55
- var res = (str || '').split(placeholderRegex).filter(function (textPart) {
56
- return !!textPart;
57
- }).map(function (textPart, index) {
58
- if (textPart.match(placeholderRegex)) {
59
- var matchedKey = textPart.slice(1, -1);
60
- var valueForPlaceholder = valuesForPlaceholders[matchedKey];
61
-
62
- // If no value found, check if working with an object instead
63
- if (valueForPlaceholder == undefined) {
64
- var valueFromObjectPlaceholder = valuesForPlaceholders[0][matchedKey];
65
- if (valueFromObjectPlaceholder !== undefined) {
66
- valueForPlaceholder = valueFromObjectPlaceholder;
67
- } else {
68
- // If value still isn't found, then it must have been undefined/null
69
- return valueForPlaceholder;
70
- }
71
- }
72
-
73
- if (_react2.default.isValidElement(valueForPlaceholder)) {
74
- hasObject = true;
75
- return _react2.default.Children.toArray(valueForPlaceholder).map(function (component) {
76
- return _extends({}, component, { key: index.toString() });
77
- });
78
- }
79
-
80
- return valueForPlaceholder;
81
- }
82
- return textPart;
83
- });
84
- // If the results contains a object return an array otherwise return a string
85
- if (hasObject) return res;
86
- return res.join('');
87
- };
88
-
89
- exports.default = _localizedStrings2.default;