locizify 5.0.0

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.
Files changed (558) hide show
  1. package/.coveralls.yml +1 -0
  2. package/.travis.yml +8 -0
  3. package/CHANGELOG.md +237 -0
  4. package/LICENSE +22 -0
  5. package/README.md +472 -0
  6. package/dist/commonjs/index.js +140 -0
  7. package/dist/es/index.js +126 -0
  8. package/dist/umd/locizify.js +9657 -0
  9. package/dist/umd/locizify.min.js +25 -0
  10. package/example/README.md +11 -0
  11. package/example/index.html +180 -0
  12. package/example/node_modules/@babel/runtime/LICENSE +22 -0
  13. package/example/node_modules/@babel/runtime/README.md +19 -0
  14. package/example/node_modules/@babel/runtime/helpers/AsyncGenerator.js +100 -0
  15. package/example/node_modules/@babel/runtime/helpers/AwaitValue.js +5 -0
  16. package/example/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +30 -0
  17. package/example/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +11 -0
  18. package/example/node_modules/@babel/runtime/helpers/arrayWithHoles.js +5 -0
  19. package/example/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +7 -0
  20. package/example/node_modules/@babel/runtime/helpers/assertThisInitialized.js +9 -0
  21. package/example/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +58 -0
  22. package/example/node_modules/@babel/runtime/helpers/asyncIterator.js +19 -0
  23. package/example/node_modules/@babel/runtime/helpers/asyncToGenerator.js +37 -0
  24. package/example/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +7 -0
  25. package/example/node_modules/@babel/runtime/helpers/classCallCheck.js +7 -0
  26. package/example/node_modules/@babel/runtime/helpers/classNameTDZError.js +5 -0
  27. package/example/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +28 -0
  28. package/example/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +15 -0
  29. package/example/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +9 -0
  30. package/example/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +7 -0
  31. package/example/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +21 -0
  32. package/example/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +9 -0
  33. package/example/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +5 -0
  34. package/example/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +13 -0
  35. package/example/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +19 -0
  36. package/example/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +9 -0
  37. package/example/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +5 -0
  38. package/example/node_modules/@babel/runtime/helpers/construct.js +22 -0
  39. package/example/node_modules/@babel/runtime/helpers/createClass.js +17 -0
  40. package/example/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +60 -0
  41. package/example/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +28 -0
  42. package/example/node_modules/@babel/runtime/helpers/createSuper.js +24 -0
  43. package/example/node_modules/@babel/runtime/helpers/decorate.js +400 -0
  44. package/example/node_modules/@babel/runtime/helpers/defaults.js +16 -0
  45. package/example/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +24 -0
  46. package/example/node_modules/@babel/runtime/helpers/defineProperty.js +16 -0
  47. package/example/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +97 -0
  48. package/example/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +3 -0
  49. package/example/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +28 -0
  50. package/example/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +9 -0
  51. package/example/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +3 -0
  52. package/example/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +4 -0
  53. package/example/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +7 -0
  54. package/example/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +56 -0
  55. package/example/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +17 -0
  56. package/example/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +35 -0
  57. package/example/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +4 -0
  58. package/example/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +5 -0
  59. package/example/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +3 -0
  60. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +26 -0
  61. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +13 -0
  62. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +7 -0
  63. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +4 -0
  64. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +19 -0
  65. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +7 -0
  66. package/example/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +3 -0
  67. package/example/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +11 -0
  68. package/example/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +17 -0
  69. package/example/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +7 -0
  70. package/example/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +3 -0
  71. package/example/node_modules/@babel/runtime/helpers/esm/construct.js +18 -0
  72. package/example/node_modules/@babel/runtime/helpers/esm/createClass.js +15 -0
  73. package/example/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +57 -0
  74. package/example/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +25 -0
  75. package/example/node_modules/@babel/runtime/helpers/esm/createSuper.js +19 -0
  76. package/example/node_modules/@babel/runtime/helpers/esm/decorate.js +396 -0
  77. package/example/node_modules/@babel/runtime/helpers/esm/defaults.js +14 -0
  78. package/example/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +22 -0
  79. package/example/node_modules/@babel/runtime/helpers/esm/defineProperty.js +14 -0
  80. package/example/node_modules/@babel/runtime/helpers/esm/extends.js +17 -0
  81. package/example/node_modules/@babel/runtime/helpers/esm/get.js +20 -0
  82. package/example/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
  83. package/example/node_modules/@babel/runtime/helpers/esm/inherits.js +15 -0
  84. package/example/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +5 -0
  85. package/example/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
  86. package/example/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +3 -0
  87. package/example/node_modules/@babel/runtime/helpers/esm/instanceof.js +7 -0
  88. package/example/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +5 -0
  89. package/example/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +53 -0
  90. package/example/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +3 -0
  91. package/example/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +12 -0
  92. package/example/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +3 -0
  93. package/example/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +26 -0
  94. package/example/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +12 -0
  95. package/example/node_modules/@babel/runtime/helpers/esm/jsx.js +46 -0
  96. package/example/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +9 -0
  97. package/example/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +5 -0
  98. package/example/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +3 -0
  99. package/example/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +3 -0
  100. package/example/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +3 -0
  101. package/example/node_modules/@babel/runtime/helpers/esm/objectSpread.js +19 -0
  102. package/example/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +35 -0
  103. package/example/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +19 -0
  104. package/example/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +14 -0
  105. package/example/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  106. package/example/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +9 -0
  107. package/example/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +3 -0
  108. package/example/node_modules/@babel/runtime/helpers/esm/set.js +51 -0
  109. package/example/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +8 -0
  110. package/example/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
  111. package/example/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +7 -0
  112. package/example/node_modules/@babel/runtime/helpers/esm/slicedToArrayLoose.js +7 -0
  113. package/example/node_modules/@babel/runtime/helpers/esm/superPropBase.js +9 -0
  114. package/example/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +11 -0
  115. package/example/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +8 -0
  116. package/example/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
  117. package/example/node_modules/@babel/runtime/helpers/esm/temporalRef.js +5 -0
  118. package/example/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -0
  119. package/example/node_modules/@babel/runtime/helpers/esm/toArray.js +7 -0
  120. package/example/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +7 -0
  121. package/example/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +13 -0
  122. package/example/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +6 -0
  123. package/example/node_modules/@babel/runtime/helpers/esm/typeof.js +15 -0
  124. package/example/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
  125. package/example/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +6 -0
  126. package/example/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +37 -0
  127. package/example/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +69 -0
  128. package/example/node_modules/@babel/runtime/helpers/extends.js +19 -0
  129. package/example/node_modules/@babel/runtime/helpers/get.js +23 -0
  130. package/example/node_modules/@babel/runtime/helpers/getPrototypeOf.js +8 -0
  131. package/example/node_modules/@babel/runtime/helpers/inherits.js +18 -0
  132. package/example/node_modules/@babel/runtime/helpers/inheritsLoose.js +7 -0
  133. package/example/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +11 -0
  134. package/example/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +5 -0
  135. package/example/node_modules/@babel/runtime/helpers/instanceof.js +9 -0
  136. package/example/node_modules/@babel/runtime/helpers/interopRequireDefault.js +7 -0
  137. package/example/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +55 -0
  138. package/example/node_modules/@babel/runtime/helpers/isNativeFunction.js +5 -0
  139. package/example/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +14 -0
  140. package/example/node_modules/@babel/runtime/helpers/iterableToArray.js +5 -0
  141. package/example/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +28 -0
  142. package/example/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +14 -0
  143. package/example/node_modules/@babel/runtime/helpers/jsx.js +49 -0
  144. package/example/node_modules/@babel/runtime/helpers/maybeArrayLike.js +12 -0
  145. package/example/node_modules/@babel/runtime/helpers/newArrowCheck.js +7 -0
  146. package/example/node_modules/@babel/runtime/helpers/nonIterableRest.js +5 -0
  147. package/example/node_modules/@babel/runtime/helpers/nonIterableSpread.js +5 -0
  148. package/example/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +5 -0
  149. package/example/node_modules/@babel/runtime/helpers/objectSpread.js +22 -0
  150. package/example/node_modules/@babel/runtime/helpers/objectSpread2.js +37 -0
  151. package/example/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +22 -0
  152. package/example/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +16 -0
  153. package/example/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +13 -0
  154. package/example/node_modules/@babel/runtime/helpers/readOnlyError.js +5 -0
  155. package/example/node_modules/@babel/runtime/helpers/set.js +54 -0
  156. package/example/node_modules/@babel/runtime/helpers/setPrototypeOf.js +10 -0
  157. package/example/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +9 -0
  158. package/example/node_modules/@babel/runtime/helpers/slicedToArray.js +13 -0
  159. package/example/node_modules/@babel/runtime/helpers/slicedToArrayLoose.js +13 -0
  160. package/example/node_modules/@babel/runtime/helpers/superPropBase.js +12 -0
  161. package/example/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +13 -0
  162. package/example/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +10 -0
  163. package/example/node_modules/@babel/runtime/helpers/tdz.js +5 -0
  164. package/example/node_modules/@babel/runtime/helpers/temporalRef.js +9 -0
  165. package/example/node_modules/@babel/runtime/helpers/temporalUndefined.js +3 -0
  166. package/example/node_modules/@babel/runtime/helpers/toArray.js +13 -0
  167. package/example/node_modules/@babel/runtime/helpers/toConsumableArray.js +13 -0
  168. package/example/node_modules/@babel/runtime/helpers/toPrimitive.js +16 -0
  169. package/example/node_modules/@babel/runtime/helpers/toPropertyKey.js +10 -0
  170. package/example/node_modules/@babel/runtime/helpers/typeof.js +17 -0
  171. package/example/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +12 -0
  172. package/example/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +9 -0
  173. package/example/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +43 -0
  174. package/example/node_modules/@babel/runtime/helpers/wrapRegExp.js +76 -0
  175. package/example/node_modules/@babel/runtime/package.json +55 -0
  176. package/example/node_modules/@babel/runtime/regenerator/index.js +1 -0
  177. package/example/node_modules/accepts/HISTORY.md +236 -0
  178. package/example/node_modules/accepts/LICENSE +23 -0
  179. package/example/node_modules/accepts/README.md +142 -0
  180. package/example/node_modules/accepts/index.js +238 -0
  181. package/example/node_modules/accepts/package.json +86 -0
  182. package/example/node_modules/array-flatten/LICENSE +21 -0
  183. package/example/node_modules/array-flatten/README.md +43 -0
  184. package/example/node_modules/array-flatten/array-flatten.js +64 -0
  185. package/example/node_modules/array-flatten/package.json +64 -0
  186. package/example/node_modules/body-parser/HISTORY.md +609 -0
  187. package/example/node_modules/body-parser/LICENSE +23 -0
  188. package/example/node_modules/body-parser/README.md +443 -0
  189. package/example/node_modules/body-parser/index.js +157 -0
  190. package/example/node_modules/body-parser/lib/read.js +181 -0
  191. package/example/node_modules/body-parser/lib/types/json.js +230 -0
  192. package/example/node_modules/body-parser/lib/types/raw.js +101 -0
  193. package/example/node_modules/body-parser/lib/types/text.js +121 -0
  194. package/example/node_modules/body-parser/lib/types/urlencoded.js +284 -0
  195. package/example/node_modules/body-parser/package.json +92 -0
  196. package/example/node_modules/bytes/History.md +87 -0
  197. package/example/node_modules/bytes/LICENSE +23 -0
  198. package/example/node_modules/bytes/Readme.md +126 -0
  199. package/example/node_modules/bytes/index.js +162 -0
  200. package/example/node_modules/bytes/package.json +84 -0
  201. package/example/node_modules/content-disposition/HISTORY.md +55 -0
  202. package/example/node_modules/content-disposition/LICENSE +22 -0
  203. package/example/node_modules/content-disposition/README.md +148 -0
  204. package/example/node_modules/content-disposition/index.js +458 -0
  205. package/example/node_modules/content-disposition/package.json +79 -0
  206. package/example/node_modules/content-type/HISTORY.md +24 -0
  207. package/example/node_modules/content-type/LICENSE +22 -0
  208. package/example/node_modules/content-type/README.md +92 -0
  209. package/example/node_modules/content-type/index.js +222 -0
  210. package/example/node_modules/content-type/package.json +76 -0
  211. package/example/node_modules/cookie/HISTORY.md +123 -0
  212. package/example/node_modules/cookie/LICENSE +24 -0
  213. package/example/node_modules/cookie/README.md +253 -0
  214. package/example/node_modules/cookie/index.js +198 -0
  215. package/example/node_modules/cookie/package.json +78 -0
  216. package/example/node_modules/cookie-signature/History.md +38 -0
  217. package/example/node_modules/cookie-signature/Readme.md +42 -0
  218. package/example/node_modules/cookie-signature/index.js +51 -0
  219. package/example/node_modules/cookie-signature/package.json +57 -0
  220. package/example/node_modules/debug/.coveralls.yml +1 -0
  221. package/example/node_modules/debug/.travis.yml +14 -0
  222. package/example/node_modules/debug/CHANGELOG.md +362 -0
  223. package/example/node_modules/debug/LICENSE +19 -0
  224. package/example/node_modules/debug/Makefile +50 -0
  225. package/example/node_modules/debug/README.md +312 -0
  226. package/example/node_modules/debug/component.json +19 -0
  227. package/example/node_modules/debug/node.js +1 -0
  228. package/example/node_modules/debug/package.json +91 -0
  229. package/example/node_modules/debug/src/browser.js +185 -0
  230. package/example/node_modules/debug/src/debug.js +202 -0
  231. package/example/node_modules/debug/src/index.js +10 -0
  232. package/example/node_modules/debug/src/inspector-log.js +15 -0
  233. package/example/node_modules/debug/src/node.js +248 -0
  234. package/example/node_modules/depd/History.md +96 -0
  235. package/example/node_modules/depd/LICENSE +22 -0
  236. package/example/node_modules/depd/Readme.md +280 -0
  237. package/example/node_modules/depd/index.js +522 -0
  238. package/example/node_modules/depd/lib/browser/index.js +77 -0
  239. package/example/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
  240. package/example/node_modules/depd/lib/compat/event-listener-count.js +22 -0
  241. package/example/node_modules/depd/lib/compat/index.js +79 -0
  242. package/example/node_modules/depd/package.json +79 -0
  243. package/example/node_modules/destroy/LICENSE +22 -0
  244. package/example/node_modules/destroy/README.md +60 -0
  245. package/example/node_modules/destroy/index.js +75 -0
  246. package/example/node_modules/destroy/package.json +71 -0
  247. package/example/node_modules/ee-first/LICENSE +22 -0
  248. package/example/node_modules/ee-first/README.md +80 -0
  249. package/example/node_modules/ee-first/index.js +95 -0
  250. package/example/node_modules/ee-first/package.json +63 -0
  251. package/example/node_modules/encodeurl/HISTORY.md +14 -0
  252. package/example/node_modules/encodeurl/LICENSE +22 -0
  253. package/example/node_modules/encodeurl/README.md +128 -0
  254. package/example/node_modules/encodeurl/index.js +60 -0
  255. package/example/node_modules/encodeurl/package.json +78 -0
  256. package/example/node_modules/escape-html/LICENSE +24 -0
  257. package/example/node_modules/escape-html/Readme.md +43 -0
  258. package/example/node_modules/escape-html/index.js +78 -0
  259. package/example/node_modules/escape-html/package.json +59 -0
  260. package/example/node_modules/etag/HISTORY.md +83 -0
  261. package/example/node_modules/etag/LICENSE +22 -0
  262. package/example/node_modules/etag/README.md +159 -0
  263. package/example/node_modules/etag/index.js +131 -0
  264. package/example/node_modules/etag/package.json +86 -0
  265. package/example/node_modules/express/History.md +3477 -0
  266. package/example/node_modules/express/LICENSE +24 -0
  267. package/example/node_modules/express/Readme.md +155 -0
  268. package/example/node_modules/express/index.js +11 -0
  269. package/example/node_modules/express/lib/application.js +644 -0
  270. package/example/node_modules/express/lib/express.js +116 -0
  271. package/example/node_modules/express/lib/middleware/init.js +43 -0
  272. package/example/node_modules/express/lib/middleware/query.js +47 -0
  273. package/example/node_modules/express/lib/request.js +525 -0
  274. package/example/node_modules/express/lib/response.js +1142 -0
  275. package/example/node_modules/express/lib/router/index.js +662 -0
  276. package/example/node_modules/express/lib/router/layer.js +181 -0
  277. package/example/node_modules/express/lib/router/route.js +216 -0
  278. package/example/node_modules/express/lib/utils.js +306 -0
  279. package/example/node_modules/express/lib/view.js +182 -0
  280. package/example/node_modules/express/package.json +153 -0
  281. package/example/node_modules/finalhandler/HISTORY.md +187 -0
  282. package/example/node_modules/finalhandler/LICENSE +22 -0
  283. package/example/node_modules/finalhandler/README.md +148 -0
  284. package/example/node_modules/finalhandler/index.js +331 -0
  285. package/example/node_modules/finalhandler/package.json +80 -0
  286. package/example/node_modules/forwarded/HISTORY.md +16 -0
  287. package/example/node_modules/forwarded/LICENSE +22 -0
  288. package/example/node_modules/forwarded/README.md +57 -0
  289. package/example/node_modules/forwarded/index.js +76 -0
  290. package/example/node_modules/forwarded/package.json +78 -0
  291. package/example/node_modules/fresh/HISTORY.md +70 -0
  292. package/example/node_modules/fresh/LICENSE +23 -0
  293. package/example/node_modules/fresh/README.md +119 -0
  294. package/example/node_modules/fresh/index.js +137 -0
  295. package/example/node_modules/fresh/package.json +90 -0
  296. package/example/node_modules/http-errors/HISTORY.md +149 -0
  297. package/example/node_modules/http-errors/LICENSE +23 -0
  298. package/example/node_modules/http-errors/README.md +163 -0
  299. package/example/node_modules/http-errors/index.js +266 -0
  300. package/example/node_modules/http-errors/package.json +93 -0
  301. package/example/node_modules/i18next/CHANGELOG.md +1165 -0
  302. package/example/node_modules/i18next/LICENSE +21 -0
  303. package/example/node_modules/i18next/README.md +54 -0
  304. package/example/node_modules/i18next/dist/cjs/i18next.js +2241 -0
  305. package/example/node_modules/i18next/dist/esm/i18next.js +2237 -0
  306. package/example/node_modules/i18next/dist/umd/i18next.js +2355 -0
  307. package/example/node_modules/i18next/dist/umd/i18next.min.js +1 -0
  308. package/example/node_modules/i18next/i18next.js +2355 -0
  309. package/example/node_modules/i18next/i18next.min.js +1 -0
  310. package/example/node_modules/i18next/index.d.ts +1033 -0
  311. package/example/node_modules/i18next/index.js +5 -0
  312. package/example/node_modules/i18next/package.json +147 -0
  313. package/example/node_modules/i18next/tsconfig.nonEsModuleInterop.json +8 -0
  314. package/example/node_modules/i18next-fs-backend/README.md +124 -0
  315. package/example/node_modules/i18next-fs-backend/cjs/extname.js +14 -0
  316. package/example/node_modules/i18next-fs-backend/cjs/formats/json5.js +1393 -0
  317. package/example/node_modules/i18next-fs-backend/cjs/formats/yaml.js +1746 -0
  318. package/example/node_modules/i18next-fs-backend/cjs/fs.js +6 -0
  319. package/example/node_modules/i18next-fs-backend/cjs/index.js +183 -0
  320. package/example/node_modules/i18next-fs-backend/cjs/package.json +1 -0
  321. package/example/node_modules/i18next-fs-backend/cjs/readFile.js +142 -0
  322. package/example/node_modules/i18next-fs-backend/cjs/utils.js +90 -0
  323. package/example/node_modules/i18next-fs-backend/cjs/writeFile.js +123 -0
  324. package/example/node_modules/i18next-fs-backend/index.js +2 -0
  325. package/example/node_modules/i18next-fs-backend/lib/extname.js +4 -0
  326. package/example/node_modules/i18next-fs-backend/lib/formats/json5.js +1399 -0
  327. package/example/node_modules/i18next-fs-backend/lib/formats/yaml.js +1 -0
  328. package/example/node_modules/i18next-fs-backend/lib/fs.cjs +6 -0
  329. package/example/node_modules/i18next-fs-backend/lib/index.js +127 -0
  330. package/example/node_modules/i18next-fs-backend/lib/readFile.js +100 -0
  331. package/example/node_modules/i18next-fs-backend/lib/utils.js +68 -0
  332. package/example/node_modules/i18next-fs-backend/lib/writeFile.js +83 -0
  333. package/example/node_modules/i18next-fs-backend/licence +19 -0
  334. package/example/node_modules/i18next-fs-backend/package.json +95 -0
  335. package/example/node_modules/i18next-http-middleware/CHANGELOG.md +15 -0
  336. package/example/node_modules/i18next-http-middleware/README.md +380 -0
  337. package/example/node_modules/i18next-http-middleware/cjs/LanguageDetector.js +150 -0
  338. package/example/node_modules/i18next-http-middleware/cjs/httpFunctions.js +175 -0
  339. package/example/node_modules/i18next-http-middleware/cjs/index.js +268 -0
  340. package/example/node_modules/i18next-http-middleware/cjs/languageLookups/cookie.js +121 -0
  341. package/example/node_modules/i18next-http-middleware/cjs/languageLookups/header.js +57 -0
  342. package/example/node_modules/i18next-http-middleware/cjs/languageLookups/path.js +38 -0
  343. package/example/node_modules/i18next-http-middleware/cjs/languageLookups/querystring.js +43 -0
  344. package/example/node_modules/i18next-http-middleware/cjs/languageLookups/session.js +30 -0
  345. package/example/node_modules/i18next-http-middleware/cjs/package.json +1 -0
  346. package/example/node_modules/i18next-http-middleware/cjs/utils.js +70 -0
  347. package/example/node_modules/i18next-http-middleware/index.js +2 -0
  348. package/example/node_modules/i18next-http-middleware/lib/LanguageDetector.js +100 -0
  349. package/example/node_modules/i18next-http-middleware/lib/httpFunctions.js +118 -0
  350. package/example/node_modules/i18next-http-middleware/lib/index.js +224 -0
  351. package/example/node_modules/i18next-http-middleware/lib/languageLookups/cookie.js +97 -0
  352. package/example/node_modules/i18next-http-middleware/lib/languageLookups/header.js +42 -0
  353. package/example/node_modules/i18next-http-middleware/lib/languageLookups/path.js +29 -0
  354. package/example/node_modules/i18next-http-middleware/lib/languageLookups/querystring.js +32 -0
  355. package/example/node_modules/i18next-http-middleware/lib/languageLookups/session.js +19 -0
  356. package/example/node_modules/i18next-http-middleware/lib/utils.js +60 -0
  357. package/example/node_modules/i18next-http-middleware/licence +19 -0
  358. package/example/node_modules/i18next-http-middleware/package.json +94 -0
  359. package/example/node_modules/iconv-lite/Changelog.md +162 -0
  360. package/example/node_modules/iconv-lite/LICENSE +21 -0
  361. package/example/node_modules/iconv-lite/README.md +156 -0
  362. package/example/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  363. package/example/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  364. package/example/node_modules/iconv-lite/encodings/index.js +22 -0
  365. package/example/node_modules/iconv-lite/encodings/internal.js +188 -0
  366. package/example/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  367. package/example/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  368. package/example/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  369. package/example/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  370. package/example/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  371. package/example/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  372. package/example/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  373. package/example/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  374. package/example/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  375. package/example/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  376. package/example/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  377. package/example/node_modules/iconv-lite/encodings/utf16.js +177 -0
  378. package/example/node_modules/iconv-lite/encodings/utf7.js +290 -0
  379. package/example/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  380. package/example/node_modules/iconv-lite/lib/extend-node.js +217 -0
  381. package/example/node_modules/iconv-lite/lib/index.d.ts +24 -0
  382. package/example/node_modules/iconv-lite/lib/index.js +153 -0
  383. package/example/node_modules/iconv-lite/lib/streams.js +121 -0
  384. package/example/node_modules/iconv-lite/package.json +77 -0
  385. package/example/node_modules/inherits/LICENSE +16 -0
  386. package/example/node_modules/inherits/README.md +42 -0
  387. package/example/node_modules/inherits/inherits.js +7 -0
  388. package/example/node_modules/inherits/inherits_browser.js +23 -0
  389. package/example/node_modules/inherits/package.json +61 -0
  390. package/example/node_modules/ipaddr.js/LICENSE +19 -0
  391. package/example/node_modules/ipaddr.js/README.md +233 -0
  392. package/example/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  393. package/example/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  394. package/example/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  395. package/example/node_modules/ipaddr.js/package.json +70 -0
  396. package/example/node_modules/media-typer/HISTORY.md +22 -0
  397. package/example/node_modules/media-typer/LICENSE +22 -0
  398. package/example/node_modules/media-typer/README.md +81 -0
  399. package/example/node_modules/media-typer/index.js +270 -0
  400. package/example/node_modules/media-typer/package.json +61 -0
  401. package/example/node_modules/merge-descriptors/HISTORY.md +21 -0
  402. package/example/node_modules/merge-descriptors/LICENSE +23 -0
  403. package/example/node_modules/merge-descriptors/README.md +48 -0
  404. package/example/node_modules/merge-descriptors/index.js +60 -0
  405. package/example/node_modules/merge-descriptors/package.json +69 -0
  406. package/example/node_modules/methods/HISTORY.md +29 -0
  407. package/example/node_modules/methods/LICENSE +24 -0
  408. package/example/node_modules/methods/README.md +51 -0
  409. package/example/node_modules/methods/index.js +69 -0
  410. package/example/node_modules/methods/package.json +79 -0
  411. package/example/node_modules/mime/CHANGELOG.md +164 -0
  412. package/example/node_modules/mime/LICENSE +21 -0
  413. package/example/node_modules/mime/README.md +90 -0
  414. package/example/node_modules/mime/cli.js +8 -0
  415. package/example/node_modules/mime/mime.js +108 -0
  416. package/example/node_modules/mime/package.json +73 -0
  417. package/example/node_modules/mime/src/build.js +53 -0
  418. package/example/node_modules/mime/src/test.js +60 -0
  419. package/example/node_modules/mime/types.json +1 -0
  420. package/example/node_modules/mime-db/HISTORY.md +446 -0
  421. package/example/node_modules/mime-db/LICENSE +22 -0
  422. package/example/node_modules/mime-db/README.md +102 -0
  423. package/example/node_modules/mime-db/db.json +8176 -0
  424. package/example/node_modules/mime-db/index.js +11 -0
  425. package/example/node_modules/mime-db/package.json +102 -0
  426. package/example/node_modules/mime-types/HISTORY.md +333 -0
  427. package/example/node_modules/mime-types/LICENSE +23 -0
  428. package/example/node_modules/mime-types/README.md +123 -0
  429. package/example/node_modules/mime-types/index.js +188 -0
  430. package/example/node_modules/mime-types/package.json +88 -0
  431. package/example/node_modules/ms/index.js +152 -0
  432. package/example/node_modules/ms/license.md +21 -0
  433. package/example/node_modules/ms/package.json +69 -0
  434. package/example/node_modules/ms/readme.md +51 -0
  435. package/example/node_modules/negotiator/HISTORY.md +103 -0
  436. package/example/node_modules/negotiator/LICENSE +24 -0
  437. package/example/node_modules/negotiator/README.md +203 -0
  438. package/example/node_modules/negotiator/index.js +124 -0
  439. package/example/node_modules/negotiator/lib/charset.js +169 -0
  440. package/example/node_modules/negotiator/lib/encoding.js +184 -0
  441. package/example/node_modules/negotiator/lib/language.js +179 -0
  442. package/example/node_modules/negotiator/lib/mediaType.js +294 -0
  443. package/example/node_modules/negotiator/package.json +84 -0
  444. package/example/node_modules/on-finished/HISTORY.md +88 -0
  445. package/example/node_modules/on-finished/LICENSE +23 -0
  446. package/example/node_modules/on-finished/README.md +154 -0
  447. package/example/node_modules/on-finished/index.js +196 -0
  448. package/example/node_modules/on-finished/package.json +73 -0
  449. package/example/node_modules/parseurl/HISTORY.md +58 -0
  450. package/example/node_modules/parseurl/LICENSE +24 -0
  451. package/example/node_modules/parseurl/README.md +133 -0
  452. package/example/node_modules/parseurl/index.js +158 -0
  453. package/example/node_modules/parseurl/package.json +81 -0
  454. package/example/node_modules/path-to-regexp/History.md +36 -0
  455. package/example/node_modules/path-to-regexp/LICENSE +21 -0
  456. package/example/node_modules/path-to-regexp/Readme.md +35 -0
  457. package/example/node_modules/path-to-regexp/index.js +129 -0
  458. package/example/node_modules/path-to-regexp/package.json +59 -0
  459. package/example/node_modules/proxy-addr/HISTORY.md +155 -0
  460. package/example/node_modules/proxy-addr/LICENSE +22 -0
  461. package/example/node_modules/proxy-addr/README.md +155 -0
  462. package/example/node_modules/proxy-addr/index.js +327 -0
  463. package/example/node_modules/proxy-addr/package.json +82 -0
  464. package/example/node_modules/qs/CHANGELOG.md +256 -0
  465. package/example/node_modules/qs/LICENSE +28 -0
  466. package/example/node_modules/qs/README.md +570 -0
  467. package/example/node_modules/qs/dist/qs.js +782 -0
  468. package/example/node_modules/qs/lib/formats.js +18 -0
  469. package/example/node_modules/qs/lib/index.js +11 -0
  470. package/example/node_modules/qs/lib/parse.js +242 -0
  471. package/example/node_modules/qs/lib/stringify.js +269 -0
  472. package/example/node_modules/qs/lib/utils.js +230 -0
  473. package/example/node_modules/qs/package.json +87 -0
  474. package/example/node_modules/qs/test/index.js +7 -0
  475. package/example/node_modules/qs/test/parse.js +676 -0
  476. package/example/node_modules/qs/test/stringify.js +679 -0
  477. package/example/node_modules/qs/test/utils.js +136 -0
  478. package/example/node_modules/range-parser/HISTORY.md +56 -0
  479. package/example/node_modules/range-parser/LICENSE +23 -0
  480. package/example/node_modules/range-parser/README.md +84 -0
  481. package/example/node_modules/range-parser/index.js +162 -0
  482. package/example/node_modules/range-parser/package.json +91 -0
  483. package/example/node_modules/raw-body/HISTORY.md +270 -0
  484. package/example/node_modules/raw-body/LICENSE +22 -0
  485. package/example/node_modules/raw-body/README.md +219 -0
  486. package/example/node_modules/raw-body/index.d.ts +87 -0
  487. package/example/node_modules/raw-body/index.js +286 -0
  488. package/example/node_modules/raw-body/package.json +90 -0
  489. package/example/node_modules/regenerator-runtime/LICENSE +21 -0
  490. package/example/node_modules/regenerator-runtime/README.md +31 -0
  491. package/example/node_modules/regenerator-runtime/package.json +47 -0
  492. package/example/node_modules/regenerator-runtime/path.js +11 -0
  493. package/example/node_modules/regenerator-runtime/runtime.js +729 -0
  494. package/example/node_modules/safe-buffer/LICENSE +21 -0
  495. package/example/node_modules/safe-buffer/README.md +584 -0
  496. package/example/node_modules/safe-buffer/index.d.ts +187 -0
  497. package/example/node_modules/safe-buffer/index.js +62 -0
  498. package/example/node_modules/safe-buffer/package.json +63 -0
  499. package/example/node_modules/safer-buffer/LICENSE +21 -0
  500. package/example/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  501. package/example/node_modules/safer-buffer/Readme.md +156 -0
  502. package/example/node_modules/safer-buffer/dangerous.js +58 -0
  503. package/example/node_modules/safer-buffer/package.json +60 -0
  504. package/example/node_modules/safer-buffer/safer.js +77 -0
  505. package/example/node_modules/safer-buffer/tests.js +406 -0
  506. package/example/node_modules/send/HISTORY.md +496 -0
  507. package/example/node_modules/send/LICENSE +23 -0
  508. package/example/node_modules/send/README.md +329 -0
  509. package/example/node_modules/send/index.js +1129 -0
  510. package/example/node_modules/send/package.json +106 -0
  511. package/example/node_modules/serve-static/HISTORY.md +451 -0
  512. package/example/node_modules/serve-static/LICENSE +25 -0
  513. package/example/node_modules/serve-static/README.md +259 -0
  514. package/example/node_modules/serve-static/index.js +210 -0
  515. package/example/node_modules/serve-static/package.json +77 -0
  516. package/example/node_modules/setprototypeof/LICENSE +13 -0
  517. package/example/node_modules/setprototypeof/README.md +31 -0
  518. package/example/node_modules/setprototypeof/index.d.ts +2 -0
  519. package/example/node_modules/setprototypeof/index.js +17 -0
  520. package/example/node_modules/setprototypeof/package.json +64 -0
  521. package/example/node_modules/setprototypeof/test/index.js +24 -0
  522. package/example/node_modules/statuses/HISTORY.md +65 -0
  523. package/example/node_modules/statuses/LICENSE +23 -0
  524. package/example/node_modules/statuses/README.md +127 -0
  525. package/example/node_modules/statuses/codes.json +66 -0
  526. package/example/node_modules/statuses/index.js +113 -0
  527. package/example/node_modules/statuses/package.json +90 -0
  528. package/example/node_modules/toidentifier/LICENSE +21 -0
  529. package/example/node_modules/toidentifier/README.md +61 -0
  530. package/example/node_modules/toidentifier/index.js +30 -0
  531. package/example/node_modules/toidentifier/package.json +76 -0
  532. package/example/node_modules/type-is/HISTORY.md +259 -0
  533. package/example/node_modules/type-is/LICENSE +23 -0
  534. package/example/node_modules/type-is/README.md +170 -0
  535. package/example/node_modules/type-is/index.js +266 -0
  536. package/example/node_modules/type-is/package.json +85 -0
  537. package/example/node_modules/unpipe/HISTORY.md +4 -0
  538. package/example/node_modules/unpipe/LICENSE +22 -0
  539. package/example/node_modules/unpipe/README.md +43 -0
  540. package/example/node_modules/unpipe/index.js +69 -0
  541. package/example/node_modules/unpipe/package.json +63 -0
  542. package/example/node_modules/utils-merge/LICENSE +20 -0
  543. package/example/node_modules/utils-merge/README.md +34 -0
  544. package/example/node_modules/utils-merge/index.js +23 -0
  545. package/example/node_modules/utils-merge/package.json +66 -0
  546. package/example/node_modules/vary/HISTORY.md +39 -0
  547. package/example/node_modules/vary/LICENSE +22 -0
  548. package/example/node_modules/vary/README.md +101 -0
  549. package/example/node_modules/vary/index.js +149 -0
  550. package/example/node_modules/vary/package.json +78 -0
  551. package/example/package-lock.json +405 -0
  552. package/example/package.json +18 -0
  553. package/example/receiver.html +18 -0
  554. package/example/server.js +37 -0
  555. package/locizify.js +9657 -0
  556. package/locizify.min.js +25 -0
  557. package/package.json +74 -0
  558. package/rollup.config.js +49 -0
