i18next 21.4.0 → 21.4.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/CHANGELOG.md ADDED
@@ -0,0 +1,1427 @@
1
+ ## 21.4.1
2
+
3
+ - rtl fix for -arab language codes
4
+
5
+ ## 21.4.0
6
+
7
+ - bind all i18next functions to this, this way you can for example just use t() instead of i18n.t() [1682](https://github.com/i18next/i18next/issues/1682)
8
+
9
+ ## 21.3.3
10
+
11
+ - apply default interpolation formatter when interpolation options don't specify one [1680](https://github.com/i18next/i18next/issues/1680)
12
+
13
+ ## 21.3.2
14
+
15
+ - formatter typescript declarations [1679](https://github.com/i18next/i18next/pull/1679)
16
+
17
+ ## 21.3.1
18
+
19
+ - get rid of internal isDummy check to prevent react-native issue [1675](https://github.com/i18next/i18next/issues/1675)
20
+
21
+ ## 21.3.0
22
+
23
+ - adds support for formats provided by Intl API (number, currency, datetime, relativedate, list)
24
+
25
+ ## 21.2.6
26
+
27
+ - optimize do skip natural language detection also if user provided nsSeparator option is passed via direct options
28
+
29
+ ## 21.2.5
30
+
31
+ - do skip natural language detection also if user provided nsSeparator option is passed [1665](https://github.com/i18next/i18next/issues/1665)
32
+
33
+ ## 21.2.4
34
+
35
+ - optimize Intl api check
36
+
37
+ ## 21.2.3
38
+
39
+ - fix Intl.PluralRules fallback
40
+
41
+ ## 21.2.2
42
+
43
+ - log error if Intl.PluralRules API is not available
44
+
45
+ ## 21.2.1
46
+
47
+ - do skip natural language detection, if user provided keySeparator option is passed [1670](https://github.com/i18next/i18next/issues/1670)
48
+
49
+ ## 21.2.0
50
+
51
+ - provide bundled esm distributable [1667](https://github.com/i18next/i18next/issues/1667)
52
+
53
+ ## 21.1.1
54
+
55
+ - optimize natural language detection [1661](https://github.com/i18next/i18next/issues/1661)
56
+
57
+ ## 21.1.0
58
+
59
+ - A new RTL support added for `ckb` language code
60
+
61
+ ## 21.0.2
62
+
63
+ - fix defaultNS regression if translation namespace is defined in ns option, fixes #1658
64
+
65
+ ## 21.0.1
66
+
67
+ - fix typescript typo for skipOnVariables
68
+
69
+ ## 21.0.0
70
+
71
+ **This is a major breaking release:**
72
+
73
+ - introduce new v4 json format (intl plural forms with ordinal support), simplifyPluralSuffix not used anymore
74
+ - `skipOnVariables` by default now is true
75
+ - automatically detect natural language keys (no need to set nsSeparator or keySeparator to false)
76
+ - remove deprecated whitelist features
77
+ - introduce new i18next.resolvedLanguage property
78
+
79
+ ➡️ check out the [migration guide](https://www.i18next.com/misc/migration-guide#v-20-x-x-to-v-21-0-0)
80
+
81
+ ## 20.6.1
82
+
83
+ - fix deepFind if looking for nesting array item
84
+
85
+ ## 20.6.0
86
+
87
+ - feature: key prefix option [1644](https://github.com/i18next/i18next/pull/1644)
88
+
89
+ ## 20.5.0
90
+
91
+ - introduce missingKeyNoValueFallbackToKey option
92
+
93
+ ## 20.4.0
94
+
95
+ - change to return false when a nullable argument is passed [1635](https://github.com/i18next/i18next/pull/1635)
96
+ - make sure parseMissingKeyHandler is called when defaultValue is provided [1354](https://github.com/i18next/react-i18next/issues/1354)
97
+ - types: Fix i18n.use() cannot pass module constructors in TypeScript [1442](https://github.com/i18next/i18next/pull/1442)
98
+ - types: fix TypeScript definition for "loaded" event handler [1637](https://github.com/i18next/i18next/issues/1637)
99
+
100
+ ## 20.3.5
101
+
102
+ - change init warning to only trigger if not using useSSR on react-i18next
103
+
104
+ ## 20.3.4
105
+
106
+ - fix(types): only use readonly array of strings in API [1629](https://github.com/i18next/i18next/pull/1629)
107
+
108
+ ## 20.3.3
109
+
110
+ - add transWrapTextNodes to types [1626](https://github.com/i18next/i18next/pull/1626)
111
+
112
+ ## 20.3.2
113
+
114
+ - context can also be a number [1622](https://github.com/i18next/i18next/issues/1622)
115
+
116
+ ## 20.3.1
117
+
118
+ - add 'ns' to the 'returnedObjectHandler' options [1619](https://github.com/i18next/i18next/pull/1619)
119
+ - disable warn 'accessing an object' when the 'returnedObjectHandler' is defined [1617](https://github.com/i18next/i18next/pull/1617)
120
+
121
+ ## 20.3.0
122
+
123
+ - add simple toJSON function to fix uncontrolled serialization, fixes [1322](https://github.com/i18next/react-i18next/issues/1322)
124
+
125
+ ## 20.2.4
126
+
127
+ - fix types for LanguageDetector detect function
128
+
129
+ ## 20.2.3
130
+
131
+ - if detected lng is falsy, set it to empty array, to make sure at least the fallbackLng will be used
132
+
133
+ ## 20.2.2
134
+
135
+ - fix plural equations for Kazakh [1608](https://github.com/i18next/i18next/pull/1608)
136
+
137
+ ## 20.2.1
138
+
139
+ - fix lastIndex in regex when skipOnVariables is true
140
+
141
+ ## 20.2.0
142
+
143
+ - add ignoreJSONStructure into the types
144
+ - stop recursive interpolation also for "{{variable}}" when skipOnVariables is true [1595](https://github.com/i18next/i18next/issues/1595)
145
+ - old browser fix for "includes" usage [1597](https://github.com/i18next/i18next/pull/1597)
146
+
147
+ ## 20.1.0
148
+
149
+ - Add alwaysFormat into the types [1586](https://github.com/i18next/i18next/pull/1586)
150
+ - Add interpolation key name to format function [1571](https://github.com/i18next/i18next/pull/1571)
151
+
152
+ ## 20.0.0
153
+
154
+ - add support to proper augment PluginOptions type [1583](https://github.com/i18next/i18next/pull/1583)
155
+ - introduce ignoreJSONStructure flag, to automatically lookup for a flat key if a nested key is not found an vice-versa [1584](https://github.com/i18next/i18next/pull/1584) (MAJOR: because of ignoreJSONStructure is true by default)
156
+
157
+ ## 19.9.2
158
+
159
+ - try to fix another edge case issue [1570](https://github.com/i18next/i18next/issues/1570) introduces by fixing [1552](https://github.com/i18next/i18next/issues/1552)
160
+
161
+ ## 19.9.1
162
+
163
+ - Fallback on singular defaultValue [1563](https://github.com/i18next/i18next/pull/1563)
164
+
165
+ ## 19.9.0
166
+
167
+ - Improve updateMissing default plural behavior [1558](https://github.com/i18next/i18next/pull/1558)
168
+ - typescript: type definitions improvements for backend [1560](https://github.com/i18next/i18next/pull/1560)
169
+
170
+ ## 19.8.10
171
+
172
+ - try to fix another edge case issue [1570](https://github.com/i18next/i18next/issues/1570) introduces by fixing [1552](https://github.com/i18next/i18next/issues/1552)
173
+
174
+ ## 19.8.9
175
+
176
+ - warn if i18next gets initialized multiple times
177
+
178
+ ## 19.8.8
179
+
180
+ - fix for cases when calling changeLanguage before finished to initialize [1552](https://github.com/i18next/i18next/issues/1552)
181
+
182
+ ## 19.8.7
183
+
184
+ - use "Object.prototype.hasOwnProperty" instead of "object.hasOwnProperty", fixes [1542](https://github.com/i18next/i18next/issues/1542)
185
+
186
+ ## 19.8.6
187
+
188
+ - regression fix because of last prototype pollution fix in v19.8.5
189
+
190
+ ## 19.8.5
191
+
192
+ - fix potential prototype pollution when backend plugin resolves a malicious language value
193
+ - use fallbackLng as default lng
194
+
195
+ ## 19.8.4
196
+
197
+ - update format function signature for TS [1520](https://github.com/i18next/i18next/pull/1480))
198
+
199
+ ## 19.8.3
200
+
201
+ - fix prototype pollution with constructor
202
+
203
+ ## 19.8.2
204
+
205
+ - allow nesting recursively with context (could theoretically generate infinite loop, prevented in [1480](https://github.com/i18next/i18next/pull/1480))
206
+
207
+ ## 19.8.1
208
+
209
+ - fix "no languageDetector is used" log statement
210
+ - do not log "initialized" on cloned instances
211
+
212
+ ## 19.8.0
213
+
214
+ - allow fallbackLng as function [1508](https://github.com/i18next/i18next/pull/1508)
215
+
216
+ ## 19.7.0
217
+
218
+ - resource manipulation functions are now chainable
219
+
220
+ ## 19.6.3
221
+
222
+ - plural rules for ht and iw
223
+
224
+ ## 19.6.2
225
+
226
+ - fix interpolation with option skipOnVariables when there are multiple placeholders [1490](https://github.com/i18next/i18next/issues/1490)
227
+
228
+ ## 19.6.1
229
+
230
+ - extend interpolation option skipOnVariables [1488](https://github.com/i18next/i18next/pull/1488)
231
+ - typescript: Change bindStore to bindI18nStore in ReactOptions type and update default values [1489](https://github.com/i18next/i18next/pull/1489)
232
+
233
+ ## 19.6.0
234
+
235
+ - fix prototype pollution
236
+ - introduce new interpolation option skipOnVariables [1483](https://github.com/i18next/i18next/pull/1483)
237
+
238
+ ## 19.5.6
239
+
240
+ - fix local usage of nsSeparator option
241
+
242
+ ## 19.5.5
243
+
244
+ - fix: recursion when passing nesting to interpolated [1480](https://github.com/i18next/i18next/pull/1480)
245
+
246
+ ## 19.5.4
247
+
248
+ - typescript fix: getDataByLanguage typings & test [1472](https://github.com/i18next/i18next/pull/1472)
249
+ - typescript fix: type declarion of exposed EventEmitter#off methods [1460](https://github.com/i18next/i18next/pull/1460)
250
+
251
+ ## 19.5.3
252
+
253
+ - fix Macedonian plural formula [1476](https://github.com/i18next/i18next/pull/1476)
254
+
255
+ ## 19.5.2
256
+
257
+ - fix nesting interpolation with prepended namespace, fixes #1474 [1475](https://github.com/i18next/i18next/pull/1475)
258
+
259
+ ## 19.5.1
260
+
261
+ - getBestMatchFromCodes: use fallbackLng if nothing found, fixes #1470 [1471](https://github.com/i18next/i18next/pull/1471)
262
+
263
+ ## 19.5.0
264
+
265
+ - language detectors can return an array of languages and let i18next figure out best match
266
+
267
+ - rename option whitelist to supportedLngs
268
+ - rename option nonExpicitWhitelist to nonExplicitSupportedLngs
269
+ - rename function languageUtils.isWhitelisted to languageUtils.isSupportedCode
270
+
271
+ This changes are made with temporal backwards compatiblity and will warn your for deprecated usage of old terms to give users and plugin providers some time to adapt their code base.
272
+
273
+ The temporal backwards compatiblity will be removed in a follow up major release.
274
+
275
+ Learn more about why this change was made [here](https://github.com/i18next/i18next/issues/1466).
276
+
277
+ ## 19.4.5
278
+
279
+ - Add store events to typings [1451](https://github.com/i18next/i18next/pull/1451)
280
+
281
+ ## 19.4.4
282
+
283
+ - typescript: Allow passing retry boolean to `ReadCallback` [1439](https://github.com/i18next/i18next/pull/1439)
284
+
285
+ ## 19.4.3
286
+
287
+ - fix regression introduced in "support formatting in nesting" [1419](https://github.com/i18next/i18next/pull/1419)
288
+
289
+ ## 19.4.2
290
+
291
+ - fix for deno [1428](https://github.com/i18next/i18next/pull/1428)
292
+
293
+ ## 19.4.1
294
+
295
+ - add getLanguagePartFromCode as in language fallback resolution [1424](https://github.com/i18next/i18next/pull/1424)
296
+
297
+ ## 19.4.0
298
+
299
+ - support formatting in nesting [1419](https://github.com/i18next/i18next/pull/1419)
300
+
301
+ ## 19.3.4
302
+
303
+ - fix cloning of service.utils binding to clone [1415](https://github.com/i18next/i18next/pull/1415)
304
+
305
+ ## 19.3.3
306
+
307
+ - backendConnector extend initial retry from 250 to 350
308
+
309
+ ## 19.3.2
310
+
311
+ - fix the nested string options parsing introduced in v19.2.0 which broke having multiple options
312
+
313
+ ## 19.3.1
314
+
315
+ - typescript: add `options.interpolation.nestingOptionsSeparator`
316
+
317
+ ## 19.3.0
318
+
319
+ - Double fix for 1395 issue [1399](https://github.com/i18next/i18next/pull/1399)
320
+ - adds `options.interpolation.nestingOptionsSeparator: ','` to specify that separator
321
+
322
+ ## 19.2.0
323
+
324
+ - Add ability to use commas in nested keys [1398](https://github.com/i18next/i18next/pull/1398)
325
+
326
+ ## 19.1.0
327
+
328
+ - explict warning when no languageDetector is used and no lng is defined [1381](https://github.com/i18next/i18next/pull/1381)
329
+ - Add option to always format interpolated values [1385](https://github.com/i18next/i18next/pull/1385)
330
+ - pass all options to format function [992#issuecomment-577797162](https://github.com/i18next/i18next/issues/992#issuecomment-577797162)
331
+
332
+ ## 19.0.3
333
+
334
+ - fixes retry interval in backend connector [1378](https://github.com/i18next/i18next/issues/1378)
335
+
336
+ ## 19.0.2
337
+
338
+ - typescript: Type ResourceStore [1366](https://github.com/i18next/i18next/pull/1366)
339
+
340
+ ## 19.0.1
341
+
342
+ - ignore non valid keys in saveMissing [1359](https://github.com/i18next/i18next/pull/1359)
343
+
344
+ ## 19.0.0
345
+
346
+ - typescript: Typescript use `export default` for esm-first approach [1352](https://github.com/i18next/i18next/pull/1352)
347
+
348
+ ## 18.0.1
349
+
350
+ - check loadedNamespace only once per lng-ns inside using `t` for better performance
351
+
352
+ ## 18.0.0
353
+
354
+ - When calling `i18next.changeLanguage()` both `i18next.language` and `i18next.languages` will be set to the new language after calling `loadResources` -> means when accessing `t` function meanwhile you will get still the translations for the previous language instead of the fallback.
355
+
356
+ - **When is this breaking?** this does not break any current test - but if you depend on accessing i18next.language or i18next.dir during language change and expect the new language this will break your app.
357
+
358
+ - Reasoning: In react-i18next we get in a not ready state for loaded translations while we would prefer just waiting for the new language ready and trigger a rerender then - also a triggered rerender outside of the bound events would end in Suspense...
359
+
360
+ - How can I get the language i18next will be set to? `i18next.isLanguageChangingTo` is set to the language called
361
+
362
+ ## 17.3.1
363
+
364
+ - typescript: Add missing `cleanCode` option to TypeScript def [1344](https://github.com/i18next/i18next/pull/1344)
365
+
366
+ ## 17.3.0
367
+
368
+ - pass used language & namespace to postprocessor [1341](https://github.com/i18next/i18next/pull/1341)
369
+
370
+ ## 17.2.0
371
+
372
+ - Support using ImmutableJS Records as the data model in interpolation [1339](https://github.com/i18next/i18next/pull/1339)
373
+
374
+ ## 17.1.0
375
+
376
+ DX improvements:
377
+
378
+ - warning if accessing t before i18next was initialized or namespace loaded
379
+ - warning and cancelling save if saveMissing key before i18next was initialized or namespace loaded
380
+
381
+ Both are a clear sign you render your app / call t to early not waiting for the callbacks or Promise.resolve on i18next.init, i18next.loadNamespace or i18next.changeLanguage.
382
+
383
+ ## 17.0.18
384
+
385
+ - Improve performance of EventEmitter.off [1333](https://github.com/i18next/i18next/pull/1333)
386
+
387
+ ## 17.0.17
388
+
389
+ - fixes: missing nested key fails if no nested value found and defaultValue contains interpolation -> results in endless loop [1332](https://github.com/i18next/i18next/issues/1332)
390
+
391
+ ## 17.0.16
392
+
393
+ - typescript: fix incorrect callback type for backend module read callback [1322](https://github.com/i18next/i18next/pull/1322)
394
+ - typescript: add getDataByLanguage into index.d.ts [1326](https://github.com/i18next/i18next/pull/1326)
395
+
396
+ ## 17.0.15
397
+
398
+ - Fixed default value as string in IE [1325](https://github.com/i18next/i18next/pull/1325)
399
+
400
+ ## 17.0.14
401
+
402
+ - typescript: Allow TFunction to receive 1-3 parameters [1317](https://github.com/i18next/i18next/pull/1317)
403
+
404
+ ## 17.0.13
405
+
406
+ - fixes: Interpolation defaultVariables not recognized on t() [1314](https://github.com/i18next/i18next/issues/1314)
407
+
408
+ ## 17.0.12
409
+
410
+ - remove unused Interpolator#init reset param (only used internally) [1313](https://github.com/i18next/i18next/pull/1313)
411
+ - Cope with null interpolation (unescaped case) [1310](https://github.com/i18next/i18next/pull/1310)
412
+
413
+ ## 17.0.11
414
+
415
+ - fix issue with unset value in interpolation throwing exception
416
+ - typescript: Allow augmentation of TFunction to be able to add overloads [1308](https://github.com/i18next/i18next/pull/1308)
417
+
418
+ ## 17.0.10
419
+
420
+ - Update Interpolator.js to use regexSafe for unescaped interpolation [1307](https://github.com/i18next/i18next/pull/1307)
421
+
422
+ ## 17.0.9
423
+
424
+ - typescript: use() should accept a class or object [1301](https://github.com/i18next/i18next/pull/1301)
425
+
426
+ ## 17.0.8
427
+
428
+ - typescript: Correct `use(module)` types [1296](https://github.com/i18next/i18next/pull/1296)
429
+
430
+ ## 17.0.7
431
+
432
+ - typescript: Typescript imports [1291](https://github.com/i18next/i18next/pull/1291)
433
+ - Disabled default returnedObjectHandler [1288](https://github.com/i18next/i18next/pull/1288)
434
+
435
+ ## 17.0.6
436
+
437
+ - support montenegrien "crn" plurals
438
+
439
+ ## 17.0.4
440
+
441
+ - typescript: ResourceKey type should allow top level string value [1267](https://github.com/i18next/i18next/pull/1267)
442
+
443
+ ## 17.0.3
444
+
445
+ - don't do named exports for umd
446
+
447
+ ## 17.0.2
448
+
449
+ - typescript: Allow null as TResult [1263](https://github.com/i18next/i18next/pull/1263)
450
+ - bring back ./i18next.js and ./i18next.min.js -> used by wildcard unpkg users...<= bad idea doing so
451
+ - main export in package.json points to cjs dist
452
+
453
+ ## 17.0.1
454
+
455
+ - adapt ./index.js to 17.0.0 export
456
+
457
+ ## 17.0.0
458
+
459
+ - removes checking in build files (umd) into source code - for CDN usage use: [https://unpkg.com/i18next@16.0.0/dist/umd/i18next.js](https://unpkg.com/i18next@16.0.0/dist/umd/i18next.js)
460
+ - removes named exports in main file - avoids issues in mixed exports makes usage better in commonjs scenarios (node.js) - no strange `const i18next = require('i18next').default;`
461
+ - **impact** you can't no longer `import { changeLanguage } from 'i18next'; changeLanguage('de');` you will have to `import i18next from 'i18next'; i18next.changeLanguage('de');`
462
+ - **note** if can create a own file providing the named bound functions and use that instead, sample: [https://github.com/i18next/i18next/blob/v15.0.0/src/index.js#L5](https://github.com/i18next/i18next/blob/v15.0.0/src/index.js#L5)
463
+
464
+ ## 16.0.0
465
+
466
+ - removes deprecated jsnext:main from package.json
467
+ - Bundle all entry points with rollup [1256](https://github.com/i18next/i18next/pull/1256)
468
+ - **note:** dist/es -> dist/esm, dist/commonjs -> dist/cjs (individual files -> one bundled file)
469
+
470
+ ## 15.1.3
471
+
472
+ - typescript: Fix type error when init with locize plugin options [1248](https://github.com/i18next/i18next/pull/1248)
473
+
474
+ ## 15.1.2
475
+
476
+ - typescript: types(ReactOptions): Add missing props to React Options interface [1247](https://github.com/i18next/i18next/pull/1247)
477
+
478
+ ## 15.1.1
479
+
480
+ - typescript: Update BackendModule interface to allow null or undefined for the callback [1244](https://github.com/i18next/i18next/pull/1244)
481
+
482
+ ## 15.1.0
483
+
484
+ - trigger a languageChanging event
485
+
486
+ ## 15.0.9
487
+
488
+ - IE: <=IE10 fix (unable to call parent constructor) [1227](https://github.com/i18next/i18next/pull/1227)
489
+
490
+ ## 15.0.8
491
+
492
+ - typescript: adding init function to 3rdParty module typings and enforcing type property [1223](https://github.com/i18next/i18next/pull/1223)
493
+
494
+ ## 15.0.7
495
+
496
+ - typescript: Add useSuspense to ReactOptions, fix error throwing on test [1219](https://github.com/i18next/i18next/pull/1219)
497
+
498
+ ## 15.0.6
499
+
500
+ - typescript: add Interpolator interface [1213](https://github.com/i18next/i18next/pull/1213)
501
+
502
+ ## 15.0.5
503
+
504
+ - typescript: Add `hashTransKey` to `ReactOptions` [1208](https://github.com/i18next/i18next/pull/1208)
505
+ - Expose error on reloadResources [1212](https://github.com/i18next/i18next/pull/1212)
506
+
507
+ ## 15.0.4
508
+
509
+ - add default export on node.js entry [1204](https://github.com/i18next/i18next/pull/1204)
510
+ - typescript: Add defaultValue tests and allow second arg string as defaultValue [1206](https://github.com/i18next/i18next/pull/1206)
511
+
512
+ ## 15.0.3
513
+
514
+ - typescript: accept templatestringsarray as TKey [1199](https://github.com/i18next/i18next/pull/1199)
515
+ - allow arrays on addResources
516
+
517
+ ## 15.0.2
518
+
519
+ - try fixing UMD build
520
+
521
+ ## 15.0.1
522
+
523
+ - fix export name on global (typo)
524
+
525
+ ## 15.0.0
526
+
527
+ - update build process (while all test passes feeling more save making this a major release)
528
+
529
+ ## 14.1.1
530
+
531
+ - allow empty string for array join [1191](https://github.com/i18next/i18next/issues/1191)
532
+
533
+ ## 14.1.0
534
+
535
+ - support plurals in returning objecttree array [1196](https://github.com/i18next/i18next/issues/1196)
536
+
537
+ ## 14.0.1
538
+
539
+ - typescript: Parameterized use of TFunction fails while WithT use works [1188](https://github.com/i18next/i18next/pull/1188)
540
+
541
+ ## 14.0.0
542
+
543
+ - typescript: BREAKING Refactor generics usage [1180](https://github.com/i18next/i18next/pull/1180)
544
+
545
+ ## 13.1.5
546
+
547
+ - es modules: Fix bug when import by ES Module [1179](https://github.com/i18next/i18next/pull/1179)
548
+ - typescript: Add module property [1176](https://github.com/i18next/i18next/pull/1176)
549
+
550
+ ## 13.1.4
551
+
552
+ - fixes plural rule for JSON compatibility v2 introduced in 11.3.3 https://github.com/i18next/i18next/commit/d4d329fd7042f932eedf8bba1d92234707efd04c#diff-e171f9b8b4e0f5df027bd8bd7b962f1bR1140 [1174](https://github.com/i18next/i18next/issues/1174)
553
+
554
+ ## 13.1.3
555
+
556
+ - TypeScript: Pull up WithT interface allowing for overrides [1172](https://github.com/i18next/i18next/pull/1172)
557
+
558
+ ## 13.1.2
559
+
560
+ - Add typescript testing [1165](https://github.com/i18next/i18next/pull/1165)
561
+ - Add `transEmptyNodeValue` to `ReactOptions` [1166](https://github.com/i18next/i18next/pull/1166)
562
+ - Run prettier on typescript files for easier diffing in PRs [1167](https://github.com/i18next/i18next/pull/1167)
563
+
564
+ ## 13.1.1
565
+
566
+ - fix init() attributes typings [1158](https://github.com/i18next/i18next/pull/1158)
567
+
568
+ ## 13.1.0
569
+
570
+ - Support interpolation for defaultValue as parameter [1151](https://github.com/i18next/i18next/pull/1151)
571
+
572
+ ## 13.0.1
573
+
574
+ - update typedefinitions [1152](https://github.com/i18next/i18next/pull/1152)
575
+
576
+ ## 13.0.0
577
+
578
+ - pass options to missingInterpolationHandler [1146](https://github.com/i18next/i18next/pull/1146)
579
+ - refactor non valid keys handling [1143](https://github.com/i18next/i18next/pull/1143)
580
+
581
+ BREAKING:
582
+
583
+ - adds typescript definitions directly into this repo - no longer need to grab them from definitlytyped [1142](https://github.com/i18next/i18next/pull/1142)
584
+ - promise API added for all functions providing a callback [1130](https://github.com/i18next/i18next/pull/1130) -> means those will now return a Promise and not this -> so you can't chain eg. i18next.init().on() anylonger as init returns a Promise
585
+
586
+ ## 12.1.0
587
+
588
+ - adds partialBundledLanguages flag in init options [1136](https://github.com/i18next/i18next/pull/1136)
589
+
590
+ ## 12.0.0
591
+
592
+ - add hebrew update [1121](https://github.com/i18next/i18next/pull/1121)
593
+
594
+ ## 11.10.2
595
+
596
+ - revert hebrew
597
+
598
+ ## 11.10.1
599
+
600
+ - Adds Hebrew plural support [1121](https://github.com/i18next/i18next/pull/1121)
601
+
602
+ ## 11.10.0
603
+
604
+ - Allow missingInterpolationHandler to be provided as t() option [1118](https://github.com/i18next/i18next/pull/1118)
605
+
606
+ ## 11.9.1
607
+
608
+ - fixes allow overriding of fallbackLng when in options passed to t functions call
609
+
610
+ ## 11.9.0
611
+
612
+ - merge load and reloadResources functionality to allow an optional callback in reloadResources
613
+
614
+ ## 11.8.0
615
+
616
+ - deeper support for i18nFormats - add getResource function from format
617
+
618
+ ## 11.7.0
619
+
620
+ - allows defining defaultValues for plurals -> same logic as using pluralsuffixes in translation files [details](https://www.i18next.com/translation-function/plurals#how-to-find-the-correct-plural-suffix) using eg. defaultValue_plural / defaultValue_2 based on request [1096](https://github.com/i18next/i18next/issues/1096)
621
+
622
+ ## 11.6.0
623
+
624
+ - expose new store function getDataByLanguage [1087](https://github.com/i18next/i18next/pull/1087)
625
+
626
+ ## 11.5.0
627
+
628
+ - EventEmitter.prototype.on returns this for chaining calls [1079](https://github.com/i18next/i18next/pull/1079)
629
+
630
+ ## 11.4.0
631
+
632
+ - Allow to pass raw value to the custom interpolation escape function [1076](https://github.com/i18next/i18next/pull/1076)
633
+
634
+ ## 11.3.6
635
+
636
+ - fix support zero for saveMissing plurals [1072](https://github.com/i18next/i18next/pull/1072)
637
+
638
+ ## 11.3.5
639
+
640
+ - trigger loaded event only once per loaded namespace - consolidate all the loaded and done queued load calls [react-i18next 456 ](https://github.com/i18next/react-i18next/issues/456)
641
+
642
+ ## 11.3.4
643
+
644
+ - fixes simplifyPluralSuffix: false cases for languages having only singular, plural [1069](https://github.com/i18next/i18next/issues/1069)
645
+
646
+ ## 11.3.3
647
+
648
+ - pass down resolved to i18nFormat.parse as last argument
649
+
650
+ ## 11.3.2
651
+
652
+ - Properly handle arguments containing arrays while listening to a wildcard event [1052](https://github.com/i18next/i18next/pull/1052)
653
+
654
+ ## 11.3.1
655
+
656
+ - Fixes allowing setting keySeparator to false in calling t function [1051](https://github.com/i18next/i18next/pull/1051)
657
+
658
+ ## 11.3.0
659
+
660
+ - Option to skip interpolation when calling t. [1050](https://github.com/i18next/i18next/pull/1050)
661
+
662
+ ## 11.2.3
663
+
664
+ - Remove unnecessary warning when value is empty string [1046](https://github.com/i18next/i18next/pull/1046)
665
+
666
+ ## 11.2.2
667
+
668
+ - adds used key to call parse of i18nFormat
669
+
670
+ ## 11.2.1
671
+
672
+ - fixes for i18nFormat plugin
673
+
674
+ ## 11.2.0
675
+
676
+ - allows new plugin of type 'i18nFormat' to override i18next format with eg. ICU format
677
+
678
+ ## 11.0.0 - 11.1.1 (fixing version mismatch cdn.js - npm)
679
+
680
+ - **[BREAKING]** removes plugin of type cache. Can be replace by [i18next-chained-backend](https://github.com/i18next/i18next-chained-backend) example cache for localStorage [i18next-localstorage-backend](https://github.com/i18next/i18next-localstorage-backend#getting-started)
681
+ - **[BREAKING]** removes the support for multiload (multiRead) in backends - will just use read per language-namespace. You can enable multiRead support in backends again by using [i18next-multiload-backend-adapter](https://github.com/i18next/i18next-multiload-backend-adapter)
682
+
683
+ ## 10.6.0
684
+
685
+ - adds missingInterpolationHandler [1039](https://github.com/i18next/i18next/pull/1039)
686
+
687
+ ## 10.5.1
688
+
689
+ - fixes call to getPluralFormsOfKey if called with unsupported language [1032](https://github.com/i18next/i18next/issues/1032)
690
+ - Avoid mutating whitelist array. [1037](https://github.com/i18next/i18next/pull/1037)
691
+
692
+ ## 10.5.0
693
+
694
+ - Adds options.silent to addResources and addResourceBundle [1024](https://github.com/i18next/i18next/pull/1024)
695
+
696
+ ## 10.4.1
697
+
698
+ - forward options in backend.create saveMissing
699
+
700
+ ## 10.4.0
701
+
702
+ - fixes combination of returnObject and context by returning original value for deep translation when lookup for inner returns a key (failed to translate proper) [1014](https://github.com/i18next/i18next/issues/1014)
703
+ - _[EXPERIMENTAL]_ additional you can pass `tDescription` to the `t` options or as a third param to calling `t` -> `t(key, defaultValue, tDescription);`. Those will get forwarded to the backend and can be submitted on saveMissing to provide contextual information for translators.
704
+
705
+ ## 10.3.0
706
+
707
+ - new option saveMissingPlurals (default true) will enable submitting plural forms on saveMissing if t call is for plural (count passed in options).
708
+
709
+ ## 10.2.2
710
+
711
+ - fixes Context and nested lost initial options [1009](https://github.com/i18next/i18next/issues/1009)
712
+
713
+ ## 10.2.1
714
+
715
+ - optimize update output in log
716
+
717
+ ## 10.2.0
718
+
719
+ - _[EXPERIMENTAL]_ init option updateMissing: enable to update default values if different from translated value (only useful on initial development or when keeping code as source of truth not changing values outside of code)
720
+
721
+ ## 10.1.0
722
+
723
+ - return boolean, number from translator
724
+ - initial set language on translator if non set yet (after that only if loaded) [#998](https://github.com/i18next/i18next/issues/998)
725
+
726
+ ## 10.0.7
727
+
728
+ - support all overloadTranslationOptionHandler in getFixedT [react-i18next/issues/332](https://github.com/i18next/react-i18next/issues/332)
729
+
730
+ ## 10.0.6
731
+
732
+ - native browser es modules via adding .js where needed [PR980](https://github.com/i18next/i18next/pull/980)
733
+
734
+ ## 10.0.5
735
+
736
+ - should fix sync of options in clone and its translator
737
+
738
+ ## 10.0.2
739
+
740
+ - fixes issue in object return when passing in multiple keys
741
+
742
+ ## 10.0.1
743
+
744
+ - fixes support for using suffix `_0` on languages only having "singular" form
745
+
746
+ ## 10.0.0
747
+
748
+ - **[BREAKING]** brings pt, pt-PT, pt-BR plurals in line with, new pt reflects pt-BR and pt-PT gets a special case for plural handling http://www.unicode.org/cldr/charts/26/supplemental/language_plural_rules.html
749
+
750
+ ## 9.1.0
751
+
752
+ - support for using suffix `_0` on languages only having "singular" form enables easier convert in tool chains
753
+
754
+ ## 9.0.1
755
+
756
+ - propagate changeLanguage to translator after loadResources
757
+
758
+ ## 9.0.0
759
+
760
+ - **[BREAKING]** removes the compatibility options to i18next v1 you can add that back like we do in our backward compatibility tests: [https://github.com/i18next/i18next/blob/master/test/backward/v1.11.1.compat.js#L45-L52](https://github.com/i18next/i18next/blob/master/test/backward/v1.11.1.compat.js#L45-L52)
761
+ - removes the compatibility options to i18next v1
762
+ - allows passing in second param as string on getFixedT returned t function so we could use that as defaultValue
763
+ - add setting maxReplaces in interpolation options to prevent endless loop in interpolation
764
+
765
+ ## 8.4.3
766
+
767
+ - getFixedT lng parameter of array type -> pass as lngs to t function [PR949](https://github.com/i18next/i18next/pull/949)
768
+
769
+ ## 8.4.2
770
+
771
+ - fixes merging options in clone instance...do not override passed values by values on main instance
772
+
773
+ ## 8.4.1
774
+
775
+ - emits correct lng to changeLanguage event (fixes async detection behaviour) [PR933](https://github.com/i18next/i18next/pull/933)
776
+
777
+ ## 8.4.0
778
+
779
+ - expose i18next.options.interpolation.format on i18next.format
780
+ - i18next.dir if not passing lng use first of i18next.languages before using i18next.language
781
+
782
+ ## 8.3.0
783
+
784
+ - allows nesting objects/arrays into objects [#925](https://github.com/i18next/i18next/issues/925)
785
+
786
+ ## 8.2.1
787
+
788
+ - fixes issue in async lng detection
789
+
790
+ ## 8.2.0
791
+
792
+ - supports now async language detection - when language detector has member async = true
793
+
794
+ ## 8.1.0
795
+
796
+ - option to disable nesting by calling `i18next.t('key', { nest: false })` [PR920](https://github.com/i18next/i18next/pull/920)
797
+ - fixes passing lng from options to formatter function if available
798
+
799
+ ## 8.0.0
800
+
801
+ - nonExplicitWhitelist flag now not only gets considered on a fallback lng but also on user language. Eg. userlng 'de-AT' and whitelist ['de'] will now let de-AT pass as whitelisted if nonExplicitWhitelist is set true.
802
+
803
+ ## 7.2.3
804
+
805
+ - rebuild seems we had a mistake in pushing latest build
806
+
807
+ ## 7.2.2
808
+
809
+ - fixes issue in accepting string as a result of "nested" lookup [PR909](https://github.com/i18next/i18next/pull/909)
810
+
811
+ ## 7.2.1
812
+
813
+ - fixes iterating over object's own properties [#904](https://github.com/i18next/i18next/pull/904)
814
+
815
+ ## 7.2.0
816
+
817
+ - new init option simplifyPluralSuffix - setting it to false will treat all plurals using suffix numbers even for locals only having singular and plural
818
+ - even if no lng set or detected at least load the fallback languages
819
+ - delay init call on createInstance if not set initImmediate to false [#879](https://github.com/i18next/i18next/issues/879)
820
+
821
+ ## 7.1.3
822
+
823
+ - fixes issue in returnObject tree called with options including ns: [react-i18next #240](https://github.com/i18next/react-i18next/issues/240)
824
+
825
+ ## 7.1.2
826
+
827
+ - remove regex escape from format separators [#896](https://github.com/i18next/i18next/pull/896)
828
+
829
+ ## 7.1.1
830
+
831
+ - change to named plugins for 3rd party - just calling init
832
+
833
+ ## 7.1.0
834
+
835
+ - add option to include plugins not directly related - they get called their init function with current instance of i18next on init
836
+
837
+ ## 7.0.1
838
+
839
+ - fix issue in fallback lng detection if no code was detected
840
+ - check for having a lng in append when searching locals to load on loadResources - avoid error on express middleware
841
+
842
+ ## 7.0.0
843
+
844
+ - [BREAKING] Removed special cases for norwegian which resolved nb-NO to nb-NO, no will now resolve to nb-NO, nb [#870](https://github.com/i18next/i18next/issues/870) using norwegian you could migrate to old behaviour like:
845
+
846
+ fallbackLng: {
847
+ 'nb': ['no', 'en'],
848
+ 'nn': ['no', 'en'],
849
+ 'default': ['en']
850
+ }
851
+
852
+ - adding exports for named import (destruction es6) [#873](https://github.com/i18next/i18next/issues/873)
853
+ - change entry point for umd build to /src/i18next to avoid mixed export
854
+ - replace cloning in interpolation nesting to use object assign instead of json.stringify/parse so circular structures can be used [#875](https://github.com/i18next/i18next/issues/875)
855
+ - update all build dependencies
856
+
857
+ ## 6.1.2
858
+
859
+ - fixes fix in 6.1.1
860
+
861
+ ## 6.1.1
862
+
863
+ - patching same separators to lookup if the ns exists - else guess the first item is just part of the key and not meant as a namespace
864
+
865
+ ## 6.1.0
866
+
867
+ - you now can use same nsSeparator and keySeparator (eg. use a dot for both)
868
+
869
+ ## 6.0.3
870
+
871
+ - do not loop over objectTree if keySeparator is set to false
872
+
873
+ ## 6.0.2
874
+
875
+ - fixes init flow of clone
876
+
877
+ ## 6.0.1
878
+
879
+ - fixes issue in event emitter, assert all emitters get called even if one called get removed and changes the array index
880
+
881
+ ## 6.0.0
882
+
883
+ - Return namespace in cimode with appendNamespaceToCIMode option (default now will only return key without namespace - independent of call to t function) [#863](https://github.com/i18next/i18next/issues/863)
884
+
885
+ ## 5.0.0
886
+
887
+ - Nested keys should not be escaped by default [#854](https://github.com/i18next/i18next/issues/854)
888
+ - Make sure i18next.init() runs for i18next.cloneInstance() [#860](https://github.com/i18next/i18next/pull/860)
889
+
890
+ ## 4.2.0
891
+
892
+ - adds i18next.isInitialized when isInitialized
893
+ - triggers backend loaded event before initialized
894
+
895
+ ## 4.1.3 / 4.1.4
896
+
897
+ - smaller changes suggested to still inofficial support ie8 [#852](https://github.com/i18next/i18next/issues/852)
898
+
899
+ ## 4.1.2
900
+
901
+ - fixes same interpolation object with multiple getFixedT() in different locales yields wrong translation [#851](https://github.com/i18next/i18next/issues/851)
902
+ - updated all build deps
903
+
904
+ ## 4.1.1
905
+
906
+ - remove subs array from logger - no longer keep changing debug flag on subs if changing on main
907
+
908
+ ## 4.1.0
909
+
910
+ - Custom escape function, single-quotes in nested [#843](https://github.com/i18next/i18next/pull/843)
911
+
912
+ ## 4.0.0
913
+
914
+ - [BREAKING; only webpack2-beta users] will add module entry point used by webpack2, this might break your current build with webpack2-beta if configured incorrectly, see: [#836](https://github.com/i18next/i18next/issues/836)
915
+
916
+ ## 3.5.2
917
+
918
+ - remove the module entry point again will be added in 4.0.0
919
+
920
+ ## 3.5.1
921
+
922
+ - fix build output add a test file to test the generated build
923
+
924
+ ## 3.5.0
925
+
926
+ - Setting options on individual translations override, rather than merge global configs [#832](https://github.com/i18next/i18next/issues/832)
927
+ - Create an new translator when cloning i18next instance [#834](https://github.com/i18next/i18next/pull/834)
928
+ - allows fallbackLng to be an string, an array or an object defining fallbacks for lng, lng-region plus default, eg
929
+
930
+ fallbackLng: {
931
+ 'de-CH': ['fr', 'it', 'en'],
932
+ 'de': ['fr', 'en'],
933
+ 'zh-Hans': ['zh-Hant', 'en'],
934
+ 'zh-Hant': ['zh-Hans', 'en'],
935
+ 'default': ['en']
936
+ }
937
+
938
+ ## 3.4.4
939
+
940
+ - Fix Interpolator.escapeValue defaulting to undefined in some cases [#826](https://github.com/i18next/i18next/issues/826)
941
+
942
+ ## 3.4.3
943
+
944
+ - Fix Interpolator formatter exception error propagation due to not reset RegExp indices [#820](https://github.com/i18next/i18next/issues/820)
945
+
946
+ ## 3.4.2
947
+
948
+ - assert dir function does not crash if no language available
949
+
950
+ ## 3.4.1
951
+
952
+ - fix issue with format containing formatSeparator for interpolation formatting
953
+
954
+ ## 3.4.0
955
+
956
+ - adds formatting 'format this: {{var, formatRule}}' having a function on options.interpolation.format: function(value, format, lng) { return value } like suggested here [#774](https://github.com/i18next/i18next/issues/774)
957
+
958
+ ## 3.3.1
959
+
960
+ - fixed an issue with several unescaped key in the interpolation string [#746](https://github.com/i18next/i18next/pull/746)
961
+
962
+ ## 3.3.0
963
+
964
+ - allows option `nonExplicitWhitelist` on init [#741](https://github.com/i18next/i18next/pull/741)
965
+
966
+ ## 3.2.0
967
+
968
+ - adds api function i18next.reloadResources(), i18next.reloadResources(lngs, ns) to trigger a reload of translations
969
+
970
+ ## 3.1.0
971
+
972
+ - emits missingKey always (like console.log) even if saveMissing is of -> use missingKeyHandler if you only want the trigger only on saveMissing: true
973
+
974
+ ## 3.0.0
975
+
976
+ - **[BREAKING]** per default i18next uses now the same index as used in gettext for plurals. eg. for arabic suffixes are 0,1,2,3,4,5 instead of 0,1,2,3,11,100. You can enforce old behaviour by setting compatibilityJSON = 'v2' on i18next init.
977
+ - **[BREAKING]** AMD export will be unnamed now
978
+ - don't call saveMissing if no lng
979
+
980
+ ## 2.5.1
981
+
982
+ - fixes rtl support [#656](https://github.com/i18next/i18next/pull/656/files)
983
+
984
+ ## 2.5.0
985
+
986
+ - allow null or empty string as defaultValue
987
+ - init option `initImmediate (default: true)` to init without immediate
988
+
989
+ ## 2.4.1
990
+
991
+ - if passing resources don't immediate loading fixes [#636](https://github.com/i18next/i18next/issues/636)
992
+
993
+ ## 2.4.0
994
+
995
+ - support now language code variants with scripts and other exotic forms: zh-Hans-MO, sgn-BE-fr, de-AT-1996,...
996
+ - trigger of changeLanguage, load of data with a setTimeout to allow other operations meanwhile
997
+
998
+ ## 2.3.5
999
+
1000
+ - Only add language to preload array when new [#613](https://github.com/i18next/i18next/pull/613/files)
1001
+
1002
+ ## 2.3.4
1003
+
1004
+ - get babel 6 output IE compatible: https://jsfiddle.net/jamuhl/2qc7oLf8/
1005
+
1006
+ ## 2.3.2
1007
+
1008
+ - add index to make export compatible again
1009
+
1010
+ ## 2.3.1
1011
+
1012
+ - build /dist/es with included babelhelpers
1013
+
1014
+ ## 2.3.0
1015
+
1016
+ - change build chain to use rollup...allows 'js:next' and reduces build from 45kb to 33kb minified (/lib --> /dist/commonjs folder, new /dist/es for rollup,...)
1017
+ - fixes detection when using both context and pluralization and context not found. [#851](https://github.com/i18next/i18next/pull/581)
1018
+
1019
+ ## 2.2.0
1020
+
1021
+ - return instance after init for further chaning
1022
+ - make init optional on backend, cache
1023
+ - package.json entry points now to /lib not to mangled version...this might be the better solution for most use cases (build chains built on npm, webpack, browserify, node,...)
1024
+
1025
+ ## 2.1.0
1026
+
1027
+ - allow keySeparator, nsSeparator = false to turn that off
1028
+
1029
+ ## 2.0.26
1030
+
1031
+ - extended emitted arguments on 'added' event
1032
+
1033
+ ## 2.0.24
1034
+
1035
+ - fixes unneeded reload of resources that failed to load
1036
+
1037
+ ## 2.0.23
1038
+
1039
+ - fixes returnObjects in case of multiple namespaces
1040
+
1041
+ ## 2.0.22
1042
+
1043
+ - add options for context, pluralSeparator
1044
+
1045
+ ## 2.0.21
1046
+
1047
+ - clear done load request in backendConnector
1048
+
1049
+ ## 2.0.20
1050
+
1051
+ - pass full options to detectors as third arg
1052
+
1053
+ ## 2.0.19
1054
+
1055
+ - do not callback err in backendConnector if no backend is specified
1056
+
1057
+ ## 2.0.18
1058
+
1059
+ - check for fallbackLng exist
1060
+
1061
+ ## 2.0.17
1062
+
1063
+ - adds cimode to options.whitelist if set
1064
+ - emits failedLoading on load error
1065
+
1066
+ ## 2.0.16
1067
+
1068
+ - adds addResource to i18next API
1069
+ - fix init of i18next without options, callback
1070
+
1071
+ ## 2.0.15
1072
+
1073
+ - avoid loading of resources for lng=cimode
1074
+
1075
+ ## 2.0.14
1076
+
1077
+ - enhance callback on load from backend...wait for pendings
1078
+
1079
+ ## 2.0.10
1080
+
1081
+ - fixing build chain
1082
+ - do not post process on nested translation resolve
1083
+
1084
+ ## 2.0.5
1085
+
1086
+ - fixing allow nesting on interpolated nesting vars
1087
+
1088
+ ## 2.0.4
1089
+
1090
+ - don't log lng changed if no lng was detected
1091
+ - extend result on arrayJoins
1092
+
1093
+ ## 2.0.1
1094
+
1095
+ - assert defaults are arrays where needed
1096
+ - assert calling lngUtils.toResolveHierarchy does not add undefined as code if called without code param
1097
+
1098
+ ## 2.0.0
1099
+
1100
+ - complete rewrite of i18next codebase
1101
+
1102
+ ---
1103
+
1104
+ ## 1.11.2
1105
+
1106
+ - replace forEach loop to support IE8 [PR 461](https://github.com/i18next/i18next/pull/461)
1107
+
1108
+ ## 1.11.1
1109
+
1110
+ - fixes issue in nesting using multiple namespaces and lookups in fallback namespaces
1111
+ - Fix use of sprintf as shortcutFunction when first argument falsey [PR 453](https://github.com/i18next/i18next/pull/453)
1112
+
1113
+ ## 1.11.0
1114
+
1115
+ - Add nsseparator and keyseparator as options to translation function [PR 446](https://github.com/i18next/i18next/pull/446)
1116
+ - Resolves issue #448 - TypeScript errors [PR 449](https://github.com/i18next/i18next/pull/449)
1117
+ - Fixing \_deepExtend to handle keys deep existing in source and target [PR 444](https://github.com/i18next/i18next/pull/444)
1118
+ - `resource` to `resources` in addResources function [PR 440](https://github.com/i18next/i18next/pull/440)
1119
+ - Runs multiple post processes for missing translations [PR 438](https://github.com/i18next/i18next/pull/438)
1120
+ - Add support to override Ajax HTTP headers [PR 431](https://github.com/i18next/i18next/pull/431)
1121
+ - Fixed mnk plural definition [PR 427](https://github.com/i18next/i18next/pull/427)
1122
+ - Add dir function to return directionality of current language, closes… [PR 413](https://github.com/i18next/i18next/pull/413)
1123
+
1124
+ ## 1.10.3
1125
+
1126
+ - fixes issue where lng get fixed on data-i18n-options
1127
+ - [SECURITY] merges Reimplement XSS-vulnerable sequential replacement code [PR 443](https://github.com/i18next/i18next/pull/443)
1128
+
1129
+ ## 1.10.2
1130
+
1131
+ - streamline callback(err, t) for case where resStore is passed in
1132
+
1133
+ ## 1.10.1
1134
+
1135
+ - fixes Adds jquery like functionality without the jquery plugin. [PR 403](https://github.com/i18next/i18next/pull/403) by adding it to output
1136
+
1137
+ ## 1.10.0
1138
+
1139
+ - [BREAKING] new callbacks will be node.js conform function(err, t) | Forward the error from sync fetch methods to the init callback function [PR 402](https://github.com/i18next/i18next/pull/402)
1140
+ - fix fallback lng option during translations [PR 399](https://github.com/i18next/i18next/pull/399)
1141
+ - Adds jquery like functionality without the jquery plugin. [PR 403](https://github.com/i18next/i18next/pull/403)
1142
+
1143
+ ## 1.9.1
1144
+
1145
+ - fix fallback lng option during translations [PR 399](https://github.com/i18next/i18next/pull/399)
1146
+ - Adds jquery like functionality without the jquery plugin. [PR 403](https://github.com/i18next/i18next/pull/403)
1147
+
1148
+ ## 1.9.0
1149
+
1150
+ - i18n.noConflict() [PR 371](https://github.com/i18next/i18next/pull/371)
1151
+ - fix fallback to default namepsace when namespace passed as an option [PR 375](https://github.com/i18next/i18next/pull/375)
1152
+ - cache option for ajax requests [PR 376](https://github.com/i18next/i18next/pull/376)
1153
+ - option to show key on value is empty string [PR 379](https://github.com/i18next/i18next/pull/379)
1154
+ - Add isInitialized method [PR 380](https://github.com/i18next/i18next/pull/380)
1155
+ - Null check for detectLngFromLocalStorage [PR 384](https://github.com/i18next/i18next/pull/384)
1156
+ - support for adding timeout in configuration for ajax request [PR 387](https://github.com/i18next/i18next/pull/387)
1157
+
1158
+ ## 1.8.2
1159
+
1160
+ - fixes build of commonjs with jquery file
1161
+
1162
+ ## 1.8.0
1163
+
1164
+ - [BREAKING] adds custom build for commonjs with jquery...default will be without require for jquery
1165
+ - fixes issue [issue 360](https://github.com/i18next/i18next/issues/360)
1166
+ - expose applyReplacement on api
1167
+ - save resources to localStorage when useLocaleStore is true
1168
+ - add support on key is a number
1169
+ - added getResourceBundle to API
1170
+ - allow multiple post-processors
1171
+ - fallback to singular if no plural is found fixes issue [issue 356](https://github.com/i18next/i18next/issues/356)
1172
+ - access localstorage always with try catch fixes issue [issue 353](https://github.com/i18next/i18next/issues/353)
1173
+
1174
+ ## 1.7.7
1175
+
1176
+ - fixes issue with stack overflow on t(lng, count)
1177
+ - fixes empty value fallback when processing secondary ns
1178
+
1179
+ ## 1.7.6
1180
+
1181
+ - fixes lng detection (i18next-client on npm)
1182
+
1183
+ ## 1.7.5
1184
+
1185
+ - adds option to define defaultOptions, which gets merged into t(options) [issue 307](https://github.com/i18next/i18next/issues/307)
1186
+ - optimization of size added by plural rules
1187
+ - handle error on json parse when using internal xhr
1188
+ - fixes plural/singular on count if going on fallbacks eg. fr --> en
1189
+ - fixes global leak of sync in amd versions
1190
+ - apply options.lowerCaseLng to fallbackLng too
1191
+ - added hasResourceBundle(lng, ns) to check if bundle exists
1192
+ - added experimental i18n.sync.reload --> resets resStore and reloads resources
1193
+ - catch issues with localStorage quota
1194
+ - changes detectlanguage to support whitelist entries
1195
+
1196
+ ## 1.7.4
1197
+
1198
+ - add resource bundle gets deep extend flag i18n.addResourceBundle(lng, ns, { 'deep': { 'key2': 'value2' }}, true);
1199
+ - new functions to add one key value or multiple i18n.addResource(lng, ns, key, value);, i18n.addResources(lng, ns, {'key1': 'value1', 'deep.key2': 'value2'});
1200
+ - lngWhitelist merged
1201
+ - override postMissing function
1202
+ - allow floats for count
1203
+ - added indefinite functionality for plurals
1204
+ - optional set replacing vars to replace member to avoid collision with other options
1205
+ - experimental optional detectLngFromLocalStorage
1206
+ - fix for norwegian language
1207
+
1208
+ ## 1.7.3
1209
+
1210
+ - solves issue with ie8 not providing .trim function on string -> added to shim
1211
+ - set data using \$(selector).i18n() on data-i18n='[data-someDataAttr]key'
1212
+ - more bullet proof state handling on failed file load
1213
+ - corrected latvian plurals based on [issue 231](https://github.com/jamuhl/i18next/issues/231)
1214
+ - allow array of fallback languages
1215
+ - allow int in values passed to shortcut sprintf
1216
+ - setLng to 'cimode' will trigger a CI mode returning 'key' instead of translation
1217
+
1218
+ ## 1.7.2
1219
+
1220
+ - introducing option fallbackOnEmpty -> empty string will fallback
1221
+ - added function removeResourceBundle(lng, ns) -> removes a resource set
1222
+ - fixed issue with no option passed to setLng
1223
+ - added ability to prepend, append content with data-i18n attributes
1224
+ - introducing objectTreeKeyHandler
1225
+ - fixes issue with i18n.t(null), i18n.t(undefined) throwing exception
1226
+ - returnObjectTrees does not mangle arrays, functions, and regexps
1227
+ - optimized structure for bower support
1228
+
1229
+ ## 1.7.1
1230
+
1231
+ - fixed some typo
1232
+ - allow translate to take an array of keys - take first found
1233
+ - allow numbers in object trees
1234
+
1235
+ ## 1.7.0
1236
+
1237
+ - test if initialisation finished before allowing calling t function
1238
+ - setting option fixLng=true will return t function on init or setLng with the lng fixed for every subsequent call to t
1239
+ - grab key from content if attr data-i18n has no value
1240
+ - setting shortcutFunction to 'defaultValue' allows calling i18n.t(key, defaultValue)
1241
+ - empty string in defaultValue is now valid no longer displaying key
1242
+ - allow option cookieDomain
1243
+ - fixes issue #115 out of stack exception in IE8 by recursing \_translate in objectTrees
1244
+
1245
+ ## 1.6.3
1246
+
1247
+ - option to parse key if missing
1248
+ - fixes issue where plural don't get translated if language is passed in t options
1249
+ - fixes issue where key or defaultValue aren't postProcessed with itself as value
1250
+ - fixes issue with fallbackLng = false in combination with sendMissingTo = fallback
1251
+ - fixes namespace fallback loop to only loop if array has really a ns in it
1252
+
1253
+ ## 1.6.2
1254
+
1255
+ - fixes some var typo
1256
+ - fixes sendMissing to correct namespace
1257
+ - fixes sendMissing in combination with fallbackNS
1258
+
1259
+ ## 1.6.1
1260
+
1261
+ - PR #106 optionally un/escape interpolated content
1262
+ - PR #101 automatic gettext like sprintf syntax detection + postprocess injection
1263
+ - customload will get called on dynamicLoad too
1264
+ - fixes namespace array settings if loaded resourcebundle or additional namespaces
1265
+ - lookup of not existend resouces can be fallbacked to other namespaces - see option fallbackNS (array or string if one ns to fallback to)
1266
+ - defaultValues get postProcessed
1267
+ - BREAKING: per default null values in resources get translated to fallback. This can be changed by setting option fallbackOnNull to false
1268
+ - PR #81 added support for passing options to nested resources
1269
+ - PR #88 added an exists method to check for the existence of a key in the resource store
1270
+ - fixed issue with null value throws in applyReplacement function
1271
+ - fixed issue #80 empty string lookup ends in fallback instead of returning result in language
1272
+ - fixed issue with null value in resources not returning expected value
1273
+ - optimized tests to use on server (nodejs) too
1274
+ - allow zepto as drop in replacement for \$
1275
+ - using testacular as runner
1276
+ - upgraded to grunt 0.4.0
1277
+ - fixed optional interpolation prefix/suffix not used in plural translation cases
1278
+ - optimized check if there are multiple keys for the data-i18n attribute to parse
1279
+
1280
+ ## 1.6.0
1281
+
1282
+ - option to specify target to set attributes with jquery function by using 'data-i18n-target attribute'
1283
+ - function to set new options for nesting functionality
1284
+ - function to add resources after init
1285
+ - option to lookup in default namespace if value is not found in given namespace
1286
+ - option to change interpolation prefix and suffix via translation options
1287
+ - fixed issue with using ns/keyseparator on plurals, context,...
1288
+ - fixed issue with posting missing when not using jquery
1289
+ - post missing in correct lng if lng is given in translation options
1290
+ - proper usage of deferred object in init function
1291
+ - fixed issue replacing values in objectTree
1292
+
1293
+ ## 1.5.10
1294
+
1295
+ - BREAKING: fixed plural rules for languages with extended plural forms (more than 2 forms)
1296
+ - merged pull #61 - custom loader (enables jsonp or other loading custom loading strategies)
1297
+ - escaping interpolation prefix/suffix for proper regex replace
1298
+
1299
+ ## 1.5.9
1300
+
1301
+ - functions to load additional namespaces after init and to set default namespace to something else
1302
+ - set if you don't want to read defaultValues from content while using jquery fc
1303
+ - set dataAttribute to different value
1304
+ - set cookieName to different value
1305
+ - some smallbugfixes
1306
+ - typesafe use of console if in debug mode
1307
+
1308
+ ## 1.5.8
1309
+
1310
+ - disable cookie usage by setting init option useCookie to false
1311
+ - accept empty string as translation value
1312
+ - fixed bug in own ajax implementation not using proper sendType
1313
+ - fixed bug for returning objTree in combination with namespace
1314
+ - fixed bug in plurals of romanic lngs
1315
+
1316
+ ## 1.5.7
1317
+
1318
+ - pass namespace in t() options
1319
+ - interpolation nesting
1320
+ - changable querystring param to look language up from
1321
+
1322
+ ## 1.5.6
1323
+
1324
+ - typesafe check for window, document existance
1325
+ - runnable under rhino
1326
+ - seperated amd builds with/without jquery
1327
+
1328
+ ## 1.5.5
1329
+
1330
+ - **BREAKING** added all plurals: suffixes will new be same as in gettext usage (number indexes key_plural_0|2|3|4|5|7|8|10|11|20|100), additional if needed signature of addRule has changed
1331
+ - added sprintf as postprocessor -> postProcess = 'sprintf' and sprintf = obj or array
1332
+ - set default postProcessor on init
1333
+ - redone build process with grunt
1334
+ - drop in replacement for jquery each, extend, ajax
1335
+ - setting fallbackLng to false will stop loading and looking it up
1336
+ - option to load only current or unspecific language files
1337
+
1338
+ ## 1.5.0
1339
+
1340
+ - pass options to sync.\_fetchOne, use options for fetching
1341
+ - support for i18next-webtranslate
1342
+
1343
+ ## 1.4.1
1344
+
1345
+ - post processor
1346
+ - **BREAKING:** localStorage defaults to false
1347
+ - added localStorageExpirationTime for better caching control
1348
+ - few bug fixes
1349
+
1350
+ ## 1.4.0
1351
+
1352
+ - preload multiple languages
1353
+ - translate key to other language than current
1354
+ - fixed issue with namespace usage in combination with context and plurals
1355
+ - more options to send missing values
1356
+ - better amd support
1357
+
1358
+ ## 1.3.4
1359
+
1360
+ - set type of ajax request to GET (options sendType: default POST)
1361
+ - set cookie expiration (options cookieExpirationTime: in minutes)
1362
+ - read / cache translation options (context, count, ...) in data-attribute (options useDataAttrOptions: default false)
1363
+
1364
+ ## 1.3.3
1365
+
1366
+ - optional return an objectTree from translation
1367
+ - use jquery promises or callback in initialisation
1368
+ - rewrote all tests with mocha.js
1369
+
1370
+ ## 1.3.2
1371
+
1372
+ - options to init i18next sync (options -> getAsync = false)
1373
+ - replace all occurence of replacement string
1374
+
1375
+ ## 1.3.1
1376
+
1377
+ - pass options to selector.i18n() thanks to [@hugojosefson](https://github.com/jamuhl/i18next/pull/10)
1378
+ - close [issue #8(https://github.com/jamuhl/i18next/issues/8)]: Fail silently when trying to access a path with children
1379
+ - cleanup
1380
+ - debug flag (options.debug -> write infos/errors to console)
1381
+
1382
+ ## 1.2.5
1383
+
1384
+ - fix for IE8
1385
+
1386
+ ## 1.2.4
1387
+
1388
+ - added indexOf for non ECMA-262 standard compliant browsers (IE < 9)
1389
+ - calling i28n() on element with data-i18n attribute will localize it now (i18n now not only works on container elements child)
1390
+
1391
+ ## 1.2.3
1392
+
1393
+ - extended detectLng: switch via qs _setLng=_ or cookie _i18next_
1394
+ - assert county in locale will be uppercased `en-us` -> `en-US`
1395
+ - provide option to have locale always lowercased _option lowerCaseLng_
1396
+ - set lng cookie when set in init function
1397
+
1398
+ ## 1.2
1399
+
1400
+ - support for translation context
1401
+ - fixed zero count in plurals
1402
+ - init without options, callback
1403
+
1404
+ ## 1.1
1405
+
1406
+ - support for multiple plural forms
1407
+ - common.js enabled (for node.js serverside)
1408
+ - changes to be less dependent on jquery (override it's functions, add to root if no jquery)
1409
+ - enable it on serverside with node.js [i18next-node](https://github.com/jamuhl/i18next-node)
1410
+
1411
+ ## 1.0
1412
+
1413
+ - support for other attribute translation via _data-i18n_ attribute
1414
+ - bug fixes
1415
+ - tests with qunit and sinon
1416
+
1417
+ ## 0.9
1418
+
1419
+ - multi-namespace support
1420
+ - loading static files or dynamic route
1421
+ - jquery function for _data-i18n_ attibute
1422
+ - post missing translations to the server
1423
+ - graceful fallback en-US -> en -> fallbackLng
1424
+ - localstorage support
1425
+ - support for pluralized strings
1426
+ - insertion of variables into translations
1427
+ - translation nesting