README.md in i18n-js-3.0.0 vs README.md in i18n-js-3.0.1

- old
+ new

@@ -255,11 +255,11 @@ - file: "public/javascripts/i18n/translations.js" pretty_print: true ``` -#### Javscript Deep Merge (:js_extend option) +#### Javascript Deep Merge (:js_extend option) By default, the output file Javascript will call the `I18n.extend` method to ensure that newly loaded locale files are deep-merged with any locale data already in memory. To disable this either globally or per-file, set the `js_extend` option to false @@ -451,10 +451,10 @@ var key = count % 10 == 1 && count % 100 != 11 ? "one" : [2, 3, 4].indexOf(count % 10) >= 0 && [12, 13, 14].indexOf(count % 100) < 0 ? "few" : count % 10 == 0 || [5, 6, 7, 8, 9].indexOf(count % 10) >= 0 || [11, 12, 13, 14].indexOf(count % 100) >= 0 ? "many" : "other"; return [key]; }; ``` -You can find all rules on <http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html>. +You can find all rules on <http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html>. If you're using the same scope over and over again, you may use the `scope` option. ```javascript var options = {scope: "activerecord.attributes.user"};