forked from ProjectMirador/mirador
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
11,862 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "i18next", | ||
"version": "1.8.2", | ||
"main": "./i18next.js", | ||
"dependencies": {}, | ||
"ignore": [ | ||
"test/", | ||
"release/", | ||
"spec/", | ||
"src/", | ||
"sample/", | ||
"report/", | ||
"buildtasks/", | ||
".gitignore", | ||
"Gruntfile.js", | ||
"package.json", | ||
"testacular.conf.js", | ||
"**/*.zip" | ||
], | ||
"homepage": "https://github.com/i18next/i18next", | ||
"_release": "1.8.2", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "1.8.2", | ||
"commit": "15e7577cd3644d5966ce0b964386a7f4e16c957c" | ||
}, | ||
"_source": "git://github.com/i18next/i18next.git", | ||
"_target": "~1.8.2", | ||
"_originalSource": "i18next", | ||
"_direct": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
### 1.8.2 | ||
- fixes build of commonjs with jquery file | ||
|
||
### 1.8.0 | ||
- [BREAKING] adds custom build for commonjs with jquery...default will be without require for jquery | ||
- fixes issue [issue 360](https://github.com/i18next/i18next/issues/360) | ||
- expose applyReplacement on api | ||
- save resources to localStorage when useLocaleStore is true | ||
- add support on key is a number | ||
- added getResourceBundle to API | ||
- allow multiple post-processors | ||
- fallback to singular if no plural is found fixes issue [issue 356](https://github.com/i18next/i18next/issues/356) | ||
- access localstorage always with try catch fixes issue [issue 353](https://github.com/i18next/i18next/issues/353) | ||
|
||
### 1.7.7 | ||
- fixes issue with stack overflow on t(lng, count) | ||
- fixes empty value fallback when processing secondary ns | ||
|
||
### 1.7.6 | ||
- fixes lng detection (i18next-client on npm) | ||
|
||
### 1.7.5 | ||
- adds option to define defaultOptions, which gets merged into t(options) [issue 307](https://github.com/i18next/i18next/issues/307) | ||
- optimization of size added by plural rules | ||
- handle error on json parse when using internal xhr | ||
- fixes plural/singular on count if going on fallbacks eg. fr --> en | ||
- fixes global leak of sync in amd versions | ||
- apply options.lowerCaseLng to fallbackLng too | ||
- added hasResourceBundle(lng, ns) to check if bundle exists | ||
- added experimental i18n.sync.reload --> resets resStore and reloads resources | ||
- catch issues with localStorage quota | ||
- changes detectlanguage to support whitelist entries | ||
|
||
### 1.7.4 | ||
- add resource bundle gets deep extend flag i18n.addResourceBundle(lng, ns, { 'deep': { 'key2': 'value2' }}, true); | ||
- new functions to add one key value or multiple i18n.addResource(lng, ns, key, value);, i18n.addResources(lng, ns, {'key1': 'value1', 'deep.key2': 'value2'}); | ||
- lngWhitelist merged | ||
- override postMissing function | ||
- allow floats for count | ||
- added indefinite functionality for plurals | ||
- optional set replacing vars to replace member to avoid collision with other options | ||
- experimental optional detectLngFromLocalStorage | ||
- fix for norwegian language | ||
|
||
### 1.7.3 | ||
- solves issue with ie8 not providing .trim function on string -> added to shim | ||
- set data using $(selector).i18n() on data-i18n='[data-someDataAttr]key' | ||
- more bullet proof state handling on failed file load | ||
- corrected latvian plurals based on [issue 231](https://github.com/jamuhl/i18next/issues/231) | ||
- allow array of fallback languages | ||
- allow int in values passed to shortcut sprintf | ||
- setLng to 'cimode' will trigger a CI mode returning 'key' instead of translation | ||
|
||
### 1.7.2 | ||
- introducing option fallbackOnEmpty -> empty string will fallback | ||
- added function removeResourceBundle(lng, ns) -> removes a resource set | ||
- fixed issue with no option passed to setLng | ||
- added ability to prepend, append content with data-i18n attributes | ||
- introducing objectTreeKeyHandler | ||
- fixes issue with i18n.t(null), i18n.t(undefined) throwing exception | ||
- returnObjectTrees does not mangle arrays, functions, and regexps | ||
- optimized structure for bower support | ||
|
||
### 1.7.1 | ||
- fixed some typo | ||
- allow translate to take an array of keys - take first found | ||
- allow numbers in object trees | ||
|
||
### 1.7.0 | ||
- test if initialisation finished before allowing calling t function | ||
- setting option fixLng=true will return t function on init or setLng with the lng fixed for every subsequent call to t | ||
- grab key from content if attr data-i18n has no value | ||
- setting shortcutFunction to 'defaultValue' allows calling i18n.t(key, defaultValue) | ||
- empty string in defaultValue is now valid no longer displaying key | ||
- allow option cookieDomain | ||
- fixes issue #115 out of stack exception in IE8 by recursing _translate in objectTrees | ||
|
||
### 1.6.3 | ||
- option to parse key if missing | ||
- fixes issue where plural don't get translated if language is passed in t options | ||
- fixes issue where key or defaultValue aren't postProcessed with itself as value | ||
- fixes issue with fallbackLng = false in combination with sendMissingTo = fallback | ||
- fixes namespace fallback loop to only loop if array has really a ns in it | ||
|
||
### 1.6.2 | ||
- fixes some var typo | ||
- fixes sendMissing to correct namespace | ||
- fixes sendMissing in combination with fallbackNS | ||
|
||
### 1.6.1 | ||
- PR #106 optionally un/escape interpolated content | ||
- PR #101 automatic gettext like sprintf syntax detection + postprocess injection | ||
- customload will get called on dynamicLoad too | ||
- fixes namespace array settings if loaded resourcebundle or additional namespaces | ||
- lookup of not existend resouces can be fallbacked to other namespaces - see option fallbackNS (array or string if one ns to fallback to) | ||
- defaultValues get postProcessed | ||
- BREAKING: per default null values in resources get translated to fallback. This can be changed by setting option fallbackOnNull to false | ||
- PR #81 added support for passing options to nested resources | ||
- PR #88 added an exists method to check for the existence of a key in the resource store | ||
- fixed issue with null value throws in applyReplacement function | ||
- fixed issue #80 empty string lookup ends in fallback instead of returning result in language | ||
- fixed issue with null value in resources not returning expected value | ||
- optimized tests to use on server (nodejs) too | ||
- allow zepto as drop in replacement for $ | ||
- using testacular as runner | ||
- upgraded to grunt 0.4.0 | ||
- fixed optional interpolation prefix/suffix not used in plural translation cases | ||
- optimized check if there are multiple keys for the data-i18n attribute to parse | ||
|
||
### 1.6.0 | ||
- option to specify target to set attributes with jquery function by using 'data-i18n-target attribute' | ||
- function to set new options for nesting functionality | ||
- function to add resources after init | ||
- option to lookup in default namespace if value is not found in given namespace | ||
- option to change interpolation prefix and suffix via translation options | ||
- fixed issue with using ns/keyseparator on plurals, context,... | ||
- fixed issue with posting missing when not using jquery | ||
- post missing in correct lng if lng is given in translation options | ||
- proper usage of deferred object in init function | ||
- fixed issue replacing values in objectTree | ||
|
||
### 1.5.10 | ||
- BREAKING: fixed plural rules for languages with extended plural forms (more than 2 forms) | ||
- merged pull #61 - custom loader (enables jsonp or other loading custom loading strategies) | ||
- escaping interpolation prefix/suffix for proper regex replace | ||
|
||
### 1.5.9 | ||
- functions to load additional namespaces after init and to set default namespace to something else | ||
- set if you don't want to read defaultValues from content while using jquery fc | ||
- set dataAttribute to different value | ||
- set cookieName to different value | ||
- some smallbugfixes | ||
- typesafe use of console if in debug mode | ||
|
||
### 1.5.8 | ||
- disable cookie usage by setting init option useCookie to false | ||
- accept empty string as translation value | ||
- fixed bug in own ajax implementation not using proper sendType | ||
- fixed bug for returning objTree in combination with namespace | ||
- fixed bug in plurals of romanic lngs | ||
|
||
### 1.5.7 | ||
- pass namespace in t() options | ||
- interpolation nesting | ||
- changable querystring param to look language up from | ||
|
||
### 1.5.6 | ||
- typesafe check for window, document existance | ||
- runnable under rhino | ||
- seperated amd builds with/without jquery | ||
|
||
### 1.5.5 | ||
- __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 | ||
- added sprintf as postprocessor -> postProcess = 'sprintf' and sprintf = obj or array | ||
- set default postProcessor on init | ||
- redone build process with grunt | ||
- drop in replacement for jquery each, extend, ajax | ||
- setting fallbackLng to false will stop loading and looking it up | ||
- option to load only current or unspecific language files | ||
|
||
### v1.5.0 | ||
- pass options to sync._fetchOne, use options for fetching | ||
- support for i18next-webtranslate | ||
|
||
### v1.4.1 | ||
- post processor | ||
- __BREAKING:__ localStorage defaults to false | ||
- added localStorageExpirationTime for better caching control | ||
- few bug fixes | ||
|
||
### v1.4.0 | ||
- preload multiple languages | ||
- translate key to other language than current | ||
- fixed issue with namespace usage in combination with context and plurals | ||
- more options to send missing values | ||
- better amd support | ||
|
||
### v1.3.4 | ||
- set type of ajax request to GET (options sendType: default POST) | ||
- set cookie expiration (options cookieExpirationTime: in minutes) | ||
- read / cache translation options (context, count, ...) in data-attribute (options useDataAttrOptions: default false) | ||
|
||
### v1.3.3 | ||
- optional return an objectTree from translation | ||
- use jquery promises or callback in initialisation | ||
- rewrote all tests with mocha.js | ||
|
||
### v1.3.2 | ||
- options to init i18next sync (options -> getAsync = false) | ||
- replace all occurence of replacement string | ||
|
||
### v1.3.1 | ||
- pass options to selector.i18n() thanks to [@hugojosefson](https://github.com/jamuhl/i18next/pull/10) | ||
- close [issue #8(https://github.com/jamuhl/i18next/issues/8)]: Fail silently when trying to access a path with children | ||
- cleanup | ||
- debug flag (options.debug -> write infos/errors to console) | ||
|
||
### v1.2.5 | ||
- fix for IE8 | ||
|
||
### v1.2.4 | ||
- added indexOf for non ECMA-262 standard compliant browsers (IE < 9) | ||
- calling i28n() on element with data-i18n attribute will localize it now (i18n now not only works on container elements child) | ||
|
||
### v1.2.3 | ||
|
||
- extended detectLng: switch via qs _setLng=_ or cookie _i18next_ | ||
- assert county in locale will be uppercased `en-us` -> `en-US` | ||
- provide option to have locale always lowercased _option lowerCaseLng_ | ||
- set lng cookie when set in init function | ||
|
||
### v1.2 | ||
|
||
- support for translation context | ||
- fixed zero count in plurals | ||
- init without options, callback | ||
|
||
### v1.1 | ||
|
||
- support for multiple plural forms | ||
- common.js enabled (for node.js serverside) | ||
- changes to be less dependent on jquery (override it's functions, add to root if no jquery) | ||
- enable it on serverside with node.js [i18next-node](https://github.com/jamuhl/i18next-node) | ||
|
||
### v1.0 | ||
|
||
- support for other attribute translation via _data-i18n_ attribute | ||
- bug fixes | ||
- tests with qunit and sinon | ||
|
||
### v0.9 | ||
|
||
- multi-namespace support | ||
- loading static files or dynamic route | ||
- jquery function for _data-i18n_ attibute | ||
- post missing translations to the server | ||
- graceful fallback en-US -> en -> fallbackLng | ||
- localstorage support | ||
- support for pluralized strings | ||
- insertion of variables into translations | ||
- translation nesting |
Oops, something went wrong.