diff --git a/.editorconfig b/.editorconfig index 1e711a65126a..f6a54e4dd2c5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,9 +10,6 @@ end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true -[src/ngLocale/**] -insert_final_newline = false - [dropdown-toggle.js] trim_trailing_whitespace = false insert_final_newline = false diff --git a/.jscs.json b/.jscs.json index ac8fc68f6b04..c79cbf6ef108 100644 --- a/.jscs.json +++ b/.jscs.json @@ -1,11 +1,13 @@ { + "excludeFiles": ["src/ngLocale/**"], "disallowKeywords": ["with"], "disallowMixedSpacesAndTabs": true, "disallowMultipleLineStrings": true, "disallowNewlineBeforeBlockStatements": true, "disallowSpaceAfterObjectKeys": true, - "disallowSpaceAfterPrefixUnaryOperators": ["!"], + "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"], "disallowSpaceBeforeBinaryOperators": [","], + "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], "disallowSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true }, @@ -15,12 +17,17 @@ "disallowSpacesInNamedFunctionExpression": { "beforeOpeningRoundBrace": true }, + "disallowSpacesInsideArrayBrackets": true, "disallowSpacesInsideParentheses": true, "disallowTrailingComma": true, "disallowTrailingWhitespace": true, + "requireCommaBeforeLineBreak": true, + "requireLineFeedAtFileEnd": true, "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"], + "requireSpaceBeforeBlockStatements": true, "requireSpacesInFunction": { "beforeOpeningCurlyBrace": true }, + "validateLineBreaks": "LF", "validateParameterSeparator": ", " } diff --git a/.jscs.json.todo b/.jscs.json.todo index 28e4d0a605e2..a0a234d2ef89 100644 --- a/.jscs.json.todo +++ b/.jscs.json.todo @@ -10,7 +10,6 @@ "disallowImplicitTypeConversion": ["string"], "disallowMultipleLineBreaks": true, "disallowKeywordsOnNewLine": ["else"], - "requireLineFeedAtFileEnd": true, "validateJSDoc": { "checkParamNames": true, "requireParamTypes": true diff --git a/i18n/src/closureI18nExtractor.js b/i18n/src/closureI18nExtractor.js index b8e6b7e978bb..c5d1b0d2de87 100644 --- a/i18n/src/closureI18nExtractor.js +++ b/i18n/src/closureI18nExtractor.js @@ -224,7 +224,7 @@ function outputLocale(localeInfo, localeID) { getDecimals + getVF + getWT + '$provide.value("$locale", '; - var suffix = ');\n}]);'; + var suffix = ');\n}]);\n'; return prefix + content + suffix; } diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh index 95c2c7a8ae8f..98af57a6c0af 100755 --- a/scripts/travis/build.sh +++ b/scripts/travis/build.sh @@ -5,9 +5,9 @@ set -e export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev` if [ $JOB = "unit" ]; then - grunt ci-checks grunt test:promises-aplus grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots + grunt ci-checks grunt tests:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots grunt test:travis-protractor --specs "docs/app/e2e/**/*.scenario.js" elif [ $JOB = "e2e" ]; then diff --git a/src/jqLite.js b/src/jqLite.js index c3fdc7ecc68b..177f2a59babf 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -481,7 +481,7 @@ var JQLitePrototype = JQLite.prototype = { } // check if document is already loaded - if (document.readyState === 'complete'){ + if (document.readyState === 'complete') { setTimeout(trigger); } else { this.on('DOMContentLoaded', trigger); // works for modern browsers and IE9 @@ -802,7 +802,7 @@ forEach({ var target = this, related = event.relatedTarget; // For mousenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window - if (!related || (related !== target && !target.contains(related))){ + if (!related || (related !== target && !target.contains(related))) { handle(event, type); } }); diff --git a/src/ng/http.js b/src/ng/http.js index 67284f13728b..bd07e5d504e6 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -1092,7 +1092,7 @@ function $HttpProvider() { forEach(value, function(v) { if (isObject(v)) { - if (isDate(v)){ + if (isDate(v)) { v = v.toISOString(); } else { v = toJson(v); diff --git a/src/ngCookies/cookies.js b/src/ngCookies/cookies.js index 377e899fa2b7..e646a1c0853d 100644 --- a/src/ngCookies/cookies.js +++ b/src/ngCookies/cookies.js @@ -103,7 +103,7 @@ angular.module('ngCookies', ['ng']). } //verify what was actually stored - if (updated){ + if (updated) { updated = false; browserCookies = $browser.cookies(); diff --git a/src/ngLocale/angular-locale_aa-dj.js b/src/ngLocale/angular-locale_aa-dj.js index 128fa8e9d25a..cc2e78a926c6 100644 --- a/src/ngLocale/angular-locale_aa-dj.js +++ b/src/ngLocale/angular-locale_aa-dj.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "aa-dj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_aa-er.js b/src/ngLocale/angular-locale_aa-er.js index 0ce7f14adb13..4470781aa948 100644 --- a/src/ngLocale/angular-locale_aa-er.js +++ b/src/ngLocale/angular-locale_aa-er.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "aa-er", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_aa-et.js b/src/ngLocale/angular-locale_aa-et.js index 941ba59b448c..4992ee81d757 100644 --- a/src/ngLocale/angular-locale_aa-et.js +++ b/src/ngLocale/angular-locale_aa-et.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "aa-et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_aa.js b/src/ngLocale/angular-locale_aa.js index f4418da53950..6a9c801b7adf 100644 --- a/src/ngLocale/angular-locale_aa.js +++ b/src/ngLocale/angular-locale_aa.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "aa", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_af-na.js b/src/ngLocale/angular-locale_af-na.js index 8df6becf364f..84f77c9eec0d 100644 --- a/src/ngLocale/angular-locale_af-na.js +++ b/src/ngLocale/angular-locale_af-na.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "af-na", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_af-za.js b/src/ngLocale/angular-locale_af-za.js index 0006124ab2b4..f3e013070045 100644 --- a/src/ngLocale/angular-locale_af-za.js +++ b/src/ngLocale/angular-locale_af-za.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "af-za", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_af.js b/src/ngLocale/angular-locale_af.js index 6096bd9a8ad1..5b948807f7ef 100644 --- a/src/ngLocale/angular-locale_af.js +++ b/src/ngLocale/angular-locale_af.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "af", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_agq-cm.js b/src/ngLocale/angular-locale_agq-cm.js index a515a5b98294..94ee8a6a832c 100644 --- a/src/ngLocale/angular-locale_agq-cm.js +++ b/src/ngLocale/angular-locale_agq-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "agq-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_agq.js b/src/ngLocale/angular-locale_agq.js index f7b66008ed7a..48b8e696555b 100644 --- a/src/ngLocale/angular-locale_agq.js +++ b/src/ngLocale/angular-locale_agq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "agq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ak-gh.js b/src/ngLocale/angular-locale_ak-gh.js index 1e623fc44865..bc1f955f0a6d 100644 --- a/src/ngLocale/angular-locale_ak-gh.js +++ b/src/ngLocale/angular-locale_ak-gh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ak-gh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ak.js b/src/ngLocale/angular-locale_ak.js index a2c6c693b2cc..78aece39f447 100644 --- a/src/ngLocale/angular-locale_ak.js +++ b/src/ngLocale/angular-locale_ak.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ak", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_am-et.js b/src/ngLocale/angular-locale_am-et.js index 1a047d022a09..71bbd98e8031 100644 --- a/src/ngLocale/angular-locale_am-et.js +++ b/src/ngLocale/angular-locale_am-et.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "am-et", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_am.js b/src/ngLocale/angular-locale_am.js index 74bbc99dabd3..82a074524292 100644 --- a/src/ngLocale/angular-locale_am.js +++ b/src/ngLocale/angular-locale_am.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "am", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-001.js b/src/ngLocale/angular-locale_ar-001.js index f964d4be2e99..349f006e72e8 100644 --- a/src/ngLocale/angular-locale_ar-001.js +++ b/src/ngLocale/angular-locale_ar-001.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-001", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-ae.js b/src/ngLocale/angular-locale_ar-ae.js index 72d0d1c40263..d12cc710bca6 100644 --- a/src/ngLocale/angular-locale_ar-ae.js +++ b/src/ngLocale/angular-locale_ar-ae.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-ae", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-bh.js b/src/ngLocale/angular-locale_ar-bh.js index 1bfeabcddc0b..ae6200103005 100644 --- a/src/ngLocale/angular-locale_ar-bh.js +++ b/src/ngLocale/angular-locale_ar-bh.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-bh", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-dj.js b/src/ngLocale/angular-locale_ar-dj.js index ab0ec1bb69cd..2b5138b3b3c6 100644 --- a/src/ngLocale/angular-locale_ar-dj.js +++ b/src/ngLocale/angular-locale_ar-dj.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-dj", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-dz.js b/src/ngLocale/angular-locale_ar-dz.js index c01e0af25768..d7403771aabc 100644 --- a/src/ngLocale/angular-locale_ar-dz.js +++ b/src/ngLocale/angular-locale_ar-dz.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-dz", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-eg.js b/src/ngLocale/angular-locale_ar-eg.js index b1d3707fd5d6..c6eb0a1bb861 100644 --- a/src/ngLocale/angular-locale_ar-eg.js +++ b/src/ngLocale/angular-locale_ar-eg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-eg", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-eh.js b/src/ngLocale/angular-locale_ar-eh.js index a9c3529d7966..dff381bc51b7 100644 --- a/src/ngLocale/angular-locale_ar-eh.js +++ b/src/ngLocale/angular-locale_ar-eh.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-eh", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-er.js b/src/ngLocale/angular-locale_ar-er.js index f297ecb81fef..baa254c91c23 100644 --- a/src/ngLocale/angular-locale_ar-er.js +++ b/src/ngLocale/angular-locale_ar-er.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-er", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-il.js b/src/ngLocale/angular-locale_ar-il.js index 8bb42b288d01..9cdb3ef59442 100644 --- a/src/ngLocale/angular-locale_ar-il.js +++ b/src/ngLocale/angular-locale_ar-il.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-il", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-iq.js b/src/ngLocale/angular-locale_ar-iq.js index fa3dd180ec43..69afabd1363b 100644 --- a/src/ngLocale/angular-locale_ar-iq.js +++ b/src/ngLocale/angular-locale_ar-iq.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-iq", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-jo.js b/src/ngLocale/angular-locale_ar-jo.js index 342153082891..ae407c3abb72 100644 --- a/src/ngLocale/angular-locale_ar-jo.js +++ b/src/ngLocale/angular-locale_ar-jo.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-jo", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-km.js b/src/ngLocale/angular-locale_ar-km.js index ac4d6684fd51..62c3b3885b1d 100644 --- a/src/ngLocale/angular-locale_ar-km.js +++ b/src/ngLocale/angular-locale_ar-km.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-km", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-kw.js b/src/ngLocale/angular-locale_ar-kw.js index 0ee77a6c7fe8..bb7034b85c54 100644 --- a/src/ngLocale/angular-locale_ar-kw.js +++ b/src/ngLocale/angular-locale_ar-kw.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-kw", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-lb.js b/src/ngLocale/angular-locale_ar-lb.js index 99407d126d85..578331eadc0d 100644 --- a/src/ngLocale/angular-locale_ar-lb.js +++ b/src/ngLocale/angular-locale_ar-lb.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-lb", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-ly.js b/src/ngLocale/angular-locale_ar-ly.js index 4527885aaef0..03bbb2d20786 100644 --- a/src/ngLocale/angular-locale_ar-ly.js +++ b/src/ngLocale/angular-locale_ar-ly.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-ly", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-ma.js b/src/ngLocale/angular-locale_ar-ma.js index 3a3e8e968dc4..69fb31909d4a 100644 --- a/src/ngLocale/angular-locale_ar-ma.js +++ b/src/ngLocale/angular-locale_ar-ma.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-ma", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-mr.js b/src/ngLocale/angular-locale_ar-mr.js index 9288d72bea59..4477ef7f0822 100644 --- a/src/ngLocale/angular-locale_ar-mr.js +++ b/src/ngLocale/angular-locale_ar-mr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-mr", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-om.js b/src/ngLocale/angular-locale_ar-om.js index 80da725e8ab9..11b4872a047a 100644 --- a/src/ngLocale/angular-locale_ar-om.js +++ b/src/ngLocale/angular-locale_ar-om.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-om", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-ps.js b/src/ngLocale/angular-locale_ar-ps.js index f09b7eb29df0..9e3f5e5c428d 100644 --- a/src/ngLocale/angular-locale_ar-ps.js +++ b/src/ngLocale/angular-locale_ar-ps.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-ps", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-qa.js b/src/ngLocale/angular-locale_ar-qa.js index 08e92e362ec0..b472cfb6e9f3 100644 --- a/src/ngLocale/angular-locale_ar-qa.js +++ b/src/ngLocale/angular-locale_ar-qa.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-qa", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-sa.js b/src/ngLocale/angular-locale_ar-sa.js index 0ffa671442b3..99fc95d45495 100644 --- a/src/ngLocale/angular-locale_ar-sa.js +++ b/src/ngLocale/angular-locale_ar-sa.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-sa", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-sd.js b/src/ngLocale/angular-locale_ar-sd.js index 5f0e2e9cced3..940f965fef97 100644 --- a/src/ngLocale/angular-locale_ar-sd.js +++ b/src/ngLocale/angular-locale_ar-sd.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-sd", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-so.js b/src/ngLocale/angular-locale_ar-so.js index c3b2a211ed8e..c45ff906b8b6 100644 --- a/src/ngLocale/angular-locale_ar-so.js +++ b/src/ngLocale/angular-locale_ar-so.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-so", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-ss.js b/src/ngLocale/angular-locale_ar-ss.js index 24d325a327d2..922ce91d6d53 100644 --- a/src/ngLocale/angular-locale_ar-ss.js +++ b/src/ngLocale/angular-locale_ar-ss.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-ss", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-sy.js b/src/ngLocale/angular-locale_ar-sy.js index 6a54c39e536b..fea985d21871 100644 --- a/src/ngLocale/angular-locale_ar-sy.js +++ b/src/ngLocale/angular-locale_ar-sy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-sy", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-td.js b/src/ngLocale/angular-locale_ar-td.js index d58ff6640df3..4a00893557a1 100644 --- a/src/ngLocale/angular-locale_ar-td.js +++ b/src/ngLocale/angular-locale_ar-td.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-td", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-tn.js b/src/ngLocale/angular-locale_ar-tn.js index 5bdfb10345ff..8b3d216d4f99 100644 --- a/src/ngLocale/angular-locale_ar-tn.js +++ b/src/ngLocale/angular-locale_ar-tn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-tn", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar-ye.js b/src/ngLocale/angular-locale_ar-ye.js index 29b5eb145823..a7415265f1c2 100644 --- a/src/ngLocale/angular-locale_ar-ye.js +++ b/src/ngLocale/angular-locale_ar-ye.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar-ye", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ar.js b/src/ngLocale/angular-locale_ar.js index 17244293c293..ca92a451725d 100644 --- a/src/ngLocale/angular-locale_ar.js +++ b/src/ngLocale/angular-locale_ar.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ar", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_as-in.js b/src/ngLocale/angular-locale_as-in.js index a7b69d6ea071..8ac30a1996ce 100644 --- a/src/ngLocale/angular-locale_as-in.js +++ b/src/ngLocale/angular-locale_as-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "as-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_as.js b/src/ngLocale/angular-locale_as.js index 2ee3ec3f106f..c55ee5c386e1 100644 --- a/src/ngLocale/angular-locale_as.js +++ b/src/ngLocale/angular-locale_as.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "as", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_asa-tz.js b/src/ngLocale/angular-locale_asa-tz.js index 72f4a1aca9b9..8f6c9c613abd 100644 --- a/src/ngLocale/angular-locale_asa-tz.js +++ b/src/ngLocale/angular-locale_asa-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "asa-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_asa.js b/src/ngLocale/angular-locale_asa.js index 1f0f053daf61..98ef450bb857 100644 --- a/src/ngLocale/angular-locale_asa.js +++ b/src/ngLocale/angular-locale_asa.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "asa", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ast-es.js b/src/ngLocale/angular-locale_ast-es.js index 5cbb07c2f9ea..71002f88e852 100644 --- a/src/ngLocale/angular-locale_ast-es.js +++ b/src/ngLocale/angular-locale_ast-es.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ast-es", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ast.js b/src/ngLocale/angular-locale_ast.js index cdcf643c4078..7d39738b7f49 100644 --- a/src/ngLocale/angular-locale_ast.js +++ b/src/ngLocale/angular-locale_ast.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ast", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_az-cyrl-az.js b/src/ngLocale/angular-locale_az-cyrl-az.js index 9ca08ed1ce11..f904656bac8e 100644 --- a/src/ngLocale/angular-locale_az-cyrl-az.js +++ b/src/ngLocale/angular-locale_az-cyrl-az.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "az-cyrl-az", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_az-cyrl.js b/src/ngLocale/angular-locale_az-cyrl.js index 92506ebb4e0e..d18ed470ee02 100644 --- a/src/ngLocale/angular-locale_az-cyrl.js +++ b/src/ngLocale/angular-locale_az-cyrl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "az-cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_az-latn-az.js b/src/ngLocale/angular-locale_az-latn-az.js index a564a287dd91..80cec56b3371 100644 --- a/src/ngLocale/angular-locale_az-latn-az.js +++ b/src/ngLocale/angular-locale_az-latn-az.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "az-latn-az", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_az-latn.js b/src/ngLocale/angular-locale_az-latn.js index 2fd2b20ee36f..ac82a0a5392b 100644 --- a/src/ngLocale/angular-locale_az-latn.js +++ b/src/ngLocale/angular-locale_az-latn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "az-latn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_az.js b/src/ngLocale/angular-locale_az.js index 1e56e84c4fb2..f00497b73d07 100644 --- a/src/ngLocale/angular-locale_az.js +++ b/src/ngLocale/angular-locale_az.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "az", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bas-cm.js b/src/ngLocale/angular-locale_bas-cm.js index 58866ecc7c74..e73106f3a897 100644 --- a/src/ngLocale/angular-locale_bas-cm.js +++ b/src/ngLocale/angular-locale_bas-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bas-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bas.js b/src/ngLocale/angular-locale_bas.js index fcabdebf5157..892314d8821a 100644 --- a/src/ngLocale/angular-locale_bas.js +++ b/src/ngLocale/angular-locale_bas.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bas", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_be-by.js b/src/ngLocale/angular-locale_be-by.js index 49c1df2e9096..269873aae80f 100644 --- a/src/ngLocale/angular-locale_be-by.js +++ b/src/ngLocale/angular-locale_be-by.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "be-by", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_be.js b/src/ngLocale/angular-locale_be.js index b517adf10436..136132046f0e 100644 --- a/src/ngLocale/angular-locale_be.js +++ b/src/ngLocale/angular-locale_be.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "be", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bem-zm.js b/src/ngLocale/angular-locale_bem-zm.js index 4c178a431f75..d7db2caa02f4 100644 --- a/src/ngLocale/angular-locale_bem-zm.js +++ b/src/ngLocale/angular-locale_bem-zm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bem-zm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bem.js b/src/ngLocale/angular-locale_bem.js index 6d78634a8519..b96da28f2758 100644 --- a/src/ngLocale/angular-locale_bem.js +++ b/src/ngLocale/angular-locale_bem.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bem", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bez-tz.js b/src/ngLocale/angular-locale_bez-tz.js index cbfbc1f469a3..8d0b5bd8059e 100644 --- a/src/ngLocale/angular-locale_bez-tz.js +++ b/src/ngLocale/angular-locale_bez-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bez-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bez.js b/src/ngLocale/angular-locale_bez.js index 683e822d44d3..ff4bd6ae764c 100644 --- a/src/ngLocale/angular-locale_bez.js +++ b/src/ngLocale/angular-locale_bez.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bez", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bg-bg.js b/src/ngLocale/angular-locale_bg-bg.js index 86dbe15d5b22..6da9f5b0b5eb 100644 --- a/src/ngLocale/angular-locale_bg-bg.js +++ b/src/ngLocale/angular-locale_bg-bg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "bg-bg", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bg.js b/src/ngLocale/angular-locale_bg.js index 3a4d8406dfa5..ea9884ea3dda 100644 --- a/src/ngLocale/angular-locale_bg.js +++ b/src/ngLocale/angular-locale_bg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "bg", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bm-ml.js b/src/ngLocale/angular-locale_bm-ml.js index 6e2ada7e70cb..1fd1852712ea 100644 --- a/src/ngLocale/angular-locale_bm-ml.js +++ b/src/ngLocale/angular-locale_bm-ml.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bm-ml", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bm.js b/src/ngLocale/angular-locale_bm.js index 4a50ce8c77c4..1402eb18686f 100644 --- a/src/ngLocale/angular-locale_bm.js +++ b/src/ngLocale/angular-locale_bm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bn-bd.js b/src/ngLocale/angular-locale_bn-bd.js index 15a070610ed0..df9cd7d13465 100644 --- a/src/ngLocale/angular-locale_bn-bd.js +++ b/src/ngLocale/angular-locale_bn-bd.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "bn-bd", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bn-in.js b/src/ngLocale/angular-locale_bn-in.js index 841ed44892a6..73f43294996b 100644 --- a/src/ngLocale/angular-locale_bn-in.js +++ b/src/ngLocale/angular-locale_bn-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "bn-in", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bn.js b/src/ngLocale/angular-locale_bn.js index 8397227cbd05..118cf63cc736 100644 --- a/src/ngLocale/angular-locale_bn.js +++ b/src/ngLocale/angular-locale_bn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "bn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bo-cn.js b/src/ngLocale/angular-locale_bo-cn.js index c1f1e7bab7e3..fffa99aeec96 100644 --- a/src/ngLocale/angular-locale_bo-cn.js +++ b/src/ngLocale/angular-locale_bo-cn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bo-cn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bo-in.js b/src/ngLocale/angular-locale_bo-in.js index d763096b53ff..54de930bde45 100644 --- a/src/ngLocale/angular-locale_bo-in.js +++ b/src/ngLocale/angular-locale_bo-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bo-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bo.js b/src/ngLocale/angular-locale_bo.js index e9766aab34cf..881b1b31f35b 100644 --- a/src/ngLocale/angular-locale_bo.js +++ b/src/ngLocale/angular-locale_bo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_br-fr.js b/src/ngLocale/angular-locale_br-fr.js index c4bcbf469596..ae40e7d1c82f 100644 --- a/src/ngLocale/angular-locale_br-fr.js +++ b/src/ngLocale/angular-locale_br-fr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "br-fr", "pluralCat": function(n, opt_precision) { if (n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) { return PLURAL_CATEGORY.ONE; } if (n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) { return PLURAL_CATEGORY.TWO; } if ((n % 10 >= 3 && n % 10 <= 4 || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) { return PLURAL_CATEGORY.FEW; } if (n != 0 && n % 1000000 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_br.js b/src/ngLocale/angular-locale_br.js index c8d8754c5fbf..c93fc74ee398 100644 --- a/src/ngLocale/angular-locale_br.js +++ b/src/ngLocale/angular-locale_br.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "br", "pluralCat": function(n, opt_precision) { if (n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) { return PLURAL_CATEGORY.ONE; } if (n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) { return PLURAL_CATEGORY.TWO; } if ((n % 10 >= 3 && n % 10 <= 4 || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) { return PLURAL_CATEGORY.FEW; } if (n != 0 && n % 1000000 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_brx-in.js b/src/ngLocale/angular-locale_brx-in.js index 18afcdfc1a84..77b8796dcc07 100644 --- a/src/ngLocale/angular-locale_brx-in.js +++ b/src/ngLocale/angular-locale_brx-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "brx-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_brx.js b/src/ngLocale/angular-locale_brx.js index a75744096301..790c90273b0d 100644 --- a/src/ngLocale/angular-locale_brx.js +++ b/src/ngLocale/angular-locale_brx.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "brx", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bs-cyrl-ba.js b/src/ngLocale/angular-locale_bs-cyrl-ba.js index f2a08346dde5..18d9f306a8b8 100644 --- a/src/ngLocale/angular-locale_bs-cyrl-ba.js +++ b/src/ngLocale/angular-locale_bs-cyrl-ba.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bs-cyrl-ba", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bs-cyrl.js b/src/ngLocale/angular-locale_bs-cyrl.js index 4ad221ed2e6a..6fcd342909e4 100644 --- a/src/ngLocale/angular-locale_bs-cyrl.js +++ b/src/ngLocale/angular-locale_bs-cyrl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bs-cyrl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bs-latn-ba.js b/src/ngLocale/angular-locale_bs-latn-ba.js index 5957d9397102..9e8c87adf3d5 100644 --- a/src/ngLocale/angular-locale_bs-latn-ba.js +++ b/src/ngLocale/angular-locale_bs-latn-ba.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bs-latn-ba", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bs-latn.js b/src/ngLocale/angular-locale_bs-latn.js index 3eff4d1831d9..3250375a1d8e 100644 --- a/src/ngLocale/angular-locale_bs-latn.js +++ b/src/ngLocale/angular-locale_bs-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bs-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_bs.js b/src/ngLocale/angular-locale_bs.js index a4dcc20b9905..298ea431cb4b 100644 --- a/src/ngLocale/angular-locale_bs.js +++ b/src/ngLocale/angular-locale_bs.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "bs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_byn-er.js b/src/ngLocale/angular-locale_byn-er.js index d5b24d5bc056..f6ee233b5560 100644 --- a/src/ngLocale/angular-locale_byn-er.js +++ b/src/ngLocale/angular-locale_byn-er.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "byn-er", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_byn.js b/src/ngLocale/angular-locale_byn.js index f58f3d283a70..578ce6dd88f0 100644 --- a/src/ngLocale/angular-locale_byn.js +++ b/src/ngLocale/angular-locale_byn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "byn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ca-ad.js b/src/ngLocale/angular-locale_ca-ad.js index 59c2556c540a..92ee60f93a7e 100644 --- a/src/ngLocale/angular-locale_ca-ad.js +++ b/src/ngLocale/angular-locale_ca-ad.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ca-ad", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ca-es-valencia.js b/src/ngLocale/angular-locale_ca-es-valencia.js index b6d802a7053c..781bf6ca463c 100644 --- a/src/ngLocale/angular-locale_ca-es-valencia.js +++ b/src/ngLocale/angular-locale_ca-es-valencia.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ca-es-valencia", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ca-es.js b/src/ngLocale/angular-locale_ca-es.js index 6a77917246a2..37dcf7633ff4 100644 --- a/src/ngLocale/angular-locale_ca-es.js +++ b/src/ngLocale/angular-locale_ca-es.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ca-es", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ca-fr.js b/src/ngLocale/angular-locale_ca-fr.js index 2e1526014e3a..e6c94d3acaba 100644 --- a/src/ngLocale/angular-locale_ca-fr.js +++ b/src/ngLocale/angular-locale_ca-fr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ca-fr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ca-it.js b/src/ngLocale/angular-locale_ca-it.js index 4c0e47739e18..fa5fb74b1ab8 100644 --- a/src/ngLocale/angular-locale_ca-it.js +++ b/src/ngLocale/angular-locale_ca-it.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ca-it", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ca.js b/src/ngLocale/angular-locale_ca.js index 4c4a9c3d1610..486f777197fc 100644 --- a/src/ngLocale/angular-locale_ca.js +++ b/src/ngLocale/angular-locale_ca.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ca", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_cgg-ug.js b/src/ngLocale/angular-locale_cgg-ug.js index 093298648de1..9b1139c04e69 100644 --- a/src/ngLocale/angular-locale_cgg-ug.js +++ b/src/ngLocale/angular-locale_cgg-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "cgg-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_cgg.js b/src/ngLocale/angular-locale_cgg.js index 6c0e0c7385ba..49f41f7a2dba 100644 --- a/src/ngLocale/angular-locale_cgg.js +++ b/src/ngLocale/angular-locale_cgg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "cgg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_chr-us.js b/src/ngLocale/angular-locale_chr-us.js index f3deaaa617a4..56a2c1d4cd83 100644 --- a/src/ngLocale/angular-locale_chr-us.js +++ b/src/ngLocale/angular-locale_chr-us.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "chr-us", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_chr.js b/src/ngLocale/angular-locale_chr.js index 9e65036cf9cb..9ef4e74437f4 100644 --- a/src/ngLocale/angular-locale_chr.js +++ b/src/ngLocale/angular-locale_chr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "chr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-arab-iq.js b/src/ngLocale/angular-locale_ckb-arab-iq.js index 462cf30651c7..a2a2fc6c6db9 100644 --- a/src/ngLocale/angular-locale_ckb-arab-iq.js +++ b/src/ngLocale/angular-locale_ckb-arab-iq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-arab-iq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-arab-ir.js b/src/ngLocale/angular-locale_ckb-arab-ir.js index 683be26d408b..1fc39ec10c05 100644 --- a/src/ngLocale/angular-locale_ckb-arab-ir.js +++ b/src/ngLocale/angular-locale_ckb-arab-ir.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-arab-ir", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-arab.js b/src/ngLocale/angular-locale_ckb-arab.js index 78160d55d09e..76ab613ca9af 100644 --- a/src/ngLocale/angular-locale_ckb-arab.js +++ b/src/ngLocale/angular-locale_ckb-arab.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-arab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-iq.js b/src/ngLocale/angular-locale_ckb-iq.js index 92837e7a1c9e..879c6afbbfc1 100644 --- a/src/ngLocale/angular-locale_ckb-iq.js +++ b/src/ngLocale/angular-locale_ckb-iq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-iq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-ir.js b/src/ngLocale/angular-locale_ckb-ir.js index 144f71f32403..e7576ae5f40c 100644 --- a/src/ngLocale/angular-locale_ckb-ir.js +++ b/src/ngLocale/angular-locale_ckb-ir.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-ir", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-latn-iq.js b/src/ngLocale/angular-locale_ckb-latn-iq.js index 1d8f8878b2fb..e6fa19e3479b 100644 --- a/src/ngLocale/angular-locale_ckb-latn-iq.js +++ b/src/ngLocale/angular-locale_ckb-latn-iq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-latn-iq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb-latn.js b/src/ngLocale/angular-locale_ckb-latn.js index 164bcecea3b2..6382fb98ad6b 100644 --- a/src/ngLocale/angular-locale_ckb-latn.js +++ b/src/ngLocale/angular-locale_ckb-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ckb.js b/src/ngLocale/angular-locale_ckb.js index 9a9672e99abb..0f7e8ba8b70b 100644 --- a/src/ngLocale/angular-locale_ckb.js +++ b/src/ngLocale/angular-locale_ckb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ckb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_cs-cz.js b/src/ngLocale/angular-locale_cs-cz.js index 67aed956da57..f86963a0ed4f 100644 --- a/src/ngLocale/angular-locale_cs-cz.js +++ b/src/ngLocale/angular-locale_cs-cz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "cs-cz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_cs.js b/src/ngLocale/angular-locale_cs.js index 0312e30310be..b1b9a98a9421 100644 --- a/src/ngLocale/angular-locale_cs.js +++ b/src/ngLocale/angular-locale_cs.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "cs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_cy-gb.js b/src/ngLocale/angular-locale_cy-gb.js index b36fc4753cd5..5b090542601b 100644 --- a/src/ngLocale/angular-locale_cy-gb.js +++ b/src/ngLocale/angular-locale_cy-gb.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "cy-gb", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == 3) { return PLURAL_CATEGORY.FEW; } if (n == 6) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_cy.js b/src/ngLocale/angular-locale_cy.js index cc0d37bf5087..87aadb94a618 100644 --- a/src/ngLocale/angular-locale_cy.js +++ b/src/ngLocale/angular-locale_cy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "cy", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == 3) { return PLURAL_CATEGORY.FEW; } if (n == 6) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_da-dk.js b/src/ngLocale/angular-locale_da-dk.js index d8f5a349eeb9..92f549f9f7de 100644 --- a/src/ngLocale/angular-locale_da-dk.js +++ b/src/ngLocale/angular-locale_da-dk.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "da-dk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (n == 1 || wt.t != 0 && (i == 0 || i == 1)) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_da-gl.js b/src/ngLocale/angular-locale_da-gl.js index 8da63b03f849..179f0e477488 100644 --- a/src/ngLocale/angular-locale_da-gl.js +++ b/src/ngLocale/angular-locale_da-gl.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "da-gl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (n == 1 || wt.t != 0 && (i == 0 || i == 1)) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_da.js b/src/ngLocale/angular-locale_da.js index 480e1d8edf2d..9d4a5d32c159 100644 --- a/src/ngLocale/angular-locale_da.js +++ b/src/ngLocale/angular-locale_da.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "da", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (n == 1 || wt.t != 0 && (i == 0 || i == 1)) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dav-ke.js b/src/ngLocale/angular-locale_dav-ke.js index b350d720465b..735446a1296b 100644 --- a/src/ngLocale/angular-locale_dav-ke.js +++ b/src/ngLocale/angular-locale_dav-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dav-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dav.js b/src/ngLocale/angular-locale_dav.js index a2f9b9a85c03..a8fd6f73dab2 100644 --- a/src/ngLocale/angular-locale_dav.js +++ b/src/ngLocale/angular-locale_dav.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dav", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de-at.js b/src/ngLocale/angular-locale_de-at.js index 5e47e8703c38..75a4e3cb8973 100644 --- a/src/ngLocale/angular-locale_de-at.js +++ b/src/ngLocale/angular-locale_de-at.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de-at", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de-be.js b/src/ngLocale/angular-locale_de-be.js index 39bd024dcfae..5ef09466df96 100644 --- a/src/ngLocale/angular-locale_de-be.js +++ b/src/ngLocale/angular-locale_de-be.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de-be", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de-ch.js b/src/ngLocale/angular-locale_de-ch.js index ed7b7d51d937..79ee0e58d156 100644 --- a/src/ngLocale/angular-locale_de-ch.js +++ b/src/ngLocale/angular-locale_de-ch.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de-ch", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de-de.js b/src/ngLocale/angular-locale_de-de.js index 8b5829680ed0..109f21459494 100644 --- a/src/ngLocale/angular-locale_de-de.js +++ b/src/ngLocale/angular-locale_de-de.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de-de", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de-li.js b/src/ngLocale/angular-locale_de-li.js index 0d772ae8c100..932f46d17454 100644 --- a/src/ngLocale/angular-locale_de-li.js +++ b/src/ngLocale/angular-locale_de-li.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de-li", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de-lu.js b/src/ngLocale/angular-locale_de-lu.js index 669fea241f9e..3761086f281c 100644 --- a/src/ngLocale/angular-locale_de-lu.js +++ b/src/ngLocale/angular-locale_de-lu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de-lu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_de.js b/src/ngLocale/angular-locale_de.js index 7e79b4615719..61fd9f56b4e3 100644 --- a/src/ngLocale/angular-locale_de.js +++ b/src/ngLocale/angular-locale_de.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "de", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dje-ne.js b/src/ngLocale/angular-locale_dje-ne.js index 4f6912257af3..833f2617ed1d 100644 --- a/src/ngLocale/angular-locale_dje-ne.js +++ b/src/ngLocale/angular-locale_dje-ne.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dje-ne", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dje.js b/src/ngLocale/angular-locale_dje.js index 6135002e1249..e098f079089c 100644 --- a/src/ngLocale/angular-locale_dje.js +++ b/src/ngLocale/angular-locale_dje.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dje", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dua-cm.js b/src/ngLocale/angular-locale_dua-cm.js index 96b531b0d217..6dfdb108688d 100644 --- a/src/ngLocale/angular-locale_dua-cm.js +++ b/src/ngLocale/angular-locale_dua-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dua-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dua.js b/src/ngLocale/angular-locale_dua.js index 7847563edd65..1ce52d57dcbd 100644 --- a/src/ngLocale/angular-locale_dua.js +++ b/src/ngLocale/angular-locale_dua.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dua", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dyo-sn.js b/src/ngLocale/angular-locale_dyo-sn.js index d296302c3da8..5b1fc06dec6f 100644 --- a/src/ngLocale/angular-locale_dyo-sn.js +++ b/src/ngLocale/angular-locale_dyo-sn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dyo-sn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dyo.js b/src/ngLocale/angular-locale_dyo.js index a85a5465f6c4..0c801bf20da6 100644 --- a/src/ngLocale/angular-locale_dyo.js +++ b/src/ngLocale/angular-locale_dyo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dyo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dz-bt.js b/src/ngLocale/angular-locale_dz-bt.js index 032403d5e241..170b25c0017c 100644 --- a/src/ngLocale/angular-locale_dz-bt.js +++ b/src/ngLocale/angular-locale_dz-bt.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dz-bt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_dz.js b/src/ngLocale/angular-locale_dz.js index 61c44016e454..aa926cf05609 100644 --- a/src/ngLocale/angular-locale_dz.js +++ b/src/ngLocale/angular-locale_dz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "dz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ebu-ke.js b/src/ngLocale/angular-locale_ebu-ke.js index 4ac89caf0380..048333be3130 100644 --- a/src/ngLocale/angular-locale_ebu-ke.js +++ b/src/ngLocale/angular-locale_ebu-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ebu-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ebu.js b/src/ngLocale/angular-locale_ebu.js index 550d4e1f483f..ff360066b6de 100644 --- a/src/ngLocale/angular-locale_ebu.js +++ b/src/ngLocale/angular-locale_ebu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ebu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ee-gh.js b/src/ngLocale/angular-locale_ee-gh.js index 1dbeca99695f..b27d0552109b 100644 --- a/src/ngLocale/angular-locale_ee-gh.js +++ b/src/ngLocale/angular-locale_ee-gh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ee-gh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ee-tg.js b/src/ngLocale/angular-locale_ee-tg.js index 83ecc2b76c5e..1a6c3ee017da 100644 --- a/src/ngLocale/angular-locale_ee-tg.js +++ b/src/ngLocale/angular-locale_ee-tg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ee-tg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ee.js b/src/ngLocale/angular-locale_ee.js index 5376989247b5..5aa0db880684 100644 --- a/src/ngLocale/angular-locale_ee.js +++ b/src/ngLocale/angular-locale_ee.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ee", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_el-cy.js b/src/ngLocale/angular-locale_el-cy.js index e027bb4f76f8..3f9b398244de 100644 --- a/src/ngLocale/angular-locale_el-cy.js +++ b/src/ngLocale/angular-locale_el-cy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "el-cy", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_el-gr.js b/src/ngLocale/angular-locale_el-gr.js index 786ec94d88e3..8a5207645f74 100644 --- a/src/ngLocale/angular-locale_el-gr.js +++ b/src/ngLocale/angular-locale_el-gr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "el-gr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_el.js b/src/ngLocale/angular-locale_el.js index 41ba0cedb5ec..d01b664d656d 100644 --- a/src/ngLocale/angular-locale_el.js +++ b/src/ngLocale/angular-locale_el.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "el", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-001.js b/src/ngLocale/angular-locale_en-001.js index 93ca76c4fe10..7a598c0635a2 100644 --- a/src/ngLocale/angular-locale_en-001.js +++ b/src/ngLocale/angular-locale_en-001.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-001", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-150.js b/src/ngLocale/angular-locale_en-150.js index e9b3ecdd7ca2..1eaa820b15f4 100644 --- a/src/ngLocale/angular-locale_en-150.js +++ b/src/ngLocale/angular-locale_en-150.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-150", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ag.js b/src/ngLocale/angular-locale_en-ag.js index 59e6167add30..4e2982ca0cc6 100644 --- a/src/ngLocale/angular-locale_en-ag.js +++ b/src/ngLocale/angular-locale_en-ag.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ag", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ai.js b/src/ngLocale/angular-locale_en-ai.js index 835e5960dfbf..235d3103be05 100644 --- a/src/ngLocale/angular-locale_en-ai.js +++ b/src/ngLocale/angular-locale_en-ai.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ai", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-as.js b/src/ngLocale/angular-locale_en-as.js index 80017388e356..9974a918d7cd 100644 --- a/src/ngLocale/angular-locale_en-as.js +++ b/src/ngLocale/angular-locale_en-as.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-as", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-au.js b/src/ngLocale/angular-locale_en-au.js index 6007dbdb4358..03f5fd7bf126 100644 --- a/src/ngLocale/angular-locale_en-au.js +++ b/src/ngLocale/angular-locale_en-au.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-au", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-bb.js b/src/ngLocale/angular-locale_en-bb.js index 6fdeb5ae736d..f538fe10852b 100644 --- a/src/ngLocale/angular-locale_en-bb.js +++ b/src/ngLocale/angular-locale_en-bb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-bb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-be.js b/src/ngLocale/angular-locale_en-be.js index e45cc926682d..0ffec93b62e0 100644 --- a/src/ngLocale/angular-locale_en-be.js +++ b/src/ngLocale/angular-locale_en-be.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-be", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-bm.js b/src/ngLocale/angular-locale_en-bm.js index 023e03ec0ecd..361d5958a799 100644 --- a/src/ngLocale/angular-locale_en-bm.js +++ b/src/ngLocale/angular-locale_en-bm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-bm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-bs.js b/src/ngLocale/angular-locale_en-bs.js index 0e9f1f19c018..388927cb0499 100644 --- a/src/ngLocale/angular-locale_en-bs.js +++ b/src/ngLocale/angular-locale_en-bs.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-bs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-bw.js b/src/ngLocale/angular-locale_en-bw.js index 4efce7d0135b..b06c56259120 100644 --- a/src/ngLocale/angular-locale_en-bw.js +++ b/src/ngLocale/angular-locale_en-bw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-bw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-bz.js b/src/ngLocale/angular-locale_en-bz.js index 4d93a04a80ed..bdc968b69adc 100644 --- a/src/ngLocale/angular-locale_en-bz.js +++ b/src/ngLocale/angular-locale_en-bz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-bz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ca.js b/src/ngLocale/angular-locale_en-ca.js index a0dd89ef98a6..ef39418532c8 100644 --- a/src/ngLocale/angular-locale_en-ca.js +++ b/src/ngLocale/angular-locale_en-ca.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ca", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-cc.js b/src/ngLocale/angular-locale_en-cc.js index 6dc0da09b79e..0a1b27988c1a 100644 --- a/src/ngLocale/angular-locale_en-cc.js +++ b/src/ngLocale/angular-locale_en-cc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-cc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ck.js b/src/ngLocale/angular-locale_en-ck.js index 44216ccc77fd..42f00dfbad69 100644 --- a/src/ngLocale/angular-locale_en-ck.js +++ b/src/ngLocale/angular-locale_en-ck.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ck", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-cm.js b/src/ngLocale/angular-locale_en-cm.js index 50117866d5a9..49d7e8c29211 100644 --- a/src/ngLocale/angular-locale_en-cm.js +++ b/src/ngLocale/angular-locale_en-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-cx.js b/src/ngLocale/angular-locale_en-cx.js index c96687eba571..38a2e7351575 100644 --- a/src/ngLocale/angular-locale_en-cx.js +++ b/src/ngLocale/angular-locale_en-cx.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-cx", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-dg.js b/src/ngLocale/angular-locale_en-dg.js index e05a895d325b..98a1c8004507 100644 --- a/src/ngLocale/angular-locale_en-dg.js +++ b/src/ngLocale/angular-locale_en-dg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-dg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-dm.js b/src/ngLocale/angular-locale_en-dm.js index 8291cfdde813..762b1e8c9e86 100644 --- a/src/ngLocale/angular-locale_en-dm.js +++ b/src/ngLocale/angular-locale_en-dm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-dm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-er.js b/src/ngLocale/angular-locale_en-er.js index 3e83c7a3c38d..d9ed431b0ac7 100644 --- a/src/ngLocale/angular-locale_en-er.js +++ b/src/ngLocale/angular-locale_en-er.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-er", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-fj.js b/src/ngLocale/angular-locale_en-fj.js index 2b69c7672897..8de0a7683141 100644 --- a/src/ngLocale/angular-locale_en-fj.js +++ b/src/ngLocale/angular-locale_en-fj.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-fj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-fk.js b/src/ngLocale/angular-locale_en-fk.js index 3f40cf15eaf1..b8f2ce17298d 100644 --- a/src/ngLocale/angular-locale_en-fk.js +++ b/src/ngLocale/angular-locale_en-fk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-fk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-fm.js b/src/ngLocale/angular-locale_en-fm.js index bde784576e69..20ce533313d5 100644 --- a/src/ngLocale/angular-locale_en-fm.js +++ b/src/ngLocale/angular-locale_en-fm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-fm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gb.js b/src/ngLocale/angular-locale_en-gb.js index 55698f0e02f9..5c12bf56a9f0 100644 --- a/src/ngLocale/angular-locale_en-gb.js +++ b/src/ngLocale/angular-locale_en-gb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gd.js b/src/ngLocale/angular-locale_en-gd.js index 140f271ec9f2..a583526c28b5 100644 --- a/src/ngLocale/angular-locale_en-gd.js +++ b/src/ngLocale/angular-locale_en-gd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gg.js b/src/ngLocale/angular-locale_en-gg.js index b2cadd100319..3f502d979c52 100644 --- a/src/ngLocale/angular-locale_en-gg.js +++ b/src/ngLocale/angular-locale_en-gg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gh.js b/src/ngLocale/angular-locale_en-gh.js index eab3edd75585..5cbda2ad1331 100644 --- a/src/ngLocale/angular-locale_en-gh.js +++ b/src/ngLocale/angular-locale_en-gh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gi.js b/src/ngLocale/angular-locale_en-gi.js index 47c2017244dd..5dbe1b62b5b7 100644 --- a/src/ngLocale/angular-locale_en-gi.js +++ b/src/ngLocale/angular-locale_en-gi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gm.js b/src/ngLocale/angular-locale_en-gm.js index d04d23607759..c0ed3487405b 100644 --- a/src/ngLocale/angular-locale_en-gm.js +++ b/src/ngLocale/angular-locale_en-gm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gu.js b/src/ngLocale/angular-locale_en-gu.js index 4aab0ac230e7..b5846fbe4130 100644 --- a/src/ngLocale/angular-locale_en-gu.js +++ b/src/ngLocale/angular-locale_en-gu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-gy.js b/src/ngLocale/angular-locale_en-gy.js index f438bcc41ed2..4f23b884da14 100644 --- a/src/ngLocale/angular-locale_en-gy.js +++ b/src/ngLocale/angular-locale_en-gy.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-gy", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-hk.js b/src/ngLocale/angular-locale_en-hk.js index 1a5ef292d87d..117c76958524 100644 --- a/src/ngLocale/angular-locale_en-hk.js +++ b/src/ngLocale/angular-locale_en-hk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-hk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ie.js b/src/ngLocale/angular-locale_en-ie.js index f48a34c2b79e..a4a40f8e3eb8 100644 --- a/src/ngLocale/angular-locale_en-ie.js +++ b/src/ngLocale/angular-locale_en-ie.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ie", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-im.js b/src/ngLocale/angular-locale_en-im.js index daea98fa6a93..49857629af43 100644 --- a/src/ngLocale/angular-locale_en-im.js +++ b/src/ngLocale/angular-locale_en-im.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-im", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-in.js b/src/ngLocale/angular-locale_en-in.js index e33c9057c7b0..23cdd9dbb5cb 100644 --- a/src/ngLocale/angular-locale_en-in.js +++ b/src/ngLocale/angular-locale_en-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-io.js b/src/ngLocale/angular-locale_en-io.js index b9511f6060ff..9c6a8be1dcee 100644 --- a/src/ngLocale/angular-locale_en-io.js +++ b/src/ngLocale/angular-locale_en-io.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-io", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-iso.js b/src/ngLocale/angular-locale_en-iso.js index 0c9874fa1089..72386bbc037d 100644 --- a/src/ngLocale/angular-locale_en-iso.js +++ b/src/ngLocale/angular-locale_en-iso.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-iso", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-je.js b/src/ngLocale/angular-locale_en-je.js index e504c3e57cb9..60291ff4d720 100644 --- a/src/ngLocale/angular-locale_en-je.js +++ b/src/ngLocale/angular-locale_en-je.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-je", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-jm.js b/src/ngLocale/angular-locale_en-jm.js index c835cd37a7de..a2a74bddde0b 100644 --- a/src/ngLocale/angular-locale_en-jm.js +++ b/src/ngLocale/angular-locale_en-jm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-jm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ke.js b/src/ngLocale/angular-locale_en-ke.js index 7f753212382e..c56cb53d5153 100644 --- a/src/ngLocale/angular-locale_en-ke.js +++ b/src/ngLocale/angular-locale_en-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ki.js b/src/ngLocale/angular-locale_en-ki.js index f2e7d7374140..1f36edd659c9 100644 --- a/src/ngLocale/angular-locale_en-ki.js +++ b/src/ngLocale/angular-locale_en-ki.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ki", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-kn.js b/src/ngLocale/angular-locale_en-kn.js index b88ec0019e38..a5ca93b5ed66 100644 --- a/src/ngLocale/angular-locale_en-kn.js +++ b/src/ngLocale/angular-locale_en-kn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-kn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ky.js b/src/ngLocale/angular-locale_en-ky.js index 65ce44d9cb79..f443e425da0c 100644 --- a/src/ngLocale/angular-locale_en-ky.js +++ b/src/ngLocale/angular-locale_en-ky.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ky", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-lc.js b/src/ngLocale/angular-locale_en-lc.js index a56e0c4590c5..e1305d38e5bb 100644 --- a/src/ngLocale/angular-locale_en-lc.js +++ b/src/ngLocale/angular-locale_en-lc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-lc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-lr.js b/src/ngLocale/angular-locale_en-lr.js index d6ad55ec7d33..c7560852f075 100644 --- a/src/ngLocale/angular-locale_en-lr.js +++ b/src/ngLocale/angular-locale_en-lr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-lr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ls.js b/src/ngLocale/angular-locale_en-ls.js index 25fdad7a6061..52bb1a2a472e 100644 --- a/src/ngLocale/angular-locale_en-ls.js +++ b/src/ngLocale/angular-locale_en-ls.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ls", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mg.js b/src/ngLocale/angular-locale_en-mg.js index d755493432ec..b55fa010cec3 100644 --- a/src/ngLocale/angular-locale_en-mg.js +++ b/src/ngLocale/angular-locale_en-mg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mh.js b/src/ngLocale/angular-locale_en-mh.js index 68f14792a2aa..da5f86d20be3 100644 --- a/src/ngLocale/angular-locale_en-mh.js +++ b/src/ngLocale/angular-locale_en-mh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mo.js b/src/ngLocale/angular-locale_en-mo.js index 81daabbc7bc3..52eac37a6e5b 100644 --- a/src/ngLocale/angular-locale_en-mo.js +++ b/src/ngLocale/angular-locale_en-mo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mp.js b/src/ngLocale/angular-locale_en-mp.js index ebc6affb1256..a123093f7474 100644 --- a/src/ngLocale/angular-locale_en-mp.js +++ b/src/ngLocale/angular-locale_en-mp.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mp", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ms.js b/src/ngLocale/angular-locale_en-ms.js index 57501a9ee204..b9506dee12bf 100644 --- a/src/ngLocale/angular-locale_en-ms.js +++ b/src/ngLocale/angular-locale_en-ms.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ms", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mt.js b/src/ngLocale/angular-locale_en-mt.js index fef367a83ad9..27eb36923838 100644 --- a/src/ngLocale/angular-locale_en-mt.js +++ b/src/ngLocale/angular-locale_en-mt.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mu.js b/src/ngLocale/angular-locale_en-mu.js index 46d6836521d6..a0fcf2a717c9 100644 --- a/src/ngLocale/angular-locale_en-mu.js +++ b/src/ngLocale/angular-locale_en-mu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-mw.js b/src/ngLocale/angular-locale_en-mw.js index a6775457eb05..a22686c1268f 100644 --- a/src/ngLocale/angular-locale_en-mw.js +++ b/src/ngLocale/angular-locale_en-mw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-mw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-na.js b/src/ngLocale/angular-locale_en-na.js index 6af1dd7e32ad..b9f55dcd7b21 100644 --- a/src/ngLocale/angular-locale_en-na.js +++ b/src/ngLocale/angular-locale_en-na.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-na", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-nf.js b/src/ngLocale/angular-locale_en-nf.js index cc179bd9255f..6fac4fe08991 100644 --- a/src/ngLocale/angular-locale_en-nf.js +++ b/src/ngLocale/angular-locale_en-nf.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-nf", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ng.js b/src/ngLocale/angular-locale_en-ng.js index 3402900ea4c9..7b7dbb7c6f85 100644 --- a/src/ngLocale/angular-locale_en-ng.js +++ b/src/ngLocale/angular-locale_en-ng.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ng", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-nr.js b/src/ngLocale/angular-locale_en-nr.js index 1d2316cc30f8..9633913101e0 100644 --- a/src/ngLocale/angular-locale_en-nr.js +++ b/src/ngLocale/angular-locale_en-nr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-nr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-nu.js b/src/ngLocale/angular-locale_en-nu.js index 8a04e160821e..38578abbaba0 100644 --- a/src/ngLocale/angular-locale_en-nu.js +++ b/src/ngLocale/angular-locale_en-nu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-nu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-nz.js b/src/ngLocale/angular-locale_en-nz.js index 7455b329d409..a025b2c02ef1 100644 --- a/src/ngLocale/angular-locale_en-nz.js +++ b/src/ngLocale/angular-locale_en-nz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-nz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-pg.js b/src/ngLocale/angular-locale_en-pg.js index f211e877b9d5..c47027cab113 100644 --- a/src/ngLocale/angular-locale_en-pg.js +++ b/src/ngLocale/angular-locale_en-pg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-pg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ph.js b/src/ngLocale/angular-locale_en-ph.js index 56d5f93aa934..6ac235a0f402 100644 --- a/src/ngLocale/angular-locale_en-ph.js +++ b/src/ngLocale/angular-locale_en-ph.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ph", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-pk.js b/src/ngLocale/angular-locale_en-pk.js index 887629343c9a..ad20eb10c42d 100644 --- a/src/ngLocale/angular-locale_en-pk.js +++ b/src/ngLocale/angular-locale_en-pk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-pk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-pn.js b/src/ngLocale/angular-locale_en-pn.js index 9a7e75b7e0f8..f089133c77ca 100644 --- a/src/ngLocale/angular-locale_en-pn.js +++ b/src/ngLocale/angular-locale_en-pn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-pn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-pr.js b/src/ngLocale/angular-locale_en-pr.js index 1cae7bc1ee45..23e6eb1f30a5 100644 --- a/src/ngLocale/angular-locale_en-pr.js +++ b/src/ngLocale/angular-locale_en-pr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-pr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-pw.js b/src/ngLocale/angular-locale_en-pw.js index 75ad17041484..4083deb77274 100644 --- a/src/ngLocale/angular-locale_en-pw.js +++ b/src/ngLocale/angular-locale_en-pw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-pw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-rw.js b/src/ngLocale/angular-locale_en-rw.js index 3cd2e41346f5..88426daf6cfd 100644 --- a/src/ngLocale/angular-locale_en-rw.js +++ b/src/ngLocale/angular-locale_en-rw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-rw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sb.js b/src/ngLocale/angular-locale_en-sb.js index 75ba68f590a6..3692838bd04d 100644 --- a/src/ngLocale/angular-locale_en-sb.js +++ b/src/ngLocale/angular-locale_en-sb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sc.js b/src/ngLocale/angular-locale_en-sc.js index a3567e7025fb..bc00e189a5d4 100644 --- a/src/ngLocale/angular-locale_en-sc.js +++ b/src/ngLocale/angular-locale_en-sc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sd.js b/src/ngLocale/angular-locale_en-sd.js index beb955584062..c4f4a862d44c 100644 --- a/src/ngLocale/angular-locale_en-sd.js +++ b/src/ngLocale/angular-locale_en-sd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sg.js b/src/ngLocale/angular-locale_en-sg.js index 8ab7c145bf82..3a819c3ffb35 100644 --- a/src/ngLocale/angular-locale_en-sg.js +++ b/src/ngLocale/angular-locale_en-sg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sh.js b/src/ngLocale/angular-locale_en-sh.js index 8a84247bafa8..fe89591cef79 100644 --- a/src/ngLocale/angular-locale_en-sh.js +++ b/src/ngLocale/angular-locale_en-sh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sl.js b/src/ngLocale/angular-locale_en-sl.js index c5a2077ccd4c..fab7c3af412b 100644 --- a/src/ngLocale/angular-locale_en-sl.js +++ b/src/ngLocale/angular-locale_en-sl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ss.js b/src/ngLocale/angular-locale_en-ss.js index c509f73b3d6b..de0eadc43e61 100644 --- a/src/ngLocale/angular-locale_en-ss.js +++ b/src/ngLocale/angular-locale_en-ss.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ss", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sx.js b/src/ngLocale/angular-locale_en-sx.js index ab9c137d261c..faba78f14d73 100644 --- a/src/ngLocale/angular-locale_en-sx.js +++ b/src/ngLocale/angular-locale_en-sx.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sx", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-sz.js b/src/ngLocale/angular-locale_en-sz.js index 814d30d12180..7c437941198c 100644 --- a/src/ngLocale/angular-locale_en-sz.js +++ b/src/ngLocale/angular-locale_en-sz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-sz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-tc.js b/src/ngLocale/angular-locale_en-tc.js index 904143fae558..6b881bdd42a8 100644 --- a/src/ngLocale/angular-locale_en-tc.js +++ b/src/ngLocale/angular-locale_en-tc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-tc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-tk.js b/src/ngLocale/angular-locale_en-tk.js index e3096ab8c975..f9b73741f6df 100644 --- a/src/ngLocale/angular-locale_en-tk.js +++ b/src/ngLocale/angular-locale_en-tk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-tk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-to.js b/src/ngLocale/angular-locale_en-to.js index 1693b2761031..6a859cb87e72 100644 --- a/src/ngLocale/angular-locale_en-to.js +++ b/src/ngLocale/angular-locale_en-to.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-to", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-tt.js b/src/ngLocale/angular-locale_en-tt.js index 41b86319365b..cb22b1793480 100644 --- a/src/ngLocale/angular-locale_en-tt.js +++ b/src/ngLocale/angular-locale_en-tt.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-tt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-tv.js b/src/ngLocale/angular-locale_en-tv.js index 37c736d5ea86..44005fe4a638 100644 --- a/src/ngLocale/angular-locale_en-tv.js +++ b/src/ngLocale/angular-locale_en-tv.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-tv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-tz.js b/src/ngLocale/angular-locale_en-tz.js index 61af64e70dc9..f68f0a518060 100644 --- a/src/ngLocale/angular-locale_en-tz.js +++ b/src/ngLocale/angular-locale_en-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ug.js b/src/ngLocale/angular-locale_en-ug.js index 03719ce9b746..02f012c3ad66 100644 --- a/src/ngLocale/angular-locale_en-ug.js +++ b/src/ngLocale/angular-locale_en-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-um.js b/src/ngLocale/angular-locale_en-um.js index e8bd47197345..5fcf52a01ae8 100644 --- a/src/ngLocale/angular-locale_en-um.js +++ b/src/ngLocale/angular-locale_en-um.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-um", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-us.js b/src/ngLocale/angular-locale_en-us.js index 4d9c363d9a4b..6ca9e4f42c03 100644 --- a/src/ngLocale/angular-locale_en-us.js +++ b/src/ngLocale/angular-locale_en-us.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-us", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-vc.js b/src/ngLocale/angular-locale_en-vc.js index e2d222c7ddba..bb38ca7ba7f2 100644 --- a/src/ngLocale/angular-locale_en-vc.js +++ b/src/ngLocale/angular-locale_en-vc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-vc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-vg.js b/src/ngLocale/angular-locale_en-vg.js index e40f1669bc58..a814d0f9a1b5 100644 --- a/src/ngLocale/angular-locale_en-vg.js +++ b/src/ngLocale/angular-locale_en-vg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-vg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-vi.js b/src/ngLocale/angular-locale_en-vi.js index 3f7a093a60e0..d0c27516c02e 100644 --- a/src/ngLocale/angular-locale_en-vi.js +++ b/src/ngLocale/angular-locale_en-vi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-vi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-vu.js b/src/ngLocale/angular-locale_en-vu.js index 56cb81b06cfa..252ce47ad893 100644 --- a/src/ngLocale/angular-locale_en-vu.js +++ b/src/ngLocale/angular-locale_en-vu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-vu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-ws.js b/src/ngLocale/angular-locale_en-ws.js index 71fa7d98b054..3530e90bbb08 100644 --- a/src/ngLocale/angular-locale_en-ws.js +++ b/src/ngLocale/angular-locale_en-ws.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-ws", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-za.js b/src/ngLocale/angular-locale_en-za.js index 436c9bad8afc..6e61d891d111 100644 --- a/src/ngLocale/angular-locale_en-za.js +++ b/src/ngLocale/angular-locale_en-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-zm.js b/src/ngLocale/angular-locale_en-zm.js index 3a7a2fcb21d4..718b8ff4b4e8 100644 --- a/src/ngLocale/angular-locale_en-zm.js +++ b/src/ngLocale/angular-locale_en-zm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-zm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en-zw.js b/src/ngLocale/angular-locale_en-zw.js index e30916f12933..0cf7160b638a 100644 --- a/src/ngLocale/angular-locale_en-zw.js +++ b/src/ngLocale/angular-locale_en-zw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en-zw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_en.js b/src/ngLocale/angular-locale_en.js index f1ceddf797bb..7c5e8d2f03c9 100644 --- a/src/ngLocale/angular-locale_en.js +++ b/src/ngLocale/angular-locale_en.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "en", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_eo-001.js b/src/ngLocale/angular-locale_eo-001.js index 2973382c827d..fbb83541dfb4 100644 --- a/src/ngLocale/angular-locale_eo-001.js +++ b/src/ngLocale/angular-locale_eo-001.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "eo-001", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_eo.js b/src/ngLocale/angular-locale_eo.js index d0f117ec3f75..8a0d5918009b 100644 --- a/src/ngLocale/angular-locale_eo.js +++ b/src/ngLocale/angular-locale_eo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "eo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-419.js b/src/ngLocale/angular-locale_es-419.js index 4c25ef2fa3cb..9c23e94c915a 100644 --- a/src/ngLocale/angular-locale_es-419.js +++ b/src/ngLocale/angular-locale_es-419.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-419", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ar.js b/src/ngLocale/angular-locale_es-ar.js index 06420e2726cb..aa9d0166de1e 100644 --- a/src/ngLocale/angular-locale_es-ar.js +++ b/src/ngLocale/angular-locale_es-ar.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ar", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-bo.js b/src/ngLocale/angular-locale_es-bo.js index 42355905bf40..26828bcab94b 100644 --- a/src/ngLocale/angular-locale_es-bo.js +++ b/src/ngLocale/angular-locale_es-bo.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-bo", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-cl.js b/src/ngLocale/angular-locale_es-cl.js index 8b4ad2524b41..fc84ae29992c 100644 --- a/src/ngLocale/angular-locale_es-cl.js +++ b/src/ngLocale/angular-locale_es-cl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-cl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-co.js b/src/ngLocale/angular-locale_es-co.js index 4ec4e2438f27..7a929adc3cd1 100644 --- a/src/ngLocale/angular-locale_es-co.js +++ b/src/ngLocale/angular-locale_es-co.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-co", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-cr.js b/src/ngLocale/angular-locale_es-cr.js index 141ef30c9cfb..3dc01eea1e8c 100644 --- a/src/ngLocale/angular-locale_es-cr.js +++ b/src/ngLocale/angular-locale_es-cr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-cr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-cu.js b/src/ngLocale/angular-locale_es-cu.js index 2606ede2bc05..a2c8695e8b55 100644 --- a/src/ngLocale/angular-locale_es-cu.js +++ b/src/ngLocale/angular-locale_es-cu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-cu", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-do.js b/src/ngLocale/angular-locale_es-do.js index ad3126fa5d6f..833b829145da 100644 --- a/src/ngLocale/angular-locale_es-do.js +++ b/src/ngLocale/angular-locale_es-do.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-do", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ea.js b/src/ngLocale/angular-locale_es-ea.js index b3ff18535b59..2233f3755a97 100644 --- a/src/ngLocale/angular-locale_es-ea.js +++ b/src/ngLocale/angular-locale_es-ea.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ea", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ec.js b/src/ngLocale/angular-locale_es-ec.js index 95fa3d234d1b..15f46c8f45cc 100644 --- a/src/ngLocale/angular-locale_es-ec.js +++ b/src/ngLocale/angular-locale_es-ec.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ec", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-es.js b/src/ngLocale/angular-locale_es-es.js index 279b2301f162..819675391f5a 100644 --- a/src/ngLocale/angular-locale_es-es.js +++ b/src/ngLocale/angular-locale_es-es.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-es", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-gq.js b/src/ngLocale/angular-locale_es-gq.js index 2e181493dd05..2f92c53c5181 100644 --- a/src/ngLocale/angular-locale_es-gq.js +++ b/src/ngLocale/angular-locale_es-gq.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-gq", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-gt.js b/src/ngLocale/angular-locale_es-gt.js index 3e0a13f2e084..62685ee66b24 100644 --- a/src/ngLocale/angular-locale_es-gt.js +++ b/src/ngLocale/angular-locale_es-gt.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-gt", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-hn.js b/src/ngLocale/angular-locale_es-hn.js index 55f05b5a1e32..80aa6acc2c59 100644 --- a/src/ngLocale/angular-locale_es-hn.js +++ b/src/ngLocale/angular-locale_es-hn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-hn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ic.js b/src/ngLocale/angular-locale_es-ic.js index 5becec0e46cf..f280db639e91 100644 --- a/src/ngLocale/angular-locale_es-ic.js +++ b/src/ngLocale/angular-locale_es-ic.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ic", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-mx.js b/src/ngLocale/angular-locale_es-mx.js index 8e3acbadccb9..9a64d0a05aee 100644 --- a/src/ngLocale/angular-locale_es-mx.js +++ b/src/ngLocale/angular-locale_es-mx.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-mx", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ni.js b/src/ngLocale/angular-locale_es-ni.js index 34182c7cf5f3..21ffe12fea84 100644 --- a/src/ngLocale/angular-locale_es-ni.js +++ b/src/ngLocale/angular-locale_es-ni.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ni", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-pa.js b/src/ngLocale/angular-locale_es-pa.js index f96f17cdc85f..7a2beb96bc39 100644 --- a/src/ngLocale/angular-locale_es-pa.js +++ b/src/ngLocale/angular-locale_es-pa.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-pa", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-pe.js b/src/ngLocale/angular-locale_es-pe.js index f2aef8ffd7d5..b18343a6ef64 100644 --- a/src/ngLocale/angular-locale_es-pe.js +++ b/src/ngLocale/angular-locale_es-pe.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-pe", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ph.js b/src/ngLocale/angular-locale_es-ph.js index 8153a269df35..fbf78cf001a9 100644 --- a/src/ngLocale/angular-locale_es-ph.js +++ b/src/ngLocale/angular-locale_es-ph.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ph", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-pr.js b/src/ngLocale/angular-locale_es-pr.js index 7b29d6a23645..d1b327882c00 100644 --- a/src/ngLocale/angular-locale_es-pr.js +++ b/src/ngLocale/angular-locale_es-pr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-pr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-py.js b/src/ngLocale/angular-locale_es-py.js index c1b9d88e409c..55e3db0c5db8 100644 --- a/src/ngLocale/angular-locale_es-py.js +++ b/src/ngLocale/angular-locale_es-py.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-py", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-sv.js b/src/ngLocale/angular-locale_es-sv.js index 5e8465c4da85..05621f7cfda8 100644 --- a/src/ngLocale/angular-locale_es-sv.js +++ b/src/ngLocale/angular-locale_es-sv.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-sv", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-us.js b/src/ngLocale/angular-locale_es-us.js index 097aa899eee8..7e6d508827ac 100644 --- a/src/ngLocale/angular-locale_es-us.js +++ b/src/ngLocale/angular-locale_es-us.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-us", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-uy.js b/src/ngLocale/angular-locale_es-uy.js index dd88b4909335..c33304943ac5 100644 --- a/src/ngLocale/angular-locale_es-uy.js +++ b/src/ngLocale/angular-locale_es-uy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-uy", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es-ve.js b/src/ngLocale/angular-locale_es-ve.js index c31a02356242..65a667c35764 100644 --- a/src/ngLocale/angular-locale_es-ve.js +++ b/src/ngLocale/angular-locale_es-ve.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es-ve", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_es.js b/src/ngLocale/angular-locale_es.js index 71c241e69851..647890bfcadc 100644 --- a/src/ngLocale/angular-locale_es.js +++ b/src/ngLocale/angular-locale_es.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "es", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_et-ee.js b/src/ngLocale/angular-locale_et-ee.js index e1e6d58251cb..f1456fea4ad1 100644 --- a/src/ngLocale/angular-locale_et-ee.js +++ b/src/ngLocale/angular-locale_et-ee.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "et-ee", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_et.js b/src/ngLocale/angular-locale_et.js index 1ba87ad57d7b..e1d6093e6652 100644 --- a/src/ngLocale/angular-locale_et.js +++ b/src/ngLocale/angular-locale_et.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_eu-es.js b/src/ngLocale/angular-locale_eu-es.js index 586a31a3650b..a6d6d23d5387 100644 --- a/src/ngLocale/angular-locale_eu-es.js +++ b/src/ngLocale/angular-locale_eu-es.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "eu-es", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_eu.js b/src/ngLocale/angular-locale_eu.js index 02df0205defa..8a55b1388981 100644 --- a/src/ngLocale/angular-locale_eu.js +++ b/src/ngLocale/angular-locale_eu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "eu", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ewo-cm.js b/src/ngLocale/angular-locale_ewo-cm.js index feb2bae03a7a..28e20ed77aae 100644 --- a/src/ngLocale/angular-locale_ewo-cm.js +++ b/src/ngLocale/angular-locale_ewo-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ewo-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ewo.js b/src/ngLocale/angular-locale_ewo.js index 12d2cfc889e7..14b754cab917 100644 --- a/src/ngLocale/angular-locale_ewo.js +++ b/src/ngLocale/angular-locale_ewo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ewo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fa-af.js b/src/ngLocale/angular-locale_fa-af.js index 63be6b1a7f00..e33ecd6c65bd 100644 --- a/src/ngLocale/angular-locale_fa-af.js +++ b/src/ngLocale/angular-locale_fa-af.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fa-af", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fa-ir.js b/src/ngLocale/angular-locale_fa-ir.js index 0937240d9786..1e2c92698a59 100644 --- a/src/ngLocale/angular-locale_fa-ir.js +++ b/src/ngLocale/angular-locale_fa-ir.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fa-ir", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fa.js b/src/ngLocale/angular-locale_fa.js index e69e97405cf4..d011ce3ab48e 100644 --- a/src/ngLocale/angular-locale_fa.js +++ b/src/ngLocale/angular-locale_fa.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fa", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ff-cm.js b/src/ngLocale/angular-locale_ff-cm.js index d975a9ca546a..029357c1584c 100644 --- a/src/ngLocale/angular-locale_ff-cm.js +++ b/src/ngLocale/angular-locale_ff-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ff-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ff-gn.js b/src/ngLocale/angular-locale_ff-gn.js index a6802939c8d1..5b1c33585e9a 100644 --- a/src/ngLocale/angular-locale_ff-gn.js +++ b/src/ngLocale/angular-locale_ff-gn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ff-gn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ff-mr.js b/src/ngLocale/angular-locale_ff-mr.js index 7453cc8a0bef..db8875e9e3c4 100644 --- a/src/ngLocale/angular-locale_ff-mr.js +++ b/src/ngLocale/angular-locale_ff-mr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ff-mr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ff-sn.js b/src/ngLocale/angular-locale_ff-sn.js index 2ae29171cb64..bd7853cb5b42 100644 --- a/src/ngLocale/angular-locale_ff-sn.js +++ b/src/ngLocale/angular-locale_ff-sn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ff-sn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ff.js b/src/ngLocale/angular-locale_ff.js index 8f213c509ab7..a3a0460d28e7 100644 --- a/src/ngLocale/angular-locale_ff.js +++ b/src/ngLocale/angular-locale_ff.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ff", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fi-fi.js b/src/ngLocale/angular-locale_fi-fi.js index bb5b78d29359..548b266209dc 100644 --- a/src/ngLocale/angular-locale_fi-fi.js +++ b/src/ngLocale/angular-locale_fi-fi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fi-fi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fi.js b/src/ngLocale/angular-locale_fi.js index 15d0b0e9534c..fa39b92fa3da 100644 --- a/src/ngLocale/angular-locale_fi.js +++ b/src/ngLocale/angular-locale_fi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fil-ph.js b/src/ngLocale/angular-locale_fil-ph.js index e328cb627a51..f2353366de11 100644 --- a/src/ngLocale/angular-locale_fil-ph.js +++ b/src/ngLocale/angular-locale_fil-ph.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fil-ph", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && (i == 1 || i == 2 || i == 3) || vf.v == 0 && i % 10 != 4 && i % 10 != 6 && i % 10 != 9 || vf.v != 0 && vf.f % 10 != 4 && vf.f % 10 != 6 && vf.f % 10 != 9) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fil.js b/src/ngLocale/angular-locale_fil.js index 9240c2daa3c2..16746f74c591 100644 --- a/src/ngLocale/angular-locale_fil.js +++ b/src/ngLocale/angular-locale_fil.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fil", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && (i == 1 || i == 2 || i == 3) || vf.v == 0 && i % 10 != 4 && i % 10 != 6 && i % 10 != 9 || vf.v != 0 && vf.f % 10 != 4 && vf.f % 10 != 6 && vf.f % 10 != 9) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fo-fo.js b/src/ngLocale/angular-locale_fo-fo.js index b3a9636aba14..f1ffb9bc37bb 100644 --- a/src/ngLocale/angular-locale_fo-fo.js +++ b/src/ngLocale/angular-locale_fo-fo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fo-fo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fo.js b/src/ngLocale/angular-locale_fo.js index bc0d35d87cfe..a4abbd243a47 100644 --- a/src/ngLocale/angular-locale_fo.js +++ b/src/ngLocale/angular-locale_fo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-be.js b/src/ngLocale/angular-locale_fr-be.js index 11a8fe1da549..623df80402ba 100644 --- a/src/ngLocale/angular-locale_fr-be.js +++ b/src/ngLocale/angular-locale_fr-be.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-be", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-bf.js b/src/ngLocale/angular-locale_fr-bf.js index ce541a54340f..23f81c3ff4b4 100644 --- a/src/ngLocale/angular-locale_fr-bf.js +++ b/src/ngLocale/angular-locale_fr-bf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-bf", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-bi.js b/src/ngLocale/angular-locale_fr-bi.js index 3a89c91d5b7b..cf8af16aa412 100644 --- a/src/ngLocale/angular-locale_fr-bi.js +++ b/src/ngLocale/angular-locale_fr-bi.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-bi", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-bj.js b/src/ngLocale/angular-locale_fr-bj.js index 543cfb2b9d4d..04c8293136a9 100644 --- a/src/ngLocale/angular-locale_fr-bj.js +++ b/src/ngLocale/angular-locale_fr-bj.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-bj", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-bl.js b/src/ngLocale/angular-locale_fr-bl.js index 2becd394ebda..910538602ce3 100644 --- a/src/ngLocale/angular-locale_fr-bl.js +++ b/src/ngLocale/angular-locale_fr-bl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-bl", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ca.js b/src/ngLocale/angular-locale_fr-ca.js index 67a8a6b4673f..6ce1be7124c7 100644 --- a/src/ngLocale/angular-locale_fr-ca.js +++ b/src/ngLocale/angular-locale_fr-ca.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ca", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-cd.js b/src/ngLocale/angular-locale_fr-cd.js index d034b5162674..666a7af266bb 100644 --- a/src/ngLocale/angular-locale_fr-cd.js +++ b/src/ngLocale/angular-locale_fr-cd.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-cd", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-cf.js b/src/ngLocale/angular-locale_fr-cf.js index 6d8aeeeac4f5..5dafc262b8b4 100644 --- a/src/ngLocale/angular-locale_fr-cf.js +++ b/src/ngLocale/angular-locale_fr-cf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-cf", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-cg.js b/src/ngLocale/angular-locale_fr-cg.js index d3ae0eeb4bdc..9a7a36648204 100644 --- a/src/ngLocale/angular-locale_fr-cg.js +++ b/src/ngLocale/angular-locale_fr-cg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-cg", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ch.js b/src/ngLocale/angular-locale_fr-ch.js index 0a7bfa5ca971..be55e9f34202 100644 --- a/src/ngLocale/angular-locale_fr-ch.js +++ b/src/ngLocale/angular-locale_fr-ch.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ch", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ci.js b/src/ngLocale/angular-locale_fr-ci.js index ccb2eb1facfb..a60a08d314ac 100644 --- a/src/ngLocale/angular-locale_fr-ci.js +++ b/src/ngLocale/angular-locale_fr-ci.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ci", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-cm.js b/src/ngLocale/angular-locale_fr-cm.js index f4e40979f236..a00572bc27a3 100644 --- a/src/ngLocale/angular-locale_fr-cm.js +++ b/src/ngLocale/angular-locale_fr-cm.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-dj.js b/src/ngLocale/angular-locale_fr-dj.js index 73805db49d22..da5ad32ae0f6 100644 --- a/src/ngLocale/angular-locale_fr-dj.js +++ b/src/ngLocale/angular-locale_fr-dj.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-dj", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-dz.js b/src/ngLocale/angular-locale_fr-dz.js index f1d35c4002cd..a2da5c93deb2 100644 --- a/src/ngLocale/angular-locale_fr-dz.js +++ b/src/ngLocale/angular-locale_fr-dz.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-dz", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-fr.js b/src/ngLocale/angular-locale_fr-fr.js index 0385b8e60e62..adac17d9b7d7 100644 --- a/src/ngLocale/angular-locale_fr-fr.js +++ b/src/ngLocale/angular-locale_fr-fr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-fr", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ga.js b/src/ngLocale/angular-locale_fr-ga.js index eaa2c53c958c..375cd3d5ca60 100644 --- a/src/ngLocale/angular-locale_fr-ga.js +++ b/src/ngLocale/angular-locale_fr-ga.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ga", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-gf.js b/src/ngLocale/angular-locale_fr-gf.js index 71a832bf85b3..64c1fb46a731 100644 --- a/src/ngLocale/angular-locale_fr-gf.js +++ b/src/ngLocale/angular-locale_fr-gf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-gf", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-gn.js b/src/ngLocale/angular-locale_fr-gn.js index 7df0f2b37b6f..ec302c37b4d3 100644 --- a/src/ngLocale/angular-locale_fr-gn.js +++ b/src/ngLocale/angular-locale_fr-gn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-gn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-gp.js b/src/ngLocale/angular-locale_fr-gp.js index fedad44573e4..b74d67d18d73 100644 --- a/src/ngLocale/angular-locale_fr-gp.js +++ b/src/ngLocale/angular-locale_fr-gp.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-gp", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-gq.js b/src/ngLocale/angular-locale_fr-gq.js index 4583212c2d32..8d959aa9179c 100644 --- a/src/ngLocale/angular-locale_fr-gq.js +++ b/src/ngLocale/angular-locale_fr-gq.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-gq", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ht.js b/src/ngLocale/angular-locale_fr-ht.js index d55c0256e73e..5c40052ced50 100644 --- a/src/ngLocale/angular-locale_fr-ht.js +++ b/src/ngLocale/angular-locale_fr-ht.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ht", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-km.js b/src/ngLocale/angular-locale_fr-km.js index 649752cd8cab..c4270dd0dd99 100644 --- a/src/ngLocale/angular-locale_fr-km.js +++ b/src/ngLocale/angular-locale_fr-km.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-km", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-lu.js b/src/ngLocale/angular-locale_fr-lu.js index 89751730fe49..2bec375910f1 100644 --- a/src/ngLocale/angular-locale_fr-lu.js +++ b/src/ngLocale/angular-locale_fr-lu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-lu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ma.js b/src/ngLocale/angular-locale_fr-ma.js index 3aca40cf14c3..1c6742eb502e 100644 --- a/src/ngLocale/angular-locale_fr-ma.js +++ b/src/ngLocale/angular-locale_fr-ma.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ma", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-mc.js b/src/ngLocale/angular-locale_fr-mc.js index 94abd51e57be..ab90ea1c4e4d 100644 --- a/src/ngLocale/angular-locale_fr-mc.js +++ b/src/ngLocale/angular-locale_fr-mc.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-mc", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-mf.js b/src/ngLocale/angular-locale_fr-mf.js index 839d56436097..2acc80604c2d 100644 --- a/src/ngLocale/angular-locale_fr-mf.js +++ b/src/ngLocale/angular-locale_fr-mf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-mf", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-mg.js b/src/ngLocale/angular-locale_fr-mg.js index 1082582683f0..403a377f0cc6 100644 --- a/src/ngLocale/angular-locale_fr-mg.js +++ b/src/ngLocale/angular-locale_fr-mg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-mg", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ml.js b/src/ngLocale/angular-locale_fr-ml.js index 7e95fc35fb00..79ea5ba39d02 100644 --- a/src/ngLocale/angular-locale_fr-ml.js +++ b/src/ngLocale/angular-locale_fr-ml.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ml", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-mq.js b/src/ngLocale/angular-locale_fr-mq.js index 609e9d1d7873..094bd48a41f4 100644 --- a/src/ngLocale/angular-locale_fr-mq.js +++ b/src/ngLocale/angular-locale_fr-mq.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-mq", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-mr.js b/src/ngLocale/angular-locale_fr-mr.js index db1eacaa0160..f00f2ab186f2 100644 --- a/src/ngLocale/angular-locale_fr-mr.js +++ b/src/ngLocale/angular-locale_fr-mr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-mr", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-mu.js b/src/ngLocale/angular-locale_fr-mu.js index 016ed0a248e1..129173bfa321 100644 --- a/src/ngLocale/angular-locale_fr-mu.js +++ b/src/ngLocale/angular-locale_fr-mu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-mu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-nc.js b/src/ngLocale/angular-locale_fr-nc.js index 4bfad7ffb6e5..fe1d03e9c728 100644 --- a/src/ngLocale/angular-locale_fr-nc.js +++ b/src/ngLocale/angular-locale_fr-nc.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-nc", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-ne.js b/src/ngLocale/angular-locale_fr-ne.js index 32ca36772fa0..8e97467d5649 100644 --- a/src/ngLocale/angular-locale_fr-ne.js +++ b/src/ngLocale/angular-locale_fr-ne.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-ne", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-pf.js b/src/ngLocale/angular-locale_fr-pf.js index 609615be99a2..2d4bbeed2eaa 100644 --- a/src/ngLocale/angular-locale_fr-pf.js +++ b/src/ngLocale/angular-locale_fr-pf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-pf", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-pm.js b/src/ngLocale/angular-locale_fr-pm.js index 5b9eae0e68fe..f2dcdf06c49c 100644 --- a/src/ngLocale/angular-locale_fr-pm.js +++ b/src/ngLocale/angular-locale_fr-pm.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-pm", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-re.js b/src/ngLocale/angular-locale_fr-re.js index 66700cc23c30..565405cb2489 100644 --- a/src/ngLocale/angular-locale_fr-re.js +++ b/src/ngLocale/angular-locale_fr-re.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-re", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-rw.js b/src/ngLocale/angular-locale_fr-rw.js index 7d52bf7dc7ec..c29f5126a898 100644 --- a/src/ngLocale/angular-locale_fr-rw.js +++ b/src/ngLocale/angular-locale_fr-rw.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-rw", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-sc.js b/src/ngLocale/angular-locale_fr-sc.js index 27e5c2a03633..55a44ba982c2 100644 --- a/src/ngLocale/angular-locale_fr-sc.js +++ b/src/ngLocale/angular-locale_fr-sc.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-sc", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-sn.js b/src/ngLocale/angular-locale_fr-sn.js index 2ba3e849c8fd..aa754dbb5b6c 100644 --- a/src/ngLocale/angular-locale_fr-sn.js +++ b/src/ngLocale/angular-locale_fr-sn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-sn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-sy.js b/src/ngLocale/angular-locale_fr-sy.js index 710ca5b392a4..10d8f3e7e3f3 100644 --- a/src/ngLocale/angular-locale_fr-sy.js +++ b/src/ngLocale/angular-locale_fr-sy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-sy", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-td.js b/src/ngLocale/angular-locale_fr-td.js index b4cd34e2414b..0f059565fa22 100644 --- a/src/ngLocale/angular-locale_fr-td.js +++ b/src/ngLocale/angular-locale_fr-td.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-td", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-tg.js b/src/ngLocale/angular-locale_fr-tg.js index 34d06cf50125..862a53b9940f 100644 --- a/src/ngLocale/angular-locale_fr-tg.js +++ b/src/ngLocale/angular-locale_fr-tg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-tg", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-tn.js b/src/ngLocale/angular-locale_fr-tn.js index 65c20d1c7339..5ffeac920284 100644 --- a/src/ngLocale/angular-locale_fr-tn.js +++ b/src/ngLocale/angular-locale_fr-tn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-tn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-vu.js b/src/ngLocale/angular-locale_fr-vu.js index 9b65eee44ccf..76ab118eab34 100644 --- a/src/ngLocale/angular-locale_fr-vu.js +++ b/src/ngLocale/angular-locale_fr-vu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-vu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-wf.js b/src/ngLocale/angular-locale_fr-wf.js index 75708edaaff0..840ad714bdc0 100644 --- a/src/ngLocale/angular-locale_fr-wf.js +++ b/src/ngLocale/angular-locale_fr-wf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-wf", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr-yt.js b/src/ngLocale/angular-locale_fr-yt.js index 4daec5476267..b0cc0285aef3 100644 --- a/src/ngLocale/angular-locale_fr-yt.js +++ b/src/ngLocale/angular-locale_fr-yt.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr-yt", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fr.js b/src/ngLocale/angular-locale_fr.js index 74d4270305aa..00e11316ffd4 100644 --- a/src/ngLocale/angular-locale_fr.js +++ b/src/ngLocale/angular-locale_fr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "fr", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fur-it.js b/src/ngLocale/angular-locale_fur-it.js index 960be4d090fd..c6320fc8a098 100644 --- a/src/ngLocale/angular-locale_fur-it.js +++ b/src/ngLocale/angular-locale_fur-it.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fur-it", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fur.js b/src/ngLocale/angular-locale_fur.js index c5c46f118109..53bf1fd79e5d 100644 --- a/src/ngLocale/angular-locale_fur.js +++ b/src/ngLocale/angular-locale_fur.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fur", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fy-nl.js b/src/ngLocale/angular-locale_fy-nl.js index d0575afcc182..1c76015ede4e 100644 --- a/src/ngLocale/angular-locale_fy-nl.js +++ b/src/ngLocale/angular-locale_fy-nl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fy-nl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_fy.js b/src/ngLocale/angular-locale_fy.js index 8d7a95851c0e..f25abbf906ba 100644 --- a/src/ngLocale/angular-locale_fy.js +++ b/src/ngLocale/angular-locale_fy.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "fy", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ga-ie.js b/src/ngLocale/angular-locale_ga-ie.js index 57ae3fb9c883..487b959c9017 100644 --- a/src/ngLocale/angular-locale_ga-ie.js +++ b/src/ngLocale/angular-locale_ga-ie.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ga-ie", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n >= 3 && n <= 6) { return PLURAL_CATEGORY.FEW; } if (n >= 7 && n <= 10) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ga.js b/src/ngLocale/angular-locale_ga.js index 69c4686d69df..b6291743f121 100644 --- a/src/ngLocale/angular-locale_ga.js +++ b/src/ngLocale/angular-locale_ga.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ga", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n >= 3 && n <= 6) { return PLURAL_CATEGORY.FEW; } if (n >= 7 && n <= 10) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gd-gb.js b/src/ngLocale/angular-locale_gd-gb.js index 7cd6b9943115..39b47a0d8850 100644 --- a/src/ngLocale/angular-locale_gd-gb.js +++ b/src/ngLocale/angular-locale_gd-gb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "gd-gb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gd.js b/src/ngLocale/angular-locale_gd.js index 2964a49e1055..5d8d68da1daf 100644 --- a/src/ngLocale/angular-locale_gd.js +++ b/src/ngLocale/angular-locale_gd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "gd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gl-es.js b/src/ngLocale/angular-locale_gl-es.js index cfc6bbac7287..e40a8254c162 100644 --- a/src/ngLocale/angular-locale_gl-es.js +++ b/src/ngLocale/angular-locale_gl-es.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "gl-es", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gl.js b/src/ngLocale/angular-locale_gl.js index 77f83f51e501..d17ec63dc910 100644 --- a/src/ngLocale/angular-locale_gl.js +++ b/src/ngLocale/angular-locale_gl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "gl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gsw-ch.js b/src/ngLocale/angular-locale_gsw-ch.js index 68501a27d6b2..dfc57889fb05 100644 --- a/src/ngLocale/angular-locale_gsw-ch.js +++ b/src/ngLocale/angular-locale_gsw-ch.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "gsw-ch", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gsw-li.js b/src/ngLocale/angular-locale_gsw-li.js index 3660380b5959..8482f222593b 100644 --- a/src/ngLocale/angular-locale_gsw-li.js +++ b/src/ngLocale/angular-locale_gsw-li.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "gsw-li", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gsw.js b/src/ngLocale/angular-locale_gsw.js index 32182d1c9bad..b05cc6a43e7a 100644 --- a/src/ngLocale/angular-locale_gsw.js +++ b/src/ngLocale/angular-locale_gsw.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "gsw", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gu-in.js b/src/ngLocale/angular-locale_gu-in.js index f93198870b69..9065f454d9ed 100644 --- a/src/ngLocale/angular-locale_gu-in.js +++ b/src/ngLocale/angular-locale_gu-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "gu-in", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gu.js b/src/ngLocale/angular-locale_gu.js index afb01c638c4d..0e20f7c552bf 100644 --- a/src/ngLocale/angular-locale_gu.js +++ b/src/ngLocale/angular-locale_gu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "gu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_guz-ke.js b/src/ngLocale/angular-locale_guz-ke.js index 34984a20a363..0bbe69d52555 100644 --- a/src/ngLocale/angular-locale_guz-ke.js +++ b/src/ngLocale/angular-locale_guz-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "guz-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_guz.js b/src/ngLocale/angular-locale_guz.js index 5032ae8266ab..2fa76b328ecd 100644 --- a/src/ngLocale/angular-locale_guz.js +++ b/src/ngLocale/angular-locale_guz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "guz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gv-im.js b/src/ngLocale/angular-locale_gv-im.js index 09cce8eab7bb..196a8e1ff87b 100644 --- a/src/ngLocale/angular-locale_gv-im.js +++ b/src/ngLocale/angular-locale_gv-im.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "gv-im", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_gv.js b/src/ngLocale/angular-locale_gv.js index 1ac03d6584a5..b827f2b654c0 100644 --- a/src/ngLocale/angular-locale_gv.js +++ b/src/ngLocale/angular-locale_gv.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "gv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ha-latn-gh.js b/src/ngLocale/angular-locale_ha-latn-gh.js index 91b56e0ea54b..e168e449f2ef 100644 --- a/src/ngLocale/angular-locale_ha-latn-gh.js +++ b/src/ngLocale/angular-locale_ha-latn-gh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ha-latn-gh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ha-latn-ne.js b/src/ngLocale/angular-locale_ha-latn-ne.js index 396679b4cac0..6b34c92cb7a3 100644 --- a/src/ngLocale/angular-locale_ha-latn-ne.js +++ b/src/ngLocale/angular-locale_ha-latn-ne.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ha-latn-ne", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ha-latn-ng.js b/src/ngLocale/angular-locale_ha-latn-ng.js index 0dd1e7b191df..262338f325ae 100644 --- a/src/ngLocale/angular-locale_ha-latn-ng.js +++ b/src/ngLocale/angular-locale_ha-latn-ng.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ha-latn-ng", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ha-latn.js b/src/ngLocale/angular-locale_ha-latn.js index eaaf5b9730f6..7fdd7a2d5285 100644 --- a/src/ngLocale/angular-locale_ha-latn.js +++ b/src/ngLocale/angular-locale_ha-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ha-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ha.js b/src/ngLocale/angular-locale_ha.js index b32ddba3c5fa..7fd74208b2e5 100644 --- a/src/ngLocale/angular-locale_ha.js +++ b/src/ngLocale/angular-locale_ha.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ha", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_haw-us.js b/src/ngLocale/angular-locale_haw-us.js index 723ddebfca72..0699f565c897 100644 --- a/src/ngLocale/angular-locale_haw-us.js +++ b/src/ngLocale/angular-locale_haw-us.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "haw-us", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_haw.js b/src/ngLocale/angular-locale_haw.js index b71e71ec9d8c..866c92958589 100644 --- a/src/ngLocale/angular-locale_haw.js +++ b/src/ngLocale/angular-locale_haw.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "haw", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_he-il.js b/src/ngLocale/angular-locale_he-il.js index fa4cd8bff099..cdf66c3b1dae 100644 --- a/src/ngLocale/angular-locale_he-il.js +++ b/src/ngLocale/angular-locale_he-il.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "he-il", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i == 2 && vf.v == 0) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && (n < 0 || n > 10) && n % 10 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_he.js b/src/ngLocale/angular-locale_he.js index 06af70fc1736..1c7d62b0673b 100644 --- a/src/ngLocale/angular-locale_he.js +++ b/src/ngLocale/angular-locale_he.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "he", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i == 2 && vf.v == 0) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && (n < 0 || n > 10) && n % 10 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hi-in.js b/src/ngLocale/angular-locale_hi-in.js index 1787db3a18c2..7420d14b7acd 100644 --- a/src/ngLocale/angular-locale_hi-in.js +++ b/src/ngLocale/angular-locale_hi-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "hi-in", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hi.js b/src/ngLocale/angular-locale_hi.js index 56f4d9934562..b33859056045 100644 --- a/src/ngLocale/angular-locale_hi.js +++ b/src/ngLocale/angular-locale_hi.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "hi", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hr-ba.js b/src/ngLocale/angular-locale_hr-ba.js index 1d7ea288c4c2..64fe0ebd6902 100644 --- a/src/ngLocale/angular-locale_hr-ba.js +++ b/src/ngLocale/angular-locale_hr-ba.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "hr-ba", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hr-hr.js b/src/ngLocale/angular-locale_hr-hr.js index aed0ae757c10..b23a2f06c454 100644 --- a/src/ngLocale/angular-locale_hr-hr.js +++ b/src/ngLocale/angular-locale_hr-hr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "hr-hr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hr.js b/src/ngLocale/angular-locale_hr.js index feb2e2095087..583ac952a498 100644 --- a/src/ngLocale/angular-locale_hr.js +++ b/src/ngLocale/angular-locale_hr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "hr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hu-hu.js b/src/ngLocale/angular-locale_hu-hu.js index efde13bc71ea..47130b8817b8 100644 --- a/src/ngLocale/angular-locale_hu-hu.js +++ b/src/ngLocale/angular-locale_hu-hu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "hu-hu", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hu.js b/src/ngLocale/angular-locale_hu.js index 76b5311de176..b96d7310b7d2 100644 --- a/src/ngLocale/angular-locale_hu.js +++ b/src/ngLocale/angular-locale_hu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "hu", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hy-am.js b/src/ngLocale/angular-locale_hy-am.js index 490b875ae6b0..92d2d52e1d79 100644 --- a/src/ngLocale/angular-locale_hy-am.js +++ b/src/ngLocale/angular-locale_hy-am.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "hy-am", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_hy.js b/src/ngLocale/angular-locale_hy.js index c017b358f351..8a9fb3f1fd63 100644 --- a/src/ngLocale/angular-locale_hy.js +++ b/src/ngLocale/angular-locale_hy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "hy", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ia-fr.js b/src/ngLocale/angular-locale_ia-fr.js index 8be0605fa52d..037b07776ec5 100644 --- a/src/ngLocale/angular-locale_ia-fr.js +++ b/src/ngLocale/angular-locale_ia-fr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ia-fr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ia.js b/src/ngLocale/angular-locale_ia.js index bfdbf80a0bef..0e23d85da799 100644 --- a/src/ngLocale/angular-locale_ia.js +++ b/src/ngLocale/angular-locale_ia.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ia", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_id-id.js b/src/ngLocale/angular-locale_id-id.js index e6ea83040eac..5cee7a631874 100644 --- a/src/ngLocale/angular-locale_id-id.js +++ b/src/ngLocale/angular-locale_id-id.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "id-id", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_id.js b/src/ngLocale/angular-locale_id.js index f02e2affaa9a..beb909e6ff8a 100644 --- a/src/ngLocale/angular-locale_id.js +++ b/src/ngLocale/angular-locale_id.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "id", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ig-ng.js b/src/ngLocale/angular-locale_ig-ng.js index 63529f904b26..6c5c2a78421b 100644 --- a/src/ngLocale/angular-locale_ig-ng.js +++ b/src/ngLocale/angular-locale_ig-ng.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ig-ng", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ig.js b/src/ngLocale/angular-locale_ig.js index 9807cdd9dde0..f0408ad25b59 100644 --- a/src/ngLocale/angular-locale_ig.js +++ b/src/ngLocale/angular-locale_ig.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ig", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ii-cn.js b/src/ngLocale/angular-locale_ii-cn.js index c1c1cde7c268..a3fa020e3e90 100644 --- a/src/ngLocale/angular-locale_ii-cn.js +++ b/src/ngLocale/angular-locale_ii-cn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ii-cn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ii.js b/src/ngLocale/angular-locale_ii.js index a19db66bf2e6..43b1fe5f126e 100644 --- a/src/ngLocale/angular-locale_ii.js +++ b/src/ngLocale/angular-locale_ii.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ii", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_in.js b/src/ngLocale/angular-locale_in.js index 12f3cc16a6b6..b753337624fa 100644 --- a/src/ngLocale/angular-locale_in.js +++ b/src/ngLocale/angular-locale_in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "in", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_is-is.js b/src/ngLocale/angular-locale_is-is.js index d6f423af5a4e..23a35b33d789 100644 --- a/src/ngLocale/angular-locale_is-is.js +++ b/src/ngLocale/angular-locale_is-is.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "is-is", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (wt.t == 0 && i % 10 == 1 && i % 100 != 11 || wt.t != 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_is.js b/src/ngLocale/angular-locale_is.js index b1e22d314523..92ea48a7d985 100644 --- a/src/ngLocale/angular-locale_is.js +++ b/src/ngLocale/angular-locale_is.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "is", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (wt.t == 0 && i % 10 == 1 && i % 100 != 11 || wt.t != 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_it-ch.js b/src/ngLocale/angular-locale_it-ch.js index 69a80dbb343f..8fd937b0a7b8 100644 --- a/src/ngLocale/angular-locale_it-ch.js +++ b/src/ngLocale/angular-locale_it-ch.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "it-ch", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_it-it.js b/src/ngLocale/angular-locale_it-it.js index 33ef1542851e..d56ebc2fb98b 100644 --- a/src/ngLocale/angular-locale_it-it.js +++ b/src/ngLocale/angular-locale_it-it.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "it-it", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_it-sm.js b/src/ngLocale/angular-locale_it-sm.js index 90409bd780ef..2d8eb2503e14 100644 --- a/src/ngLocale/angular-locale_it-sm.js +++ b/src/ngLocale/angular-locale_it-sm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "it-sm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_it.js b/src/ngLocale/angular-locale_it.js index 7f9d44f44f00..018748544002 100644 --- a/src/ngLocale/angular-locale_it.js +++ b/src/ngLocale/angular-locale_it.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "it", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_iw.js b/src/ngLocale/angular-locale_iw.js index defb9417ff6b..2f1e0fc68f38 100644 --- a/src/ngLocale/angular-locale_iw.js +++ b/src/ngLocale/angular-locale_iw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "iw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i == 2 && vf.v == 0) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && (n < 0 || n > 10) && n % 10 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ja-jp.js b/src/ngLocale/angular-locale_ja-jp.js index 9d61848951a1..865642fe04dd 100644 --- a/src/ngLocale/angular-locale_ja-jp.js +++ b/src/ngLocale/angular-locale_ja-jp.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ja-jp", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ja.js b/src/ngLocale/angular-locale_ja.js index bdaede2b5efe..583822b0aad2 100644 --- a/src/ngLocale/angular-locale_ja.js +++ b/src/ngLocale/angular-locale_ja.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ja", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_jgo-cm.js b/src/ngLocale/angular-locale_jgo-cm.js index 79960e78c317..63a1e22ca77b 100644 --- a/src/ngLocale/angular-locale_jgo-cm.js +++ b/src/ngLocale/angular-locale_jgo-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "jgo-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_jgo.js b/src/ngLocale/angular-locale_jgo.js index cc3eca80a856..c2d203b16510 100644 --- a/src/ngLocale/angular-locale_jgo.js +++ b/src/ngLocale/angular-locale_jgo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "jgo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_jmc-tz.js b/src/ngLocale/angular-locale_jmc-tz.js index 9ec3c8393e65..39c0cff518c2 100644 --- a/src/ngLocale/angular-locale_jmc-tz.js +++ b/src/ngLocale/angular-locale_jmc-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "jmc-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_jmc.js b/src/ngLocale/angular-locale_jmc.js index 2bd03c43e0d7..112be477a4e4 100644 --- a/src/ngLocale/angular-locale_jmc.js +++ b/src/ngLocale/angular-locale_jmc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "jmc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ka-ge.js b/src/ngLocale/angular-locale_ka-ge.js index 2175b0b7cc0b..b29decc37737 100644 --- a/src/ngLocale/angular-locale_ka-ge.js +++ b/src/ngLocale/angular-locale_ka-ge.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ka-ge", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ka.js b/src/ngLocale/angular-locale_ka.js index a7826a883d4b..4478fc6375ae 100644 --- a/src/ngLocale/angular-locale_ka.js +++ b/src/ngLocale/angular-locale_ka.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ka", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kab-dz.js b/src/ngLocale/angular-locale_kab-dz.js index f0e4b8abd125..44445be6d2e7 100644 --- a/src/ngLocale/angular-locale_kab-dz.js +++ b/src/ngLocale/angular-locale_kab-dz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kab-dz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kab.js b/src/ngLocale/angular-locale_kab.js index a572f5ab9fec..8e6f29073663 100644 --- a/src/ngLocale/angular-locale_kab.js +++ b/src/ngLocale/angular-locale_kab.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kam-ke.js b/src/ngLocale/angular-locale_kam-ke.js index 3ee29efb20b1..0c98f99f11ea 100644 --- a/src/ngLocale/angular-locale_kam-ke.js +++ b/src/ngLocale/angular-locale_kam-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kam-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kam.js b/src/ngLocale/angular-locale_kam.js index b79bb622f63b..8a30b19dbbfb 100644 --- a/src/ngLocale/angular-locale_kam.js +++ b/src/ngLocale/angular-locale_kam.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kam", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kde-tz.js b/src/ngLocale/angular-locale_kde-tz.js index e237c3577394..472033f2aca5 100644 --- a/src/ngLocale/angular-locale_kde-tz.js +++ b/src/ngLocale/angular-locale_kde-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kde-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kde.js b/src/ngLocale/angular-locale_kde.js index 00599f938af1..4b322c3f46e2 100644 --- a/src/ngLocale/angular-locale_kde.js +++ b/src/ngLocale/angular-locale_kde.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kde", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kea-cv.js b/src/ngLocale/angular-locale_kea-cv.js index 821ac6a1b1ee..c224648d5510 100644 --- a/src/ngLocale/angular-locale_kea-cv.js +++ b/src/ngLocale/angular-locale_kea-cv.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kea-cv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kea.js b/src/ngLocale/angular-locale_kea.js index 19dddd2b1572..71cb5d2b076f 100644 --- a/src/ngLocale/angular-locale_kea.js +++ b/src/ngLocale/angular-locale_kea.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kea", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_khq-ml.js b/src/ngLocale/angular-locale_khq-ml.js index 4adba00ba343..73b3888acda3 100644 --- a/src/ngLocale/angular-locale_khq-ml.js +++ b/src/ngLocale/angular-locale_khq-ml.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "khq-ml", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_khq.js b/src/ngLocale/angular-locale_khq.js index dc08d02f7da8..2edec9a7036a 100644 --- a/src/ngLocale/angular-locale_khq.js +++ b/src/ngLocale/angular-locale_khq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "khq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ki-ke.js b/src/ngLocale/angular-locale_ki-ke.js index 021515629921..104a6ce01a18 100644 --- a/src/ngLocale/angular-locale_ki-ke.js +++ b/src/ngLocale/angular-locale_ki-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ki-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ki.js b/src/ngLocale/angular-locale_ki.js index 093ce8a02a77..e25e6439315e 100644 --- a/src/ngLocale/angular-locale_ki.js +++ b/src/ngLocale/angular-locale_ki.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ki", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kk-cyrl-kz.js b/src/ngLocale/angular-locale_kk-cyrl-kz.js index 802dcecb36df..38007bc568fd 100644 --- a/src/ngLocale/angular-locale_kk-cyrl-kz.js +++ b/src/ngLocale/angular-locale_kk-cyrl-kz.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "kk-cyrl-kz", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kk-cyrl.js b/src/ngLocale/angular-locale_kk-cyrl.js index aa5b07098f30..3529839b06aa 100644 --- a/src/ngLocale/angular-locale_kk-cyrl.js +++ b/src/ngLocale/angular-locale_kk-cyrl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "kk-cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kk.js b/src/ngLocale/angular-locale_kk.js index cc9d52c6d6c0..57e0f3112fc9 100644 --- a/src/ngLocale/angular-locale_kk.js +++ b/src/ngLocale/angular-locale_kk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "kk", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kkj-cm.js b/src/ngLocale/angular-locale_kkj-cm.js index 4b13712ee8fb..b305e9d21bd7 100644 --- a/src/ngLocale/angular-locale_kkj-cm.js +++ b/src/ngLocale/angular-locale_kkj-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kkj-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kkj.js b/src/ngLocale/angular-locale_kkj.js index 89de98e1a49c..f452b4c2ae67 100644 --- a/src/ngLocale/angular-locale_kkj.js +++ b/src/ngLocale/angular-locale_kkj.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kkj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kl-gl.js b/src/ngLocale/angular-locale_kl-gl.js index c31a260ad154..3177652460ea 100644 --- a/src/ngLocale/angular-locale_kl-gl.js +++ b/src/ngLocale/angular-locale_kl-gl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kl-gl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kl.js b/src/ngLocale/angular-locale_kl.js index 2680359114de..4d0c9889a8ef 100644 --- a/src/ngLocale/angular-locale_kl.js +++ b/src/ngLocale/angular-locale_kl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kln-ke.js b/src/ngLocale/angular-locale_kln-ke.js index df790a2c6db5..e792cfae7f15 100644 --- a/src/ngLocale/angular-locale_kln-ke.js +++ b/src/ngLocale/angular-locale_kln-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kln-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kln.js b/src/ngLocale/angular-locale_kln.js index a746d24288be..9e53d306fe36 100644 --- a/src/ngLocale/angular-locale_kln.js +++ b/src/ngLocale/angular-locale_kln.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kln", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_km-kh.js b/src/ngLocale/angular-locale_km-kh.js index 183e46a2bcf5..21aca9cce733 100644 --- a/src/ngLocale/angular-locale_km-kh.js +++ b/src/ngLocale/angular-locale_km-kh.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "km-kh", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_km.js b/src/ngLocale/angular-locale_km.js index b1553851acdb..8a094eed91ff 100644 --- a/src/ngLocale/angular-locale_km.js +++ b/src/ngLocale/angular-locale_km.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "km", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kn-in.js b/src/ngLocale/angular-locale_kn-in.js index f98242488a5d..53862d0eaeec 100644 --- a/src/ngLocale/angular-locale_kn-in.js +++ b/src/ngLocale/angular-locale_kn-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "kn-in", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kn.js b/src/ngLocale/angular-locale_kn.js index 1a6eaccfa0be..bf2cf50b98f8 100644 --- a/src/ngLocale/angular-locale_kn.js +++ b/src/ngLocale/angular-locale_kn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "kn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ko-kp.js b/src/ngLocale/angular-locale_ko-kp.js index 445e45bc4c3c..b4d9776343a7 100644 --- a/src/ngLocale/angular-locale_ko-kp.js +++ b/src/ngLocale/angular-locale_ko-kp.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ko-kp", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ko-kr.js b/src/ngLocale/angular-locale_ko-kr.js index c6d8fc09fd0e..c1336a102523 100644 --- a/src/ngLocale/angular-locale_ko-kr.js +++ b/src/ngLocale/angular-locale_ko-kr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ko-kr", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ko.js b/src/ngLocale/angular-locale_ko.js index b2abd2e467a7..26d69d811e4b 100644 --- a/src/ngLocale/angular-locale_ko.js +++ b/src/ngLocale/angular-locale_ko.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ko", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kok-in.js b/src/ngLocale/angular-locale_kok-in.js index 65fc245ff5f8..b9490846ef90 100644 --- a/src/ngLocale/angular-locale_kok-in.js +++ b/src/ngLocale/angular-locale_kok-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kok-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kok.js b/src/ngLocale/angular-locale_kok.js index 8246e6e0789b..d2f2ffa00b13 100644 --- a/src/ngLocale/angular-locale_kok.js +++ b/src/ngLocale/angular-locale_kok.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kok", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ks-arab-in.js b/src/ngLocale/angular-locale_ks-arab-in.js index 1cd078db4ea7..3f971acc25e4 100644 --- a/src/ngLocale/angular-locale_ks-arab-in.js +++ b/src/ngLocale/angular-locale_ks-arab-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ks-arab-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ks-arab.js b/src/ngLocale/angular-locale_ks-arab.js index d3341580a0fe..20da873cf371 100644 --- a/src/ngLocale/angular-locale_ks-arab.js +++ b/src/ngLocale/angular-locale_ks-arab.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ks-arab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ks.js b/src/ngLocale/angular-locale_ks.js index 9f5f4f79e32b..182b4318fa82 100644 --- a/src/ngLocale/angular-locale_ks.js +++ b/src/ngLocale/angular-locale_ks.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ks", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ksb-tz.js b/src/ngLocale/angular-locale_ksb-tz.js index 2a93ada94c70..ff88b0c049c6 100644 --- a/src/ngLocale/angular-locale_ksb-tz.js +++ b/src/ngLocale/angular-locale_ksb-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ksb-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ksb.js b/src/ngLocale/angular-locale_ksb.js index 05125502bbc2..760077f02f2a 100644 --- a/src/ngLocale/angular-locale_ksb.js +++ b/src/ngLocale/angular-locale_ksb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ksb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ksf-cm.js b/src/ngLocale/angular-locale_ksf-cm.js index 435f3ba436fc..d492ec00d376 100644 --- a/src/ngLocale/angular-locale_ksf-cm.js +++ b/src/ngLocale/angular-locale_ksf-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ksf-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ksf.js b/src/ngLocale/angular-locale_ksf.js index 4690d5abc6e7..c8220bc57f14 100644 --- a/src/ngLocale/angular-locale_ksf.js +++ b/src/ngLocale/angular-locale_ksf.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ksf", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ksh-de.js b/src/ngLocale/angular-locale_ksh-de.js index 268a1143f64a..2ca27f8e9ace 100644 --- a/src/ngLocale/angular-locale_ksh-de.js +++ b/src/ngLocale/angular-locale_ksh-de.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ksh-de", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ksh.js b/src/ngLocale/angular-locale_ksh.js index 42b839725d14..56e21f15ee05 100644 --- a/src/ngLocale/angular-locale_ksh.js +++ b/src/ngLocale/angular-locale_ksh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ksh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kw-gb.js b/src/ngLocale/angular-locale_kw-gb.js index 65b229263263..679bf83e78ee 100644 --- a/src/ngLocale/angular-locale_kw-gb.js +++ b/src/ngLocale/angular-locale_kw-gb.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kw-gb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_kw.js b/src/ngLocale/angular-locale_kw.js index 5fd475672e6a..920eb2e7411a 100644 --- a/src/ngLocale/angular-locale_kw.js +++ b/src/ngLocale/angular-locale_kw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "kw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ky-cyrl-kg.js b/src/ngLocale/angular-locale_ky-cyrl-kg.js index 5fa37fa8920a..9d926161f380 100644 --- a/src/ngLocale/angular-locale_ky-cyrl-kg.js +++ b/src/ngLocale/angular-locale_ky-cyrl-kg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ky-cyrl-kg", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ky-cyrl.js b/src/ngLocale/angular-locale_ky-cyrl.js index c5d5427dc109..c4e8066be9ac 100644 --- a/src/ngLocale/angular-locale_ky-cyrl.js +++ b/src/ngLocale/angular-locale_ky-cyrl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ky-cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ky.js b/src/ngLocale/angular-locale_ky.js index a715675ce56b..26e823cc7c4e 100644 --- a/src/ngLocale/angular-locale_ky.js +++ b/src/ngLocale/angular-locale_ky.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ky", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lag-tz.js b/src/ngLocale/angular-locale_lag-tz.js index 8424d3acb9cb..491a92cb7462 100644 --- a/src/ngLocale/angular-locale_lag-tz.js +++ b/src/ngLocale/angular-locale_lag-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lag-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lag.js b/src/ngLocale/angular-locale_lag.js index 7de8ade5cc30..ad1ddd2d90b4 100644 --- a/src/ngLocale/angular-locale_lag.js +++ b/src/ngLocale/angular-locale_lag.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lag", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lg-ug.js b/src/ngLocale/angular-locale_lg-ug.js index e2972b6d0d0e..23b9e14866e3 100644 --- a/src/ngLocale/angular-locale_lg-ug.js +++ b/src/ngLocale/angular-locale_lg-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lg-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lg.js b/src/ngLocale/angular-locale_lg.js index 62c156ad274f..72aa7bb072fa 100644 --- a/src/ngLocale/angular-locale_lg.js +++ b/src/ngLocale/angular-locale_lg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lkt-us.js b/src/ngLocale/angular-locale_lkt-us.js index e49233adc693..8e76bf51ffb7 100644 --- a/src/ngLocale/angular-locale_lkt-us.js +++ b/src/ngLocale/angular-locale_lkt-us.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lkt-us", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lkt.js b/src/ngLocale/angular-locale_lkt.js index b86c37cd44eb..20c72ea83bbb 100644 --- a/src/ngLocale/angular-locale_lkt.js +++ b/src/ngLocale/angular-locale_lkt.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lkt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ln-ao.js b/src/ngLocale/angular-locale_ln-ao.js index afa747011014..695b8ff43caa 100644 --- a/src/ngLocale/angular-locale_ln-ao.js +++ b/src/ngLocale/angular-locale_ln-ao.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ln-ao", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ln-cd.js b/src/ngLocale/angular-locale_ln-cd.js index d8f8956e2f00..3255b62793c1 100644 --- a/src/ngLocale/angular-locale_ln-cd.js +++ b/src/ngLocale/angular-locale_ln-cd.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ln-cd", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ln-cf.js b/src/ngLocale/angular-locale_ln-cf.js index 8d00b894c56a..32a2260a70e4 100644 --- a/src/ngLocale/angular-locale_ln-cf.js +++ b/src/ngLocale/angular-locale_ln-cf.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ln-cf", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ln-cg.js b/src/ngLocale/angular-locale_ln-cg.js index 9fd42b0aea4f..59a07675ba7a 100644 --- a/src/ngLocale/angular-locale_ln-cg.js +++ b/src/ngLocale/angular-locale_ln-cg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ln-cg", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ln.js b/src/ngLocale/angular-locale_ln.js index 85a8ada4b28e..e5def461bbbc 100644 --- a/src/ngLocale/angular-locale_ln.js +++ b/src/ngLocale/angular-locale_ln.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ln", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lo-la.js b/src/ngLocale/angular-locale_lo-la.js index c70db8f4cb79..798cbad675ef 100644 --- a/src/ngLocale/angular-locale_lo-la.js +++ b/src/ngLocale/angular-locale_lo-la.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "lo-la", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lo.js b/src/ngLocale/angular-locale_lo.js index 98a1779a9eb5..23297aab4718 100644 --- a/src/ngLocale/angular-locale_lo.js +++ b/src/ngLocale/angular-locale_lo.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "lo", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lt-lt.js b/src/ngLocale/angular-locale_lt-lt.js index b6dbed9503cb..2775c1f39e2e 100644 --- a/src/ngLocale/angular-locale_lt-lt.js +++ b/src/ngLocale/angular-locale_lt-lt.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lt-lt", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.ONE; } if (n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.FEW; } if (vf.f != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lt.js b/src/ngLocale/angular-locale_lt.js index a2ae226ba195..02f8921db675 100644 --- a/src/ngLocale/angular-locale_lt.js +++ b/src/ngLocale/angular-locale_lt.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lt", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.ONE; } if (n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.FEW; } if (vf.f != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lu-cd.js b/src/ngLocale/angular-locale_lu-cd.js index a76b83260d31..a40430a8bb40 100644 --- a/src/ngLocale/angular-locale_lu-cd.js +++ b/src/ngLocale/angular-locale_lu-cd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lu-cd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lu.js b/src/ngLocale/angular-locale_lu.js index 73f0d2724027..883bb4a0f9bb 100644 --- a/src/ngLocale/angular-locale_lu.js +++ b/src/ngLocale/angular-locale_lu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_luo-ke.js b/src/ngLocale/angular-locale_luo-ke.js index 27d37f8e273e..3f7ce262b580 100644 --- a/src/ngLocale/angular-locale_luo-ke.js +++ b/src/ngLocale/angular-locale_luo-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "luo-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_luo.js b/src/ngLocale/angular-locale_luo.js index 35f9b0e3fa20..99b12d1b4351 100644 --- a/src/ngLocale/angular-locale_luo.js +++ b/src/ngLocale/angular-locale_luo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "luo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_luy-ke.js b/src/ngLocale/angular-locale_luy-ke.js index 3847559df298..585be34c1df4 100644 --- a/src/ngLocale/angular-locale_luy-ke.js +++ b/src/ngLocale/angular-locale_luy-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "luy-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_luy.js b/src/ngLocale/angular-locale_luy.js index 3cac8ac414c2..efb968da372a 100644 --- a/src/ngLocale/angular-locale_luy.js +++ b/src/ngLocale/angular-locale_luy.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "luy", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lv-lv.js b/src/ngLocale/angular-locale_lv-lv.js index 71c99df6b13f..f9356fa6e453 100644 --- a/src/ngLocale/angular-locale_lv-lv.js +++ b/src/ngLocale/angular-locale_lv-lv.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lv-lv", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 || vf.v == 2 && vf.f % 100 >= 11 && vf.f % 100 <= 19) { return PLURAL_CATEGORY.ZERO; } if (n % 10 == 1 && n % 100 != 11 || vf.v == 2 && vf.f % 10 == 1 && vf.f % 100 != 11 || vf.v != 2 && vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_lv.js b/src/ngLocale/angular-locale_lv.js index 302eee9a7fcd..aa31eda5a1e9 100644 --- a/src/ngLocale/angular-locale_lv.js +++ b/src/ngLocale/angular-locale_lv.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "lv", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 || vf.v == 2 && vf.f % 100 >= 11 && vf.f % 100 <= 19) { return PLURAL_CATEGORY.ZERO; } if (n % 10 == 1 && n % 100 != 11 || vf.v == 2 && vf.f % 10 == 1 && vf.f % 100 != 11 || vf.v != 2 && vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mas-ke.js b/src/ngLocale/angular-locale_mas-ke.js index 9e8aea85159b..bb9f48e09626 100644 --- a/src/ngLocale/angular-locale_mas-ke.js +++ b/src/ngLocale/angular-locale_mas-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mas-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mas-tz.js b/src/ngLocale/angular-locale_mas-tz.js index ee583d5e25ee..0c193198aa7e 100644 --- a/src/ngLocale/angular-locale_mas-tz.js +++ b/src/ngLocale/angular-locale_mas-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mas-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mas.js b/src/ngLocale/angular-locale_mas.js index a81d572d2521..d2807efdef87 100644 --- a/src/ngLocale/angular-locale_mas.js +++ b/src/ngLocale/angular-locale_mas.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mas", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mer-ke.js b/src/ngLocale/angular-locale_mer-ke.js index 2ee5e6814681..0c5297b232dd 100644 --- a/src/ngLocale/angular-locale_mer-ke.js +++ b/src/ngLocale/angular-locale_mer-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mer-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mer.js b/src/ngLocale/angular-locale_mer.js index 54197b20f90c..c9a87ea715f7 100644 --- a/src/ngLocale/angular-locale_mer.js +++ b/src/ngLocale/angular-locale_mer.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mer", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mfe-mu.js b/src/ngLocale/angular-locale_mfe-mu.js index 709d2d08ba6f..fe7f61638d77 100644 --- a/src/ngLocale/angular-locale_mfe-mu.js +++ b/src/ngLocale/angular-locale_mfe-mu.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mfe-mu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mfe.js b/src/ngLocale/angular-locale_mfe.js index 0c2e836d62cb..ec2af98ec73f 100644 --- a/src/ngLocale/angular-locale_mfe.js +++ b/src/ngLocale/angular-locale_mfe.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mfe", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mg-mg.js b/src/ngLocale/angular-locale_mg-mg.js index 10c7d1744d50..8d4e7c90e878 100644 --- a/src/ngLocale/angular-locale_mg-mg.js +++ b/src/ngLocale/angular-locale_mg-mg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mg-mg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mg.js b/src/ngLocale/angular-locale_mg.js index 20dac3835ce0..e26b97352c0c 100644 --- a/src/ngLocale/angular-locale_mg.js +++ b/src/ngLocale/angular-locale_mg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mgh-mz.js b/src/ngLocale/angular-locale_mgh-mz.js index 5ace0384deff..e60a24593653 100644 --- a/src/ngLocale/angular-locale_mgh-mz.js +++ b/src/ngLocale/angular-locale_mgh-mz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mgh-mz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mgh.js b/src/ngLocale/angular-locale_mgh.js index 3b230b8cc76f..e5c14b905b8b 100644 --- a/src/ngLocale/angular-locale_mgh.js +++ b/src/ngLocale/angular-locale_mgh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mgh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mgo-cm.js b/src/ngLocale/angular-locale_mgo-cm.js index 5bc467b13a92..75a17a77ec40 100644 --- a/src/ngLocale/angular-locale_mgo-cm.js +++ b/src/ngLocale/angular-locale_mgo-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mgo-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mgo.js b/src/ngLocale/angular-locale_mgo.js index a60db3cb081c..e8bbf23c26ad 100644 --- a/src/ngLocale/angular-locale_mgo.js +++ b/src/ngLocale/angular-locale_mgo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mgo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mk-mk.js b/src/ngLocale/angular-locale_mk-mk.js index cf36c6830917..30b8e34f9b5e 100644 --- a/src/ngLocale/angular-locale_mk-mk.js +++ b/src/ngLocale/angular-locale_mk-mk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mk-mk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 || vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mk.js b/src/ngLocale/angular-locale_mk.js index e29aa69c6aaf..027cca29f032 100644 --- a/src/ngLocale/angular-locale_mk.js +++ b/src/ngLocale/angular-locale_mk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 || vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ml-in.js b/src/ngLocale/angular-locale_ml-in.js index db5812f078c4..f58fb8e07171 100644 --- a/src/ngLocale/angular-locale_ml-in.js +++ b/src/ngLocale/angular-locale_ml-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ml-in", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ml.js b/src/ngLocale/angular-locale_ml.js index 8f95fe52bf3d..80990e2fcf23 100644 --- a/src/ngLocale/angular-locale_ml.js +++ b/src/ngLocale/angular-locale_ml.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ml", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mn-cyrl-mn.js b/src/ngLocale/angular-locale_mn-cyrl-mn.js index 1d8418b10895..36c40a0026ff 100644 --- a/src/ngLocale/angular-locale_mn-cyrl-mn.js +++ b/src/ngLocale/angular-locale_mn-cyrl-mn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mn-cyrl-mn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mn-cyrl.js b/src/ngLocale/angular-locale_mn-cyrl.js index ee8a9c468e38..02d1520ef45d 100644 --- a/src/ngLocale/angular-locale_mn-cyrl.js +++ b/src/ngLocale/angular-locale_mn-cyrl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mn-cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mn.js b/src/ngLocale/angular-locale_mn.js index 743c47f74546..4ac32a41c652 100644 --- a/src/ngLocale/angular-locale_mn.js +++ b/src/ngLocale/angular-locale_mn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mr-in.js b/src/ngLocale/angular-locale_mr-in.js index 138efbffa6ea..bf8c79ee49c7 100644 --- a/src/ngLocale/angular-locale_mr-in.js +++ b/src/ngLocale/angular-locale_mr-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mr-in", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mr.js b/src/ngLocale/angular-locale_mr.js index 0f67ae65086b..1546413f4a06 100644 --- a/src/ngLocale/angular-locale_mr.js +++ b/src/ngLocale/angular-locale_mr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mr", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ms-latn-bn.js b/src/ngLocale/angular-locale_ms-latn-bn.js index 6eda3d33afc4..27183b0bea24 100644 --- a/src/ngLocale/angular-locale_ms-latn-bn.js +++ b/src/ngLocale/angular-locale_ms-latn-bn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ms-latn-bn", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ms-latn-my.js b/src/ngLocale/angular-locale_ms-latn-my.js index bef9ab363f75..bc91e5908bed 100644 --- a/src/ngLocale/angular-locale_ms-latn-my.js +++ b/src/ngLocale/angular-locale_ms-latn-my.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ms-latn-my", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ms-latn-sg.js b/src/ngLocale/angular-locale_ms-latn-sg.js index 715d0a20d182..62b5bd5196cb 100644 --- a/src/ngLocale/angular-locale_ms-latn-sg.js +++ b/src/ngLocale/angular-locale_ms-latn-sg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ms-latn-sg", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ms-latn.js b/src/ngLocale/angular-locale_ms-latn.js index 329fc3fbcb0b..37084f805d57 100644 --- a/src/ngLocale/angular-locale_ms-latn.js +++ b/src/ngLocale/angular-locale_ms-latn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ms-latn", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ms.js b/src/ngLocale/angular-locale_ms.js index 9fee444162ed..d07588163901 100644 --- a/src/ngLocale/angular-locale_ms.js +++ b/src/ngLocale/angular-locale_ms.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ms", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mt-mt.js b/src/ngLocale/angular-locale_mt-mt.js index 50ce87d53518..957b69eb7df5 100644 --- a/src/ngLocale/angular-locale_mt-mt.js +++ b/src/ngLocale/angular-locale_mt-mt.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mt-mt", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n % 100 >= 2 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 19) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mt.js b/src/ngLocale/angular-locale_mt.js index 2a004069e4cf..7907b6787de3 100644 --- a/src/ngLocale/angular-locale_mt.js +++ b/src/ngLocale/angular-locale_mt.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "mt", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n % 100 >= 2 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 19) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mua-cm.js b/src/ngLocale/angular-locale_mua-cm.js index 24cf280ccb3b..a1ff115320a4 100644 --- a/src/ngLocale/angular-locale_mua-cm.js +++ b/src/ngLocale/angular-locale_mua-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mua-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_mua.js b/src/ngLocale/angular-locale_mua.js index 71d8b2a8c185..c7b4a2f3c53b 100644 --- a/src/ngLocale/angular-locale_mua.js +++ b/src/ngLocale/angular-locale_mua.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "mua", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_my-mm.js b/src/ngLocale/angular-locale_my-mm.js index 783e7401ac14..3b98a889e069 100644 --- a/src/ngLocale/angular-locale_my-mm.js +++ b/src/ngLocale/angular-locale_my-mm.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "my-mm", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_my.js b/src/ngLocale/angular-locale_my.js index 1bb02c11ac65..6e7edd5136bb 100644 --- a/src/ngLocale/angular-locale_my.js +++ b/src/ngLocale/angular-locale_my.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "my", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_naq-na.js b/src/ngLocale/angular-locale_naq-na.js index bd584d45e863..5281f9b254f3 100644 --- a/src/ngLocale/angular-locale_naq-na.js +++ b/src/ngLocale/angular-locale_naq-na.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "naq-na", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_naq.js b/src/ngLocale/angular-locale_naq.js index a8b34c1738b5..52bc467cd945 100644 --- a/src/ngLocale/angular-locale_naq.js +++ b/src/ngLocale/angular-locale_naq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "naq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nb-no.js b/src/ngLocale/angular-locale_nb-no.js index 65038a511959..1cf952eaf797 100644 --- a/src/ngLocale/angular-locale_nb-no.js +++ b/src/ngLocale/angular-locale_nb-no.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "nb-no", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nb-sj.js b/src/ngLocale/angular-locale_nb-sj.js index 126c348b9961..463b18672592 100644 --- a/src/ngLocale/angular-locale_nb-sj.js +++ b/src/ngLocale/angular-locale_nb-sj.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "nb-sj", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nb.js b/src/ngLocale/angular-locale_nb.js index 20ed505c3215..47982afd72bc 100644 --- a/src/ngLocale/angular-locale_nb.js +++ b/src/ngLocale/angular-locale_nb.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "nb", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nd-zw.js b/src/ngLocale/angular-locale_nd-zw.js index ab6e7157f9c5..881b00ac294f 100644 --- a/src/ngLocale/angular-locale_nd-zw.js +++ b/src/ngLocale/angular-locale_nd-zw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nd-zw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nd.js b/src/ngLocale/angular-locale_nd.js index 1804f4e2fb84..136666e2ff4c 100644 --- a/src/ngLocale/angular-locale_nd.js +++ b/src/ngLocale/angular-locale_nd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ne-in.js b/src/ngLocale/angular-locale_ne-in.js index a3b95e85b551..95c346431d46 100644 --- a/src/ngLocale/angular-locale_ne-in.js +++ b/src/ngLocale/angular-locale_ne-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ne-in", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ne-np.js b/src/ngLocale/angular-locale_ne-np.js index 8b071defd906..5987d4d68d5d 100644 --- a/src/ngLocale/angular-locale_ne-np.js +++ b/src/ngLocale/angular-locale_ne-np.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ne-np", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ne.js b/src/ngLocale/angular-locale_ne.js index 43e8ea262c56..de55d962fc4c 100644 --- a/src/ngLocale/angular-locale_ne.js +++ b/src/ngLocale/angular-locale_ne.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ne", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-aw.js b/src/ngLocale/angular-locale_nl-aw.js index cd083a915ed9..8a9d640d70a3 100644 --- a/src/ngLocale/angular-locale_nl-aw.js +++ b/src/ngLocale/angular-locale_nl-aw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-aw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-be.js b/src/ngLocale/angular-locale_nl-be.js index 986ea4cd2e8d..9031ff5ef5f1 100644 --- a/src/ngLocale/angular-locale_nl-be.js +++ b/src/ngLocale/angular-locale_nl-be.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-be", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-bq.js b/src/ngLocale/angular-locale_nl-bq.js index 1336249e7c07..61e60bedd6cf 100644 --- a/src/ngLocale/angular-locale_nl-bq.js +++ b/src/ngLocale/angular-locale_nl-bq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-bq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-cw.js b/src/ngLocale/angular-locale_nl-cw.js index 2510ae1c549d..c21975950341 100644 --- a/src/ngLocale/angular-locale_nl-cw.js +++ b/src/ngLocale/angular-locale_nl-cw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-cw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-nl.js b/src/ngLocale/angular-locale_nl-nl.js index 72064c215391..764245c170a1 100644 --- a/src/ngLocale/angular-locale_nl-nl.js +++ b/src/ngLocale/angular-locale_nl-nl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-nl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-sr.js b/src/ngLocale/angular-locale_nl-sr.js index ce16da31ea6e..ee428cafa675 100644 --- a/src/ngLocale/angular-locale_nl-sr.js +++ b/src/ngLocale/angular-locale_nl-sr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-sr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl-sx.js b/src/ngLocale/angular-locale_nl-sx.js index d8125786bb33..b3be861fc56d 100644 --- a/src/ngLocale/angular-locale_nl-sx.js +++ b/src/ngLocale/angular-locale_nl-sx.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl-sx", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nl.js b/src/ngLocale/angular-locale_nl.js index 8d412f9b9f93..ac19d54c2435 100644 --- a/src/ngLocale/angular-locale_nl.js +++ b/src/ngLocale/angular-locale_nl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nmg-cm.js b/src/ngLocale/angular-locale_nmg-cm.js index aee4d9bf96f4..b03ae13b0e09 100644 --- a/src/ngLocale/angular-locale_nmg-cm.js +++ b/src/ngLocale/angular-locale_nmg-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nmg-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nmg.js b/src/ngLocale/angular-locale_nmg.js index 6537f1510380..313900839fc4 100644 --- a/src/ngLocale/angular-locale_nmg.js +++ b/src/ngLocale/angular-locale_nmg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nmg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nn-no.js b/src/ngLocale/angular-locale_nn-no.js index d2d951d73270..7e1408ff0f57 100644 --- a/src/ngLocale/angular-locale_nn-no.js +++ b/src/ngLocale/angular-locale_nn-no.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nn-no", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nn.js b/src/ngLocale/angular-locale_nn.js index 7bddc8f5c5b9..f786e739f44d 100644 --- a/src/ngLocale/angular-locale_nn.js +++ b/src/ngLocale/angular-locale_nn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nnh-cm.js b/src/ngLocale/angular-locale_nnh-cm.js index d7b7e0204fc4..4a5d8902f7f1 100644 --- a/src/ngLocale/angular-locale_nnh-cm.js +++ b/src/ngLocale/angular-locale_nnh-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nnh-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nnh.js b/src/ngLocale/angular-locale_nnh.js index 42843cc199b3..df2775ecae49 100644 --- a/src/ngLocale/angular-locale_nnh.js +++ b/src/ngLocale/angular-locale_nnh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nnh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_no-no.js b/src/ngLocale/angular-locale_no-no.js index 198132a7e290..742117911b74 100644 --- a/src/ngLocale/angular-locale_no-no.js +++ b/src/ngLocale/angular-locale_no-no.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "no-no", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_no.js b/src/ngLocale/angular-locale_no.js index 40798e3f389e..d63d8855a7de 100644 --- a/src/ngLocale/angular-locale_no.js +++ b/src/ngLocale/angular-locale_no.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "no", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nr-za.js b/src/ngLocale/angular-locale_nr-za.js index 6386bea703a5..f53b2993a930 100644 --- a/src/ngLocale/angular-locale_nr-za.js +++ b/src/ngLocale/angular-locale_nr-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nr-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nr.js b/src/ngLocale/angular-locale_nr.js index 528af2556021..88a51943757c 100644 --- a/src/ngLocale/angular-locale_nr.js +++ b/src/ngLocale/angular-locale_nr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nso-za.js b/src/ngLocale/angular-locale_nso-za.js index 8b067cf27646..f586e09a59dd 100644 --- a/src/ngLocale/angular-locale_nso-za.js +++ b/src/ngLocale/angular-locale_nso-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nso-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nso.js b/src/ngLocale/angular-locale_nso.js index 6677d7e37162..399e9150b08e 100644 --- a/src/ngLocale/angular-locale_nso.js +++ b/src/ngLocale/angular-locale_nso.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nso", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nus-sd.js b/src/ngLocale/angular-locale_nus-sd.js index 640e7634fb6b..521575028a0d 100644 --- a/src/ngLocale/angular-locale_nus-sd.js +++ b/src/ngLocale/angular-locale_nus-sd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nus-sd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nus.js b/src/ngLocale/angular-locale_nus.js index 4dedf5cf4f80..f85a1578d86c 100644 --- a/src/ngLocale/angular-locale_nus.js +++ b/src/ngLocale/angular-locale_nus.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nus", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nyn-ug.js b/src/ngLocale/angular-locale_nyn-ug.js index ce6f792be9df..ab94928365c6 100644 --- a/src/ngLocale/angular-locale_nyn-ug.js +++ b/src/ngLocale/angular-locale_nyn-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nyn-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_nyn.js b/src/ngLocale/angular-locale_nyn.js index 5b10124eb978..4b103f4569a1 100644 --- a/src/ngLocale/angular-locale_nyn.js +++ b/src/ngLocale/angular-locale_nyn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "nyn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_om-et.js b/src/ngLocale/angular-locale_om-et.js index 229b25b3bf3a..8aa021762eb8 100644 --- a/src/ngLocale/angular-locale_om-et.js +++ b/src/ngLocale/angular-locale_om-et.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "om-et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_om-ke.js b/src/ngLocale/angular-locale_om-ke.js index ac064cd19d98..5511faea2dfd 100644 --- a/src/ngLocale/angular-locale_om-ke.js +++ b/src/ngLocale/angular-locale_om-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "om-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_om.js b/src/ngLocale/angular-locale_om.js index 56d84b763234..70e9bd7ec64d 100644 --- a/src/ngLocale/angular-locale_om.js +++ b/src/ngLocale/angular-locale_om.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "om", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_or-in.js b/src/ngLocale/angular-locale_or-in.js index be60cead1517..54b3004d2b83 100644 --- a/src/ngLocale/angular-locale_or-in.js +++ b/src/ngLocale/angular-locale_or-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "or-in", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_or.js b/src/ngLocale/angular-locale_or.js index a3042b3b629a..e355aa84801f 100644 --- a/src/ngLocale/angular-locale_or.js +++ b/src/ngLocale/angular-locale_or.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "or", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_os-ge.js b/src/ngLocale/angular-locale_os-ge.js index 65f1cb0605d5..d6af8ca2cea9 100644 --- a/src/ngLocale/angular-locale_os-ge.js +++ b/src/ngLocale/angular-locale_os-ge.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "os-ge", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_os-ru.js b/src/ngLocale/angular-locale_os-ru.js index 89d42183cbf0..7acb0bd44dcf 100644 --- a/src/ngLocale/angular-locale_os-ru.js +++ b/src/ngLocale/angular-locale_os-ru.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "os-ru", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_os.js b/src/ngLocale/angular-locale_os.js index c4ca9a2e3bef..191ec75585b1 100644 --- a/src/ngLocale/angular-locale_os.js +++ b/src/ngLocale/angular-locale_os.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "os", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pa-arab-pk.js b/src/ngLocale/angular-locale_pa-arab-pk.js index fd6358617fb2..35da6037fb4c 100644 --- a/src/ngLocale/angular-locale_pa-arab-pk.js +++ b/src/ngLocale/angular-locale_pa-arab-pk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "pa-arab-pk", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pa-arab.js b/src/ngLocale/angular-locale_pa-arab.js index 47d0f00a6daa..c67d8d23e253 100644 --- a/src/ngLocale/angular-locale_pa-arab.js +++ b/src/ngLocale/angular-locale_pa-arab.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "pa-arab", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pa-guru-in.js b/src/ngLocale/angular-locale_pa-guru-in.js index 7a83a2b37b34..467f35db9958 100644 --- a/src/ngLocale/angular-locale_pa-guru-in.js +++ b/src/ngLocale/angular-locale_pa-guru-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "pa-guru-in", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pa-guru.js b/src/ngLocale/angular-locale_pa-guru.js index 2df36b38da78..021980f7eb2c 100644 --- a/src/ngLocale/angular-locale_pa-guru.js +++ b/src/ngLocale/angular-locale_pa-guru.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "pa-guru", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pa.js b/src/ngLocale/angular-locale_pa.js index 6c665ba3e7e0..6b2a80216a0e 100644 --- a/src/ngLocale/angular-locale_pa.js +++ b/src/ngLocale/angular-locale_pa.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "pa", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pl-pl.js b/src/ngLocale/angular-locale_pl-pl.js index e7079fed5daa..415c72bf5e18 100644 --- a/src/ngLocale/angular-locale_pl-pl.js +++ b/src/ngLocale/angular-locale_pl-pl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "pl-pl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i != 1 && i % 10 >= 0 && i % 10 <= 1 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 12 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pl.js b/src/ngLocale/angular-locale_pl.js index 4ff2c6dcf47f..8a49c7a9d824 100644 --- a/src/ngLocale/angular-locale_pl.js +++ b/src/ngLocale/angular-locale_pl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "pl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i != 1 && i % 10 >= 0 && i % 10 <= 1 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 12 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ps-af.js b/src/ngLocale/angular-locale_ps-af.js index e7b6a0c19468..3bef8a2f4736 100644 --- a/src/ngLocale/angular-locale_ps-af.js +++ b/src/ngLocale/angular-locale_ps-af.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ps-af", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ps.js b/src/ngLocale/angular-locale_ps.js index cafcd7de9bb7..edbaff59c01e 100644 --- a/src/ngLocale/angular-locale_ps.js +++ b/src/ngLocale/angular-locale_ps.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ps", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-ao.js b/src/ngLocale/angular-locale_pt-ao.js index 1ee0f3a06403..8e8007bfaccd 100644 --- a/src/ngLocale/angular-locale_pt-ao.js +++ b/src/ngLocale/angular-locale_pt-ao.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-ao", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-br.js b/src/ngLocale/angular-locale_pt-br.js index 9382c203cf82..737c3442ab77 100644 --- a/src/ngLocale/angular-locale_pt-br.js +++ b/src/ngLocale/angular-locale_pt-br.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-br", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-cv.js b/src/ngLocale/angular-locale_pt-cv.js index 736983ec25e7..db1452c2080f 100644 --- a/src/ngLocale/angular-locale_pt-cv.js +++ b/src/ngLocale/angular-locale_pt-cv.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-cv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-gw.js b/src/ngLocale/angular-locale_pt-gw.js index d0f3e87b9a73..d9d1b519d511 100644 --- a/src/ngLocale/angular-locale_pt-gw.js +++ b/src/ngLocale/angular-locale_pt-gw.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-gw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-mo.js b/src/ngLocale/angular-locale_pt-mo.js index 5e8f844060d6..46e900d88714 100644 --- a/src/ngLocale/angular-locale_pt-mo.js +++ b/src/ngLocale/angular-locale_pt-mo.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-mo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-mz.js b/src/ngLocale/angular-locale_pt-mz.js index a2933630450c..1333b32f6add 100644 --- a/src/ngLocale/angular-locale_pt-mz.js +++ b/src/ngLocale/angular-locale_pt-mz.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-mz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-pt.js b/src/ngLocale/angular-locale_pt-pt.js index cd3ba26a04d0..3d7f998ec2bf 100644 --- a/src/ngLocale/angular-locale_pt-pt.js +++ b/src/ngLocale/angular-locale_pt-pt.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-pt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-st.js b/src/ngLocale/angular-locale_pt-st.js index a7b159e31418..e1736c30cc97 100644 --- a/src/ngLocale/angular-locale_pt-st.js +++ b/src/ngLocale/angular-locale_pt-st.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-st", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt-tl.js b/src/ngLocale/angular-locale_pt-tl.js index d82bf60a75bf..92924f61b36f 100644 --- a/src/ngLocale/angular-locale_pt-tl.js +++ b/src/ngLocale/angular-locale_pt-tl.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt-tl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_pt.js b/src/ngLocale/angular-locale_pt.js index dc8dfa25a8e6..8aa48b804e2e 100644 --- a/src/ngLocale/angular-locale_pt.js +++ b/src/ngLocale/angular-locale_pt.js @@ -125,4 +125,4 @@ $provide.value("$locale", { "id": "pt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rm-ch.js b/src/ngLocale/angular-locale_rm-ch.js index 8113710ae6d5..83f81ee95ed2 100644 --- a/src/ngLocale/angular-locale_rm-ch.js +++ b/src/ngLocale/angular-locale_rm-ch.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rm-ch", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rm.js b/src/ngLocale/angular-locale_rm.js index ef98e071acb3..4538429bcc5d 100644 --- a/src/ngLocale/angular-locale_rm.js +++ b/src/ngLocale/angular-locale_rm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rn-bi.js b/src/ngLocale/angular-locale_rn-bi.js index 5adbdc0582f0..f3c629b26797 100644 --- a/src/ngLocale/angular-locale_rn-bi.js +++ b/src/ngLocale/angular-locale_rn-bi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rn-bi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rn.js b/src/ngLocale/angular-locale_rn.js index 7ff89ea6794f..703f38131ac8 100644 --- a/src/ngLocale/angular-locale_rn.js +++ b/src/ngLocale/angular-locale_rn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ro-md.js b/src/ngLocale/angular-locale_ro-md.js index 17c1472aa633..048e198cbb06 100644 --- a/src/ngLocale/angular-locale_ro-md.js +++ b/src/ngLocale/angular-locale_ro-md.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ro-md", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v != 0 || n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ro-ro.js b/src/ngLocale/angular-locale_ro-ro.js index ce9af737b3fc..27fe0c471ad4 100644 --- a/src/ngLocale/angular-locale_ro-ro.js +++ b/src/ngLocale/angular-locale_ro-ro.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ro-ro", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v != 0 || n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ro.js b/src/ngLocale/angular-locale_ro.js index 9219c552d36c..8f62d1367384 100644 --- a/src/ngLocale/angular-locale_ro.js +++ b/src/ngLocale/angular-locale_ro.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ro", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v != 0 || n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rof-tz.js b/src/ngLocale/angular-locale_rof-tz.js index e8c62a15d00b..9eb177c84a1c 100644 --- a/src/ngLocale/angular-locale_rof-tz.js +++ b/src/ngLocale/angular-locale_rof-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rof-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rof.js b/src/ngLocale/angular-locale_rof.js index f2b4c9572cc0..9db1b0cec165 100644 --- a/src/ngLocale/angular-locale_rof.js +++ b/src/ngLocale/angular-locale_rof.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rof", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru-by.js b/src/ngLocale/angular-locale_ru-by.js index 63501e29b8c5..084060faa41e 100644 --- a/src/ngLocale/angular-locale_ru-by.js +++ b/src/ngLocale/angular-locale_ru-by.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru-by", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru-kg.js b/src/ngLocale/angular-locale_ru-kg.js index 32a309a05976..6441207bd9d7 100644 --- a/src/ngLocale/angular-locale_ru-kg.js +++ b/src/ngLocale/angular-locale_ru-kg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru-kg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru-kz.js b/src/ngLocale/angular-locale_ru-kz.js index cac3a140c2ad..19ed99559a35 100644 --- a/src/ngLocale/angular-locale_ru-kz.js +++ b/src/ngLocale/angular-locale_ru-kz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru-kz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru-md.js b/src/ngLocale/angular-locale_ru-md.js index 76a032b42b74..f41bd58189d8 100644 --- a/src/ngLocale/angular-locale_ru-md.js +++ b/src/ngLocale/angular-locale_ru-md.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru-md", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru-ru.js b/src/ngLocale/angular-locale_ru-ru.js index 414e395456bf..c45df71d4700 100644 --- a/src/ngLocale/angular-locale_ru-ru.js +++ b/src/ngLocale/angular-locale_ru-ru.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru-ru", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru-ua.js b/src/ngLocale/angular-locale_ru-ua.js index 2416e4c3a682..3fcff891d7e2 100644 --- a/src/ngLocale/angular-locale_ru-ua.js +++ b/src/ngLocale/angular-locale_ru-ua.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru-ua", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ru.js b/src/ngLocale/angular-locale_ru.js index 78343691063c..ef6908ab3863 100644 --- a/src/ngLocale/angular-locale_ru.js +++ b/src/ngLocale/angular-locale_ru.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ru", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rw-rw.js b/src/ngLocale/angular-locale_rw-rw.js index 3d949aa074b3..162fe589d425 100644 --- a/src/ngLocale/angular-locale_rw-rw.js +++ b/src/ngLocale/angular-locale_rw-rw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rw-rw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rw.js b/src/ngLocale/angular-locale_rw.js index e1071dd860f6..9d2bc6300115 100644 --- a/src/ngLocale/angular-locale_rw.js +++ b/src/ngLocale/angular-locale_rw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rwk-tz.js b/src/ngLocale/angular-locale_rwk-tz.js index 6424993820ed..64cf03d33115 100644 --- a/src/ngLocale/angular-locale_rwk-tz.js +++ b/src/ngLocale/angular-locale_rwk-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rwk-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_rwk.js b/src/ngLocale/angular-locale_rwk.js index f3c29010f68a..c32b84b76350 100644 --- a/src/ngLocale/angular-locale_rwk.js +++ b/src/ngLocale/angular-locale_rwk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "rwk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sah-ru.js b/src/ngLocale/angular-locale_sah-ru.js index 187d097aa16e..c5e26740c04a 100644 --- a/src/ngLocale/angular-locale_sah-ru.js +++ b/src/ngLocale/angular-locale_sah-ru.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sah-ru", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sah.js b/src/ngLocale/angular-locale_sah.js index 1cab1efedb92..f25ca75a6be2 100644 --- a/src/ngLocale/angular-locale_sah.js +++ b/src/ngLocale/angular-locale_sah.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sah", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_saq-ke.js b/src/ngLocale/angular-locale_saq-ke.js index 9fd386c56c68..1152411b1030 100644 --- a/src/ngLocale/angular-locale_saq-ke.js +++ b/src/ngLocale/angular-locale_saq-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "saq-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_saq.js b/src/ngLocale/angular-locale_saq.js index 3094995a23ee..dd789f2e6530 100644 --- a/src/ngLocale/angular-locale_saq.js +++ b/src/ngLocale/angular-locale_saq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "saq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sbp-tz.js b/src/ngLocale/angular-locale_sbp-tz.js index 000c89930f22..73c211f28bed 100644 --- a/src/ngLocale/angular-locale_sbp-tz.js +++ b/src/ngLocale/angular-locale_sbp-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sbp-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sbp.js b/src/ngLocale/angular-locale_sbp.js index 32e4d262b6c3..00d29a7c72dd 100644 --- a/src/ngLocale/angular-locale_sbp.js +++ b/src/ngLocale/angular-locale_sbp.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sbp", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_se-fi.js b/src/ngLocale/angular-locale_se-fi.js index 66f48add4902..24edfe449d7b 100644 --- a/src/ngLocale/angular-locale_se-fi.js +++ b/src/ngLocale/angular-locale_se-fi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "se-fi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_se-no.js b/src/ngLocale/angular-locale_se-no.js index de0f09bf88d3..63e8327232ed 100644 --- a/src/ngLocale/angular-locale_se-no.js +++ b/src/ngLocale/angular-locale_se-no.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "se-no", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_se.js b/src/ngLocale/angular-locale_se.js index bbe1a83887d2..d49cff3116f8 100644 --- a/src/ngLocale/angular-locale_se.js +++ b/src/ngLocale/angular-locale_se.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "se", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_seh-mz.js b/src/ngLocale/angular-locale_seh-mz.js index 7b96d7989a40..d6f93da544a1 100644 --- a/src/ngLocale/angular-locale_seh-mz.js +++ b/src/ngLocale/angular-locale_seh-mz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "seh-mz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_seh.js b/src/ngLocale/angular-locale_seh.js index 515a2efb4a82..c7bd7f4594f9 100644 --- a/src/ngLocale/angular-locale_seh.js +++ b/src/ngLocale/angular-locale_seh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "seh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ses-ml.js b/src/ngLocale/angular-locale_ses-ml.js index d6f5feca535f..299029e08333 100644 --- a/src/ngLocale/angular-locale_ses-ml.js +++ b/src/ngLocale/angular-locale_ses-ml.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ses-ml", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ses.js b/src/ngLocale/angular-locale_ses.js index 2532cff70b06..5db30038c3ae 100644 --- a/src/ngLocale/angular-locale_ses.js +++ b/src/ngLocale/angular-locale_ses.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ses", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sg-cf.js b/src/ngLocale/angular-locale_sg-cf.js index 725f299e3c4c..dd02fdd63f7b 100644 --- a/src/ngLocale/angular-locale_sg-cf.js +++ b/src/ngLocale/angular-locale_sg-cf.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sg-cf", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sg.js b/src/ngLocale/angular-locale_sg.js index 30d9eb2461fb..5acc442e53de 100644 --- a/src/ngLocale/angular-locale_sg.js +++ b/src/ngLocale/angular-locale_sg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_shi-latn-ma.js b/src/ngLocale/angular-locale_shi-latn-ma.js index ef3518ea14eb..c10d408e4869 100644 --- a/src/ngLocale/angular-locale_shi-latn-ma.js +++ b/src/ngLocale/angular-locale_shi-latn-ma.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "shi-latn-ma", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_shi-latn.js b/src/ngLocale/angular-locale_shi-latn.js index 757973719576..62a7a15dde34 100644 --- a/src/ngLocale/angular-locale_shi-latn.js +++ b/src/ngLocale/angular-locale_shi-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "shi-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_shi-tfng-ma.js b/src/ngLocale/angular-locale_shi-tfng-ma.js index 5d0260367e87..fe0025428f8a 100644 --- a/src/ngLocale/angular-locale_shi-tfng-ma.js +++ b/src/ngLocale/angular-locale_shi-tfng-ma.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "shi-tfng-ma", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_shi-tfng.js b/src/ngLocale/angular-locale_shi-tfng.js index 74453977510c..9adaaa0e7694 100644 --- a/src/ngLocale/angular-locale_shi-tfng.js +++ b/src/ngLocale/angular-locale_shi-tfng.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "shi-tfng", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_shi.js b/src/ngLocale/angular-locale_shi.js index 54d28198124a..3ed81276c594 100644 --- a/src/ngLocale/angular-locale_shi.js +++ b/src/ngLocale/angular-locale_shi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "shi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_si-lk.js b/src/ngLocale/angular-locale_si-lk.js index a1cbbcaf7ac6..aa359567aa1b 100644 --- a/src/ngLocale/angular-locale_si-lk.js +++ b/src/ngLocale/angular-locale_si-lk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "si-lk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if ((n == 0 || n == 1) || i == 0 && vf.f == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_si.js b/src/ngLocale/angular-locale_si.js index 8e81a740c9a2..9ecb8b22afd3 100644 --- a/src/ngLocale/angular-locale_si.js +++ b/src/ngLocale/angular-locale_si.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "si", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if ((n == 0 || n == 1) || i == 0 && vf.f == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sk-sk.js b/src/ngLocale/angular-locale_sk-sk.js index 3236756e3bd7..3aff3537e450 100644 --- a/src/ngLocale/angular-locale_sk-sk.js +++ b/src/ngLocale/angular-locale_sk-sk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sk-sk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sk.js b/src/ngLocale/angular-locale_sk.js index 7681f4bb306b..914cec1beb95 100644 --- a/src/ngLocale/angular-locale_sk.js +++ b/src/ngLocale/angular-locale_sk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sl-si.js b/src/ngLocale/angular-locale_sl-si.js index 42d3fdd65d0b..79ca17e0338c 100644 --- a/src/ngLocale/angular-locale_sl-si.js +++ b/src/ngLocale/angular-locale_sl-si.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sl-si", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 100 == 1) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 100 == 2) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && i % 100 >= 3 && i % 100 <= 4 || vf.v != 0) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sl.js b/src/ngLocale/angular-locale_sl.js index 5d0dc3b277ce..63a1364cef17 100644 --- a/src/ngLocale/angular-locale_sl.js +++ b/src/ngLocale/angular-locale_sl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 100 == 1) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 100 == 2) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && i % 100 >= 3 && i % 100 <= 4 || vf.v != 0) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sn-zw.js b/src/ngLocale/angular-locale_sn-zw.js index 9bf5f6dd5906..faa32a5bbfed 100644 --- a/src/ngLocale/angular-locale_sn-zw.js +++ b/src/ngLocale/angular-locale_sn-zw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sn-zw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sn.js b/src/ngLocale/angular-locale_sn.js index 71276a4b9f16..e0e02a8ce992 100644 --- a/src/ngLocale/angular-locale_sn.js +++ b/src/ngLocale/angular-locale_sn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_so-dj.js b/src/ngLocale/angular-locale_so-dj.js index 8767e270f31d..ca490f2dd74e 100644 --- a/src/ngLocale/angular-locale_so-dj.js +++ b/src/ngLocale/angular-locale_so-dj.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "so-dj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_so-et.js b/src/ngLocale/angular-locale_so-et.js index f757b7a13332..dcff4b6868f2 100644 --- a/src/ngLocale/angular-locale_so-et.js +++ b/src/ngLocale/angular-locale_so-et.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "so-et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_so-ke.js b/src/ngLocale/angular-locale_so-ke.js index da3647ecca25..87bd18b79ae0 100644 --- a/src/ngLocale/angular-locale_so-ke.js +++ b/src/ngLocale/angular-locale_so-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "so-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_so-so.js b/src/ngLocale/angular-locale_so-so.js index d75018049e3b..fbe5b31a55bb 100644 --- a/src/ngLocale/angular-locale_so-so.js +++ b/src/ngLocale/angular-locale_so-so.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "so-so", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_so.js b/src/ngLocale/angular-locale_so.js index 665c7c746aef..5ca3fa678983 100644 --- a/src/ngLocale/angular-locale_so.js +++ b/src/ngLocale/angular-locale_so.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "so", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sq-al.js b/src/ngLocale/angular-locale_sq-al.js index e210b95d5079..80a9aa8658f0 100644 --- a/src/ngLocale/angular-locale_sq-al.js +++ b/src/ngLocale/angular-locale_sq-al.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "sq-al", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sq-mk.js b/src/ngLocale/angular-locale_sq-mk.js index 526daddb6599..cbb350816102 100644 --- a/src/ngLocale/angular-locale_sq-mk.js +++ b/src/ngLocale/angular-locale_sq-mk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "sq-mk", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sq-xk.js b/src/ngLocale/angular-locale_sq-xk.js index dc9eb74683a8..94c225a860f8 100644 --- a/src/ngLocale/angular-locale_sq-xk.js +++ b/src/ngLocale/angular-locale_sq-xk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "sq-xk", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sq.js b/src/ngLocale/angular-locale_sq.js index ee5f48a31922..6b2289d9b06e 100644 --- a/src/ngLocale/angular-locale_sq.js +++ b/src/ngLocale/angular-locale_sq.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "sq", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-ba.js b/src/ngLocale/angular-locale_sr-cyrl-ba.js index 3ad280568d09..5e4b38392905 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-ba.js +++ b/src/ngLocale/angular-locale_sr-cyrl-ba.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-cyrl-ba", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-me.js b/src/ngLocale/angular-locale_sr-cyrl-me.js index e47f95283c19..1aa82b413ec5 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-me.js +++ b/src/ngLocale/angular-locale_sr-cyrl-me.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-cyrl-me", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-rs.js b/src/ngLocale/angular-locale_sr-cyrl-rs.js index b26268c6bd92..eea3ce7893fb 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-rs.js +++ b/src/ngLocale/angular-locale_sr-cyrl-rs.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-cyrl-rs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-xk.js b/src/ngLocale/angular-locale_sr-cyrl-xk.js index 8b1753abf31c..4ac313b4ab97 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-xk.js +++ b/src/ngLocale/angular-locale_sr-cyrl-xk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-cyrl-xk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-cyrl.js b/src/ngLocale/angular-locale_sr-cyrl.js index 0d9fa2525736..da4598bbdfdf 100644 --- a/src/ngLocale/angular-locale_sr-cyrl.js +++ b/src/ngLocale/angular-locale_sr-cyrl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-cyrl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-latn-ba.js b/src/ngLocale/angular-locale_sr-latn-ba.js index 6638dde03166..187875c43246 100644 --- a/src/ngLocale/angular-locale_sr-latn-ba.js +++ b/src/ngLocale/angular-locale_sr-latn-ba.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-latn-ba", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-latn-me.js b/src/ngLocale/angular-locale_sr-latn-me.js index e7f4443a43ae..ee687b5e9d65 100644 --- a/src/ngLocale/angular-locale_sr-latn-me.js +++ b/src/ngLocale/angular-locale_sr-latn-me.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-latn-me", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-latn-rs.js b/src/ngLocale/angular-locale_sr-latn-rs.js index 448a969ff55b..c43501a86725 100644 --- a/src/ngLocale/angular-locale_sr-latn-rs.js +++ b/src/ngLocale/angular-locale_sr-latn-rs.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-latn-rs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-latn-xk.js b/src/ngLocale/angular-locale_sr-latn-xk.js index 736de243a310..1815c87a54ef 100644 --- a/src/ngLocale/angular-locale_sr-latn-xk.js +++ b/src/ngLocale/angular-locale_sr-latn-xk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-latn-xk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr-latn.js b/src/ngLocale/angular-locale_sr-latn.js index 7fd6ae4100b5..affadb13f5ba 100644 --- a/src/ngLocale/angular-locale_sr-latn.js +++ b/src/ngLocale/angular-locale_sr-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sr.js b/src/ngLocale/angular-locale_sr.js index 7c48f3c16647..b68a366c862b 100644 --- a/src/ngLocale/angular-locale_sr.js +++ b/src/ngLocale/angular-locale_sr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ss-sz.js b/src/ngLocale/angular-locale_ss-sz.js index 1d37b8d0ca2d..09eb9717bec8 100644 --- a/src/ngLocale/angular-locale_ss-sz.js +++ b/src/ngLocale/angular-locale_ss-sz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ss-sz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ss-za.js b/src/ngLocale/angular-locale_ss-za.js index 235eae59321c..6fe15eea7b67 100644 --- a/src/ngLocale/angular-locale_ss-za.js +++ b/src/ngLocale/angular-locale_ss-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ss-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ss.js b/src/ngLocale/angular-locale_ss.js index 44ea29de1f4d..202a58bdf9ed 100644 --- a/src/ngLocale/angular-locale_ss.js +++ b/src/ngLocale/angular-locale_ss.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ss", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ssy-er.js b/src/ngLocale/angular-locale_ssy-er.js index 88a546f36bb4..24896fa5ee81 100644 --- a/src/ngLocale/angular-locale_ssy-er.js +++ b/src/ngLocale/angular-locale_ssy-er.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ssy-er", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ssy.js b/src/ngLocale/angular-locale_ssy.js index 4aac11f1978d..0b3f55bc3272 100644 --- a/src/ngLocale/angular-locale_ssy.js +++ b/src/ngLocale/angular-locale_ssy.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ssy", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_st-ls.js b/src/ngLocale/angular-locale_st-ls.js index c13b412699af..c17e6a3c9658 100644 --- a/src/ngLocale/angular-locale_st-ls.js +++ b/src/ngLocale/angular-locale_st-ls.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "st-ls", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_st-za.js b/src/ngLocale/angular-locale_st-za.js index 8f99e1c293ba..ed1ac9cd6d9f 100644 --- a/src/ngLocale/angular-locale_st-za.js +++ b/src/ngLocale/angular-locale_st-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "st-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_st.js b/src/ngLocale/angular-locale_st.js index 68c057749906..64d95b6b692e 100644 --- a/src/ngLocale/angular-locale_st.js +++ b/src/ngLocale/angular-locale_st.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "st", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sv-ax.js b/src/ngLocale/angular-locale_sv-ax.js index 282623ab6011..26eeb5e48cce 100644 --- a/src/ngLocale/angular-locale_sv-ax.js +++ b/src/ngLocale/angular-locale_sv-ax.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sv-ax", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sv-fi.js b/src/ngLocale/angular-locale_sv-fi.js index 515218a271b4..a21ca31bd3d1 100644 --- a/src/ngLocale/angular-locale_sv-fi.js +++ b/src/ngLocale/angular-locale_sv-fi.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sv-fi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sv-se.js b/src/ngLocale/angular-locale_sv-se.js index fa0472ed9faf..7cc24fb9087e 100644 --- a/src/ngLocale/angular-locale_sv-se.js +++ b/src/ngLocale/angular-locale_sv-se.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sv-se", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sv.js b/src/ngLocale/angular-locale_sv.js index 0da672283850..f49263c83d8a 100644 --- a/src/ngLocale/angular-locale_sv.js +++ b/src/ngLocale/angular-locale_sv.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sw-ke.js b/src/ngLocale/angular-locale_sw-ke.js index 884dca62378e..943ba5779f4d 100644 --- a/src/ngLocale/angular-locale_sw-ke.js +++ b/src/ngLocale/angular-locale_sw-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sw-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sw-tz.js b/src/ngLocale/angular-locale_sw-tz.js index 5363273d1c0f..3e498bacafc8 100644 --- a/src/ngLocale/angular-locale_sw-tz.js +++ b/src/ngLocale/angular-locale_sw-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sw-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sw-ug.js b/src/ngLocale/angular-locale_sw-ug.js index 6345b213551d..fbb3328d6626 100644 --- a/src/ngLocale/angular-locale_sw-ug.js +++ b/src/ngLocale/angular-locale_sw-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sw-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_sw.js b/src/ngLocale/angular-locale_sw.js index abf885526216..c43ad72b680d 100644 --- a/src/ngLocale/angular-locale_sw.js +++ b/src/ngLocale/angular-locale_sw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "sw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_swc-cd.js b/src/ngLocale/angular-locale_swc-cd.js index 33585b3570a0..2de4a16355bf 100644 --- a/src/ngLocale/angular-locale_swc-cd.js +++ b/src/ngLocale/angular-locale_swc-cd.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "swc-cd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_swc.js b/src/ngLocale/angular-locale_swc.js index 223554d07c5e..7bf1185009c6 100644 --- a/src/ngLocale/angular-locale_swc.js +++ b/src/ngLocale/angular-locale_swc.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "swc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ta-in.js b/src/ngLocale/angular-locale_ta-in.js index e7432b202af7..6b6964453300 100644 --- a/src/ngLocale/angular-locale_ta-in.js +++ b/src/ngLocale/angular-locale_ta-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ta-in", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ta-lk.js b/src/ngLocale/angular-locale_ta-lk.js index 1a5df79144c0..4580322c9811 100644 --- a/src/ngLocale/angular-locale_ta-lk.js +++ b/src/ngLocale/angular-locale_ta-lk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ta-lk", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ta-my.js b/src/ngLocale/angular-locale_ta-my.js index c98d214541fa..221e39b1e19e 100644 --- a/src/ngLocale/angular-locale_ta-my.js +++ b/src/ngLocale/angular-locale_ta-my.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ta-my", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ta-sg.js b/src/ngLocale/angular-locale_ta-sg.js index 17a990c7f504..6046d0b93c91 100644 --- a/src/ngLocale/angular-locale_ta-sg.js +++ b/src/ngLocale/angular-locale_ta-sg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ta-sg", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ta.js b/src/ngLocale/angular-locale_ta.js index 1b6529f07fb6..dd73dc397271 100644 --- a/src/ngLocale/angular-locale_ta.js +++ b/src/ngLocale/angular-locale_ta.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "ta", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_te-in.js b/src/ngLocale/angular-locale_te-in.js index df7e4345a46d..e730e9cdd568 100644 --- a/src/ngLocale/angular-locale_te-in.js +++ b/src/ngLocale/angular-locale_te-in.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "te-in", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_te.js b/src/ngLocale/angular-locale_te.js index 4b76b746a2f6..33ae47e7720c 100644 --- a/src/ngLocale/angular-locale_te.js +++ b/src/ngLocale/angular-locale_te.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "te", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_teo-ke.js b/src/ngLocale/angular-locale_teo-ke.js index 34a1212050a4..4dd4a5c49e1f 100644 --- a/src/ngLocale/angular-locale_teo-ke.js +++ b/src/ngLocale/angular-locale_teo-ke.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "teo-ke", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_teo-ug.js b/src/ngLocale/angular-locale_teo-ug.js index f471456414ed..b8ddd48d75f6 100644 --- a/src/ngLocale/angular-locale_teo-ug.js +++ b/src/ngLocale/angular-locale_teo-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "teo-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_teo.js b/src/ngLocale/angular-locale_teo.js index 7f11a8cbc191..b3c5c997a862 100644 --- a/src/ngLocale/angular-locale_teo.js +++ b/src/ngLocale/angular-locale_teo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "teo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tg-cyrl-tj.js b/src/ngLocale/angular-locale_tg-cyrl-tj.js index 29cad48d93e8..c25e8f706a48 100644 --- a/src/ngLocale/angular-locale_tg-cyrl-tj.js +++ b/src/ngLocale/angular-locale_tg-cyrl-tj.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tg-cyrl-tj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tg-cyrl.js b/src/ngLocale/angular-locale_tg-cyrl.js index d1da60d42ac2..7c0b60f62bf0 100644 --- a/src/ngLocale/angular-locale_tg-cyrl.js +++ b/src/ngLocale/angular-locale_tg-cyrl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tg-cyrl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tg.js b/src/ngLocale/angular-locale_tg.js index c32bc6844545..6a15c5c6bf4b 100644 --- a/src/ngLocale/angular-locale_tg.js +++ b/src/ngLocale/angular-locale_tg.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_th-th.js b/src/ngLocale/angular-locale_th-th.js index 1b9d00440a29..3df817a4c707 100644 --- a/src/ngLocale/angular-locale_th-th.js +++ b/src/ngLocale/angular-locale_th-th.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "th-th", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_th.js b/src/ngLocale/angular-locale_th.js index f572f64b739a..34acd0a9eee6 100644 --- a/src/ngLocale/angular-locale_th.js +++ b/src/ngLocale/angular-locale_th.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "th", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ti-er.js b/src/ngLocale/angular-locale_ti-er.js index 7bfe3b6866aa..8fe072ce3a76 100644 --- a/src/ngLocale/angular-locale_ti-er.js +++ b/src/ngLocale/angular-locale_ti-er.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ti-er", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ti-et.js b/src/ngLocale/angular-locale_ti-et.js index fb7e32657c22..5deaec71ab92 100644 --- a/src/ngLocale/angular-locale_ti-et.js +++ b/src/ngLocale/angular-locale_ti-et.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ti-et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ti.js b/src/ngLocale/angular-locale_ti.js index 0bf39061fb00..f1226ea7be43 100644 --- a/src/ngLocale/angular-locale_ti.js +++ b/src/ngLocale/angular-locale_ti.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ti", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tig-er.js b/src/ngLocale/angular-locale_tig-er.js index 73be58f6b34c..0f137e05d5fa 100644 --- a/src/ngLocale/angular-locale_tig-er.js +++ b/src/ngLocale/angular-locale_tig-er.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tig-er", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tig.js b/src/ngLocale/angular-locale_tig.js index 6d94cfe5c1d3..493fd3961966 100644 --- a/src/ngLocale/angular-locale_tig.js +++ b/src/ngLocale/angular-locale_tig.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tig", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tl.js b/src/ngLocale/angular-locale_tl.js index e7fdefe87a7d..b75b23f12ff9 100644 --- a/src/ngLocale/angular-locale_tl.js +++ b/src/ngLocale/angular-locale_tl.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && (i == 1 || i == 2 || i == 3) || vf.v == 0 && i % 10 != 4 && i % 10 != 6 && i % 10 != 9 || vf.v != 0 && vf.f % 10 != 4 && vf.f % 10 != 6 && vf.f % 10 != 9) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tn-bw.js b/src/ngLocale/angular-locale_tn-bw.js index 726db19bf80c..e14e794b6a4e 100644 --- a/src/ngLocale/angular-locale_tn-bw.js +++ b/src/ngLocale/angular-locale_tn-bw.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tn-bw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tn-za.js b/src/ngLocale/angular-locale_tn-za.js index dab5c964f9a2..5fdeefd43847 100644 --- a/src/ngLocale/angular-locale_tn-za.js +++ b/src/ngLocale/angular-locale_tn-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tn-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tn.js b/src/ngLocale/angular-locale_tn.js index 76997923b1d6..b6c8c761b676 100644 --- a/src/ngLocale/angular-locale_tn.js +++ b/src/ngLocale/angular-locale_tn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_to-to.js b/src/ngLocale/angular-locale_to-to.js index 23582c88593b..2ac8b1c8b5d1 100644 --- a/src/ngLocale/angular-locale_to-to.js +++ b/src/ngLocale/angular-locale_to-to.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "to-to", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_to.js b/src/ngLocale/angular-locale_to.js index 2fa7bc846be5..7f19185ef83d 100644 --- a/src/ngLocale/angular-locale_to.js +++ b/src/ngLocale/angular-locale_to.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "to", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tr-cy.js b/src/ngLocale/angular-locale_tr-cy.js index f383f7051b21..a06782942a62 100644 --- a/src/ngLocale/angular-locale_tr-cy.js +++ b/src/ngLocale/angular-locale_tr-cy.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "tr-cy", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tr-tr.js b/src/ngLocale/angular-locale_tr-tr.js index e211f78ce888..5f08553b5f48 100644 --- a/src/ngLocale/angular-locale_tr-tr.js +++ b/src/ngLocale/angular-locale_tr-tr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "tr-tr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tr.js b/src/ngLocale/angular-locale_tr.js index ef34094c8738..64f22d30b56d 100644 --- a/src/ngLocale/angular-locale_tr.js +++ b/src/ngLocale/angular-locale_tr.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "tr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ts-za.js b/src/ngLocale/angular-locale_ts-za.js index 56ab14451d57..cafec73b58b0 100644 --- a/src/ngLocale/angular-locale_ts-za.js +++ b/src/ngLocale/angular-locale_ts-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ts-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ts.js b/src/ngLocale/angular-locale_ts.js index 41d22400d598..38bb944f97ff 100644 --- a/src/ngLocale/angular-locale_ts.js +++ b/src/ngLocale/angular-locale_ts.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ts", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_twq-ne.js b/src/ngLocale/angular-locale_twq-ne.js index c8f0b08b4af3..bb501fedbc3b 100644 --- a/src/ngLocale/angular-locale_twq-ne.js +++ b/src/ngLocale/angular-locale_twq-ne.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "twq-ne", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_twq.js b/src/ngLocale/angular-locale_twq.js index 9f048c227fa6..138ab3dd5cd8 100644 --- a/src/ngLocale/angular-locale_twq.js +++ b/src/ngLocale/angular-locale_twq.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "twq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tzm-latn-ma.js b/src/ngLocale/angular-locale_tzm-latn-ma.js index f2632623fa06..8dfc8d073af3 100644 --- a/src/ngLocale/angular-locale_tzm-latn-ma.js +++ b/src/ngLocale/angular-locale_tzm-latn-ma.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tzm-latn-ma", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tzm-latn.js b/src/ngLocale/angular-locale_tzm-latn.js index f703ca24200a..e066b0ea7d49 100644 --- a/src/ngLocale/angular-locale_tzm-latn.js +++ b/src/ngLocale/angular-locale_tzm-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tzm-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_tzm.js b/src/ngLocale/angular-locale_tzm.js index a4ddcd23ee0c..4151e96a3df4 100644 --- a/src/ngLocale/angular-locale_tzm.js +++ b/src/ngLocale/angular-locale_tzm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "tzm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ug-arab-cn.js b/src/ngLocale/angular-locale_ug-arab-cn.js index 32893c3b45a7..2cf85f449e8e 100644 --- a/src/ngLocale/angular-locale_ug-arab-cn.js +++ b/src/ngLocale/angular-locale_ug-arab-cn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ug-arab-cn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ug-arab.js b/src/ngLocale/angular-locale_ug-arab.js index 7763a28ec170..da02c7a511f7 100644 --- a/src/ngLocale/angular-locale_ug-arab.js +++ b/src/ngLocale/angular-locale_ug-arab.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ug-arab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ug.js b/src/ngLocale/angular-locale_ug.js index 8db02ba357bb..b651808e0f14 100644 --- a/src/ngLocale/angular-locale_ug.js +++ b/src/ngLocale/angular-locale_ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uk-ua.js b/src/ngLocale/angular-locale_uk-ua.js index e09c4b3b4ce1..a75ae08939e2 100644 --- a/src/ngLocale/angular-locale_uk-ua.js +++ b/src/ngLocale/angular-locale_uk-ua.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "uk-ua", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uk.js b/src/ngLocale/angular-locale_uk.js index 40f86fc29a06..f8f9b55ad0b6 100644 --- a/src/ngLocale/angular-locale_uk.js +++ b/src/ngLocale/angular-locale_uk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "uk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ur-in.js b/src/ngLocale/angular-locale_ur-in.js index 1d95292228c5..7c5696169107 100644 --- a/src/ngLocale/angular-locale_ur-in.js +++ b/src/ngLocale/angular-locale_ur-in.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ur-in", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ur-pk.js b/src/ngLocale/angular-locale_ur-pk.js index 82911d57ac14..3bdebc5a67de 100644 --- a/src/ngLocale/angular-locale_ur-pk.js +++ b/src/ngLocale/angular-locale_ur-pk.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ur-pk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ur.js b/src/ngLocale/angular-locale_ur.js index f19af0837f08..17039157f07f 100644 --- a/src/ngLocale/angular-locale_ur.js +++ b/src/ngLocale/angular-locale_ur.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ur", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz-arab-af.js b/src/ngLocale/angular-locale_uz-arab-af.js index 10ff66bffb2d..78fbc8ceff08 100644 --- a/src/ngLocale/angular-locale_uz-arab-af.js +++ b/src/ngLocale/angular-locale_uz-arab-af.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz-arab-af", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz-arab.js b/src/ngLocale/angular-locale_uz-arab.js index 1ddebbbd5783..abb1a192c7c8 100644 --- a/src/ngLocale/angular-locale_uz-arab.js +++ b/src/ngLocale/angular-locale_uz-arab.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz-arab", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz-cyrl-uz.js b/src/ngLocale/angular-locale_uz-cyrl-uz.js index 8540386fc610..e8eddda7dadd 100644 --- a/src/ngLocale/angular-locale_uz-cyrl-uz.js +++ b/src/ngLocale/angular-locale_uz-cyrl-uz.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz-cyrl-uz", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz-cyrl.js b/src/ngLocale/angular-locale_uz-cyrl.js index 6cc43dcf7e8f..19aae61b12a6 100644 --- a/src/ngLocale/angular-locale_uz-cyrl.js +++ b/src/ngLocale/angular-locale_uz-cyrl.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz-cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz-latn-uz.js b/src/ngLocale/angular-locale_uz-latn-uz.js index 59f2786f990f..b71c7cd08e73 100644 --- a/src/ngLocale/angular-locale_uz-latn-uz.js +++ b/src/ngLocale/angular-locale_uz-latn-uz.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz-latn-uz", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz-latn.js b/src/ngLocale/angular-locale_uz-latn.js index 8db0cb6ca25f..43572cbfcd8f 100644 --- a/src/ngLocale/angular-locale_uz-latn.js +++ b/src/ngLocale/angular-locale_uz-latn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz-latn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_uz.js b/src/ngLocale/angular-locale_uz.js index a8e6f531f5b6..c2bd79d82f9d 100644 --- a/src/ngLocale/angular-locale_uz.js +++ b/src/ngLocale/angular-locale_uz.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "uz", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vai-latn-lr.js b/src/ngLocale/angular-locale_vai-latn-lr.js index 2a9592f47bb3..d84559d47fac 100644 --- a/src/ngLocale/angular-locale_vai-latn-lr.js +++ b/src/ngLocale/angular-locale_vai-latn-lr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vai-latn-lr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vai-latn.js b/src/ngLocale/angular-locale_vai-latn.js index 067a46734b84..65127b04d390 100644 --- a/src/ngLocale/angular-locale_vai-latn.js +++ b/src/ngLocale/angular-locale_vai-latn.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vai-latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vai-vaii-lr.js b/src/ngLocale/angular-locale_vai-vaii-lr.js index 0d7d3088efa8..7a1b994d678b 100644 --- a/src/ngLocale/angular-locale_vai-vaii-lr.js +++ b/src/ngLocale/angular-locale_vai-vaii-lr.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vai-vaii-lr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vai-vaii.js b/src/ngLocale/angular-locale_vai-vaii.js index cd7d303f6870..632168549747 100644 --- a/src/ngLocale/angular-locale_vai-vaii.js +++ b/src/ngLocale/angular-locale_vai-vaii.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vai-vaii", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vai.js b/src/ngLocale/angular-locale_vai.js index 7283da31b47e..473577be7a81 100644 --- a/src/ngLocale/angular-locale_vai.js +++ b/src/ngLocale/angular-locale_vai.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vai", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ve-za.js b/src/ngLocale/angular-locale_ve-za.js index 792868518830..209d496e6f78 100644 --- a/src/ngLocale/angular-locale_ve-za.js +++ b/src/ngLocale/angular-locale_ve-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ve-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_ve.js b/src/ngLocale/angular-locale_ve.js index d75f90942fe8..881c4cf57c32 100644 --- a/src/ngLocale/angular-locale_ve.js +++ b/src/ngLocale/angular-locale_ve.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "ve", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vi-vn.js b/src/ngLocale/angular-locale_vi-vn.js index b67862f659bb..1576bafd4086 100644 --- a/src/ngLocale/angular-locale_vi-vn.js +++ b/src/ngLocale/angular-locale_vi-vn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "vi-vn", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vi.js b/src/ngLocale/angular-locale_vi.js index afdc58486a82..bd1151b4c837 100644 --- a/src/ngLocale/angular-locale_vi.js +++ b/src/ngLocale/angular-locale_vi.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "vi", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vo-001.js b/src/ngLocale/angular-locale_vo-001.js index 881fdd0515a1..05e7310c4972 100644 --- a/src/ngLocale/angular-locale_vo-001.js +++ b/src/ngLocale/angular-locale_vo-001.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vo-001", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vo.js b/src/ngLocale/angular-locale_vo.js index 15a08f7d6186..07eec8514ea9 100644 --- a/src/ngLocale/angular-locale_vo.js +++ b/src/ngLocale/angular-locale_vo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vun-tz.js b/src/ngLocale/angular-locale_vun-tz.js index 1d3f53f681e2..9e0f9f64ac45 100644 --- a/src/ngLocale/angular-locale_vun-tz.js +++ b/src/ngLocale/angular-locale_vun-tz.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vun-tz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_vun.js b/src/ngLocale/angular-locale_vun.js index 53b391cb8309..8af7ca3ecb0b 100644 --- a/src/ngLocale/angular-locale_vun.js +++ b/src/ngLocale/angular-locale_vun.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "vun", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_wae-ch.js b/src/ngLocale/angular-locale_wae-ch.js index e68029dc942f..0621a676b5c1 100644 --- a/src/ngLocale/angular-locale_wae-ch.js +++ b/src/ngLocale/angular-locale_wae-ch.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "wae-ch", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_wae.js b/src/ngLocale/angular-locale_wae.js index d63d32f275e8..4037b7989744 100644 --- a/src/ngLocale/angular-locale_wae.js +++ b/src/ngLocale/angular-locale_wae.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "wae", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_wal-et.js b/src/ngLocale/angular-locale_wal-et.js index f196a534c32b..16a842ae4fb1 100644 --- a/src/ngLocale/angular-locale_wal-et.js +++ b/src/ngLocale/angular-locale_wal-et.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "wal-et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_wal.js b/src/ngLocale/angular-locale_wal.js index 347d623ee3b5..795c02d2eb86 100644 --- a/src/ngLocale/angular-locale_wal.js +++ b/src/ngLocale/angular-locale_wal.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "wal", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_xh-za.js b/src/ngLocale/angular-locale_xh-za.js index fb2878be18fc..5eeb809a65cf 100644 --- a/src/ngLocale/angular-locale_xh-za.js +++ b/src/ngLocale/angular-locale_xh-za.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "xh-za", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_xh.js b/src/ngLocale/angular-locale_xh.js index 78eed93ced66..756a9f7747bf 100644 --- a/src/ngLocale/angular-locale_xh.js +++ b/src/ngLocale/angular-locale_xh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "xh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_xog-ug.js b/src/ngLocale/angular-locale_xog-ug.js index eeacac957359..0848d0910a73 100644 --- a/src/ngLocale/angular-locale_xog-ug.js +++ b/src/ngLocale/angular-locale_xog-ug.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "xog-ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_xog.js b/src/ngLocale/angular-locale_xog.js index 05498043e2cb..b3cb166bc59e 100644 --- a/src/ngLocale/angular-locale_xog.js +++ b/src/ngLocale/angular-locale_xog.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "xog", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_yav-cm.js b/src/ngLocale/angular-locale_yav-cm.js index fdd1066e7bc8..24bb21cb1963 100644 --- a/src/ngLocale/angular-locale_yav-cm.js +++ b/src/ngLocale/angular-locale_yav-cm.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "yav-cm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_yav.js b/src/ngLocale/angular-locale_yav.js index 9104643ff151..74f4692adabb 100644 --- a/src/ngLocale/angular-locale_yav.js +++ b/src/ngLocale/angular-locale_yav.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "yav", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_yo-bj.js b/src/ngLocale/angular-locale_yo-bj.js index 9b93cc98e261..4fd8277a71cf 100644 --- a/src/ngLocale/angular-locale_yo-bj.js +++ b/src/ngLocale/angular-locale_yo-bj.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "yo-bj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_yo-ng.js b/src/ngLocale/angular-locale_yo-ng.js index 8d9c5ce7a378..0dcd5ae3ee4e 100644 --- a/src/ngLocale/angular-locale_yo-ng.js +++ b/src/ngLocale/angular-locale_yo-ng.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "yo-ng", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_yo.js b/src/ngLocale/angular-locale_yo.js index 7ac27032cc55..4b5b5840ec91 100644 --- a/src/ngLocale/angular-locale_yo.js +++ b/src/ngLocale/angular-locale_yo.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "yo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zgh-ma.js b/src/ngLocale/angular-locale_zgh-ma.js index 140b77a3b9ce..1eb2b76fc0ac 100644 --- a/src/ngLocale/angular-locale_zgh-ma.js +++ b/src/ngLocale/angular-locale_zgh-ma.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "zgh-ma", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zgh.js b/src/ngLocale/angular-locale_zgh.js index 7a74337b9b7c..f89c5318bb55 100644 --- a/src/ngLocale/angular-locale_zgh.js +++ b/src/ngLocale/angular-locale_zgh.js @@ -112,4 +112,4 @@ $provide.value("$locale", { "id": "zgh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-cn.js b/src/ngLocale/angular-locale_zh-cn.js index 37faf92170b1..9c8f324e19e3 100644 --- a/src/ngLocale/angular-locale_zh-cn.js +++ b/src/ngLocale/angular-locale_zh-cn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-cn", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hans-cn.js b/src/ngLocale/angular-locale_zh-hans-cn.js index 404471d1dada..76af8ce90070 100644 --- a/src/ngLocale/angular-locale_zh-hans-cn.js +++ b/src/ngLocale/angular-locale_zh-hans-cn.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hans-cn", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hans-hk.js b/src/ngLocale/angular-locale_zh-hans-hk.js index fa0a719fc6c3..80a0f15d427b 100644 --- a/src/ngLocale/angular-locale_zh-hans-hk.js +++ b/src/ngLocale/angular-locale_zh-hans-hk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hans-hk", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hans-mo.js b/src/ngLocale/angular-locale_zh-hans-mo.js index 2dfac8687a29..471af9ea1626 100644 --- a/src/ngLocale/angular-locale_zh-hans-mo.js +++ b/src/ngLocale/angular-locale_zh-hans-mo.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hans-mo", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hans-sg.js b/src/ngLocale/angular-locale_zh-hans-sg.js index a17bb433272e..b7c100ed69be 100644 --- a/src/ngLocale/angular-locale_zh-hans-sg.js +++ b/src/ngLocale/angular-locale_zh-hans-sg.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hans-sg", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hans.js b/src/ngLocale/angular-locale_zh-hans.js index 06d685b900f0..b44c7bd35c0c 100644 --- a/src/ngLocale/angular-locale_zh-hans.js +++ b/src/ngLocale/angular-locale_zh-hans.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hans", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hant-hk.js b/src/ngLocale/angular-locale_zh-hant-hk.js index 324e29095e03..0ee3a4e99548 100644 --- a/src/ngLocale/angular-locale_zh-hant-hk.js +++ b/src/ngLocale/angular-locale_zh-hant-hk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hant-hk", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hant-mo.js b/src/ngLocale/angular-locale_zh-hant-mo.js index 78c38d57e95b..1bf87be2debb 100644 --- a/src/ngLocale/angular-locale_zh-hant-mo.js +++ b/src/ngLocale/angular-locale_zh-hant-mo.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hant-mo", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hant-tw.js b/src/ngLocale/angular-locale_zh-hant-tw.js index 84d5318c926d..c1582ec7b11f 100644 --- a/src/ngLocale/angular-locale_zh-hant-tw.js +++ b/src/ngLocale/angular-locale_zh-hant-tw.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hant-tw", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hant.js b/src/ngLocale/angular-locale_zh-hant.js index a7aa68bd54d8..31db6747de71 100644 --- a/src/ngLocale/angular-locale_zh-hant.js +++ b/src/ngLocale/angular-locale_zh-hant.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hant", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-hk.js b/src/ngLocale/angular-locale_zh-hk.js index 4f4268f42c75..7eae844ad430 100644 --- a/src/ngLocale/angular-locale_zh-hk.js +++ b/src/ngLocale/angular-locale_zh-hk.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-hk", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh-tw.js b/src/ngLocale/angular-locale_zh-tw.js index d271722a3e50..d9ba29be327f 100644 --- a/src/ngLocale/angular-locale_zh-tw.js +++ b/src/ngLocale/angular-locale_zh-tw.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh-tw", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zh.js b/src/ngLocale/angular-locale_zh.js index ede8ee442d62..bcea795312ba 100644 --- a/src/ngLocale/angular-locale_zh.js +++ b/src/ngLocale/angular-locale_zh.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zh", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zu-za.js b/src/ngLocale/angular-locale_zu-za.js index f19268aad4bb..36f2d58b96e1 100644 --- a/src/ngLocale/angular-locale_zu-za.js +++ b/src/ngLocale/angular-locale_zu-za.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zu-za", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/src/ngLocale/angular-locale_zu.js b/src/ngLocale/angular-locale_zu.js index 267e799b66b9..0938a02a9ad2 100644 --- a/src/ngLocale/angular-locale_zu.js +++ b/src/ngLocale/angular-locale_zu.js @@ -94,4 +94,4 @@ $provide.value("$locale", { "id": "zu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); -}]); \ No newline at end of file +}]); diff --git a/test/auto/injectorSpec.js b/test/auto/injectorSpec.js index 00040966cf4d..12f44c34622f 100644 --- a/test/auto/injectorSpec.js +++ b/test/auto/injectorSpec.js @@ -654,7 +654,7 @@ describe('injector', function() { it('should decorate the missing service error with module name', function() { angular.module('TestModule', [], function(xyzzy) {}); expect(function() { - createInjector(['TestModule' ]); + createInjector(['TestModule']); }).toThrowMinErr( '$injector', 'modulerr', /Failed to instantiate module TestModule due to:\n.*\[\$injector:unpr] Unknown provider: xyzzy/ ); @@ -710,12 +710,12 @@ describe('injector', function() { var Instance = function() { this.name = 'angular'; }; function createInjectorWithValue(instanceName, instance) { - return createInjector([ ['$provide', function(provide) { + return createInjector([['$provide', function(provide) { provide.value(instanceName, instance); }]]); } function createInjectorWithFactory(serviceName, serviceDef) { - return createInjector([ ['$provide', function(provide) { + return createInjector([['$provide', function(provide) { provide.factory(serviceName, serviceDef); }]]); } @@ -748,7 +748,7 @@ describe('injector', function() { var $injector; beforeEach(function() { - $injector = createInjector([ function($provide) { + $injector = createInjector([function($provide) { $provide.value('book', 'moby'); $provide.value('author', 'melville'); }]); @@ -812,7 +812,7 @@ describe('injector', function() { var $injector; beforeEach(function() { - $injector = createInjector([ function($provide) { + $injector = createInjector([function($provide) { $provide.value('book', 'moby'); $provide.value('author', 'melville'); }]); diff --git a/test/helpers/testabilityPatch.js b/test/helpers/testabilityPatch.js index f6e43ecefe38..3df69c7cb15e 100644 --- a/test/helpers/testabilityPatch.js +++ b/test/helpers/testabilityPatch.js @@ -218,7 +218,7 @@ function sortedHtml(element, showNgClass) { } }); } - for (var css in node.style){ + for (var css in node.style) { var value = node.style[css]; if (isString(value) && isString(css) && css != 'cssText' && value && (1*css != css)) { var text = lowercase(css + ': ' + value); diff --git a/test/loaderSpec.js b/test/loaderSpec.js index 7fe668906712..6faa4db91940 100644 --- a/test/loaderSpec.js +++ b/test/loaderSpec.js @@ -45,18 +45,18 @@ describe('module loader', function() { expect(myModule.requires).toEqual(['other']); expect(myModule._invokeQueue).toEqual([ - ['$provide', 'constant', ['abc', 123] ], - ['$provide', 'provider', ['sk', 'sv'] ], - ['$provide', 'factory', ['fk', 'fv'] ], - ['$provide', 'service', ['a', 'aa'] ], - ['$provide', 'value', ['k', 'v'] ], - ['$filterProvider', 'register', ['f', 'ff'] ], - ['$compileProvider', 'directive', ['d', 'dd'] ], + ['$provide', 'constant', ['abc', 123]], + ['$provide', 'provider', ['sk', 'sv']], + ['$provide', 'factory', ['fk', 'fv']], + ['$provide', 'service', ['a', 'aa']], + ['$provide', 'value', ['k', 'v']], + ['$filterProvider', 'register', ['f', 'ff']], + ['$compileProvider', 'directive', ['d', 'dd']], ['$controllerProvider', 'register', ['ctrl', 'ccc']] ]); expect(myModule._configBlocks).toEqual([ - ['$injector', 'invoke', ['config'] ], - ['$injector', 'invoke', ['init2'] ] + ['$injector', 'invoke', ['config']], + ['$injector', 'invoke', ['init2']] ]); expect(myModule._runBlocks).toEqual(['runBlock']); }); diff --git a/test/ng/browserSpecs.js b/test/ng/browserSpecs.js index a80a7c0c619e..7153b1645fde 100755 --- a/test/ng/browserSpecs.js +++ b/test/ng/browserSpecs.js @@ -349,8 +349,8 @@ describe('browser', function() { browser.cookies('x', longVal + 'xxxx'); //total size 4097-4099, a warning should be logged expect(logs.warn).toEqual( - [[ "Cookie 'x' possibly not set or overflowed because it was too large (4097 > 4096 " + - "bytes)!" ]]); + [["Cookie 'x' possibly not set or overflowed because it was too large (4097 > 4096 " + + "bytes)!"]]); //force browser to dropped a cookie and make sure that the cache is not out of sync browser.cookies('x', 'shortVal'); diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index d34053daffd4..00d72bdd4c0c 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -1600,10 +1600,10 @@ describe('parser', function() { })); it('should not use locals to resolve object properties', inject(function($parse) { - expect($parse('a[0].b')({a: [ {b: 'scope'} ]}, {b: 'locals'})).toBe('scope'); - expect($parse('a[0]["b"]')({a: [ {b: 'scope'} ]}, {b: 'locals'})).toBe('scope'); + expect($parse('a[0].b')({a: [{b: 'scope'}]}, {b: 'locals'})).toBe('scope'); + expect($parse('a[0]["b"]')({a: [{b: 'scope'}]}, {b: 'locals'})).toBe('scope'); expect($parse('a[0][0].b')({a: [[{b: 'scope'}]]}, {b: 'locals'})).toBe('scope'); - expect($parse('a[0].b.c')({a: [ {b: {c: 'scope'}}] }, {b: {c: 'locals'} })).toBe('scope'); + expect($parse('a[0].b.c')({a: [{b: {c: 'scope'}}] }, {b: {c: 'locals'} })).toBe('scope'); })); }); diff --git a/test/ngResource/resourceSpec.js b/test/ngResource/resourceSpec.js index 177c0e7e9bf3..ba72525e6de9 100644 --- a/test/ngResource/resourceSpec.js +++ b/test/ngResource/resourceSpec.js @@ -1113,7 +1113,7 @@ describe("resource", function() { }); var user = UserService.query(); $httpBackend.flush(); - expect(user).toEqualData([ {id: 1, name: 'user1'} ]); + expect(user).toEqualData([{id: 1, name: 'user1'}]); }); it('should not convert string literals in array into Resource objects', function() {