@@ -0,0 +1,1165 @@
1
+ ### 19.5.0
2
+
3
+ - language detectors can return an array of languages and let i18next figure out best match
4
+
5
+ - rename option whitelist to supportedLngs
6
+ - rename option nonExpicitWhitelist to nonExplicitSupportedLngs
7
+ - rename function languageUtils.isWhitelisted to languageUtils.isSupportedCode
8
+
9
+ 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.
10
+
11
+ The temporal backwards compatiblity will be removed in a follow up major release.
12
+
13
+ Learn more about why this change was made [here](https://github.com/i18next/i18next/issues/1466).
14
+
15
+ ### 19.4.5
16
+
17
+ - Add store events to typings [1451](https://github.com/i18next/i18next/pull/1451)
18
+
19
+ ### 19.4.4
20
+
21
+ - typescript: Allow passing retry boolean to `ReadCallback` [1439](https://github.com/i18next/i18next/pull/1439)
22
+
23
+ ### 19.4.3
24
+
25
+ - fix regression introduced in "support formatting in nesting" [1419](https://github.com/i18next/i18next/pull/1419)
26
+
27
+ ### 19.4.2
28
+
29
+ - fix for deno [1428](https://github.com/i18next/i18next/pull/1428)
30
+
31
+ ### 19.4.1
32
+
33
+ - add getLanguagePartFromCode as in language fallback resolution [1424](https://github.com/i18next/i18next/pull/1424)
34
+
35
+ ### 19.4.0
36
+
37
+ - support formatting in nesting [1419](https://github.com/i18next/i18next/pull/1419)
38
+
39
+ ### 19.3.4
40
+
41
+ - fix cloning of service.utils binding to clone [1415](https://github.com/i18next/i18next/pull/1415)
42
+
43
+ ### 19.3.3
44
+
45
+ - backendConnector extend initial retry from 250 to 350
46
+
47
+ ### 19.3.2
48
+
49
+ - fix the nested string options parsing introduced in v19.2.0 which broke having multiple options
50
+
51
+ ### 19.3.1
52
+
53
+ - typescript: add `options.interpolation.nestingOptionsSeparator`
54
+
55
+ ### 19.3.0
56
+
57
+ - Double fix for 1395 issue [1399](https://github.com/i18next/i18next/pull/1399)
58
+ - adds `options.interpolation.nestingOptionsSeparator: ','` to specify that separator
59
+
60
+ ### 19.2.0
61
+
62
+ - Add ability to use commas in nested keys [1398](https://github.com/i18next/i18next/pull/1398)
63
+
64
+ ### 19.1.0
65
+
66
+ - explict warning when no languageDetector is used and no lng is defined [1381](https://github.com/i18next/i18next/pull/1381)
67
+ - Add option to always format interpolated values [1385](https://github.com/i18next/i18next/pull/1385)
68
+ - pass all options to format function [992#issuecomment-577797162](https://github.com/i18next/i18next/issues/992#issuecomment-577797162)
69
+
70
+ ### 19.0.3
71
+
72
+ - fixes retry interval in backend connector [1378](https://github.com/i18next/i18next/issues/1378)
73
+
74
+ ### 19.0.2
75
+
76
+ - typescript: Type ResourceStore [1366](https://github.com/i18next/i18next/pull/1366)
77
+
78
+ ### 19.0.1
79
+
80
+ - ignore non valid keys in saveMissing [1359](https://github.com/i18next/i18next/pull/1359)
81
+
82
+ ### 19.0.0
83
+
84
+ - typescript: Typescript use `export default` for esm-first approach [1352](https://github.com/i18next/i18next/pull/1352)
85
+
86
+ ### 18.0.1
87
+
88
+ - check loadedNamespace only once per lng-ns inside using `t` for better performance
89
+
90
+ ### 18.0.0
91
+
92
+ - 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.
93
+
94
+ - **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.
95
+
96
+ - 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...
97
+
98
+ - How can I get the language i18next will be set to? `i18next.isLanguageChangingTo` is set to the language called
99
+
100
+ ### 17.3.1
101
+
102
+ - typescript: Add missing `cleanCode` option to TypeScript def [1344](https://github.com/i18next/i18next/pull/1344)
103
+
104
+ ### 17.3.0
105
+
106
+ - pass used language & namespace to postprocessor [1341](https://github.com/i18next/i18next/pull/1341)
107
+
108
+ ### 17.2.0
109
+
110
+ - Support using ImmutableJS Records as the data model in interpolation [1339](https://github.com/i18next/i18next/pull/1339)
111
+
112
+ ### 17.1.0
113
+
114
+ DX improvements:
115
+
116
+ - warning if accessing t before i18next was initialized or namespace loaded
117
+ - warning and cancelling save if saveMissing key before i18next was initialized or namespace loaded
118
+
119
+ 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.
120
+
121
+ ### 17.0.18
122
+
123
+ - Improve performance of EventEmitter.off [1333](https://github.com/i18next/i18next/pull/1333)
124
+
125
+ ### 17.0.17
126
+
127
+ - 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)
128
+
129
+ ### 17.0.16
130
+
131
+ - typescript: fix incorrect callback type for backend module read callback [1322](https://github.com/i18next/i18next/pull/1322)
132
+ - typescript: add getDataByLanguage into index.d.ts [1326](https://github.com/i18next/i18next/pull/1326)
133
+
134
+ ### 17.0.15
135
+
136
+ - Fixed default value as string in IE [1325](https://github.com/i18next/i18next/pull/1325)
137
+
138
+ ### 17.0.14
139
+
140
+ - typescript: Allow TFunction to receive 1-3 parameters [1317](https://github.com/i18next/i18next/pull/1317)
141
+
142
+ ### 17.0.13
143
+
144
+ - fixes: Interpolation defaultVariables not recognized on t() [1314](https://github.com/i18next/i18next/issues/1314)
145
+
146
+ ### 17.0.12
147
+
148
+ - remove unused Interpolator#init reset param (only used internally) [1313](https://github.com/i18next/i18next/pull/1313)
149
+ - Cope with null interpolation (unescaped case) [1310](https://github.com/i18next/i18next/pull/1310)
150
+
151
+ ### 17.0.11
152
+
153
+ - fix issue with unset value in interpolation throwing exception
154
+ - typescript: Allow augmentation of TFunction to be able to add overloads [1308](https://github.com/i18next/i18next/pull/1308)
155
+
156
+ ### 17.0.10
157
+
158
+ - Update Interpolator.js to use regexSafe for unescaped interpolation [1307](https://github.com/i18next/i18next/pull/1307)
159
+
160
+ ### 17.0.9
161
+
162
+ - typescript: use() should accept a class or object [1301](https://github.com/i18next/i18next/pull/1301)
163
+
164
+ ### 17.0.8
165
+
166
+ - typescript: Correct `use(module)` types [1296](https://github.com/i18next/i18next/pull/1296)
167
+
168
+ ### 17.0.7
169
+
170
+ - typescript: Typescript imports [1291](https://github.com/i18next/i18next/pull/1291)
171
+ - Disabled default returnedObjectHandler [1288](https://github.com/i18next/i18next/pull/1288)
172
+
173
+ ### 17.0.6
174
+
175
+ - support montenegrien "crn" plurals
176
+
177
+ ### 17.0.4
178
+
179
+ - typescript: ResourceKey type should allow top level string value [1267](https://github.com/i18next/i18next/pull/1267)
180
+
181
+ ### 17.0.3
182
+
183
+ - don't do named exports for umd
184
+
185
+ ### 17.0.2
186
+
187
+ - typescript: Allow null as TResult [1263](https://github.com/i18next/i18next/pull/1263)
188
+ - bring back ./i18next.js and ./i18next.min.js -> used by wildcard unpkg users...<= bad idea doing so
189
+ - main export in package.json points to cjs dist
190
+
191
+ ### 17.0.1
192
+
193
+ - adapt ./index.js to 17.0.0 export
194
+
195
+ ### 17.0.0
196
+
197
+ - 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)
198
+ - 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;`
199
+ - **impact** you can't no longer `import { changeLanguage } from 'i18next'; changeLanguage('de');` you will have to `import i18next from 'i18next'; i18next.changeLanguage('de');`
200
+ - **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)
201
+
202
+ ### 16.0.0
203
+
204
+ - removes deprecated jsnext:main from package.json
205
+ - Bundle all entry points with rollup [1256](https://github.com/i18next/i18next/pull/1256)
206
+ - **note:** dist/es -> dist/esm, dist/commonjs -> dist/cjs (individual files -> one bundled file)
207
+
208
+ ### 15.1.3
209
+
210
+ - typescript: Fix type error when init with locize plugin options [1248](https://github.com/i18next/i18next/pull/1248)
211
+
212
+ ### 15.1.2
213
+
214
+ - typescript: types(ReactOptions): Add missing props to React Options interface [1247](https://github.com/i18next/i18next/pull/1247)
215
+
216
+ ### 15.1.1
217
+
218
+ - typescript: Update BackendModule interface to allow null or undefined for the callback [1244](https://github.com/i18next/i18next/pull/1244)
219
+
220
+ ### 15.1.0
221
+
222
+ - trigger a languageChanging event
223
+
224
+ ### 15.0.9
225
+
226
+ - IE: <=IE10 fix (unable to call parent constructor) [1227](https://github.com/i18next/i18next/pull/1227)
227
+
228
+ ### 15.0.8
229
+
230
+ - typescript: adding init function to 3rdParty module typings and enforcing type property [1223](https://github.com/i18next/i18next/pull/1223)
231
+
232
+ ### 15.0.7
233
+
234
+ - typescript: Add useSuspense to ReactOptions, fix error throwing on test [1219](https://github.com/i18next/i18next/pull/1219)
235
+
236
+ ### 15.0.6
237
+
238
+ - typescript: add Interpolator interface [1213](https://github.com/i18next/i18next/pull/1213)
239
+
240
+ ### 15.0.5
241
+
242
+ - typescript: Add `hashTransKey` to `ReactOptions` [1208](https://github.com/i18next/i18next/pull/1208)
243
+ - Expose error on reloadResources [1212](https://github.com/i18next/i18next/pull/1212)
244
+
245
+ ### 15.0.4
246
+
247
+ - add default export on node.js entry [1204](https://github.com/i18next/i18next/pull/1204)
248
+ - typescript: Add defaultValue tests and allow second arg string as defaultValue [1206](https://github.com/i18next/i18next/pull/1206)
249
+
250
+ ### 15.0.3
251
+
252
+ - typescript: accept templatestringsarray as TKey [1199](https://github.com/i18next/i18next/pull/1199)
253
+ - allow arrays on addResources
254
+
255
+ ### 15.0.2
256
+
257
+ - try fixing UMD build
258
+
259
+ ### 15.0.1
260
+
261
+ - fix export name on global (typo)
262
+
263
+ ### 15.0.0
264
+
265
+ - update build process (while all test passes feeling more save making this a major release)
266
+
267
+ ### 14.1.1
268
+
269
+ - allow empty string for array join [1191](https://github.com/i18next/i18next/issues/1191)
270
+
271
+ ### 14.1.0
272
+
273
+ - support plurals in returning objecttree array [1196](https://github.com/i18next/i18next/issues/1196)
274
+
275
+ ### 14.0.1
276
+
277
+ - typescript: Parameterized use of TFunction fails while WithT use works [1188](https://github.com/i18next/i18next/pull/1188)
278
+
279
+ ### 14.0.0
280
+
281
+ - typescript: BREAKING Refactor generics usage [1180](https://github.com/i18next/i18next/pull/1180)
282
+
283
+ ### 13.1.5
284
+
285
+ - es modules: Fix bug when import by ES Module [1179](https://github.com/i18next/i18next/pull/1179)
286
+ - typescript: Add module property [1176](https://github.com/i18next/i18next/pull/1176)
287
+
288
+ ### 13.1.4
289
+
290
+ - 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)
291
+
292
+ ### 13.1.3
293
+
294
+ - TypeScript: Pull up WithT interface allowing for overrides [1172](https://github.com/i18next/i18next/pull/1172)
295
+
296
+ ### 13.1.2
297
+
298
+ - Add typescript testing [1165](https://github.com/i18next/i18next/pull/1165)
299
+ - Add `transEmptyNodeValue` to `ReactOptions` [1166](https://github.com/i18next/i18next/pull/1166)
300
+ - Run prettier on typescript files for easier diffing in PRs [1167](https://github.com/i18next/i18next/pull/1167)
301
+
302
+ ### 13.1.1
303
+
304
+ - fix init() attributes typings [1158](https://github.com/i18next/i18next/pull/1158)
305
+
306
+ ### 13.1.0
307
+
308
+ - Support interpolation for defaultValue as parameter [1151](https://github.com/i18next/i18next/pull/1151)
309
+
310
+ ### 13.0.1
311
+
312
+ - update typedefinitions [1152](https://github.com/i18next/i18next/pull/1152)
313
+
314
+ ### 13.0.0
315
+
316
+ - pass options to missingInterpolationHandler [1146](https://github.com/i18next/i18next/pull/1146)
317
+ - refactor non valid keys handling [1143](https://github.com/i18next/i18next/pull/1143)
318
+
319
+ BREAKING:
320
+
321
+ - adds typescript definitions directly into this repo - no longer need to grab them from definitlytyped [1142](https://github.com/i18next/i18next/pull/1142)
322
+ - 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
323
+
324
+ ### 12.1.0
325
+
326
+ - adds partialBundledLanguages flag in init options [1136](https://github.com/i18next/i18next/pull/1136)
327
+
328
+ ### 12.0.0
329
+
330
+ - add hebrew update [1121](https://github.com/i18next/i18next/pull/1121)
331
+
332
+ ### 11.10.2
333
+
334
+ - revert hebrew
335
+
336
+ ### 11.10.1
337
+
338
+ - Adds Hebrew plural support [1121](https://github.com/i18next/i18next/pull/1121)
339
+
340
+ ### 11.10.0
341
+
342
+ - Allow missingInterpolationHandler to be provided as t() option [1118](https://github.com/i18next/i18next/pull/1118)
343
+
344
+ ### 11.9.1
345
+
346
+ - fixes allow overriding of fallbackLng when in options passed to t functions call
347
+
348
+ ### 11.9.0
349
+
350
+ - merge load and reloadResources functionality to allow an optional callback in reloadResources
351
+
352
+ ### 11.8.0
353
+
354
+ - deeper support for i18nFormats - add getResource function from format
355
+
356
+ ### 11.7.0
357
+
358
+ - 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)
359
+
360
+ ### 11.6.0
361
+
362
+ - expose new store function getDataByLanguage [1087](https://github.com/i18next/i18next/pull/1087)
363
+
364
+ ### 11.5.0
365
+
366
+ - EventEmitter.prototype.on returns this for chaining calls [1079](https://github.com/i18next/i18next/pull/1079)
367
+
368
+ ### 11.4.0
369
+
370
+ - Allow to pass raw value to the custom interpolation escape function [1076](https://github.com/i18next/i18next/pull/1076)
371
+
372
+ ### 11.3.6
373
+
374
+ - fix support zero for saveMissing plurals [1072](https://github.com/i18next/i18next/pull/1072)
375
+
376
+ ### 11.3.5
377
+
378
+ - 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)
379
+
380
+ ### 11.3.4
381
+
382
+ - fixes simplifyPluralSuffix: false cases for languages having only singular, plural [1069](https://github.com/i18next/i18next/issues/1069)
383
+
384
+ ### 11.3.3
385
+
386
+ - pass down resolved to i18nFormat.parse as last argument
387
+
388
+ ### 11.3.2
389
+
390
+ - Properly handle arguments containing arrays while listening to a wildcard event [1052](https://github.com/i18next/i18next/pull/1052)
391
+
392
+ ### 11.3.1
393
+
394
+ - Fixes allowing setting keySeparator to false in calling t function [1051](https://github.com/i18next/i18next/pull/1051)
395
+
396
+ ### 11.3.0
397
+
398
+ - Option to skip interpolation when calling t. [1050](https://github.com/i18next/i18next/pull/1050)
399
+
400
+ ### 11.2.3
401
+
402
+ - Remove unnecessary warning when value is empty string [1046](https://github.com/i18next/i18next/pull/1046)
403
+
404
+ ### 11.2.2
405
+
406
+ - adds used key to call parse of i18nFormat
407
+
408
+ ### 11.2.1
409
+
410
+ - fixes for i18nFormat plugin
411
+
412
+ ### 11.2.0
413
+
414
+ - allows new plugin of type 'i18nFormat' to override i18next format with eg. ICU format
415
+
416
+ ### 11.0.0 - 11.1.1 (fixing version mismatch cdn.js - npm)
417
+
418
+ - **[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)
419
+ - **[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)
420
+
421
+ ### 10.6.0
422
+
423
+ - adds missingInterpolationHandler [1039](https://github.com/i18next/i18next/pull/1039)
424
+
425
+ ### 10.5.1
426
+
427
+ - fixes call to getPluralFormsOfKey if called with unsupported language [1032](https://github.com/i18next/i18next/issues/1032)
428
+ - Avoid mutating whitelist array. [1037](https://github.com/i18next/i18next/pull/1037)
429
+
430
+ ### 10.5.0
431
+
432
+ - Adds options.silent to addResources and addResourceBundle [1024](https://github.com/i18next/i18next/pull/1024)
433
+
434
+ ### 10.4.1
435
+
436
+ - forward options in backend.create saveMissing
437
+
438
+ ### 10.4.0
439
+
440
+ - 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)
441
+ - _[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.
442
+
443
+ ### 10.3.0
444
+
445
+ - new option saveMissingPlurals (default true) will enable submitting plural forms on saveMissing if t call is for plural (count passed in options).
446
+
447
+ ### 10.2.2
448
+
449
+ - fixes Context and nested lost initial options [1009](https://github.com/i18next/i18next/issues/1009)
450
+
451
+ ### 10.2.1
452
+
453
+ - optimize update output in log
454
+
455
+ ### 10.2.0
456
+
457
+ - _[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)
458
+
459
+ ### 10.1.0
460
+
461
+ - return boolean, number from translator
462
+ - initial set language on translator if non set yet (after that only if loaded) [#998](https://github.com/i18next/i18next/issues/998)
463
+
464
+ ### 10.0.7
465
+
466
+ - support all overloadTranslationOptionHandler in getFixedT [react-i18next/issues/332](https://github.com/i18next/react-i18next/issues/332)
467
+
468
+ ### 10.0.6
469
+
470
+ - native browser es modules via adding .js where needed [PR980](https://github.com/i18next/i18next/pull/980)
471
+
472
+ ### 10.0.5
473
+
474
+ - should fix sync of options in clone and its translator
475
+
476
+ ### 10.0.2
477
+
478
+ - fixes issue in object return when passing in multiple keys
479
+
480
+ ### 10.0.1
481
+
482
+ - fixes support for using suffix `_0` on languages only having "singular" form
483
+
484
+ ### 10.0.0
485
+
486
+ - **[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
487
+
488
+ ### 9.1.0
489
+
490
+ - support for using suffix `_0` on languages only having "singular" form enables easier convert in tool chains
491
+
492
+ ### 9.0.1
493
+
494
+ - propagate changeLanguage to translator after loadResources
495
+
496
+ ### 9.0.0
497
+
498
+ - **[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)
499
+ - removes the compatibility options to i18next v1
500
+ - allows passing in second param as string on getFixedT returned t function so we could use that as defaultValue
501
+ - add setting maxReplaces in interpolation options to prevent endless loop in interpolation
502
+
503
+ ### 8.4.3
504
+
505
+ - getFixedT lng parameter of array type -> pass as lngs to t function [PR949](https://github.com/i18next/i18next/pull/949)
506
+
507
+ ### 8.4.2
508
+
509
+ - fixes merging options in clone instance...do not override passed values by values on main instance
510
+
511
+ ### 8.4.1
512
+
513
+ - emits correct lng to changeLanguage event (fixes async detection behaviour) [PR933](https://github.com/i18next/i18next/pull/933)
514
+
515
+ ### 8.4.0
516
+
517
+ - expose i18next.options.interpolation.format on i18next.format
518
+ - i18next.dir if not passing lng use first of i18next.languages before using i18next.language
519
+
520
+ ### 8.3.0
521
+
522
+ - allows nesting objects/arrays into objects [#925](https://github.com/i18next/i18next/issues/925)
523
+
524
+ ### 8.2.1
525
+
526
+ - fixes issue in async lng detection
527
+
528
+ ### 8.2.0
529
+
530
+ - supports now async language detection - when language detector has member async = true
531
+
532
+ ### 8.1.0
533
+
534
+ - option to disable nesting by calling `i18next.t('key', { nest: false })` [PR920](https://github.com/i18next/i18next/pull/920)
535
+ - fixes passing lng from options to formatter function if available
536
+
537
+ ### 8.0.0
538
+
539
+ - 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.
540
+
541
+ ### 7.2.3
542
+
543
+ - rebuild seems we had a mistake in pushing latest build
544
+
545
+ ### 7.2.2
546
+
547
+ - fixes issue in accepting string as a result of "nested" lookup [PR909](https://github.com/i18next/i18next/pull/909)
548
+
549
+ ### 7.2.1
550
+
551
+ - fixes iterating over object's own properties [#904](https://github.com/i18next/i18next/pull/904)
552
+
553
+ ### 7.2.0
554
+
555
+ - new init option simplifyPluralSuffix - setting it to false will treat all plurals using suffix numbers even for locals only having singular and plural
556
+ - even if no lng set or detected at least load the fallback languages
557
+ - delay init call on createInstance if not set initImmediate to false [#879](https://github.com/i18next/i18next/issues/879)
558
+
559
+ ### 7.1.3
560
+
561
+ - fixes issue in returnObject tree called with options including ns: [react-i18next #240](https://github.com/i18next/react-i18next/issues/240)
562
+
563
+ ### 7.1.2
564
+
565
+ - remove regex escape from format separators [#896](https://github.com/i18next/i18next/pull/896)
566
+
567
+ ### 7.1.1
568
+
569
+ - change to named plugins for 3rd party - just calling init
570
+
571
+ ### 7.1.0
572
+
573
+ - add option to include plugins not directly related - they get called their init function with current instance of i18next on init
574
+
575
+ ### 7.0.1
576
+
577
+ - fix issue in fallback lng detection if no code was detected
578
+ - check for having a lng in append when searching locals to load on loadResources - avoid error on express middleware
579
+
580
+ ### 7.0.0
581
+
582
+ - [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:
583
+
584
+ fallbackLng: {
585
+ 'nb': ['no', 'en'],
586
+ 'nn': ['no', 'en'],
587
+ 'default': ['en']
588
+ }
589
+
590
+ - adding exports for named import (destruction es6) [#873](https://github.com/i18next/i18next/issues/873)
591
+ - change entry point for umd build to /src/i18next to avoid mixed export
592
+ - 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)
593
+ - update all build dependencies
594
+
595
+ ### 6.1.2
596
+
597
+ - fixes fix in 6.1.1
598
+
599
+ ### 6.1.1
600
+
601
+ - 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
602
+
603
+ ### 6.1.0
604
+
605
+ - you now can use same nsSeparator and keySeparator (eg. use a dot for both)
606
+
607
+ ### 6.0.3
608
+
609
+ - do not loop over objectTree if keySeparator is set to false
610
+
611
+ ### 6.0.2
612
+
613
+ - fixes init flow of clone
614
+
615
+ ### 6.0.1
616
+
617
+ - fixes issue in event emitter, assert all emitters get called even if one called get removed and changes the array index
618
+
619
+ ### 6.0.0
620
+
621
+ - 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)
622
+
623
+ ### 5.0.0
624
+
625
+ - Nested keys should not be escaped by default [#854](https://github.com/i18next/i18next/issues/854)
626
+ - Make sure i18next.init() runs for i18next.cloneInstance() [#860](https://github.com/i18next/i18next/pull/860)
627
+
628
+ ### 4.2.0
629
+
630
+ - adds i18next.isInitialized when isInitialized
631
+ - triggers backend loaded event before initialized
632
+
633
+ ### 4.1.3 / 4.1.4
634
+
635
+ - smaller changes suggested to still inofficial support ie8 [#852](https://github.com/i18next/i18next/issues/852)
636
+
637
+ ### 4.1.2
638
+
639
+ - fixes same interpolation object with multiple getFixedT() in different locales yields wrong translation [#851](https://github.com/i18next/i18next/issues/851)
640
+ - updated all build deps
641
+
642
+ ### 4.1.1
643
+
644
+ - remove subs array from logger - no longer keep changing debug flag on subs if changing on main
645
+
646
+ ### 4.1.0
647
+
648
+ - Custom escape function, single-quotes in nested [#843](https://github.com/i18next/i18next/pull/843)
649
+
650
+ ### 4.0.0
651
+
652
+ - [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)
653
+
654
+ ### 3.5.2
655
+
656
+ - remove the module entry point again will be added in 4.0.0
657
+
658
+ ### 3.5.1
659
+
660
+ - fix build output add a test file to test the generated build
661
+
662
+ ### 3.5.0
663
+
664
+ - Setting options on individual translations override, rather than merge global configs [#832](https://github.com/i18next/i18next/issues/832)
665
+ - Create an new translator when cloning i18next instance [#834](https://github.com/i18next/i18next/pull/834)
666
+ - allows fallbackLng to be an string, an array or an object defining fallbacks for lng, lng-region plus default, eg
667
+
668
+ fallbackLng: {
669
+ 'de-CH': ['fr', 'it', 'en'],
670
+ 'de': ['fr', 'en'],
671
+ 'zh-Hans': ['zh-Hant', 'en'],
672
+ 'zh-Hant': ['zh-Hans', 'en'],
673
+ 'default': ['en']
674
+ }
675
+
676
+ ### 3.4.4
677
+
678
+ - Fix Interpolator.escapeValue defaulting to undefined in some cases [#826](https://github.com/i18next/i18next/issues/826)
679
+
680
+ ### 3.4.3
681
+
682
+ - Fix Interpolator formatter exception error propagation due to not reset RegExp indices [#820](https://github.com/i18next/i18next/issues/820)
683
+
684
+ ### 3.4.2
685
+
686
+ - assert dir function does not crash if no language available
687
+
688
+ ### 3.4.1
689
+
690
+ - fix issue with format containing formatSeparator for interpolation formatting
691
+
692
+ ### 3.4.0
693
+
694
+ - 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)
695
+
696
+ ### 3.3.1
697
+
698
+ - fixed an issue with several unescaped key in the interpolation string [#746](https://github.com/i18next/i18next/pull/746)
699
+
700
+ ### 3.3.0
701
+
702
+ - allows option `nonExplicitWhitelist` on init [#741](https://github.com/i18next/i18next/pull/741)
703
+
704
+ ### 3.2.0
705
+
706
+ - adds api function i18next.reloadResources(), i18next.reloadResources(lngs, ns) to trigger a reload of translations
707
+
708
+ ### 3.1.0
709
+
710
+ - emits missingKey always (like console.log) even if saveMissing is of -> use missingKeyHandler if you only want the trigger only on saveMissing: true
711
+
712
+ ### 3.0.0
713
+
714
+ - **[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.
715
+ - **[BREAKING]** AMD export will be unnamed now
716
+ - don't call saveMissing if no lng
717
+
718
+ ### 2.5.1
719
+
720
+ - fixes rtl support [#656](https://github.com/i18next/i18next/pull/656/files)
721
+
722
+ ### 2.5.0
723
+
724
+ - allow null or empty string as defaultValue
725
+ - init option `initImmediate (default: true)` to init without immediate
726
+
727
+ ### 2.4.1
728
+
729
+ - if passing resources don't immediate loading fixes [#636](https://github.com/i18next/i18next/issues/636)
730
+
731
+ ### 2.4.0
732
+
733
+ - support now language code variants with scripts and other exotic forms: zh-Hans-MO, sgn-BE-fr, de-AT-1996,...
734
+ - trigger of changeLanguage, load of data with a setTimeout to allow other operations meanwhile
735
+
736
+ ### 2.3.5
737
+
738
+ - Only add language to preload array when new [#613](https://github.com/i18next/i18next/pull/613/files)
739
+
740
+ ### 2.3.4
741
+
742
+ - get babel 6 output IE compatible: https://jsfiddle.net/jamuhl/2qc7oLf8/
743
+
744
+ ### 2.3.2
745
+
746
+ - add index to make export compatible again
747
+
748
+ ### 2.3.1
749
+
750
+ - build /dist/es with included babelhelpers
751
+
752
+ ### 2.3.0
753
+
754
+ - 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,...)
755
+ - fixes detection when using both context and pluralization and context not found. [#851](https://github.com/i18next/i18next/pull/581)
756
+
757
+ ### 2.2.0
758
+
759
+ - return instance after init for further chaning
760
+ - make init optional on backend, cache
761
+ - 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,...)
762
+
763
+ ### 2.1.0
764
+
765
+ - allow keySeparator, nsSeparator = false to turn that off
766
+
767
+ ### 2.0.26
768
+
769
+ - extended emitted arguments on 'added' event
770
+
771
+ ### 2.0.24
772
+
773
+ - fixes unneeded reload of resources that failed to load
774
+
775
+ ### 2.0.23
776
+
777
+ - fixes returnObjects in case of multiple namespaces
778
+
779
+ ### 2.0.22
780
+
781
+ - add options for context, pluralSeparator
782
+
783
+ ### 2.0.21
784
+
785
+ - clear done load request in backendConnector
786
+
787
+ ### 2.0.20
788
+
789
+ - pass full options to detectors as third arg
790
+
791
+ ### 2.0.19
792
+
793
+ - do not callback err in backendConnector if no backend is specified
794
+
795
+ ### 2.0.18
796
+
797
+ - check for fallbackLng exist
798
+
799
+ ### 2.0.17
800
+
801
+ - adds cimode to options.whitelist if set
802
+ - emits failedLoading on load error
803
+
804
+ ### 2.0.16
805
+
806
+ - adds addResource to i18next API
807
+ - fix init of i18next without options, callback
808
+
809
+ ### 2.0.15
810
+
811
+ - avoid loading of resources for lng=cimode
812
+
813
+ ### 2.0.14
814
+
815
+ - enhance callback on load from backend...wait for pendings
816
+
817
+ ### 2.0.10
818
+
819
+ - fixing build chain
820
+ - do not post process on nested translation resolve
821
+
822
+ ### 2.0.5
823
+
824
+ - fixing allow nesting on interpolated nesting vars
825
+
826
+ ### 2.0.4
827
+
828
+ - don't log lng changed if no lng was detected
829
+ - extend result on arrayJoins
830
+
831
+ ### 2.0.1
832
+
833
+ - assert defaults are arrays where needed
834
+ - assert calling lngUtils.toResolveHierarchy does not add undefined as code if called without code param
835
+
836
+ ### 2.0.0
837
+
838
+ - complete rewrite of i18next codebase
839
+
840
+ ---
841
+
842
+ ### 1.11.2
843
+
844
+ - replace forEach loop to support IE8 [PR 461](https://github.com/i18next/i18next/pull/461)
845
+
846
+ ### 1.11.1
847
+
848
+ - fixes issue in nesting using multiple namespaces and lookups in fallback namespaces
849
+ - Fix use of sprintf as shortcutFunction when first argument falsey [PR 453](https://github.com/i18next/i18next/pull/453)
850
+
851
+ ### 1.11.0
852
+
853
+ - Add nsseparator and keyseparator as options to translation function [PR 446](https://github.com/i18next/i18next/pull/446)
854
+ - Resolves issue #448 - TypeScript errors [PR 449](https://github.com/i18next/i18next/pull/449)
855
+ - Fixing \_deepExtend to handle keys deep existing in source and target [PR 444](https://github.com/i18next/i18next/pull/444)
856
+ - `resource` to `resources` in addResources function [PR 440](https://github.com/i18next/i18next/pull/440)
857
+ - Runs multiple post processes for missing translations [PR 438](https://github.com/i18next/i18next/pull/438)
858
+ - Add support to override Ajax HTTP headers [PR 431](https://github.com/i18next/i18next/pull/431)
859
+ - Fixed mnk plural definition [PR 427](https://github.com/i18next/i18next/pull/427)
860
+ - Add dir function to return directionality of current language, closes… [PR 413](https://github.com/i18next/i18next/pull/413)
861
+
862
+ ### 1.10.3
863
+
864
+ - fixes issue where lng get fixed on data-i18n-options
865
+ - [SECURITY] merges Reimplement XSS-vulnerable sequential replacement code [PR 443](https://github.com/i18next/i18next/pull/443)
866
+
867
+ ### 1.10.2
868
+
869
+ - streamline callback(err, t) for case where resStore is passed in
870
+
871
+ ### 1.10.1
872
+
873
+ - fixes Adds jquery like functionality without the jquery plugin. [PR 403](https://github.com/i18next/i18next/pull/403) by adding it to output
874
+
875
+ ### 1.10.0
876
+
877
+ - [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)
878
+ - fix fallback lng option during translations [PR 399](https://github.com/i18next/i18next/pull/399)
879
+ - Adds jquery like functionality without the jquery plugin. [PR 403](https://github.com/i18next/i18next/pull/403)
880
+
881
+ ### 1.9.1
882
+
883
+ - fix fallback lng option during translations [PR 399](https://github.com/i18next/i18next/pull/399)
884
+ - Adds jquery like functionality without the jquery plugin. [PR 403](https://github.com/i18next/i18next/pull/403)
885
+
886
+ ### 1.9.0
887
+
888
+ - i18n.noConflict() [PR 371](https://github.com/i18next/i18next/pull/371)
889
+ - fix fallback to default namepsace when namespace passed as an option [PR 375](https://github.com/i18next/i18next/pull/375)
890
+ - cache option for ajax requests [PR 376](https://github.com/i18next/i18next/pull/376)
891
+ - option to show key on value is empty string [PR 379](https://github.com/i18next/i18next/pull/379)
892
+ - Add isInitialized method [PR 380](https://github.com/i18next/i18next/pull/380)
893
+ - Null check for detectLngFromLocalStorage [PR 384](https://github.com/i18next/i18next/pull/384)
894
+ - support for adding timeout in configuration for ajax request [PR 387](https://github.com/i18next/i18next/pull/387)
895
+
896
+ ### 1.8.2
897
+
898
+ - fixes build of commonjs with jquery file
899
+
900
+ ### 1.8.0
901
+
902
+ - [BREAKING] adds custom build for commonjs with jquery...default will be without require for jquery
903
+ - fixes issue [issue 360](https://github.com/i18next/i18next/issues/360)
904
+ - expose applyReplacement on api
905
+ - save resources to localStorage when useLocaleStore is true
906
+ - add support on key is a number
907
+ - added getResourceBundle to API
908
+ - allow multiple post-processors
909
+ - fallback to singular if no plural is found fixes issue [issue 356](https://github.com/i18next/i18next/issues/356)
910
+ - access localstorage always with try catch fixes issue [issue 353](https://github.com/i18next/i18next/issues/353)
911
+
912
+ ### 1.7.7
913
+
914
+ - fixes issue with stack overflow on t(lng, count)
915
+ - fixes empty value fallback when processing secondary ns
916
+
917
+ ### 1.7.6
918
+
919
+ - fixes lng detection (i18next-client on npm)
920
+
921
+ ### 1.7.5
922
+
923
+ - adds option to define defaultOptions, which gets merged into t(options) [issue 307](https://github.com/i18next/i18next/issues/307)
924
+ - optimization of size added by plural rules
925
+ - handle error on json parse when using internal xhr
926
+ - fixes plural/singular on count if going on fallbacks eg. fr --> en
927
+ - fixes global leak of sync in amd versions
928
+ - apply options.lowerCaseLng to fallbackLng too
929
+ - added hasResourceBundle(lng, ns) to check if bundle exists
930
+ - added experimental i18n.sync.reload --> resets resStore and reloads resources
931
+ - catch issues with localStorage quota
932
+ - changes detectlanguage to support whitelist entries
933
+
934
+ ### 1.7.4
935
+
936
+ - add resource bundle gets deep extend flag i18n.addResourceBundle(lng, ns, { 'deep': { 'key2': 'value2' }}, true);
937
+ - new functions to add one key value or multiple i18n.addResource(lng, ns, key, value);, i18n.addResources(lng, ns, {'key1': 'value1', 'deep.key2': 'value2'});
938
+ - lngWhitelist merged
939
+ - override postMissing function
940
+ - allow floats for count
941
+ - added indefinite functionality for plurals
942
+ - optional set replacing vars to replace member to avoid collision with other options
943
+ - experimental optional detectLngFromLocalStorage
944
+ - fix for norwegian language
945
+
946
+ ### 1.7.3
947
+
948
+ - solves issue with ie8 not providing .trim function on string -> added to shim
949
+ - set data using \$(selector).i18n() on data-i18n='[data-someDataAttr]key'
950
+ - more bullet proof state handling on failed file load
951
+ - corrected latvian plurals based on [issue 231](https://github.com/jamuhl/i18next/issues/231)
952
+ - allow array of fallback languages
953
+ - allow int in values passed to shortcut sprintf
954
+ - setLng to 'cimode' will trigger a CI mode returning 'key' instead of translation
955
+
956
+ ### 1.7.2
957
+
958
+ - introducing option fallbackOnEmpty -> empty string will fallback
959
+ - added function removeResourceBundle(lng, ns) -> removes a resource set
960
+ - fixed issue with no option passed to setLng
961
+ - added ability to prepend, append content with data-i18n attributes
962
+ - introducing objectTreeKeyHandler
963
+ - fixes issue with i18n.t(null), i18n.t(undefined) throwing exception
964
+ - returnObjectTrees does not mangle arrays, functions, and regexps
965
+ - optimized structure for bower support
966
+
967
+ ### 1.7.1
968
+
969
+ - fixed some typo
970
+ - allow translate to take an array of keys - take first found
971
+ - allow numbers in object trees
972
+
973
+ ### 1.7.0
974
+
975
+ - test if initialisation finished before allowing calling t function
976
+ - setting option fixLng=true will return t function on init or setLng with the lng fixed for every subsequent call to t
977
+ - grab key from content if attr data-i18n has no value
978
+ - setting shortcutFunction to 'defaultValue' allows calling i18n.t(key, defaultValue)
979
+ - empty string in defaultValue is now valid no longer displaying key
980
+ - allow option cookieDomain
981
+ - fixes issue #115 out of stack exception in IE8 by recursing \_translate in objectTrees
982
+
983
+ ### 1.6.3
984
+
985
+ - option to parse key if missing
986
+ - fixes issue where plural don't get translated if language is passed in t options
987
+ - fixes issue where key or defaultValue aren't postProcessed with itself as value
988
+ - fixes issue with fallbackLng = false in combination with sendMissingTo = fallback
989
+ - fixes namespace fallback loop to only loop if array has really a ns in it
990
+
991
+ ### 1.6.2
992
+
993
+ - fixes some var typo
994
+ - fixes sendMissing to correct namespace
995
+ - fixes sendMissing in combination with fallbackNS
996
+
997
+ ### 1.6.1
998
+
999
+ - PR #106 optionally un/escape interpolated content
1000
+ - PR #101 automatic gettext like sprintf syntax detection + postprocess injection
1001
+ - customload will get called on dynamicLoad too
1002
+ - fixes namespace array settings if loaded resourcebundle or additional namespaces
1003
+ - lookup of not existend resouces can be fallbacked to other namespaces - see option fallbackNS (array or string if one ns to fallback to)
1004
+ - defaultValues get postProcessed
1005
+ - BREAKING: per default null values in resources get translated to fallback. This can be changed by setting option fallbackOnNull to false
1006
+ - PR #81 added support for passing options to nested resources
1007
+ - PR #88 added an exists method to check for the existence of a key in the resource store
1008
+ - fixed issue with null value throws in applyReplacement function
1009
+ - fixed issue #80 empty string lookup ends in fallback instead of returning result in language
1010
+ - fixed issue with null value in resources not returning expected value
1011
+ - optimized tests to use on server (nodejs) too
1012
+ - allow zepto as drop in replacement for \$
1013
+ - using testacular as runner
1014
+ - upgraded to grunt 0.4.0
1015
+ - fixed optional interpolation prefix/suffix not used in plural translation cases
1016
+ - optimized check if there are multiple keys for the data-i18n attribute to parse
1017
+
1018
+ ### 1.6.0
1019
+
1020
+ - option to specify target to set attributes with jquery function by using 'data-i18n-target attribute'
1021
+ - function to set new options for nesting functionality
1022
+ - function to add resources after init
1023
+ - option to lookup in default namespace if value is not found in given namespace
1024
+ - option to change interpolation prefix and suffix via translation options
1025
+ - fixed issue with using ns/keyseparator on plurals, context,...
1026
+ - fixed issue with posting missing when not using jquery
1027
+ - post missing in correct lng if lng is given in translation options
1028
+ - proper usage of deferred object in init function
1029
+ - fixed issue replacing values in objectTree
1030
+
1031
+ ### 1.5.10
1032
+
1033
+ - BREAKING: fixed plural rules for languages with extended plural forms (more than 2 forms)
1034
+ - merged pull #61 - custom loader (enables jsonp or other loading custom loading strategies)
1035
+ - escaping interpolation prefix/suffix for proper regex replace
1036
+
1037
+ ### 1.5.9
1038
+
1039
+ - functions to load additional namespaces after init and to set default namespace to something else
1040
+ - set if you don't want to read defaultValues from content while using jquery fc
1041
+ - set dataAttribute to different value
1042
+ - set cookieName to different value
1043
+ - some smallbugfixes
1044
+ - typesafe use of console if in debug mode
1045
+
1046
+ ### 1.5.8
1047
+
1048
+ - disable cookie usage by setting init option useCookie to false
1049
+ - accept empty string as translation value
1050
+ - fixed bug in own ajax implementation not using proper sendType
1051
+ - fixed bug for returning objTree in combination with namespace
1052
+ - fixed bug in plurals of romanic lngs
1053
+
1054
+ ### 1.5.7
1055
+
1056
+ - pass namespace in t() options
1057
+ - interpolation nesting
1058
+ - changable querystring param to look language up from
1059
+
1060
+ ### 1.5.6
1061
+
1062
+ - typesafe check for window, document existance
1063
+ - runnable under rhino
1064
+ - seperated amd builds with/without jquery
1065
+
1066
+ ### 1.5.5
1067
+
1068
+ - **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
1069
+ - added sprintf as postprocessor -> postProcess = 'sprintf' and sprintf = obj or array
1070
+ - set default postProcessor on init
1071
+ - redone build process with grunt
1072
+ - drop in replacement for jquery each, extend, ajax
1073
+ - setting fallbackLng to false will stop loading and looking it up
1074
+ - option to load only current or unspecific language files
1075
+
1076
+ ### 1.5.0
1077
+
1078
+ - pass options to sync.\_fetchOne, use options for fetching
1079
+ - support for i18next-webtranslate
1080
+
1081
+ ### 1.4.1
1082
+
1083
+ - post processor
1084
+ - **BREAKING:** localStorage defaults to false
1085
+ - added localStorageExpirationTime for better caching control
1086
+ - few bug fixes
1087
+
1088
+ ### 1.4.0
1089
+
1090
+ - preload multiple languages
1091
+ - translate key to other language than current
1092
+ - fixed issue with namespace usage in combination with context and plurals
1093
+ - more options to send missing values
1094
+ - better amd support
1095
+
1096
+ ### 1.3.4
1097
+
1098
+ - set type of ajax request to GET (options sendType: default POST)
1099
+ - set cookie expiration (options cookieExpirationTime: in minutes)
1100
+ - read / cache translation options (context, count, ...) in data-attribute (options useDataAttrOptions: default false)
1101
+
1102
+ ### 1.3.3
1103
+
1104
+ - optional return an objectTree from translation
1105
+ - use jquery promises or callback in initialisation
1106
+ - rewrote all tests with mocha.js
1107
+
1108
+ ### 1.3.2
1109
+
1110
+ - options to init i18next sync (options -> getAsync = false)
1111
+ - replace all occurence of replacement string
1112
+
1113
+ ### 1.3.1
1114
+
1115
+ - pass options to selector.i18n() thanks to [@hugojosefson](https://github.com/jamuhl/i18next/pull/10)
1116
+ - close [issue #8(https://github.com/jamuhl/i18next/issues/8)]: Fail silently when trying to access a path with children
1117
+ - cleanup
1118
+ - debug flag (options.debug -> write infos/errors to console)
1119
+
1120
+ ### 1.2.5
1121
+
1122
+ - fix for IE8
1123
+
1124
+ ### 1.2.4
1125
+
1126
+ - added indexOf for non ECMA-262 standard compliant browsers (IE < 9)
1127
+ - calling i28n() on element with data-i18n attribute will localize it now (i18n now not only works on container elements child)
1128
+
1129
+ ### 1.2.3
1130
+
1131
+ - extended detectLng: switch via qs _setLng=_ or cookie _i18next_
1132
+ - assert county in locale will be uppercased `en-us` -> `en-US`
1133
+ - provide option to have locale always lowercased _option lowerCaseLng_
1134
+ - set lng cookie when set in init function
1135
+
1136
+ ### 1.2
1137
+
1138
+ - support for translation context
1139
+ - fixed zero count in plurals
1140
+ - init without options, callback
1141
+
1142
+ ### 1.1
1143
+
1144
+ - support for multiple plural forms
1145
+ - common.js enabled (for node.js serverside)
1146
+ - changes to be less dependent on jquery (override it's functions, add to root if no jquery)
1147
+ - enable it on serverside with node.js [i18next-node](https://github.com/jamuhl/i18next-node)
1148
+
1149
+ ### 1.0
1150
+
1151
+ - support for other attribute translation via _data-i18n_ attribute
1152
+ - bug fixes
1153
+ - tests with qunit and sinon
1154
+
1155
+ ### 0.9
1156
+
1157
+ - multi-namespace support
1158
+ - loading static files or dynamic route
1159
+ - jquery function for _data-i18n_ attibute
1160
+ - post missing translations to the server
1161
+ - graceful fallback en-US -> en -> fallbackLng
1162
+ - localstorage support
1163
+ - support for pluralized strings
1164
+ - insertion of variables into translations
1165
+ - translation nesting