* The `$http` legacy promise methods `success` and `error` have been deprecated.
@@ -655,7 +647,7 @@ function $HttpProvider() {
*
* There are two kinds of interceptors (and two kinds of rejection interceptors):
*
- * * `request`: interceptors get called with a http `config` object. The function is free to
+ * * `request`: interceptors get called with a http {@link $http#usage config} object. The function is free to
* modify the `config` object or create a new one. The function needs to return the `config`
* object directly, or a promise containing the `config` or a new `config` object.
* * `requestError`: interceptor gets called when a previous interceptor threw an error or
@@ -926,6 +918,10 @@ function $HttpProvider() {
throw minErr('$http')('badreq', 'Http request configuration must be an object. Received: {0}', requestConfig);
}
+ if (!isString(requestConfig.url)) {
+ throw minErr('$http')('badreq', 'Http request configuration url must be a string. Received: {0}', requestConfig.url);
+ }
+
var config = extend({
method: 'get',
transformRequest: defaults.transformRequest,
@@ -1007,11 +1003,8 @@ function $HttpProvider() {
function transformResponse(response) {
// make a copy since the response must be cacheable
var resp = extend({}, response);
- if (!response.data) {
- resp.data = response.data;
- } else {
- resp.data = transformData(response.data, response.headers, response.status, config.transformResponse);
- }
+ resp.data = transformData(response.data, response.headers, response.status,
+ config.transformResponse);
return (isSuccess(response.status))
? resp
: $q.reject(resp);
diff --git a/src/ng/httpBackend.js b/src/ng/httpBackend.js
index b6aa9689796d..0b16b34a7748 100644
--- a/src/ng/httpBackend.js
+++ b/src/ng/httpBackend.js
@@ -1,7 +1,32 @@
'use strict';
-function createXhr() {
- return new window.XMLHttpRequest();
+/**
+ * @ngdoc service
+ * @name $xhrFactory
+ *
+ * @description
+ * Factory function used to create XMLHttpRequest objects.
+ *
+ * Replace or decorate this service to create your own custom XMLHttpRequest objects.
+ *
+ * ```
+ * angular.module('myApp', [])
+ * .factory('$xhrFactory', function() {
+ * return function createXhr(method, url) {
+ * return new window.XMLHttpRequest({mozSystem: true});
+ * };
+ * });
+ * ```
+ *
+ * @param {string} method HTTP method of the request (GET, POST, PUT, ..)
+ * @param {string} url URL of the request.
+ */
+function $xhrFactoryProvider() {
+ this.$get = function() {
+ return function createXhr() {
+ return new window.XMLHttpRequest();
+ };
+ };
}
/**
@@ -9,6 +34,7 @@ function createXhr() {
* @name $httpBackend
* @requires $window
* @requires $document
+ * @requires $xhrFactory
*
* @description
* HTTP backend used by the {@link ng.$http service} that delegates to
@@ -21,8 +47,8 @@ function createXhr() {
* $httpBackend} which can be trained with responses.
*/
function $HttpBackendProvider() {
- this.$get = ['$browser', '$window', '$document', function($browser, $window, $document) {
- return createHttpBackend($browser, createXhr, $browser.defer, $window.angular.callbacks, $document[0]);
+ this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) {
+ return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]);
}];
}
@@ -46,7 +72,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc
});
} else {
- var xhr = createXhr();
+ var xhr = createXhr(method, url);
xhr.open(method, url, true);
forEach(headers, function(value, key) {
diff --git a/src/ng/location.js b/src/ng/location.js
index a904b100b7c6..3c91549b53b4 100644
--- a/src/ng/location.js
+++ b/src/ng/location.js
@@ -574,9 +574,9 @@ var locationPrototype = {
* @description
* This method is getter / setter.
*
- * Return hash fragment when called without any parameter.
+ * Returns the hash fragment when called without any parameters.
*
- * Change hash fragment when called with parameter and return `$location`.
+ * Changes the hash fragment when called with a parameter and returns `$location`.
*
*
* ```js
@@ -597,8 +597,8 @@ var locationPrototype = {
* @name $location#replace
*
* @description
- * If called, all changes to $location during current `$digest` will be replacing current history
- * record, instead of adding new one.
+ * If called, all changes to $location during the current `$digest` will replace the current history
+ * record, instead of adding a new one.
*/
replace: function() {
this.$$replace = true;
@@ -918,7 +918,7 @@ function $LocationProvider() {
var oldUrl = $location.absUrl();
var oldState = $location.$$state;
var defaultPrevented;
-
+ newUrl = trimEmptyHash(newUrl);
$location.$$parse(newUrl);
$location.$$state = newState;
diff --git a/src/ng/parse.js b/src/ng/parse.js
index 529d701b44a3..b9c280fc39a3 100644
--- a/src/ng/parse.js
+++ b/src/ng/parse.js
@@ -38,20 +38,30 @@ var $parseMinErr = minErr('$parse');
function ensureSafeMemberName(name, fullExpression) {
+ if (name === "__defineGetter__" || name === "__defineSetter__"
+ || name === "__lookupGetter__" || name === "__lookupSetter__"
+ || name === "__proto__") {
+ throw $parseMinErr('isecfld',
+ 'Attempting to access a disallowed field in Angular expressions! '
+ + 'Expression: {0}', fullExpression);
+ }
+ return name;
+}
+
+function getStringValue(name, fullExpression) {
// From the JavaScript docs:
// Property names must be strings. This means that non-string objects cannot be used
// as keys in an object. Any non-string object, including a number, is typecasted
// into a string via the toString method.
//
// So, to ensure that we are checking the same `name` that JavaScript would use,
- // we cast it to a string, if possible
- name = (isObject(name) && name.toString) ? name.toString() : name;
-
- if (name === "__defineGetter__" || name === "__defineSetter__"
- || name === "__lookupGetter__" || name === "__lookupSetter__"
- || name === "__proto__") {
- throw $parseMinErr('isecfld',
- 'Attempting to access a disallowed field in Angular expressions! '
+ // we cast it to a string, if possible.
+ // Doing `name + ''` can cause a repl error if the result to `toString` is not a string,
+ // this is, this will handle objects that misbehave.
+ name = name + '';
+ if (!isString(name)) {
+ throw $parseMinErr('iseccst',
+ 'Cannot convert object to primitive value! '
+ 'Expression: {0}', fullExpression);
}
return name;
@@ -102,6 +112,16 @@ function ensureSafeFunction(obj, fullExpression) {
}
}
+function ensureSafeAssignContext(obj, fullExpression) {
+ if (obj) {
+ if (obj === (0).constructor || obj === (false).constructor || obj === ''.constructor ||
+ obj === {}.constructor || obj === [].constructor || obj === Function.constructor) {
+ throw $parseMinErr('isecaf',
+ 'Assigning to a constructor is disallowed! Expression: {0}', fullExpression);
+ }
+ }
+}
+
var OPERATORS = createMap();
forEach('+ - * / % === !== == != < > <= >= && || ! = |'.split(' '), function(operator) { OPERATORS[operator] = true; });
var ESCAPE = {"n":"\n", "f":"\f", "r":"\r", "t":"\t", "v":"\v", "'":"'", '"':'"'};
@@ -816,6 +836,8 @@ ASTCompiler.prototype = {
'ensureSafeMemberName',
'ensureSafeObject',
'ensureSafeFunction',
+ 'getStringValue',
+ 'ensureSafeAssignContext',
'ifDefined',
'plus',
'text',
@@ -824,6 +846,8 @@ ASTCompiler.prototype = {
ensureSafeMemberName,
ensureSafeObject,
ensureSafeFunction,
+ getStringValue,
+ ensureSafeAssignContext,
ifDefined,
plusFn,
expression);
@@ -967,6 +991,7 @@ ASTCompiler.prototype = {
if (ast.computed) {
right = self.nextId();
self.recurse(ast.property, right);
+ self.getStringValue(right);
self.addEnsureSafeMemberName(right);
if (create && create !== 1) {
self.if_(self.not(self.computedMember(left, right)), self.lazyAssign(self.computedMember(left, right), '{}'));
@@ -1044,12 +1069,13 @@ ASTCompiler.prototype = {
right = this.nextId();
left = {};
if (!isAssignable(ast.left)) {
- throw $parseMinErr('lval', 'Trying to assing a value to a non l-value');
+ throw $parseMinErr('lval', 'Trying to assign a value to a non l-value');
}
this.recurse(ast.left, undefined, left, function() {
self.if_(self.notNull(left.context), function() {
self.recurse(ast.right, right);
self.addEnsureSafeObject(self.member(left.context, left.name, left.computed));
+ self.addEnsureSafeAssignContext(left.context);
expression = self.member(left.context, left.name, left.computed) + ast.operator + right;
self.assign(intoId, expression);
recursionFn(intoId || expression);
@@ -1175,6 +1201,10 @@ ASTCompiler.prototype = {
this.current().body.push(this.ensureSafeFunction(item), ';');
},
+ addEnsureSafeAssignContext: function(item) {
+ this.current().body.push(this.ensureSafeAssignContext(item), ';');
+ },
+
ensureSafeObject: function(item) {
return 'ensureSafeObject(' + item + ',text)';
},
@@ -1187,6 +1217,14 @@ ASTCompiler.prototype = {
return 'ensureSafeFunction(' + item + ',text)';
},
+ getStringValue: function(item) {
+ this.assign(item, 'getStringValue(' + item + ',text)');
+ },
+
+ ensureSafeAssignContext: function(item) {
+ return 'ensureSafeAssignContext(' + item + ',text)';
+ },
+
lazyRecurse: function(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck) {
var self = this;
return function() {
@@ -1364,6 +1402,7 @@ ASTInterpreter.prototype = {
var lhs = left(scope, locals, assign, inputs);
var rhs = right(scope, locals, assign, inputs);
ensureSafeObject(lhs.value, self.expression);
+ ensureSafeAssignContext(lhs.context);
lhs.context[lhs.name] = rhs;
return context ? {value: rhs} : rhs;
};
@@ -1561,6 +1600,7 @@ ASTInterpreter.prototype = {
var value;
if (lhs != null) {
rhs = right(scope, locals, assign, inputs);
+ rhs = getStringValue(rhs);
ensureSafeMemberName(rhs, expression);
if (create && create !== 1 && lhs && !(lhs[rhs])) {
lhs[rhs] = {};
@@ -1735,7 +1775,7 @@ function $ParseProvider() {
return addInterceptor(exp, interceptorFn);
default:
- return noop;
+ return addInterceptor(noop, interceptorFn);
}
};
@@ -1866,13 +1906,14 @@ function $ParseProvider() {
function addInterceptor(parsedExpression, interceptorFn) {
if (!interceptorFn) return parsedExpression;
var watchDelegate = parsedExpression.$$watchDelegate;
+ var useInputs = false;
var regularWatch =
watchDelegate !== oneTimeLiteralWatchDelegate &&
watchDelegate !== oneTimeWatchDelegate;
var fn = regularWatch ? function regularInterceptedExpression(scope, locals, assign, inputs) {
- var value = parsedExpression(scope, locals, assign, inputs);
+ var value = useInputs && inputs ? inputs[0] : parsedExpression(scope, locals, assign, inputs);
return interceptorFn(value, scope, locals);
} : function oneTimeInterceptedExpression(scope, locals, assign, inputs) {
var value = parsedExpression(scope, locals, assign, inputs);
@@ -1890,6 +1931,7 @@ function $ParseProvider() {
// If there is an interceptor, but no watchDelegate then treat the interceptor like
// we treat filters - it is assumed to be a pure function unless flagged with $stateful
fn.$$watchDelegate = inputsWatchDelegate;
+ useInputs = !parsedExpression.inputs;
fn.inputs = parsedExpression.inputs ? parsedExpression.inputs : [parsedExpression];
}
diff --git a/src/ng/q.js b/src/ng/q.js
index 9466a2e9384d..8bb9536b6672 100644
--- a/src/ng/q.js
+++ b/src/ng/q.js
@@ -53,6 +53,8 @@
*
* Note: progress/notify callbacks are not currently supported via the ES6-style interface.
*
+ * Note: unlike ES6 behaviour, an exception thrown in the constructor function will NOT implicitly reject the promise.
+ *
* However, the more traditional CommonJS-style usage is still available, and documented below.
*
* [The CommonJS Promise proposal](http://wiki.commonjs.org/wiki/Promises) describes a promise as an
diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js
index 952f4b92d484..ae374d6d7cd9 100644
--- a/src/ng/rootScope.js
+++ b/src/ng/rootScope.js
@@ -14,15 +14,15 @@
* exposed as $$____ properties
*
* Loop operations are optimized by using while(count--) { ... }
- * - this means that in order to keep the same order of execution as addition we have to add
+ * - This means that in order to keep the same order of execution as addition we have to add
* items to the array at the beginning (unshift) instead of at the end (push)
*
* Child scopes are created and removed often
- * - Using an array would be slow since inserts in middle are expensive so we use linked list
+ * - Using an array would be slow since inserts in the middle are expensive; so we use linked lists
*
- * There are few watches then a lot of observers. This is why you don't want the observer to be
- * implemented in the same way as watch. Watch requires return of initialization function which
- * are expensive to construct.
+ * There are fewer watches than observers. This is why you don't want the observer to be implemented
+ * in the same way as watch. Watch requires return of the initialization function which is expensive
+ * to construct.
*/
@@ -64,7 +64,7 @@
* Every application has a single root {@link ng.$rootScope.Scope scope}.
* All other scopes are descendant scopes of the root scope. Scopes provide separation
* between the model and the view, via a mechanism for watching the model for changes.
- * They also provide an event emission/broadcast and subscription facility. See the
+ * They also provide event emission/broadcast and subscription facility. See the
* {@link guide/scope developer guide on scopes}.
*/
function $RootScopeProvider() {
@@ -101,6 +101,29 @@ function $RootScopeProvider() {
$event.currentScope.$$destroyed = true;
}
+ function cleanUpScope($scope) {
+
+ if (msie === 9) {
+ // There is a memory leak in IE9 if all child scopes are not disconnected
+ // completely when a scope is destroyed. So this code will recurse up through
+ // all this scopes children
+ //
+ // See issue https://github.com/angular/angular.js/issues/10706
+ $scope.$$childHead && cleanUpScope($scope.$$childHead);
+ $scope.$$nextSibling && cleanUpScope($scope.$$nextSibling);
+ }
+
+ // The code below works around IE9 and V8's memory leaks
+ //
+ // See:
+ // - https://code.google.com/p/v8/issues/detail?id=2073#c26
+ // - https://github.com/angular/angular.js/issues/6794#issuecomment-38648909
+ // - https://github.com/angular/angular.js/issues/1313#issuecomment-10378451
+
+ $scope.$parent = $scope.$$nextSibling = $scope.$$prevSibling = $scope.$$childHead =
+ $scope.$$childTail = $scope.$root = $scope.$$watchers = null;
+ }
+
/**
* @ngdoc type
* @name $rootScope.Scope
@@ -897,16 +920,9 @@ function $RootScopeProvider() {
this.$on = this.$watch = this.$watchGroup = function() { return noop; };
this.$$listeners = {};
- // All of the code below is bogus code that works around V8's memory leak via optimized code
- // and inline caches.
- //
- // see:
- // - https://code.google.com/p/v8/issues/detail?id=2073#c26
- // - https://github.com/angular/angular.js/issues/6794#issuecomment-38648909
- // - https://github.com/angular/angular.js/issues/1313#issuecomment-10378451
-
- this.$parent = this.$$nextSibling = this.$$prevSibling = this.$$childHead =
- this.$$childTail = this.$root = this.$$watchers = null;
+ // Disconnect the next sibling to prevent `cleanUpScope` destroying those too
+ this.$$nextSibling = null;
+ cleanUpScope(this);
},
/**
diff --git a/src/ng/sce.js b/src/ng/sce.js
index d11419ff0f25..c823f2b2bd4e 100644
--- a/src/ng/sce.js
+++ b/src/ng/sce.js
@@ -484,7 +484,7 @@ function $SceDelegateProvider() {
* By default, Angular only loads templates from the same domain and protocol as the application
* document. This is done by calling {@link ng.$sce#getTrustedResourceUrl
* $sce.getTrustedResourceUrl} on the template URL. To load templates from other domains and/or
- * protocols, you may either either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist
+ * protocols, you may either {@link ng.$sceDelegateProvider#resourceUrlWhitelist whitelist
* them} or {@link ng.$sce#trustAsResourceUrl wrap it} into a trusted value.
*
* *Please note*:
diff --git a/src/ng/timeout.js b/src/ng/timeout.js
index 305739527c4c..6253d788e121 100644
--- a/src/ng/timeout.js
+++ b/src/ng/timeout.js
@@ -33,8 +33,8 @@ function $TimeoutProvider() {
* @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise
* will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block.
* @param {...*=} Pass additional parameters to the executed function.
- * @returns {Promise} Promise that will be resolved when the timeout is reached. The value this
- * promise will be resolved with is the return value of the `fn` function.
+ * @returns {Promise} Promise that will be resolved when the timeout is reached. The promise
+ * will be resolved with the return value of the `fn` function.
*
*/
function timeout(fn, delay, invokeApply) {
diff --git a/src/ngAnimate/.jshintrc b/src/ngAnimate/.jshintrc
index ee79a690d2a8..187ecd1f3c9d 100644
--- a/src/ngAnimate/.jshintrc
+++ b/src/ngAnimate/.jshintrc
@@ -7,6 +7,7 @@
"angular": false,
"noop": false,
+ "copy": false,
"forEach": false,
"extend": false,
"jqLite": false,
diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js
index f15929614246..664583198624 100644
--- a/src/ngAnimate/animateCss.js
+++ b/src/ngAnimate/animateCss.js
@@ -186,8 +186,10 @@ var ANIMATE_TIMER_KEY = '$$animateCss';
*
* * `event` - The DOM event (e.g. enter, leave, move). When used, a generated CSS class of `ng-EVENT` and `ng-EVENT-active` will be applied
* to the element during the animation. Multiple events can be provided when spaces are used as a separator. (Note that this will not perform any DOM operation.)
+ * * `structural` - Indicates that the `ng-` prefix will be added to the event class. Setting to `false` or omitting will turn `ng-EVENT` and
+ * `ng-EVENT-active` in `EVENT` and `EVENT-active`. Unused if `event` is omitted.
* * `easing` - The CSS easing value that will be applied to the transition or keyframe animation (or both).
- * * `transition` - The raw CSS transition style that will be used (e.g. `1s linear all`).
+ * * `transitionStyle` - The raw CSS transition style that will be used (e.g. `1s linear all`).
* * `keyframeStyle` - The raw CSS keyframe animation style that will be used (e.g. `1s my_animation linear`).
* * `from` - The starting CSS styles (a key/value object) that will be applied at the start of the animation.
* * `to` - The ending CSS styles (a key/value object) that will be applied across the animation via a CSS transition.
@@ -204,6 +206,10 @@ var ANIMATE_TIMER_KEY = '$$animateCss';
* * `staggerIndex` - The numeric index representing the stagger item (e.g. a value of 5 is equal to the sixth item in the stagger; therefore when a
* * `stagger` option value of `0.1` is used then there will be a stagger delay of `600ms`)
* * `applyClassesEarly` - Whether or not the classes being added or removed will be used when detecting the animation. This is set by `$animate` when enter/leave/move animations are fired to ensure that the CSS classes are resolved in time. (Note that this will prevent any transitions from occuring on the classes being added and removed.)
+ * * `cleanupStyles` - Whether or not the provided `from` and `to` styles will be removed once
+ * the animation is closed. This is useful for when the styles are used purely for the sake of
+ * the animation and do not have a lasting visual effect on the element (e.g. a colapse and open animation).
+ * By default this value is set to `false`.
*
* @return {object} an object with start and end methods and details about the animation.
*
@@ -324,6 +330,23 @@ function createLocalCacheLookup() {
};
}
+// we do not reassign an already present style value since
+// if we detect the style property value again we may be
+// detecting styles that were added via the `from` styles.
+// We make use of `isDefined` here since an empty string
+// or null value (which is what getPropertyValue will return
+// for a non-existing style) will still be marked as a valid
+// value for the style (a falsy value implies that the style
+// is to be removed at the end of the animation). If we had a simple
+// "OR" statement then it would not be enough to catch that.
+function registerRestorableStyles(backup, node, properties) {
+ forEach(properties, function(prop) {
+ backup[prop] = isDefined(backup[prop])
+ ? backup[prop]
+ : node.style.getPropertyValue(prop);
+ });
+}
+
var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
var gcsLookup = createLocalCacheLookup();
var gcsStaggerLookup = createLocalCacheLookup();
@@ -423,7 +446,13 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
return timings;
}
- return function init(element, options) {
+ return function init(element, initialOptions) {
+ // we always make a copy of the options since
+ // there should never be any side effects on
+ // the input data when running `$animateCss`.
+ var options = copy(initialOptions);
+
+ var restoreStyles = {};
var node = getDomNode(element);
if (!node
|| !node.parentNode
@@ -598,7 +627,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
}
if (options.delay != null) {
- var delayStyle = parseFloat(options.delay);
+ var delayStyle;
+ if (typeof options.delay !== "boolean") {
+ delayStyle = parseFloat(options.delay);
+ // number in options.delay means we have to recalculate the delay for the closing timeout
+ maxDelay = Math.max(delayStyle, 0);
+ }
if (flags.applyTransitionDelay) {
temporaryStyles.push(getCssDelayStyle(delayStyle));
@@ -625,7 +659,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
stagger.animationDuration === 0;
}
- applyAnimationFromStyles(element, options);
+ if (options.from) {
+ if (options.cleanupStyles) {
+ registerRestorableStyles(restoreStyles, node, Object.keys(options.from));
+ }
+ applyAnimationFromStyles(element, options);
+ }
if (flags.blockTransition || flags.blockKeyframeAnimation) {
applyBlocking(maxDuration);
@@ -692,6 +731,13 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
applyAnimationClasses(element, options);
applyAnimationStyles(element, options);
+ if (Object.keys(restoreStyles).length) {
+ forEach(restoreStyles, function(value, prop) {
+ value ? node.style.setProperty(prop, value)
+ : node.style.removeProperty(prop);
+ });
+ }
+
// the reason why we have this option is to allow a synchronous closing callback
// that is fired as SOON as the animation ends (when the CSS is removed) or if
// the animation never takes off at all. A good example is a leave animation since
@@ -886,7 +932,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) {
}
element.on(events.join(' '), onAnimationProgress);
- applyAnimationToStyles(element, options);
+ if (options.to) {
+ if (options.cleanupStyles) {
+ registerRestorableStyles(restoreStyles, node, Object.keys(options.to));
+ }
+ applyAnimationToStyles(element, options);
+ }
}
function onAnimationExpired() {
diff --git a/src/ngAnimate/animateCssDriver.js b/src/ngAnimate/animateCssDriver.js
index 12afe34abc76..d2cb67db0f70 100644
--- a/src/ngAnimate/animateCssDriver.js
+++ b/src/ngAnimate/animateCssDriver.js
@@ -9,16 +9,25 @@ var $$AnimateCssDriverProvider = ['$$animationProvider', function($$animationPro
var NG_OUT_ANCHOR_CLASS_NAME = 'ng-anchor-out';
var NG_IN_ANCHOR_CLASS_NAME = 'ng-anchor-in';
- this.$get = ['$animateCss', '$rootScope', '$$AnimateRunner', '$rootElement', '$$body', '$sniffer', '$$jqLite',
- function($animateCss, $rootScope, $$AnimateRunner, $rootElement, $$body, $sniffer, $$jqLite) {
+ function isDocumentFragment(node) {
+ return node.parentNode && node.parentNode.nodeType === 11;
+ }
+
+ this.$get = ['$animateCss', '$rootScope', '$$AnimateRunner', '$rootElement', '$sniffer', '$$jqLite', '$document',
+ function($animateCss, $rootScope, $$AnimateRunner, $rootElement, $sniffer, $$jqLite, $document) {
// only browsers that support these properties can render animations
if (!$sniffer.animations && !$sniffer.transitions) return noop;
- var bodyNode = getDomNode($$body);
+ var bodyNode = $document[0].body;
var rootNode = getDomNode($rootElement);
- var rootBodyElement = jqLite(bodyNode.parentNode === rootNode ? bodyNode : rootNode);
+ var rootBodyElement = jqLite(
+ // this is to avoid using something that exists outside of the body
+ // we also special case the doc fragement case because our unit test code
+ // appends the $rootElement to the body after the app has been bootstrapped
+ isDocumentFragment(rootNode) || bodyNode.contains(rootNode) ? rootNode : bodyNode
+ );
var applyAnimationClasses = applyAnimationClassesFactory($$jqLite);
diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js
index 6337ec0c03c2..e024c831cf3c 100644
--- a/src/ngAnimate/animateQueue.js
+++ b/src/ngAnimate/animateQueue.js
@@ -66,15 +66,33 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
return (nO.addClass && nO.addClass === cO.removeClass) || (nO.removeClass && nO.removeClass === cO.addClass);
});
- this.$get = ['$$rAF', '$rootScope', '$rootElement', '$document', '$$body', '$$HashMap',
+ this.$get = ['$$rAF', '$rootScope', '$rootElement', '$document', '$$HashMap',
'$$animation', '$$AnimateRunner', '$templateRequest', '$$jqLite', '$$forceReflow',
- function($$rAF, $rootScope, $rootElement, $document, $$body, $$HashMap,
+ function($$rAF, $rootScope, $rootElement, $document, $$HashMap,
$$animation, $$AnimateRunner, $templateRequest, $$jqLite, $$forceReflow) {
var activeAnimationsLookup = new $$HashMap();
var disabledElementsLookup = new $$HashMap();
var animationsEnabled = null;
+ function postDigestTaskFactory() {
+ var postDigestCalled = false;
+ return function(fn) {
+ // we only issue a call to postDigest before
+ // it has first passed. This prevents any callbacks
+ // from not firing once the animation has completed
+ // since it will be out of the digest cycle.
+ if (postDigestCalled) {
+ fn();
+ } else {
+ $rootScope.$$postDigest(function() {
+ postDigestCalled = true;
+ fn();
+ });
+ }
+ };
+ }
+
// Wait until all directive and route-related templates are downloaded and
// compiled. The $templateRequest.totalPendingRequests variable keeps track of
// all of the remote templates being currently downloaded. If there are no
@@ -121,8 +139,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
return mergeAnimationOptions(element, options, {});
}
- function findCallbacks(element, event) {
+ function findCallbacks(parent, element, event) {
var targetNode = getDomNode(element);
+ var targetParentNode = getDomNode(parent);
var matches = [];
var entries = callbackRegistry[event];
@@ -130,6 +149,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
forEach(entries, function(entry) {
if (entry.node.contains(targetNode)) {
matches.push(entry.callback);
+ } else if (event === 'leave' && entry.node.contains(targetParentNode)) {
+ matches.push(entry.callback);
}
});
}
@@ -137,14 +158,6 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
return matches;
}
- function triggerCallback(event, element, phase, data) {
- $$rAF(function() {
- forEach(findCallbacks(element, event), function(callback) {
- callback(element, phase, data);
- });
- });
- }
-
return {
on: function(event, container, callback) {
var node = extractElementNode(container);
@@ -225,7 +238,12 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
}
};
- function queueAnimation(element, event, options) {
+ function queueAnimation(element, event, initialOptions) {
+ // we always make a copy of the options since
+ // there should never be any side effects on
+ // the input data when running `$animateCss`.
+ var options = copy(initialOptions);
+
var node, parent;
element = stripCommentsFromElement(element);
if (element) {
@@ -239,6 +257,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
// These methods will become available after the digest has passed
var runner = new $$AnimateRunner();
+ // this is used to trigger callbacks in postDigest mode
+ var runInNextPostDigestOrNow = postDigestTaskFactory();
+
if (isArray(options.addClass)) {
options.addClass = options.addClass.join(' ');
}
@@ -459,7 +480,20 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
return runner;
function notifyProgress(runner, event, phase, data) {
- triggerCallback(event, element, phase, data);
+ runInNextPostDigestOrNow(function() {
+ var callbacks = findCallbacks(parent, element, event);
+ if (callbacks.length) {
+ // do not optimize this call here to RAF because
+ // we don't know how heavy the callback code here will
+ // be and if this code is buffered then this can
+ // lead to a performance regression.
+ $$rAF(function() {
+ forEach(callbacks, function(callback) {
+ callback(element, phase, data);
+ });
+ });
+ }
+ });
runner.progress(event, phase, data);
}
@@ -478,15 +512,15 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
forEach(children, function(child) {
var state = parseInt(child.getAttribute(NG_ANIMATE_ATTR_NAME));
var animationDetails = activeAnimationsLookup.get(child);
- switch (state) {
- case RUNNING_STATE:
- animationDetails.runner.end();
- /* falls through */
- case PRE_DIGEST_STATE:
- if (animationDetails) {
+ if (animationDetails) {
+ switch (state) {
+ case RUNNING_STATE:
+ animationDetails.runner.end();
+ /* falls through */
+ case PRE_DIGEST_STATE:
activeAnimationsLookup.remove(child);
- }
- break;
+ break;
+ }
}
});
}
@@ -502,7 +536,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
}
function areAnimationsAllowed(element, parentElement, event) {
- var bodyElementDetected = isMatchingElement(element, $$body) || element[0].nodeName === 'HTML';
+ var bodyElement = jqLite($document[0].body);
+ var bodyElementDetected = isMatchingElement(element, bodyElement) || element[0].nodeName === 'HTML';
var rootElementDetected = isMatchingElement(element, $rootElement);
var parentAnimationDetected = false;
var animateChildren;
@@ -551,6 +586,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
parentHost = parentElement.data(NG_ANIMATE_PIN_DATA);
if (parentHost) {
parentElement = parentHost;
+ rootElementDetected = true;
}
}
}
@@ -558,7 +594,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) {
if (!bodyElementDetected) {
// we also need to ensure that the element is or will be apart of the body element
// otherwise it is pointless to even issue an animation to be rendered
- bodyElementDetected = isMatchingElement(parentElement, $$body);
+ bodyElementDetected = isMatchingElement(parentElement, bodyElement);
}
parentElement = parentElement.parent();
diff --git a/src/ngAnimate/animateRunner.js b/src/ngAnimate/animateRunner.js
deleted file mode 100644
index 1a2e6264a5e5..000000000000
--- a/src/ngAnimate/animateRunner.js
+++ /dev/null
@@ -1,166 +0,0 @@
-'use strict';
-
-var $$AnimateAsyncRunFactory = ['$$rAF', function($$rAF) {
- var waitQueue = [];
-
- function waitForTick(fn) {
- waitQueue.push(fn);
- if (waitQueue.length > 1) return;
- $$rAF(function() {
- for (var i = 0; i < waitQueue.length; i++) {
- waitQueue[i]();
- }
- waitQueue = [];
- });
- }
-
- return function() {
- var passed = false;
- waitForTick(function() {
- passed = true;
- });
- return function(callback) {
- passed ? callback() : waitForTick(callback);
- };
- };
-}];
-
-var $$AnimateRunnerFactory = ['$q', '$sniffer', '$$animateAsyncRun',
- function($q, $sniffer, $$animateAsyncRun) {
-
- var INITIAL_STATE = 0;
- var DONE_PENDING_STATE = 1;
- var DONE_COMPLETE_STATE = 2;
-
- AnimateRunner.chain = function(chain, callback) {
- var index = 0;
-
- next();
- function next() {
- if (index === chain.length) {
- callback(true);
- return;
- }
-
- chain[index](function(response) {
- if (response === false) {
- callback(false);
- return;
- }
- index++;
- next();
- });
- }
- };
-
- AnimateRunner.all = function(runners, callback) {
- var count = 0;
- var status = true;
- forEach(runners, function(runner) {
- runner.done(onProgress);
- });
-
- function onProgress(response) {
- status = status && response;
- if (++count === runners.length) {
- callback(status);
- }
- }
- };
-
- function AnimateRunner(host) {
- this.setHost(host);
-
- this._doneCallbacks = [];
- this._runInAnimationFrame = $$animateAsyncRun();
- this._state = 0;
- }
-
- AnimateRunner.prototype = {
- setHost: function(host) {
- this.host = host || {};
- },
-
- done: function(fn) {
- if (this._state === DONE_COMPLETE_STATE) {
- fn();
- } else {
- this._doneCallbacks.push(fn);
- }
- },
-
- progress: noop,
-
- getPromise: function() {
- if (!this.promise) {
- var self = this;
- this.promise = $q(function(resolve, reject) {
- self.done(function(status) {
- status === false ? reject() : resolve();
- });
- });
- }
- return this.promise;
- },
-
- then: function(resolveHandler, rejectHandler) {
- return this.getPromise().then(resolveHandler, rejectHandler);
- },
-
- 'catch': function(handler) {
- return this.getPromise()['catch'](handler);
- },
-
- 'finally': function(handler) {
- return this.getPromise()['finally'](handler);
- },
-
- pause: function() {
- if (this.host.pause) {
- this.host.pause();
- }
- },
-
- resume: function() {
- if (this.host.resume) {
- this.host.resume();
- }
- },
-
- end: function() {
- if (this.host.end) {
- this.host.end();
- }
- this._resolve(true);
- },
-
- cancel: function() {
- if (this.host.cancel) {
- this.host.cancel();
- }
- this._resolve(false);
- },
-
- complete: function(response) {
- var self = this;
- if (self._state === INITIAL_STATE) {
- self._state = DONE_PENDING_STATE;
- self._runInAnimationFrame(function() {
- self._resolve(response);
- });
- }
- },
-
- _resolve: function(response) {
- if (this._state !== DONE_COMPLETE_STATE) {
- forEach(this._doneCallbacks, function(fn) {
- fn(response);
- });
- this._doneCallbacks.length = 0;
- this._state = DONE_COMPLETE_STATE;
- }
- }
- };
-
- return AnimateRunner;
-}];
diff --git a/src/ngAnimate/body.js b/src/ngAnimate/body.js
deleted file mode 100644
index 8c8ce21ac9e8..000000000000
--- a/src/ngAnimate/body.js
+++ /dev/null
@@ -1,7 +0,0 @@
-'use strict';
-
-function $$BodyProvider() {
- this.$get = ['$document', function($document) {
- return jqLite($document[0].body);
- }];
-}
diff --git a/src/ngAnimate/module.js b/src/ngAnimate/module.js
index d48dd73e8d9c..ce4e09552cff 100644
--- a/src/ngAnimate/module.js
+++ b/src/ngAnimate/module.js
@@ -2,11 +2,9 @@
/* global angularAnimateModule: true,
- $$BodyProvider,
$$AnimateAsyncRunFactory,
$$rAFSchedulerFactory,
$$AnimateChildrenDirective,
- $$AnimateRunnerFactory,
$$AnimateQueueProvider,
$$AnimationProvider,
$AnimateCssProvider,
@@ -291,7 +289,7 @@
* jQuery(element).fadeOut(1000, doneFn);
* }
* }
- * }]
+ * }]);
* ```
*
* The nice thing about JS-based animations is that we can inject other services and make use of advanced animation libraries such as
@@ -322,7 +320,7 @@
* // do some cool animation and call the doneFn
* }
* }
- * }]
+ * }]);
* ```
*
* ## CSS + JS Animations Together
@@ -344,7 +342,7 @@
* jQuery(element).slideIn(1000, doneFn);
* }
* }
- * }]
+ * }]);
* ```
*
* ```css
@@ -364,16 +362,15 @@
* ```js
* myModule.animation('.slide', ['$animateCss', function($animateCss) {
* return {
- * enter: function(element, doneFn) {
+ * enter: function(element) {
* // this will trigger `.slide.ng-enter` and `.slide.ng-enter-active`.
- * var runner = $animateCss(element, {
+ * return $animateCss(element, {
* event: 'enter',
* structural: true
- * }).start();
-* runner.done(doneFn);
+ * });
* }
* }
- * }]
+ * }]);
* ```
*
* The nice thing here is that we can save bandwidth by sticking to our CSS-based animation code and we don't need to rely on a 3rd-party animation framework.
@@ -385,19 +382,17 @@
* ```js
* myModule.animation('.slide', ['$animateCss', function($animateCss) {
* return {
- * enter: function(element, doneFn) {
- * var runner = $animateCss(element, {
+ * enter: function(element) {
+ * return $animateCss(element, {
* event: 'enter',
* structural: true,
* addClass: 'maroon-setting',
* from: { height:0 },
* to: { height: 200 }
- * }).start();
- *
- * runner.done(doneFn);
+ * });
* }
* }
- * }]
+ * }]);
* ```
*
* Now we can fill in the rest via our transition CSS code:
@@ -742,14 +737,9 @@
* Click here {@link ng.$animate to learn more about animations with `$animate`}.
*/
angular.module('ngAnimate', [])
- .provider('$$body', $$BodyProvider)
-
.directive('ngAnimateChildren', $$AnimateChildrenDirective)
.factory('$$rAFScheduler', $$rAFSchedulerFactory)
- .factory('$$AnimateRunner', $$AnimateRunnerFactory)
- .factory('$$animateAsyncRun', $$AnimateAsyncRunFactory)
-
.provider('$$animateQueue', $$AnimateQueueProvider)
.provider('$$animation', $$AnimationProvider)
diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js
index ad58a1506cab..739077732b01 100644
--- a/src/ngAnimate/shared.js
+++ b/src/ngAnimate/shared.js
@@ -2,6 +2,7 @@
/* jshint ignore:start */
var noop = angular.noop;
+var copy = angular.copy;
var extend = angular.extend;
var jqLite = angular.element;
var forEach = angular.forEach;
@@ -71,6 +72,7 @@ var isPromiseLike = function(p) {
return p && p.then ? true : false;
};
+var ngMinErr = angular.$$minErr('ng');
function assertArg(arg, name, reason) {
if (!arg) {
throw ngMinErr('areq', "Argument '{0}' is {1}", (name || '?'), (reason || "required"));
diff --git a/src/ngAria/aria.js b/src/ngAria/aria.js
index 32ae204633b9..036dd42b47de 100644
--- a/src/ngAria/aria.js
+++ b/src/ngAria/aria.js
@@ -235,7 +235,8 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
}
},
post: function(scope, elem, attr, ngModel) {
- var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem);
+ var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem)
+ && !isNodeOneOf(elem, nodeBlackList);
function ngAriaWatchModelValue() {
return ngModel.$modelValue;
diff --git a/src/ngLocale/angular-locale_af-na.js b/src/ngLocale/angular-locale_af-na.js
index 4647a92bce44..80d1da82450d 100644
--- a/src/ngLocale/angular-locale_af-na.js
+++ b/src/ngLocale/angular-locale_af-na.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januarie",
+ "Februarie",
+ "Maart",
+ "April",
+ "Mei",
+ "Junie",
+ "Julie",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_af-za.js b/src/ngLocale/angular-locale_af-za.js
index 38c2217c90f1..5af98ce200ff 100644
--- a/src/ngLocale/angular-locale_af-za.js
+++ b/src/ngLocale/angular-locale_af-za.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januarie",
+ "Februarie",
+ "Maart",
+ "April",
+ "Mei",
+ "Junie",
+ "Julie",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_af.js b/src/ngLocale/angular-locale_af.js
index 9ed43d14fe6b..6d7cda4afe22 100644
--- a/src/ngLocale/angular-locale_af.js
+++ b/src/ngLocale/angular-locale_af.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januarie",
+ "Februarie",
+ "Maart",
+ "April",
+ "Mei",
+ "Junie",
+ "Julie",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_agq-cm.js b/src/ngLocale/angular-locale_agq-cm.js
index 9d3f9e9cdd81..ec1fadd41627 100644
--- a/src/ngLocale/angular-locale_agq-cm.js
+++ b/src/ngLocale/angular-locale_agq-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"kaa",
"fwo"
],
+ "STANDALONEMONTH": [
+ "ndz\u0254\u0300\u014b\u0254\u0300n\u00f9m",
+ "ndz\u0254\u0300\u014b\u0254\u0300k\u0197\u0300z\u00f9\u0294",
+ "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300d\u0289\u0300gh\u00e0",
+ "ndz\u0254\u0300\u014b\u0254\u0300t\u01ceaf\u0289\u0304gh\u0101",
+ "ndz\u0254\u0300\u014b\u00e8s\u00e8e",
+ "ndz\u0254\u0300\u014b\u0254\u0300nz\u00f9gh\u00f2",
+ "ndz\u0254\u0300\u014b\u0254\u0300d\u00f9mlo",
+ "ndz\u0254\u0300\u014b\u0254\u0300kw\u00eef\u0254\u0300e",
+ "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300f\u0289\u0300gh\u00e0dzugh\u00f9",
+ "ndz\u0254\u0300\u014b\u0254\u0300gh\u01d4uwel\u0254\u0300m",
+ "ndz\u0254\u0300\u014b\u0254\u0300chwa\u0294\u00e0kaa wo",
+ "ndz\u0254\u0300\u014b\u00e8fw\u00f2o"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_agq.js b/src/ngLocale/angular-locale_agq.js
index 2bd28260de13..739a5d12caa8 100644
--- a/src/ngLocale/angular-locale_agq.js
+++ b/src/ngLocale/angular-locale_agq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"kaa",
"fwo"
],
+ "STANDALONEMONTH": [
+ "ndz\u0254\u0300\u014b\u0254\u0300n\u00f9m",
+ "ndz\u0254\u0300\u014b\u0254\u0300k\u0197\u0300z\u00f9\u0294",
+ "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300d\u0289\u0300gh\u00e0",
+ "ndz\u0254\u0300\u014b\u0254\u0300t\u01ceaf\u0289\u0304gh\u0101",
+ "ndz\u0254\u0300\u014b\u00e8s\u00e8e",
+ "ndz\u0254\u0300\u014b\u0254\u0300nz\u00f9gh\u00f2",
+ "ndz\u0254\u0300\u014b\u0254\u0300d\u00f9mlo",
+ "ndz\u0254\u0300\u014b\u0254\u0300kw\u00eef\u0254\u0300e",
+ "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300f\u0289\u0300gh\u00e0dzugh\u00f9",
+ "ndz\u0254\u0300\u014b\u0254\u0300gh\u01d4uwel\u0254\u0300m",
+ "ndz\u0254\u0300\u014b\u0254\u0300chwa\u0294\u00e0kaa wo",
+ "ndz\u0254\u0300\u014b\u00e8fw\u00f2o"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ak-gh.js b/src/ngLocale/angular-locale_ak-gh.js
index 8407b96f03d9..8a2f352a790b 100644
--- a/src/ngLocale/angular-locale_ak-gh.js
+++ b/src/ngLocale/angular-locale_ak-gh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0186-O",
"M-\u0186"
],
+ "STANDALONEMONTH": [
+ "Sanda-\u0186p\u025bp\u0254n",
+ "Kwakwar-\u0186gyefuo",
+ "Eb\u0254w-\u0186benem",
+ "Eb\u0254bira-Oforisuo",
+ "Esusow Aketseaba-K\u0254t\u0254nimba",
+ "Obirade-Ay\u025bwohomumu",
+ "Ay\u025bwoho-Kitawonsa",
+ "Difuu-\u0186sandaa",
+ "Fankwa-\u0190b\u0254",
+ "\u0186b\u025bs\u025b-Ahinime",
+ "\u0186ber\u025bf\u025bw-Obubuo",
+ "Mumu-\u0186p\u025bnimba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ak.js b/src/ngLocale/angular-locale_ak.js
index 9117b35478c2..f0b39a0cfc5c 100644
--- a/src/ngLocale/angular-locale_ak.js
+++ b/src/ngLocale/angular-locale_ak.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0186-O",
"M-\u0186"
],
+ "STANDALONEMONTH": [
+ "Sanda-\u0186p\u025bp\u0254n",
+ "Kwakwar-\u0186gyefuo",
+ "Eb\u0254w-\u0186benem",
+ "Eb\u0254bira-Oforisuo",
+ "Esusow Aketseaba-K\u0254t\u0254nimba",
+ "Obirade-Ay\u025bwohomumu",
+ "Ay\u025bwoho-Kitawonsa",
+ "Difuu-\u0186sandaa",
+ "Fankwa-\u0190b\u0254",
+ "\u0186b\u025bs\u025b-Ahinime",
+ "\u0186ber\u025bf\u025bw-Obubuo",
+ "Mumu-\u0186p\u025bnimba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_am-et.js b/src/ngLocale/angular-locale_am-et.js
index 77b38ff85c34..fcd9355af1da 100644
--- a/src/ngLocale/angular-locale_am-et.js
+++ b/src/ngLocale/angular-locale_am-et.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u1296\u126c\u121d",
"\u12f2\u1234\u121d"
],
+ "STANDALONEMONTH": [
+ "\u1303\u1295\u12e9\u12c8\u122a",
+ "\u134c\u1265\u1229\u12c8\u122a",
+ "\u121b\u122d\u127d",
+ "\u12a4\u1355\u122a\u120d",
+ "\u121c\u12ed",
+ "\u1301\u1295",
+ "\u1301\u120b\u12ed",
+ "\u12a6\u1308\u1235\u1275",
+ "\u1234\u1355\u1274\u121d\u1260\u122d",
+ "\u12a6\u12ad\u1276\u1260\u122d",
+ "\u1296\u126c\u121d\u1260\u122d",
+ "\u12f2\u1234\u121d\u1260\u122d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_am.js b/src/ngLocale/angular-locale_am.js
index 03146492613b..995dbfa2e970 100644
--- a/src/ngLocale/angular-locale_am.js
+++ b/src/ngLocale/angular-locale_am.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u1296\u126c\u121d",
"\u12f2\u1234\u121d"
],
+ "STANDALONEMONTH": [
+ "\u1303\u1295\u12e9\u12c8\u122a",
+ "\u134c\u1265\u1229\u12c8\u122a",
+ "\u121b\u122d\u127d",
+ "\u12a4\u1355\u122a\u120d",
+ "\u121c\u12ed",
+ "\u1301\u1295",
+ "\u1301\u120b\u12ed",
+ "\u12a6\u1308\u1235\u1275",
+ "\u1234\u1355\u1274\u121d\u1260\u122d",
+ "\u12a6\u12ad\u1276\u1260\u122d",
+ "\u1296\u126c\u121d\u1260\u122d",
+ "\u12f2\u1234\u121d\u1260\u122d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-001.js b/src/ngLocale/angular-locale_ar-001.js
index a9a7875acfc7..effd9b374bb6 100644
--- a/src/ngLocale/angular-locale_ar-001.js
+++ b/src/ngLocale/angular-locale_ar-001.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-ae.js b/src/ngLocale/angular-locale_ar-ae.js
index 6b335da1fca6..e364a6fe28f0 100644
--- a/src/ngLocale/angular-locale_ar-ae.js
+++ b/src/ngLocale/angular-locale_ar-ae.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-bh.js b/src/ngLocale/angular-locale_ar-bh.js
index 361f8ab9ae2b..8e27b34c576e 100644
--- a/src/ngLocale/angular-locale_ar-bh.js
+++ b/src/ngLocale/angular-locale_ar-bh.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-dj.js b/src/ngLocale/angular-locale_ar-dj.js
index d44bbce005f3..acc474e1e139 100644
--- a/src/ngLocale/angular-locale_ar-dj.js
+++ b/src/ngLocale/angular-locale_ar-dj.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-dz.js b/src/ngLocale/angular-locale_ar-dz.js
index 871d2ce49f87..b0a84c8a4389 100644
--- a/src/ngLocale/angular-locale_ar-dz.js
+++ b/src/ngLocale/angular-locale_ar-dz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0627\u0646\u0641\u064a",
+ "\u0641\u064a\u0641\u0631\u064a",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0641\u0631\u064a\u0644",
+ "\u0645\u0627\u064a",
+ "\u062c\u0648\u0627\u0646",
+ "\u062c\u0648\u064a\u0644\u064a\u0629",
+ "\u0623\u0648\u062a",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-eg.js b/src/ngLocale/angular-locale_ar-eg.js
index 734c629af2ee..bed2e1189d70 100644
--- a/src/ngLocale/angular-locale_ar-eg.js
+++ b/src/ngLocale/angular-locale_ar-eg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-eh.js b/src/ngLocale/angular-locale_ar-eh.js
index f9c2666aac0d..9901324b6c6c 100644
--- a/src/ngLocale/angular-locale_ar-eh.js
+++ b/src/ngLocale/angular-locale_ar-eh.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-er.js b/src/ngLocale/angular-locale_ar-er.js
index 0510d70bb609..277a7beae6a6 100644
--- a/src/ngLocale/angular-locale_ar-er.js
+++ b/src/ngLocale/angular-locale_ar-er.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-il.js b/src/ngLocale/angular-locale_ar-il.js
index ea6e8932206e..3accb0c3a91c 100644
--- a/src/ngLocale/angular-locale_ar-il.js
+++ b/src/ngLocale/angular-locale_ar-il.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-iq.js b/src/ngLocale/angular-locale_ar-iq.js
index 9f08ac2f148f..f7b1e2d0879c 100644
--- a/src/ngLocale/angular-locale_ar-iq.js
+++ b/src/ngLocale/angular-locale_ar-iq.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
],
+ "STANDALONEMONTH": [
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0634\u0628\u0627\u0637",
+ "\u0622\u0630\u0627\u0631",
+ "\u0646\u064a\u0633\u0627\u0646",
+ "\u0623\u064a\u0627\u0631",
+ "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "\u062a\u0645\u0648\u0632",
+ "\u0622\u0628",
+ "\u0623\u064a\u0644\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-jo.js b/src/ngLocale/angular-locale_ar-jo.js
index 793b353446d6..80abb584b01f 100644
--- a/src/ngLocale/angular-locale_ar-jo.js
+++ b/src/ngLocale/angular-locale_ar-jo.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
],
+ "STANDALONEMONTH": [
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0634\u0628\u0627\u0637",
+ "\u0622\u0630\u0627\u0631",
+ "\u0646\u064a\u0633\u0627\u0646",
+ "\u0623\u064a\u0627\u0631",
+ "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "\u062a\u0645\u0648\u0632",
+ "\u0622\u0628",
+ "\u0623\u064a\u0644\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-km.js b/src/ngLocale/angular-locale_ar-km.js
index 6f9031decc57..6081dec92fd5 100644
--- a/src/ngLocale/angular-locale_ar-km.js
+++ b/src/ngLocale/angular-locale_ar-km.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-kw.js b/src/ngLocale/angular-locale_ar-kw.js
index b0b55a7b8b8b..0f73d82fed80 100644
--- a/src/ngLocale/angular-locale_ar-kw.js
+++ b/src/ngLocale/angular-locale_ar-kw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-lb.js b/src/ngLocale/angular-locale_ar-lb.js
index b2eb263a2bef..c392373ccb9b 100644
--- a/src/ngLocale/angular-locale_ar-lb.js
+++ b/src/ngLocale/angular-locale_ar-lb.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
],
+ "STANDALONEMONTH": [
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0634\u0628\u0627\u0637",
+ "\u0622\u0630\u0627\u0631",
+ "\u0646\u064a\u0633\u0627\u0646",
+ "\u0623\u064a\u0627\u0631",
+ "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "\u062a\u0645\u0648\u0632",
+ "\u0622\u0628",
+ "\u0623\u064a\u0644\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-ly.js b/src/ngLocale/angular-locale_ar-ly.js
index 0a9dbf620333..52472f8fee00 100644
--- a/src/ngLocale/angular-locale_ar-ly.js
+++ b/src/ngLocale/angular-locale_ar-ly.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-ma.js b/src/ngLocale/angular-locale_ar-ma.js
index 589e258a8765..a561ac55a4ed 100644
--- a/src/ngLocale/angular-locale_ar-ma.js
+++ b/src/ngLocale/angular-locale_ar-ma.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0646\u0628\u0631",
"\u062f\u062c\u0646\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648\u0632",
+ "\u063a\u0634\u062a",
+ "\u0634\u062a\u0646\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0646\u0628\u0631",
+ "\u062f\u062c\u0646\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-mr.js b/src/ngLocale/angular-locale_ar-mr.js
index 6fbc49a5bd9d..fc66912d0d5e 100644
--- a/src/ngLocale/angular-locale_ar-mr.js
+++ b/src/ngLocale/angular-locale_ar-mr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u062c\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0625\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0634\u062a",
+ "\u0634\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u062c\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-om.js b/src/ngLocale/angular-locale_ar-om.js
index b12fc5769a89..9e25eb590b36 100644
--- a/src/ngLocale/angular-locale_ar-om.js
+++ b/src/ngLocale/angular-locale_ar-om.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-ps.js b/src/ngLocale/angular-locale_ar-ps.js
index 0e5a8aec12a6..5acf0c046983 100644
--- a/src/ngLocale/angular-locale_ar-ps.js
+++ b/src/ngLocale/angular-locale_ar-ps.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
],
+ "STANDALONEMONTH": [
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0634\u0628\u0627\u0637",
+ "\u0622\u0630\u0627\u0631",
+ "\u0646\u064a\u0633\u0627\u0646",
+ "\u0623\u064a\u0627\u0631",
+ "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "\u062a\u0645\u0648\u0632",
+ "\u0622\u0628",
+ "\u0623\u064a\u0644\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-qa.js b/src/ngLocale/angular-locale_ar-qa.js
index 0007850d4db0..3f1b315b5dd3 100644
--- a/src/ngLocale/angular-locale_ar-qa.js
+++ b/src/ngLocale/angular-locale_ar-qa.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-sa.js b/src/ngLocale/angular-locale_ar-sa.js
index dcaa4a68fd77..56bc1e5a7bcf 100644
--- a/src/ngLocale/angular-locale_ar-sa.js
+++ b/src/ngLocale/angular-locale_ar-sa.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-sd.js b/src/ngLocale/angular-locale_ar-sd.js
index 769ce9bf9342..090150f2b9f6 100644
--- a/src/ngLocale/angular-locale_ar-sd.js
+++ b/src/ngLocale/angular-locale_ar-sd.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-so.js b/src/ngLocale/angular-locale_ar-so.js
index 4aea4a8ef318..40ab8cb0c360 100644
--- a/src/ngLocale/angular-locale_ar-so.js
+++ b/src/ngLocale/angular-locale_ar-so.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-ss.js b/src/ngLocale/angular-locale_ar-ss.js
index 23338b3f4a3b..01af07a398cb 100644
--- a/src/ngLocale/angular-locale_ar-ss.js
+++ b/src/ngLocale/angular-locale_ar-ss.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-sy.js b/src/ngLocale/angular-locale_ar-sy.js
index 80f4b5ee1b1b..e2142a322beb 100644
--- a/src/ngLocale/angular-locale_ar-sy.js
+++ b/src/ngLocale/angular-locale_ar-sy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
],
+ "STANDALONEMONTH": [
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0634\u0628\u0627\u0637",
+ "\u0622\u0630\u0627\u0631",
+ "\u0646\u064a\u0633\u0627\u0646",
+ "\u0623\u064a\u0627\u0631",
+ "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "\u062a\u0645\u0648\u0632",
+ "\u0622\u0628",
+ "\u0623\u064a\u0644\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-td.js b/src/ngLocale/angular-locale_ar-td.js
index 408e939359c4..643b156c294a 100644
--- a/src/ngLocale/angular-locale_ar-td.js
+++ b/src/ngLocale/angular-locale_ar-td.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ar-tn.js b/src/ngLocale/angular-locale_ar-tn.js
index 2784ed5fb1a0..b35079e810b2 100644
--- a/src/ngLocale/angular-locale_ar-tn.js
+++ b/src/ngLocale/angular-locale_ar-tn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0627\u0646\u0641\u064a",
+ "\u0641\u064a\u0641\u0631\u064a",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0641\u0631\u064a\u0644",
+ "\u0645\u0627\u064a",
+ "\u062c\u0648\u0627\u0646",
+ "\u062c\u0648\u064a\u0644\u064a\u0629",
+ "\u0623\u0648\u062a",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar-ye.js b/src/ngLocale/angular-locale_ar-ye.js
index 700b4aef0ec1..1e4d5db2b171 100644
--- a/src/ngLocale/angular-locale_ar-ye.js
+++ b/src/ngLocale/angular-locale_ar-ye.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ar.js b/src/ngLocale/angular-locale_ar.js
index dd58093d90a7..1126cef0f6ed 100644
--- a/src/ngLocale/angular-locale_ar.js
+++ b/src/ngLocale/angular-locale_ar.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0641\u0645\u0628\u0631",
"\u062f\u064a\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0646\u0627\u064a\u0631",
+ "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "\u0645\u0627\u0631\u0633",
+ "\u0623\u0628\u0631\u064a\u0644",
+ "\u0645\u0627\u064a\u0648",
+ "\u064a\u0648\u0646\u064a\u0648",
+ "\u064a\u0648\u0644\u064a\u0648",
+ "\u0623\u063a\u0633\u0637\u0633",
+ "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "\u062f\u064a\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_as-in.js b/src/ngLocale/angular-locale_as-in.js
index 27f59242f747..69249bc46b47 100644
--- a/src/ngLocale/angular-locale_as-in.js
+++ b/src/ngLocale/angular-locale_as-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u09a8\u09ad\u09c7",
"\u09a1\u09bf\u09b8\u09c7"
],
+ "STANDALONEMONTH": [
+ "\u099c\u09be\u09a8\u09c1\u09f1\u09be\u09f0\u09c0",
+ "\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1\u09f1\u09be\u09f0\u09c0",
+ "\u09ae\u09be\u09f0\u09cd\u099a",
+ "\u098f\u09aa\u09cd\u09f0\u09bf\u09b2",
+ "\u09ae\u09c7",
+ "\u099c\u09c1\u09a8",
+ "\u099c\u09c1\u09b2\u09be\u0987",
+ "\u0986\u0997\u09b7\u09cd\u099f",
+ "\u099b\u09c7\u09aa\u09cd\u09a4\u09c7\u09ae\u09cd\u09ac\u09f0",
+ "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09f0",
+ "\u09a8\u09f1\u09c7\u09ae\u09cd\u09ac\u09f0",
+ "\u09a1\u09bf\u099a\u09c7\u09ae\u09cd\u09ac\u09f0"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_as.js b/src/ngLocale/angular-locale_as.js
index 5172d54c643d..07d1d7444d80 100644
--- a/src/ngLocale/angular-locale_as.js
+++ b/src/ngLocale/angular-locale_as.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u09a8\u09ad\u09c7",
"\u09a1\u09bf\u09b8\u09c7"
],
+ "STANDALONEMONTH": [
+ "\u099c\u09be\u09a8\u09c1\u09f1\u09be\u09f0\u09c0",
+ "\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1\u09f1\u09be\u09f0\u09c0",
+ "\u09ae\u09be\u09f0\u09cd\u099a",
+ "\u098f\u09aa\u09cd\u09f0\u09bf\u09b2",
+ "\u09ae\u09c7",
+ "\u099c\u09c1\u09a8",
+ "\u099c\u09c1\u09b2\u09be\u0987",
+ "\u0986\u0997\u09b7\u09cd\u099f",
+ "\u099b\u09c7\u09aa\u09cd\u09a4\u09c7\u09ae\u09cd\u09ac\u09f0",
+ "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09f0",
+ "\u09a8\u09f1\u09c7\u09ae\u09cd\u09ac\u09f0",
+ "\u09a1\u09bf\u099a\u09c7\u09ae\u09cd\u09ac\u09f0"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_asa-tz.js b/src/ngLocale/angular-locale_asa-tz.js
index 5add04ffb679..9b8f2d710edd 100644
--- a/src/ngLocale/angular-locale_asa-tz.js
+++ b/src/ngLocale/angular-locale_asa-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_asa.js b/src/ngLocale/angular-locale_asa.js
index 05e1f0bc8d08..ed938388b6d1 100644
--- a/src/ngLocale/angular-locale_asa.js
+++ b/src/ngLocale/angular-locale_asa.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ast-es.js b/src/ngLocale/angular-locale_ast-es.js
index af513b1a0907..2f50733f1f9d 100644
--- a/src/ngLocale/angular-locale_ast-es.js
+++ b/src/ngLocale/angular-locale_ast-es.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"pay",
"avi"
],
+ "STANDALONEMONTH": [
+ "xineru",
+ "febreru",
+ "marzu",
+ "abril",
+ "mayu",
+ "xunu",
+ "xunetu",
+ "agostu",
+ "setiembre",
+ "ochobre",
+ "payares",
+ "avientu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ast.js b/src/ngLocale/angular-locale_ast.js
index 2fc061ee3ca2..bddf633dd814 100644
--- a/src/ngLocale/angular-locale_ast.js
+++ b/src/ngLocale/angular-locale_ast.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"pay",
"avi"
],
+ "STANDALONEMONTH": [
+ "xineru",
+ "febreru",
+ "marzu",
+ "abril",
+ "mayu",
+ "xunu",
+ "xunetu",
+ "agostu",
+ "setiembre",
+ "ochobre",
+ "payares",
+ "avientu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_az-cyrl-az.js b/src/ngLocale/angular-locale_az-cyrl-az.js
index 1b9a6ad94518..ab41008dfd2c 100644
--- a/src/ngLocale/angular-locale_az-cyrl-az.js
+++ b/src/ngLocale/angular-locale_az-cyrl-az.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0458\u0430\u0431\u0440",
"\u0434\u0435\u043a\u0430\u0431\u0440"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0432\u0430\u0440",
+ "\u0444\u0435\u0432\u0440\u0430\u043b",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b",
+ "\u043c\u0430\u0439",
+ "\u0438\u0458\u0443\u043d",
+ "\u0438\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
+ "\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
+ "\u043d\u043e\u0458\u0430\u0431\u0440",
+ "\u0434\u0435\u043a\u0430\u0431\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_az-cyrl.js b/src/ngLocale/angular-locale_az-cyrl.js
index d9f52819f0c8..484d205ebea1 100644
--- a/src/ngLocale/angular-locale_az-cyrl.js
+++ b/src/ngLocale/angular-locale_az-cyrl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0458\u0430\u0431\u0440",
"\u0434\u0435\u043a\u0430\u0431\u0440"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0432\u0430\u0440",
+ "\u0444\u0435\u0432\u0440\u0430\u043b",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b",
+ "\u043c\u0430\u0439",
+ "\u0438\u0458\u0443\u043d",
+ "\u0438\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
+ "\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
+ "\u043d\u043e\u0458\u0430\u0431\u0440",
+ "\u0434\u0435\u043a\u0430\u0431\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_az-latn-az.js b/src/ngLocale/angular-locale_az-latn-az.js
index 72ff9e80edab..507ff89a838a 100644
--- a/src/ngLocale/angular-locale_az-latn-az.js
+++ b/src/ngLocale/angular-locale_az-latn-az.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"noy",
"dek"
],
+ "STANDALONEMONTH": [
+ "Yanvar",
+ "Fevral",
+ "Mart",
+ "Aprel",
+ "May",
+ "\u0130yun",
+ "\u0130yul",
+ "Avqust",
+ "Sentyabr",
+ "Oktyabr",
+ "Noyabr",
+ "Dekabr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_az-latn.js b/src/ngLocale/angular-locale_az-latn.js
index c01135c85117..e6447a0a7d72 100644
--- a/src/ngLocale/angular-locale_az-latn.js
+++ b/src/ngLocale/angular-locale_az-latn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"noy",
"dek"
],
+ "STANDALONEMONTH": [
+ "Yanvar",
+ "Fevral",
+ "Mart",
+ "Aprel",
+ "May",
+ "\u0130yun",
+ "\u0130yul",
+ "Avqust",
+ "Sentyabr",
+ "Oktyabr",
+ "Noyabr",
+ "Dekabr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_az.js b/src/ngLocale/angular-locale_az.js
index df1dd9e48f55..00c97d2f2cbd 100644
--- a/src/ngLocale/angular-locale_az.js
+++ b/src/ngLocale/angular-locale_az.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"noy",
"dek"
],
+ "STANDALONEMONTH": [
+ "Yanvar",
+ "Fevral",
+ "Mart",
+ "Aprel",
+ "May",
+ "\u0130yun",
+ "\u0130yul",
+ "Avqust",
+ "Sentyabr",
+ "Oktyabr",
+ "Noyabr",
+ "Dekabr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bas-cm.js b/src/ngLocale/angular-locale_bas-cm.js
index ccc7ea070a21..4c960e96ec76 100644
--- a/src/ngLocale/angular-locale_bas-cm.js
+++ b/src/ngLocale/angular-locale_bas-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"may",
"li\u0253"
],
+ "STANDALONEMONTH": [
+ "K\u0254nd\u0254\u014b",
+ "M\u00e0c\u025b\u0302l",
+ "M\u00e0t\u00f9mb",
+ "M\u00e0top",
+ "M\u0300puy\u025b",
+ "H\u00ecl\u00f2nd\u025b\u0300",
+ "Nj\u00e8b\u00e0",
+ "H\u00ecka\u014b",
+ "D\u00ecp\u0254\u0300s",
+ "B\u00ec\u00f2\u00f4m",
+ "M\u00e0y\u025bs\u00e8p",
+ "L\u00ecbuy li \u0144y\u00e8e"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bas.js b/src/ngLocale/angular-locale_bas.js
index e32cc4208271..09b3a8016106 100644
--- a/src/ngLocale/angular-locale_bas.js
+++ b/src/ngLocale/angular-locale_bas.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"may",
"li\u0253"
],
+ "STANDALONEMONTH": [
+ "K\u0254nd\u0254\u014b",
+ "M\u00e0c\u025b\u0302l",
+ "M\u00e0t\u00f9mb",
+ "M\u00e0top",
+ "M\u0300puy\u025b",
+ "H\u00ecl\u00f2nd\u025b\u0300",
+ "Nj\u00e8b\u00e0",
+ "H\u00ecka\u014b",
+ "D\u00ecp\u0254\u0300s",
+ "B\u00ec\u00f2\u00f4m",
+ "M\u00e0y\u025bs\u00e8p",
+ "L\u00ecbuy li \u0144y\u00e8e"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_be-by.js b/src/ngLocale/angular-locale_be-by.js
index 87fb319b17ff..ba0bda4b1f4c 100644
--- a/src/ngLocale/angular-locale_be-by.js
+++ b/src/ngLocale/angular-locale_be-by.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043b\u0456\u0441",
"\u0441\u043d\u0435"
],
+ "STANDALONEMONTH": [
+ "\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c",
+ "\u043b\u044e\u0442\u044b",
+ "\u0441\u0430\u043a\u0430\u0432\u0456\u043a",
+ "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a",
+ "\u043c\u0430\u0439",
+ "\u0447\u044d\u0440\u0432\u0435\u043d\u044c",
+ "\u043b\u0456\u043f\u0435\u043d\u044c",
+ "\u0436\u043d\u0456\u0432\u0435\u043d\u044c",
+ "\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c",
+ "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a",
+ "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434",
+ "\u0441\u043d\u0435\u0436\u0430\u043d\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_be.js b/src/ngLocale/angular-locale_be.js
index 8baa3cedc94a..4be2662d858c 100644
--- a/src/ngLocale/angular-locale_be.js
+++ b/src/ngLocale/angular-locale_be.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043b\u0456\u0441",
"\u0441\u043d\u0435"
],
+ "STANDALONEMONTH": [
+ "\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c",
+ "\u043b\u044e\u0442\u044b",
+ "\u0441\u0430\u043a\u0430\u0432\u0456\u043a",
+ "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a",
+ "\u043c\u0430\u0439",
+ "\u0447\u044d\u0440\u0432\u0435\u043d\u044c",
+ "\u043b\u0456\u043f\u0435\u043d\u044c",
+ "\u0436\u043d\u0456\u0432\u0435\u043d\u044c",
+ "\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c",
+ "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a",
+ "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434",
+ "\u0441\u043d\u0435\u0436\u0430\u043d\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bem-zm.js b/src/ngLocale/angular-locale_bem-zm.js
index 307347a84508..99a18e9453c4 100644
--- a/src/ngLocale/angular-locale_bem-zm.js
+++ b/src/ngLocale/angular-locale_bem-zm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Epreo",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Ogasti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bem.js b/src/ngLocale/angular-locale_bem.js
index 99778938db6c..7dda6c3ded77 100644
--- a/src/ngLocale/angular-locale_bem.js
+++ b/src/ngLocale/angular-locale_bem.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Epreo",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Ogasti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bez-tz.js b/src/ngLocale/angular-locale_bez-tz.js
index d8d80a1b28f3..a1cf495da350 100644
--- a/src/ngLocale/angular-locale_bez-tz.js
+++ b/src/ngLocale/angular-locale_bez-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kmj",
"Kmb"
],
+ "STANDALONEMONTH": [
+ "pa mwedzi gwa hutala",
+ "pa mwedzi gwa wuvili",
+ "pa mwedzi gwa wudatu",
+ "pa mwedzi gwa wutai",
+ "pa mwedzi gwa wuhanu",
+ "pa mwedzi gwa sita",
+ "pa mwedzi gwa saba",
+ "pa mwedzi gwa nane",
+ "pa mwedzi gwa tisa",
+ "pa mwedzi gwa kumi",
+ "pa mwedzi gwa kumi na moja",
+ "pa mwedzi gwa kumi na mbili"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bez.js b/src/ngLocale/angular-locale_bez.js
index a240ee9b1aae..5215f57745bb 100644
--- a/src/ngLocale/angular-locale_bez.js
+++ b/src/ngLocale/angular-locale_bez.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kmj",
"Kmb"
],
+ "STANDALONEMONTH": [
+ "pa mwedzi gwa hutala",
+ "pa mwedzi gwa wuvili",
+ "pa mwedzi gwa wudatu",
+ "pa mwedzi gwa wutai",
+ "pa mwedzi gwa wuhanu",
+ "pa mwedzi gwa sita",
+ "pa mwedzi gwa saba",
+ "pa mwedzi gwa nane",
+ "pa mwedzi gwa tisa",
+ "pa mwedzi gwa kumi",
+ "pa mwedzi gwa kumi na moja",
+ "pa mwedzi gwa kumi na mbili"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bg-bg.js b/src/ngLocale/angular-locale_bg-bg.js
index 984801da0c60..502e491afd5b 100644
--- a/src/ngLocale/angular-locale_bg-bg.js
+++ b/src/ngLocale/angular-locale_bg-bg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0443\u0430\u0440\u0438",
+ "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0439",
+ "\u044e\u043d\u0438",
+ "\u044e\u043b\u0438",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
+ "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
+ "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
+ "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bg.js b/src/ngLocale/angular-locale_bg.js
index 1bfb13282839..cb3a47d4a339 100644
--- a/src/ngLocale/angular-locale_bg.js
+++ b/src/ngLocale/angular-locale_bg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0443\u0430\u0440\u0438",
+ "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0439",
+ "\u044e\u043d\u0438",
+ "\u044e\u043b\u0438",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
+ "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
+ "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
+ "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bm-latn-ml.js b/src/ngLocale/angular-locale_bm-latn-ml.js
index 6a0b184aa6e3..af8f599ad178 100644
--- a/src/ngLocale/angular-locale_bm-latn-ml.js
+++ b/src/ngLocale/angular-locale_bm-latn-ml.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now",
"des"
],
+ "STANDALONEMONTH": [
+ "zanwuye",
+ "feburuye",
+ "marisi",
+ "awirili",
+ "m\u025b",
+ "zuw\u025bn",
+ "zuluye",
+ "uti",
+ "s\u025btanburu",
+ "\u0254kut\u0254buru",
+ "nowanburu",
+ "desanburu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bm-latn.js b/src/ngLocale/angular-locale_bm-latn.js
index 686fcf157e74..8166393f59e7 100644
--- a/src/ngLocale/angular-locale_bm-latn.js
+++ b/src/ngLocale/angular-locale_bm-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now",
"des"
],
+ "STANDALONEMONTH": [
+ "zanwuye",
+ "feburuye",
+ "marisi",
+ "awirili",
+ "m\u025b",
+ "zuw\u025bn",
+ "zuluye",
+ "uti",
+ "s\u025btanburu",
+ "\u0254kut\u0254buru",
+ "nowanburu",
+ "desanburu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bm.js b/src/ngLocale/angular-locale_bm.js
index 30c2cf0bd0cd..104470f9fd4c 100644
--- a/src/ngLocale/angular-locale_bm.js
+++ b/src/ngLocale/angular-locale_bm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now",
"des"
],
+ "STANDALONEMONTH": [
+ "zanwuye",
+ "feburuye",
+ "marisi",
+ "awirili",
+ "m\u025b",
+ "zuw\u025bn",
+ "zuluye",
+ "uti",
+ "s\u025btanburu",
+ "\u0254kut\u0254buru",
+ "nowanburu",
+ "desanburu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bn-bd.js b/src/ngLocale/angular-locale_bn-bd.js
index 24fb37ae5891..656fe8756645 100644
--- a/src/ngLocale/angular-locale_bn-bd.js
+++ b/src/ngLocale/angular-locale_bn-bd.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
],
+ "STANDALONEMONTH": [
+ "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "\u09ae\u09be\u09b0\u09cd\u099a",
+ "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "\u09ae\u09c7",
+ "\u099c\u09c1\u09a8",
+ "\u099c\u09c1\u09b2\u09be\u0987",
+ "\u0986\u0997\u09b8\u09cd\u099f",
+ "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bn-in.js b/src/ngLocale/angular-locale_bn-in.js
index 63a3c3e6e244..bb4ba10482e4 100644
--- a/src/ngLocale/angular-locale_bn-in.js
+++ b/src/ngLocale/angular-locale_bn-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
],
+ "STANDALONEMONTH": [
+ "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "\u09ae\u09be\u09b0\u09cd\u099a",
+ "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "\u09ae\u09c7",
+ "\u099c\u09c1\u09a8",
+ "\u099c\u09c1\u09b2\u09be\u0987",
+ "\u0986\u0997\u09b8\u09cd\u099f",
+ "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_bn.js b/src/ngLocale/angular-locale_bn.js
index 022ce931e250..c6d2ee68eeab 100644
--- a/src/ngLocale/angular-locale_bn.js
+++ b/src/ngLocale/angular-locale_bn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
],
+ "STANDALONEMONTH": [
+ "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "\u09ae\u09be\u09b0\u09cd\u099a",
+ "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "\u09ae\u09c7",
+ "\u099c\u09c1\u09a8",
+ "\u099c\u09c1\u09b2\u09be\u0987",
+ "\u0986\u0997\u09b8\u09cd\u099f",
+ "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bo-cn.js b/src/ngLocale/angular-locale_bo-cn.js
index ea07069766e3..c65480606093 100644
--- a/src/ngLocale/angular-locale_bo-cn.js
+++ b/src/ngLocale/angular-locale_bo-cn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0f5f\u0fb3\u0f0b\u0f21\u0f21",
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22"
],
+ "STANDALONEMONTH": [
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bo-in.js b/src/ngLocale/angular-locale_bo-in.js
index 89738d3888a7..725bc18a89c1 100644
--- a/src/ngLocale/angular-locale_bo-in.js
+++ b/src/ngLocale/angular-locale_bo-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0f5f\u0fb3\u0f0b\u0f21\u0f21",
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22"
],
+ "STANDALONEMONTH": [
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bo.js b/src/ngLocale/angular-locale_bo.js
index 117e4d6aaac0..d2bc1c04bd3c 100644
--- a/src/ngLocale/angular-locale_bo.js
+++ b/src/ngLocale/angular-locale_bo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0f5f\u0fb3\u0f0b\u0f21\u0f21",
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22"
],
+ "STANDALONEMONTH": [
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_br-fr.js b/src/ngLocale/angular-locale_br-fr.js
index 111b19cf7800..d71399030fea 100644
--- a/src/ngLocale/angular-locale_br-fr.js
+++ b/src/ngLocale/angular-locale_br-fr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Du",
"Ker"
],
+ "STANDALONEMONTH": [
+ "Genver",
+ "C\u02bchwevrer",
+ "Meurzh",
+ "Ebrel",
+ "Mae",
+ "Mezheven",
+ "Gouere",
+ "Eost",
+ "Gwengolo",
+ "Here",
+ "Du",
+ "Kerzu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_br.js b/src/ngLocale/angular-locale_br.js
index 2fbf8714295f..9b38d48f3a6d 100644
--- a/src/ngLocale/angular-locale_br.js
+++ b/src/ngLocale/angular-locale_br.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Du",
"Ker"
],
+ "STANDALONEMONTH": [
+ "Genver",
+ "C\u02bchwevrer",
+ "Meurzh",
+ "Ebrel",
+ "Mae",
+ "Mezheven",
+ "Gouere",
+ "Eost",
+ "Gwengolo",
+ "Here",
+ "Du",
+ "Kerzu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_brx-in.js b/src/ngLocale/angular-locale_brx-in.js
index 2d6ad8472316..9c01fb3de0fc 100644
--- a/src/ngLocale/angular-locale_brx-in.js
+++ b/src/ngLocale/angular-locale_brx-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930",
"\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u0938",
+ "\u090f\u092b\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0941\u0928",
+ "\u091c\u0941\u0932\u093e\u0907",
+ "\u0906\u0917\u0938\u094d\u0925",
+ "\u0938\u0947\u092c\u0925\u0947\u091c\u094d\u092c\u093c\u0930",
+ "\u0905\u0916\u0925\u092c\u0930",
+ "\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930",
+ "\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_brx.js b/src/ngLocale/angular-locale_brx.js
index 85aa1d7d2224..11b71d6f7a3b 100644
--- a/src/ngLocale/angular-locale_brx.js
+++ b/src/ngLocale/angular-locale_brx.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930",
"\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u0938",
+ "\u090f\u092b\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0941\u0928",
+ "\u091c\u0941\u0932\u093e\u0907",
+ "\u0906\u0917\u0938\u094d\u0925",
+ "\u0938\u0947\u092c\u0925\u0947\u091c\u094d\u092c\u093c\u0930",
+ "\u0905\u0916\u0925\u092c\u0930",
+ "\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930",
+ "\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bs-cyrl-ba.js b/src/ngLocale/angular-locale_bs-cyrl-ba.js
index 24322a440a65..1ac2c0813c50 100644
--- a/src/ngLocale/angular-locale_bs-cyrl-ba.js
+++ b/src/ngLocale/angular-locale_bs-cyrl-ba.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d\u0438",
+ "\u0458\u0443\u043b\u0438",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bs-cyrl.js b/src/ngLocale/angular-locale_bs-cyrl.js
index 63e52e07a60f..ccff6570b07a 100644
--- a/src/ngLocale/angular-locale_bs-cyrl.js
+++ b/src/ngLocale/angular-locale_bs-cyrl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d\u0438",
+ "\u0458\u0443\u043b\u0438",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bs-latn-ba.js b/src/ngLocale/angular-locale_bs-latn-ba.js
index 32c933ac6d5b..f7d98ca1575e 100644
--- a/src/ngLocale/angular-locale_bs-latn-ba.js
+++ b/src/ngLocale/angular-locale_bs-latn-ba.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "august",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bs-latn.js b/src/ngLocale/angular-locale_bs-latn.js
index b5e5f925dd5f..39ae125803e0 100644
--- a/src/ngLocale/angular-locale_bs-latn.js
+++ b/src/ngLocale/angular-locale_bs-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "august",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_bs.js b/src/ngLocale/angular-locale_bs.js
index c9cf4634c15d..9493ee9ea431 100644
--- a/src/ngLocale/angular-locale_bs.js
+++ b/src/ngLocale/angular-locale_bs.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "august",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ca-ad.js b/src/ngLocale/angular-locale_ca-ad.js
index 448306454d67..dbb0dd549f04 100644
--- a/src/ngLocale/angular-locale_ca-ad.js
+++ b/src/ngLocale/angular-locale_ca-ad.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "gener",
+ "febrer",
+ "mar\u00e7",
+ "abril",
+ "maig",
+ "juny",
+ "juliol",
+ "agost",
+ "setembre",
+ "octubre",
+ "novembre",
+ "desembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ca-es-valencia.js b/src/ngLocale/angular-locale_ca-es-valencia.js
index 725478c4dc99..53a24d7f62cf 100644
--- a/src/ngLocale/angular-locale_ca-es-valencia.js
+++ b/src/ngLocale/angular-locale_ca-es-valencia.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "gener",
+ "febrer",
+ "mar\u00e7",
+ "abril",
+ "maig",
+ "juny",
+ "juliol",
+ "agost",
+ "setembre",
+ "octubre",
+ "novembre",
+ "desembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ca-es.js b/src/ngLocale/angular-locale_ca-es.js
index 427201b61d44..dfa8c6e4b09c 100644
--- a/src/ngLocale/angular-locale_ca-es.js
+++ b/src/ngLocale/angular-locale_ca-es.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "gener",
+ "febrer",
+ "mar\u00e7",
+ "abril",
+ "maig",
+ "juny",
+ "juliol",
+ "agost",
+ "setembre",
+ "octubre",
+ "novembre",
+ "desembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ca-fr.js b/src/ngLocale/angular-locale_ca-fr.js
index 22f1f7b3b185..3319f026008d 100644
--- a/src/ngLocale/angular-locale_ca-fr.js
+++ b/src/ngLocale/angular-locale_ca-fr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "gener",
+ "febrer",
+ "mar\u00e7",
+ "abril",
+ "maig",
+ "juny",
+ "juliol",
+ "agost",
+ "setembre",
+ "octubre",
+ "novembre",
+ "desembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ca-it.js b/src/ngLocale/angular-locale_ca-it.js
index 8bb952cf5add..c06e8dfdb422 100644
--- a/src/ngLocale/angular-locale_ca-it.js
+++ b/src/ngLocale/angular-locale_ca-it.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "gener",
+ "febrer",
+ "mar\u00e7",
+ "abril",
+ "maig",
+ "juny",
+ "juliol",
+ "agost",
+ "setembre",
+ "octubre",
+ "novembre",
+ "desembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ca.js b/src/ngLocale/angular-locale_ca.js
index 9f1a6069878b..7bda2992dac8 100644
--- a/src/ngLocale/angular-locale_ca.js
+++ b/src/ngLocale/angular-locale_ca.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "gener",
+ "febrer",
+ "mar\u00e7",
+ "abril",
+ "maig",
+ "juny",
+ "juliol",
+ "agost",
+ "setembre",
+ "octubre",
+ "novembre",
+ "desembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_cgg-ug.js b/src/ngLocale/angular-locale_cgg-ug.js
index 544346c03415..18249ee8ac89 100644
--- a/src/ngLocale/angular-locale_cgg-ug.js
+++ b/src/ngLocale/angular-locale_cgg-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KNK",
"KNB"
],
+ "STANDALONEMONTH": [
+ "Okwokubanza",
+ "Okwakabiri",
+ "Okwakashatu",
+ "Okwakana",
+ "Okwakataana",
+ "Okwamukaaga",
+ "Okwamushanju",
+ "Okwamunaana",
+ "Okwamwenda",
+ "Okwaikumi",
+ "Okwaikumi na kumwe",
+ "Okwaikumi na ibiri"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_cgg.js b/src/ngLocale/angular-locale_cgg.js
index 7068c52244e2..c6637a0d3897 100644
--- a/src/ngLocale/angular-locale_cgg.js
+++ b/src/ngLocale/angular-locale_cgg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KNK",
"KNB"
],
+ "STANDALONEMONTH": [
+ "Okwokubanza",
+ "Okwakabiri",
+ "Okwakashatu",
+ "Okwakana",
+ "Okwakataana",
+ "Okwamukaaga",
+ "Okwamushanju",
+ "Okwamunaana",
+ "Okwamwenda",
+ "Okwaikumi",
+ "Okwaikumi na kumwe",
+ "Okwaikumi na ibiri"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_chr-us.js b/src/ngLocale/angular-locale_chr-us.js
index bc9e92203b2f..717a2438da2c 100644
--- a/src/ngLocale/angular-locale_chr-us.js
+++ b/src/ngLocale/angular-locale_chr-us.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u13c5\u13d3",
"\u13a5\u13cd"
],
+ "STANDALONEMONTH": [
+ "\u13a4\u13c3\u13b8\u13d4\u13c5",
+ "\u13a7\u13a6\u13b5",
+ "\u13a0\u13c5\u13f1",
+ "\u13a7\u13ec\u13c2",
+ "\u13a0\u13c2\u13cd\u13ac\u13d8",
+ "\u13d5\u13ad\u13b7\u13f1",
+ "\u13ab\u13f0\u13c9\u13c2",
+ "\u13a6\u13b6\u13c2",
+ "\u13da\u13b5\u13cd\u13d7",
+ "\u13da\u13c2\u13c5\u13d7",
+ "\u13c5\u13d3\u13d5\u13c6",
+ "\u13a5\u13cd\u13a9\u13f1"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_chr.js b/src/ngLocale/angular-locale_chr.js
index 589816f9f9e6..23f4d6eab498 100644
--- a/src/ngLocale/angular-locale_chr.js
+++ b/src/ngLocale/angular-locale_chr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u13c5\u13d3",
"\u13a5\u13cd"
],
+ "STANDALONEMONTH": [
+ "\u13a4\u13c3\u13b8\u13d4\u13c5",
+ "\u13a7\u13a6\u13b5",
+ "\u13a0\u13c5\u13f1",
+ "\u13a7\u13ec\u13c2",
+ "\u13a0\u13c2\u13cd\u13ac\u13d8",
+ "\u13d5\u13ad\u13b7\u13f1",
+ "\u13ab\u13f0\u13c9\u13c2",
+ "\u13a6\u13b6\u13c2",
+ "\u13da\u13b5\u13cd\u13d7",
+ "\u13da\u13c2\u13c5\u13d7",
+ "\u13c5\u13d3\u13d5\u13c6",
+ "\u13a5\u13cd\u13a9\u13f1"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ckb-arab-iq.js b/src/ngLocale/angular-locale_ckb-arab-iq.js
index 083bf1828325..e54149a08f59 100644
--- a/src/ngLocale/angular-locale_ckb-arab-iq.js
+++ b/src/ngLocale/angular-locale_ckb-arab-iq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb-arab-ir.js b/src/ngLocale/angular-locale_ckb-arab-ir.js
index cc23f51edc00..c794b4665d15 100644
--- a/src/ngLocale/angular-locale_ckb-arab-ir.js
+++ b/src/ngLocale/angular-locale_ckb-arab-ir.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb-arab.js b/src/ngLocale/angular-locale_ckb-arab.js
index 8f1fd7003a1a..50186a3c2037 100644
--- a/src/ngLocale/angular-locale_ckb-arab.js
+++ b/src/ngLocale/angular-locale_ckb-arab.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb-iq.js b/src/ngLocale/angular-locale_ckb-iq.js
index 2786ebd7120b..f64ba8f1e2e5 100644
--- a/src/ngLocale/angular-locale_ckb-iq.js
+++ b/src/ngLocale/angular-locale_ckb-iq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb-ir.js b/src/ngLocale/angular-locale_ckb-ir.js
index fb0bd006a461..f1274fc41b3e 100644
--- a/src/ngLocale/angular-locale_ckb-ir.js
+++ b/src/ngLocale/angular-locale_ckb-ir.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb-latn-iq.js b/src/ngLocale/angular-locale_ckb-latn-iq.js
index 4e3c8b79a932..fd0f83498896 100644
--- a/src/ngLocale/angular-locale_ckb-latn-iq.js
+++ b/src/ngLocale/angular-locale_ckb-latn-iq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb-latn.js b/src/ngLocale/angular-locale_ckb-latn.js
index e2a333fd12e0..f5779174ed1b 100644
--- a/src/ngLocale/angular-locale_ckb-latn.js
+++ b/src/ngLocale/angular-locale_ckb-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ckb.js b/src/ngLocale/angular-locale_ckb.js
index e03211228b8d..6b1ca8989c5e 100644
--- a/src/ngLocale/angular-locale_ckb.js
+++ b/src/ngLocale/angular-locale_ckb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
"\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
],
+ "STANDALONEMONTH": [
+ "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u0634\u0648\u0628\u0627\u062a",
+ "\u0626\u0627\u0632\u0627\u0631",
+ "\u0646\u06cc\u0633\u0627\u0646",
+ "\u0626\u0627\u06cc\u0627\u0631",
+ "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646",
+ "\u062a\u06d5\u0645\u0648\u0648\u0632",
+ "\u0626\u0627\u0628",
+ "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645",
+ "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645",
+ "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_cs-cz.js b/src/ngLocale/angular-locale_cs-cz.js
index d260d8de365b..7a00f917d0c5 100644
--- a/src/ngLocale/angular-locale_cs-cz.js
+++ b/src/ngLocale/angular-locale_cs-cz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"lis",
"pro"
],
+ "STANDALONEMONTH": [
+ "leden",
+ "\u00fanor",
+ "b\u0159ezen",
+ "duben",
+ "kv\u011bten",
+ "\u010derven",
+ "\u010dervenec",
+ "srpen",
+ "z\u00e1\u0159\u00ed",
+ "\u0159\u00edjen",
+ "listopad",
+ "prosinec"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_cs.js b/src/ngLocale/angular-locale_cs.js
index 3f9cb70e562f..ece3304694b6 100644
--- a/src/ngLocale/angular-locale_cs.js
+++ b/src/ngLocale/angular-locale_cs.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"lis",
"pro"
],
+ "STANDALONEMONTH": [
+ "leden",
+ "\u00fanor",
+ "b\u0159ezen",
+ "duben",
+ "kv\u011bten",
+ "\u010derven",
+ "\u010dervenec",
+ "srpen",
+ "z\u00e1\u0159\u00ed",
+ "\u0159\u00edjen",
+ "listopad",
+ "prosinec"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_cy-gb.js b/src/ngLocale/angular-locale_cy-gb.js
index d6a9b5d7c0a3..a4ddd70c93bf 100644
--- a/src/ngLocale/angular-locale_cy-gb.js
+++ b/src/ngLocale/angular-locale_cy-gb.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Tach",
"Rhag"
],
+ "STANDALONEMONTH": [
+ "Ionawr",
+ "Chwefror",
+ "Mawrth",
+ "Ebrill",
+ "Mai",
+ "Mehefin",
+ "Gorffennaf",
+ "Awst",
+ "Medi",
+ "Hydref",
+ "Tachwedd",
+ "Rhagfyr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_cy.js b/src/ngLocale/angular-locale_cy.js
index 057a5278674f..151efb45094a 100644
--- a/src/ngLocale/angular-locale_cy.js
+++ b/src/ngLocale/angular-locale_cy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Tach",
"Rhag"
],
+ "STANDALONEMONTH": [
+ "Ionawr",
+ "Chwefror",
+ "Mawrth",
+ "Ebrill",
+ "Mai",
+ "Mehefin",
+ "Gorffennaf",
+ "Awst",
+ "Medi",
+ "Hydref",
+ "Tachwedd",
+ "Rhagfyr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_da-dk.js b/src/ngLocale/angular-locale_da-dk.js
index fe2f432a2362..0067ecc5d3bb 100644
--- a/src/ngLocale/angular-locale_da-dk.js
+++ b/src/ngLocale/angular-locale_da-dk.js
@@ -93,6 +93,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "marts",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_da-gl.js b/src/ngLocale/angular-locale_da-gl.js
index 9714d083279c..1068a2bc5934 100644
--- a/src/ngLocale/angular-locale_da-gl.js
+++ b/src/ngLocale/angular-locale_da-gl.js
@@ -93,6 +93,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "marts",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_da.js b/src/ngLocale/angular-locale_da.js
index 7e263cf9e48d..dfb3dd47c602 100644
--- a/src/ngLocale/angular-locale_da.js
+++ b/src/ngLocale/angular-locale_da.js
@@ -93,6 +93,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "marts",
+ "april",
+ "maj",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dav-ke.js b/src/ngLocale/angular-locale_dav-ke.js
index 4a689b5034c5..b40cf85b29d3 100644
--- a/src/ngLocale/angular-locale_dav-ke.js
+++ b/src/ngLocale/angular-locale_dav-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Imw",
"Iwi"
],
+ "STANDALONEMONTH": [
+ "Mori ghwa imbiri",
+ "Mori ghwa kawi",
+ "Mori ghwa kadadu",
+ "Mori ghwa kana",
+ "Mori ghwa kasanu",
+ "Mori ghwa karandadu",
+ "Mori ghwa mfungade",
+ "Mori ghwa wunyanya",
+ "Mori ghwa ikenda",
+ "Mori ghwa ikumi",
+ "Mori ghwa ikumi na imweri",
+ "Mori ghwa ikumi na iwi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dav.js b/src/ngLocale/angular-locale_dav.js
index 946c59f47b9d..1ba29994441c 100644
--- a/src/ngLocale/angular-locale_dav.js
+++ b/src/ngLocale/angular-locale_dav.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Imw",
"Iwi"
],
+ "STANDALONEMONTH": [
+ "Mori ghwa imbiri",
+ "Mori ghwa kawi",
+ "Mori ghwa kadadu",
+ "Mori ghwa kana",
+ "Mori ghwa kasanu",
+ "Mori ghwa karandadu",
+ "Mori ghwa mfungade",
+ "Mori ghwa wunyanya",
+ "Mori ghwa ikenda",
+ "Mori ghwa ikumi",
+ "Mori ghwa ikumi na imweri",
+ "Mori ghwa ikumi na iwi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de-at.js b/src/ngLocale/angular-locale_de-at.js
index b3ee8e15c924..dcf2b6d0cdbf 100644
--- a/src/ngLocale/angular-locale_de-at.js
+++ b/src/ngLocale/angular-locale_de-at.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "J\u00e4nner",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de-be.js b/src/ngLocale/angular-locale_de-be.js
index 61390da48ef0..f2b031cf031d 100644
--- a/src/ngLocale/angular-locale_de-be.js
+++ b/src/ngLocale/angular-locale_de-be.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de-ch.js b/src/ngLocale/angular-locale_de-ch.js
index cdb75cac24c4..9b9841ac7118 100644
--- a/src/ngLocale/angular-locale_de-ch.js
+++ b/src/ngLocale/angular-locale_de-ch.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de-de.js b/src/ngLocale/angular-locale_de-de.js
index b69252f59d76..6b267bf1bd4d 100644
--- a/src/ngLocale/angular-locale_de-de.js
+++ b/src/ngLocale/angular-locale_de-de.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de-li.js b/src/ngLocale/angular-locale_de-li.js
index 867e08d99c43..12c2b10796a0 100644
--- a/src/ngLocale/angular-locale_de-li.js
+++ b/src/ngLocale/angular-locale_de-li.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de-lu.js b/src/ngLocale/angular-locale_de-lu.js
index f141217c4104..2fad59f58c5a 100644
--- a/src/ngLocale/angular-locale_de-lu.js
+++ b/src/ngLocale/angular-locale_de-lu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_de.js b/src/ngLocale/angular-locale_de.js
index cbc6643fd5f9..efe64980bcbb 100644
--- a/src/ngLocale/angular-locale_de.js
+++ b/src/ngLocale/angular-locale_de.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dje-ne.js b/src/ngLocale/angular-locale_dje-ne.js
index a5f240337f91..15038826b2d0 100644
--- a/src/ngLocale/angular-locale_dje-ne.js
+++ b/src/ngLocale/angular-locale_dje-ne.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dje.js b/src/ngLocale/angular-locale_dje.js
index 630c9f4a8dbe..b1bf7ddd58ec 100644
--- a/src/ngLocale/angular-locale_dje.js
+++ b/src/ngLocale/angular-locale_dje.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dsb-de.js b/src/ngLocale/angular-locale_dsb-de.js
index 8d7ca9f29342..ec5c523de7d8 100644
--- a/src/ngLocale/angular-locale_dsb-de.js
+++ b/src/ngLocale/angular-locale_dsb-de.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "m\u011brc",
+ "apryl",
+ "maj",
+ "junij",
+ "julij",
+ "awgust",
+ "september",
+ "oktober",
+ "nowember",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dsb.js b/src/ngLocale/angular-locale_dsb.js
index f774a75b9449..423b1720ffa5 100644
--- a/src/ngLocale/angular-locale_dsb.js
+++ b/src/ngLocale/angular-locale_dsb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "m\u011brc",
+ "apryl",
+ "maj",
+ "junij",
+ "julij",
+ "awgust",
+ "september",
+ "oktober",
+ "nowember",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dua-cm.js b/src/ngLocale/angular-locale_dua-cm.js
index 84d780174695..3dbe4758e92b 100644
--- a/src/ngLocale/angular-locale_dua-cm.js
+++ b/src/ngLocale/angular-locale_dua-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"tin",
"el\u00e1"
],
+ "STANDALONEMONTH": [
+ "dim\u0254\u0301di",
+ "\u014bg\u0254nd\u025b",
+ "s\u0254\u014b\u025b",
+ "di\u0253\u00e1\u0253\u00e1",
+ "emiasele",
+ "es\u0254p\u025bs\u0254p\u025b",
+ "madi\u0253\u025b\u0301d\u00ed\u0253\u025b\u0301",
+ "di\u014bgindi",
+ "ny\u025bt\u025bki",
+ "may\u00e9s\u025b\u0301",
+ "tin\u00edn\u00ed",
+ "el\u00e1\u014bg\u025b\u0301"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dua.js b/src/ngLocale/angular-locale_dua.js
index c2ffe9450962..2ac8e09fd5d9 100644
--- a/src/ngLocale/angular-locale_dua.js
+++ b/src/ngLocale/angular-locale_dua.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"tin",
"el\u00e1"
],
+ "STANDALONEMONTH": [
+ "dim\u0254\u0301di",
+ "\u014bg\u0254nd\u025b",
+ "s\u0254\u014b\u025b",
+ "di\u0253\u00e1\u0253\u00e1",
+ "emiasele",
+ "es\u0254p\u025bs\u0254p\u025b",
+ "madi\u0253\u025b\u0301d\u00ed\u0253\u025b\u0301",
+ "di\u014bgindi",
+ "ny\u025bt\u025bki",
+ "may\u00e9s\u025b\u0301",
+ "tin\u00edn\u00ed",
+ "el\u00e1\u014bg\u025b\u0301"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dyo-sn.js b/src/ngLocale/angular-locale_dyo-sn.js
index e8fadc7142d7..e670343d2c2d 100644
--- a/src/ngLocale/angular-locale_dyo-sn.js
+++ b/src/ngLocale/angular-locale_dyo-sn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"No",
"De"
],
+ "STANDALONEMONTH": [
+ "Sanvie",
+ "F\u00e9birie",
+ "Mars",
+ "Aburil",
+ "Mee",
+ "Sue\u014b",
+ "S\u00fauyee",
+ "Ut",
+ "Settembar",
+ "Oktobar",
+ "Novembar",
+ "Disambar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dyo.js b/src/ngLocale/angular-locale_dyo.js
index 5699f4a208d3..6af387ce9ffb 100644
--- a/src/ngLocale/angular-locale_dyo.js
+++ b/src/ngLocale/angular-locale_dyo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"No",
"De"
],
+ "STANDALONEMONTH": [
+ "Sanvie",
+ "F\u00e9birie",
+ "Mars",
+ "Aburil",
+ "Mee",
+ "Sue\u014b",
+ "S\u00fauyee",
+ "Ut",
+ "Settembar",
+ "Oktobar",
+ "Novembar",
+ "Disambar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dz-bt.js b/src/ngLocale/angular-locale_dz-bt.js
index c82e0508e19c..ba60d7fdd759 100644
--- a/src/ngLocale/angular-locale_dz-bt.js
+++ b/src/ngLocale/angular-locale_dz-bt.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0f21\u0f21",
"12"
],
+ "STANDALONEMONTH": [
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f44\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_dz.js b/src/ngLocale/angular-locale_dz.js
index 3ef63d101331..847856a55424 100644
--- a/src/ngLocale/angular-locale_dz.js
+++ b/src/ngLocale/angular-locale_dz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0f21\u0f21",
"12"
],
+ "STANDALONEMONTH": [
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f44\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ebu-ke.js b/src/ngLocale/angular-locale_ebu-ke.js
index 6f6761f1682f..d200e493e416 100644
--- a/src/ngLocale/angular-locale_ebu-ke.js
+++ b/src/ngLocale/angular-locale_ebu-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Imw",
"Igi"
],
+ "STANDALONEMONTH": [
+ "Mweri wa mbere",
+ "Mweri wa ka\u0129ri",
+ "Mweri wa kathat\u0169",
+ "Mweri wa kana",
+ "Mweri wa gatano",
+ "Mweri wa gatantat\u0169",
+ "Mweri wa m\u0169gwanja",
+ "Mweri wa kanana",
+ "Mweri wa kenda",
+ "Mweri wa ik\u0169mi",
+ "Mweri wa ik\u0169mi na \u0169mwe",
+ "Mweri wa ik\u0169mi na Ka\u0129r\u0129"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ebu.js b/src/ngLocale/angular-locale_ebu.js
index d92a16d2eb56..e462b368850f 100644
--- a/src/ngLocale/angular-locale_ebu.js
+++ b/src/ngLocale/angular-locale_ebu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Imw",
"Igi"
],
+ "STANDALONEMONTH": [
+ "Mweri wa mbere",
+ "Mweri wa ka\u0129ri",
+ "Mweri wa kathat\u0169",
+ "Mweri wa kana",
+ "Mweri wa gatano",
+ "Mweri wa gatantat\u0169",
+ "Mweri wa m\u0169gwanja",
+ "Mweri wa kanana",
+ "Mweri wa kenda",
+ "Mweri wa ik\u0169mi",
+ "Mweri wa ik\u0169mi na \u0169mwe",
+ "Mweri wa ik\u0169mi na Ka\u0129r\u0129"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ee-gh.js b/src/ngLocale/angular-locale_ee-gh.js
index 16848babd55d..c866c316d85e 100644
--- a/src/ngLocale/angular-locale_ee-gh.js
+++ b/src/ngLocale/angular-locale_ee-gh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ade",
"dzm"
],
+ "STANDALONEMONTH": [
+ "dzove",
+ "dzodze",
+ "tedoxe",
+ "af\u0254f\u0129e",
+ "dama",
+ "masa",
+ "siaml\u0254m",
+ "deasiamime",
+ "any\u0254ny\u0254",
+ "kele",
+ "ade\u025bmekp\u0254xe",
+ "dzome"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ee-tg.js b/src/ngLocale/angular-locale_ee-tg.js
index de48746af9a7..8894b2f7f4f9 100644
--- a/src/ngLocale/angular-locale_ee-tg.js
+++ b/src/ngLocale/angular-locale_ee-tg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ade",
"dzm"
],
+ "STANDALONEMONTH": [
+ "dzove",
+ "dzodze",
+ "tedoxe",
+ "af\u0254f\u0129e",
+ "dama",
+ "masa",
+ "siaml\u0254m",
+ "deasiamime",
+ "any\u0254ny\u0254",
+ "kele",
+ "ade\u025bmekp\u0254xe",
+ "dzome"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ee.js b/src/ngLocale/angular-locale_ee.js
index fdc03bebe12e..aee6d1b51b3e 100644
--- a/src/ngLocale/angular-locale_ee.js
+++ b/src/ngLocale/angular-locale_ee.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ade",
"dzm"
],
+ "STANDALONEMONTH": [
+ "dzove",
+ "dzodze",
+ "tedoxe",
+ "af\u0254f\u0129e",
+ "dama",
+ "masa",
+ "siaml\u0254m",
+ "deasiamime",
+ "any\u0254ny\u0254",
+ "kele",
+ "ade\u025bmekp\u0254xe",
+ "dzome"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_el-cy.js b/src/ngLocale/angular-locale_el-cy.js
index 5637d3fbb516..355620dcdcfc 100644
--- a/src/ngLocale/angular-locale_el-cy.js
+++ b/src/ngLocale/angular-locale_el-cy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u039d\u03bf\u03b5",
"\u0394\u03b5\u03ba"
],
+ "STANDALONEMONTH": [
+ "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
+ "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
+ "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2",
+ "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2",
+ "\u039c\u03ac\u03b9\u03bf\u03c2",
+ "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2",
+ "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2",
+ "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2",
+ "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_el-gr.js b/src/ngLocale/angular-locale_el-gr.js
index 72c8b719b93c..6933bf33f5f4 100644
--- a/src/ngLocale/angular-locale_el-gr.js
+++ b/src/ngLocale/angular-locale_el-gr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u039d\u03bf\u03b5",
"\u0394\u03b5\u03ba"
],
+ "STANDALONEMONTH": [
+ "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
+ "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
+ "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2",
+ "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2",
+ "\u039c\u03ac\u03b9\u03bf\u03c2",
+ "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2",
+ "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2",
+ "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2",
+ "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_el.js b/src/ngLocale/angular-locale_el.js
index 216542b8755e..9e657d987c7c 100644
--- a/src/ngLocale/angular-locale_el.js
+++ b/src/ngLocale/angular-locale_el.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u039d\u03bf\u03b5",
"\u0394\u03b5\u03ba"
],
+ "STANDALONEMONTH": [
+ "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
+ "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
+ "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2",
+ "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2",
+ "\u039c\u03ac\u03b9\u03bf\u03c2",
+ "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2",
+ "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2",
+ "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2",
+ "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
+ "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-001.js b/src/ngLocale/angular-locale_en-001.js
index 49c98073ee16..58af1f6f1b45 100644
--- a/src/ngLocale/angular-locale_en-001.js
+++ b/src/ngLocale/angular-locale_en-001.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-150.js b/src/ngLocale/angular-locale_en-150.js
index 88468dad963b..a478280ccd0a 100644
--- a/src/ngLocale/angular-locale_en-150.js
+++ b/src/ngLocale/angular-locale_en-150.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ag.js b/src/ngLocale/angular-locale_en-ag.js
index effeae65f98e..b898f319b884 100644
--- a/src/ngLocale/angular-locale_en-ag.js
+++ b/src/ngLocale/angular-locale_en-ag.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ai.js b/src/ngLocale/angular-locale_en-ai.js
index 29a39cb3f435..2855239fa38c 100644
--- a/src/ngLocale/angular-locale_en-ai.js
+++ b/src/ngLocale/angular-locale_en-ai.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-as.js b/src/ngLocale/angular-locale_en-as.js
index b121ecba99a4..087080996ad7 100644
--- a/src/ngLocale/angular-locale_en-as.js
+++ b/src/ngLocale/angular-locale_en-as.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-au.js b/src/ngLocale/angular-locale_en-au.js
index a1ea9d768df9..613be46980cf 100644
--- a/src/ngLocale/angular-locale_en-au.js
+++ b/src/ngLocale/angular-locale_en-au.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-bb.js b/src/ngLocale/angular-locale_en-bb.js
index a183bab22fd3..c64f323f2975 100644
--- a/src/ngLocale/angular-locale_en-bb.js
+++ b/src/ngLocale/angular-locale_en-bb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-be.js b/src/ngLocale/angular-locale_en-be.js
index 8a79877f11ce..52b76b450204 100644
--- a/src/ngLocale/angular-locale_en-be.js
+++ b/src/ngLocale/angular-locale_en-be.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-bm.js b/src/ngLocale/angular-locale_en-bm.js
index 217c162feee0..a184706fdf19 100644
--- a/src/ngLocale/angular-locale_en-bm.js
+++ b/src/ngLocale/angular-locale_en-bm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-bs.js b/src/ngLocale/angular-locale_en-bs.js
index dfcf301ede08..56a916500798 100644
--- a/src/ngLocale/angular-locale_en-bs.js
+++ b/src/ngLocale/angular-locale_en-bs.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-bw.js b/src/ngLocale/angular-locale_en-bw.js
index 9433a32d580c..79e95d5b7311 100644
--- a/src/ngLocale/angular-locale_en-bw.js
+++ b/src/ngLocale/angular-locale_en-bw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-bz.js b/src/ngLocale/angular-locale_en-bz.js
index 50b70783ce88..768eaa06410f 100644
--- a/src/ngLocale/angular-locale_en-bz.js
+++ b/src/ngLocale/angular-locale_en-bz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ca.js b/src/ngLocale/angular-locale_en-ca.js
index 5ca0d1d3cc86..d520c5f905d3 100644
--- a/src/ngLocale/angular-locale_en-ca.js
+++ b/src/ngLocale/angular-locale_en-ca.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-cc.js b/src/ngLocale/angular-locale_en-cc.js
index e840c699a787..8b7e739ff5be 100644
--- a/src/ngLocale/angular-locale_en-cc.js
+++ b/src/ngLocale/angular-locale_en-cc.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ck.js b/src/ngLocale/angular-locale_en-ck.js
index 5cdb9138f5d3..4078f732411e 100644
--- a/src/ngLocale/angular-locale_en-ck.js
+++ b/src/ngLocale/angular-locale_en-ck.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-cm.js b/src/ngLocale/angular-locale_en-cm.js
index 06821311db97..140ea8c46bbc 100644
--- a/src/ngLocale/angular-locale_en-cm.js
+++ b/src/ngLocale/angular-locale_en-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-cx.js b/src/ngLocale/angular-locale_en-cx.js
index e6c4f1064706..788e8549d5b9 100644
--- a/src/ngLocale/angular-locale_en-cx.js
+++ b/src/ngLocale/angular-locale_en-cx.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-dg.js b/src/ngLocale/angular-locale_en-dg.js
index 6c2c605f02e6..19728fd4b812 100644
--- a/src/ngLocale/angular-locale_en-dg.js
+++ b/src/ngLocale/angular-locale_en-dg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-dm.js b/src/ngLocale/angular-locale_en-dm.js
index 7225a1dd200c..9651e021693b 100644
--- a/src/ngLocale/angular-locale_en-dm.js
+++ b/src/ngLocale/angular-locale_en-dm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-er.js b/src/ngLocale/angular-locale_en-er.js
index 85232a6abbbf..f2f81de0752b 100644
--- a/src/ngLocale/angular-locale_en-er.js
+++ b/src/ngLocale/angular-locale_en-er.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-fj.js b/src/ngLocale/angular-locale_en-fj.js
index a7dfbe685cc4..e046ad69005c 100644
--- a/src/ngLocale/angular-locale_en-fj.js
+++ b/src/ngLocale/angular-locale_en-fj.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-fk.js b/src/ngLocale/angular-locale_en-fk.js
index 5da1bcb87139..263c553d950d 100644
--- a/src/ngLocale/angular-locale_en-fk.js
+++ b/src/ngLocale/angular-locale_en-fk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-fm.js b/src/ngLocale/angular-locale_en-fm.js
index 19cfa0559baf..666949e5cb1f 100644
--- a/src/ngLocale/angular-locale_en-fm.js
+++ b/src/ngLocale/angular-locale_en-fm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gb.js b/src/ngLocale/angular-locale_en-gb.js
index 3eb37db23f48..7c3c76a3bf84 100644
--- a/src/ngLocale/angular-locale_en-gb.js
+++ b/src/ngLocale/angular-locale_en-gb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gd.js b/src/ngLocale/angular-locale_en-gd.js
index 4fbcd1c31bfb..0d32b77f1fb7 100644
--- a/src/ngLocale/angular-locale_en-gd.js
+++ b/src/ngLocale/angular-locale_en-gd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gg.js b/src/ngLocale/angular-locale_en-gg.js
index 8da65cc0eab3..11f8e65f4e28 100644
--- a/src/ngLocale/angular-locale_en-gg.js
+++ b/src/ngLocale/angular-locale_en-gg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gh.js b/src/ngLocale/angular-locale_en-gh.js
index bcaa1bccef03..0566373952f6 100644
--- a/src/ngLocale/angular-locale_en-gh.js
+++ b/src/ngLocale/angular-locale_en-gh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gi.js b/src/ngLocale/angular-locale_en-gi.js
index 926bacd0382f..026978f868ac 100644
--- a/src/ngLocale/angular-locale_en-gi.js
+++ b/src/ngLocale/angular-locale_en-gi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gm.js b/src/ngLocale/angular-locale_en-gm.js
index fec1b6041c6c..b05b4bb737e0 100644
--- a/src/ngLocale/angular-locale_en-gm.js
+++ b/src/ngLocale/angular-locale_en-gm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gu.js b/src/ngLocale/angular-locale_en-gu.js
index 68d66d51567e..b43a512a04a1 100644
--- a/src/ngLocale/angular-locale_en-gu.js
+++ b/src/ngLocale/angular-locale_en-gu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-gy.js b/src/ngLocale/angular-locale_en-gy.js
index 405cfc39f5b9..5e0f4c6f54bc 100644
--- a/src/ngLocale/angular-locale_en-gy.js
+++ b/src/ngLocale/angular-locale_en-gy.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-hk.js b/src/ngLocale/angular-locale_en-hk.js
index 6efd69245c06..a05d2b66fa9f 100644
--- a/src/ngLocale/angular-locale_en-hk.js
+++ b/src/ngLocale/angular-locale_en-hk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ie.js b/src/ngLocale/angular-locale_en-ie.js
index d6eb9505d938..8aa3124a5e1a 100644
--- a/src/ngLocale/angular-locale_en-ie.js
+++ b/src/ngLocale/angular-locale_en-ie.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-im.js b/src/ngLocale/angular-locale_en-im.js
index b9d1717c8965..e1c974d74ed2 100644
--- a/src/ngLocale/angular-locale_en-im.js
+++ b/src/ngLocale/angular-locale_en-im.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-in.js b/src/ngLocale/angular-locale_en-in.js
index 050ef178c862..70a4901f5555 100644
--- a/src/ngLocale/angular-locale_en-in.js
+++ b/src/ngLocale/angular-locale_en-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_en-io.js b/src/ngLocale/angular-locale_en-io.js
index 3e0cc47fefb0..1be5126fb0f4 100644
--- a/src/ngLocale/angular-locale_en-io.js
+++ b/src/ngLocale/angular-locale_en-io.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-iso.js b/src/ngLocale/angular-locale_en-iso.js
index 4e1ba795fa96..789baeeec307 100644
--- a/src/ngLocale/angular-locale_en-iso.js
+++ b/src/ngLocale/angular-locale_en-iso.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-je.js b/src/ngLocale/angular-locale_en-je.js
index 6883396c36bd..2c671f90504c 100644
--- a/src/ngLocale/angular-locale_en-je.js
+++ b/src/ngLocale/angular-locale_en-je.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-jm.js b/src/ngLocale/angular-locale_en-jm.js
index 080daec15972..4872f208b98d 100644
--- a/src/ngLocale/angular-locale_en-jm.js
+++ b/src/ngLocale/angular-locale_en-jm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ke.js b/src/ngLocale/angular-locale_en-ke.js
index e0e16af63e49..1484cf088c6b 100644
--- a/src/ngLocale/angular-locale_en-ke.js
+++ b/src/ngLocale/angular-locale_en-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ki.js b/src/ngLocale/angular-locale_en-ki.js
index de6c4ff539ca..7a66024ea248 100644
--- a/src/ngLocale/angular-locale_en-ki.js
+++ b/src/ngLocale/angular-locale_en-ki.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-kn.js b/src/ngLocale/angular-locale_en-kn.js
index 88f8d651e6c5..d4f9604bc46e 100644
--- a/src/ngLocale/angular-locale_en-kn.js
+++ b/src/ngLocale/angular-locale_en-kn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ky.js b/src/ngLocale/angular-locale_en-ky.js
index f19fdb76fb9c..520d36f18073 100644
--- a/src/ngLocale/angular-locale_en-ky.js
+++ b/src/ngLocale/angular-locale_en-ky.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-lc.js b/src/ngLocale/angular-locale_en-lc.js
index cf95b8313742..eb6e7b3ca34c 100644
--- a/src/ngLocale/angular-locale_en-lc.js
+++ b/src/ngLocale/angular-locale_en-lc.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-lr.js b/src/ngLocale/angular-locale_en-lr.js
index 87c7c8c505b5..e81d83be322c 100644
--- a/src/ngLocale/angular-locale_en-lr.js
+++ b/src/ngLocale/angular-locale_en-lr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ls.js b/src/ngLocale/angular-locale_en-ls.js
index 08575f9e3a26..47444e9c1306 100644
--- a/src/ngLocale/angular-locale_en-ls.js
+++ b/src/ngLocale/angular-locale_en-ls.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mg.js b/src/ngLocale/angular-locale_en-mg.js
index 10c070ab505b..d185b6d1d182 100644
--- a/src/ngLocale/angular-locale_en-mg.js
+++ b/src/ngLocale/angular-locale_en-mg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mh.js b/src/ngLocale/angular-locale_en-mh.js
index 3ec0b3d4e37f..f53d501ab141 100644
--- a/src/ngLocale/angular-locale_en-mh.js
+++ b/src/ngLocale/angular-locale_en-mh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mo.js b/src/ngLocale/angular-locale_en-mo.js
index e56ec63ccd55..a32f530dccb7 100644
--- a/src/ngLocale/angular-locale_en-mo.js
+++ b/src/ngLocale/angular-locale_en-mo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mp.js b/src/ngLocale/angular-locale_en-mp.js
index 1d830bf7659e..d60eaefb4e1a 100644
--- a/src/ngLocale/angular-locale_en-mp.js
+++ b/src/ngLocale/angular-locale_en-mp.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ms.js b/src/ngLocale/angular-locale_en-ms.js
index 599a03fe2423..d249fa78bcd6 100644
--- a/src/ngLocale/angular-locale_en-ms.js
+++ b/src/ngLocale/angular-locale_en-ms.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mt.js b/src/ngLocale/angular-locale_en-mt.js
index 05818a8bd396..bc70e7490e11 100644
--- a/src/ngLocale/angular-locale_en-mt.js
+++ b/src/ngLocale/angular-locale_en-mt.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mu.js b/src/ngLocale/angular-locale_en-mu.js
index 37e64915c3e9..c19fe0272eea 100644
--- a/src/ngLocale/angular-locale_en-mu.js
+++ b/src/ngLocale/angular-locale_en-mu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-mw.js b/src/ngLocale/angular-locale_en-mw.js
index d850392cd0c5..536a4f92e68a 100644
--- a/src/ngLocale/angular-locale_en-mw.js
+++ b/src/ngLocale/angular-locale_en-mw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-my.js b/src/ngLocale/angular-locale_en-my.js
index f02af2816d32..10b0c556ba5b 100644
--- a/src/ngLocale/angular-locale_en-my.js
+++ b/src/ngLocale/angular-locale_en-my.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-na.js b/src/ngLocale/angular-locale_en-na.js
index 13dc95aab7e5..5d176de299cb 100644
--- a/src/ngLocale/angular-locale_en-na.js
+++ b/src/ngLocale/angular-locale_en-na.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-nf.js b/src/ngLocale/angular-locale_en-nf.js
index 72154ecbf7a4..cef712fc9f14 100644
--- a/src/ngLocale/angular-locale_en-nf.js
+++ b/src/ngLocale/angular-locale_en-nf.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ng.js b/src/ngLocale/angular-locale_en-ng.js
index 3f506f47c1fb..f487f70dc639 100644
--- a/src/ngLocale/angular-locale_en-ng.js
+++ b/src/ngLocale/angular-locale_en-ng.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-nr.js b/src/ngLocale/angular-locale_en-nr.js
index fb7e1319e14f..cd4a4e7f7dfb 100644
--- a/src/ngLocale/angular-locale_en-nr.js
+++ b/src/ngLocale/angular-locale_en-nr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-nu.js b/src/ngLocale/angular-locale_en-nu.js
index 3ff530dd707a..587504dee9ee 100644
--- a/src/ngLocale/angular-locale_en-nu.js
+++ b/src/ngLocale/angular-locale_en-nu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-nz.js b/src/ngLocale/angular-locale_en-nz.js
index b0c2ce077021..23aab49bf5d1 100644
--- a/src/ngLocale/angular-locale_en-nz.js
+++ b/src/ngLocale/angular-locale_en-nz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-pg.js b/src/ngLocale/angular-locale_en-pg.js
index e43790574667..3054dc24a5cf 100644
--- a/src/ngLocale/angular-locale_en-pg.js
+++ b/src/ngLocale/angular-locale_en-pg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ph.js b/src/ngLocale/angular-locale_en-ph.js
index a1ae7ea8dbe5..4bb74af12bd8 100644
--- a/src/ngLocale/angular-locale_en-ph.js
+++ b/src/ngLocale/angular-locale_en-ph.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-pk.js b/src/ngLocale/angular-locale_en-pk.js
index 4d99a3e60f7a..7521d1749f85 100644
--- a/src/ngLocale/angular-locale_en-pk.js
+++ b/src/ngLocale/angular-locale_en-pk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-pn.js b/src/ngLocale/angular-locale_en-pn.js
index 460e76ab849a..594868d90d0a 100644
--- a/src/ngLocale/angular-locale_en-pn.js
+++ b/src/ngLocale/angular-locale_en-pn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-pr.js b/src/ngLocale/angular-locale_en-pr.js
index 5a2e9ef59615..532f6f2cf857 100644
--- a/src/ngLocale/angular-locale_en-pr.js
+++ b/src/ngLocale/angular-locale_en-pr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-pw.js b/src/ngLocale/angular-locale_en-pw.js
index 5be685814243..4b7cd8ec9f34 100644
--- a/src/ngLocale/angular-locale_en-pw.js
+++ b/src/ngLocale/angular-locale_en-pw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-rw.js b/src/ngLocale/angular-locale_en-rw.js
index 477fe01e1177..447e2c4e0075 100644
--- a/src/ngLocale/angular-locale_en-rw.js
+++ b/src/ngLocale/angular-locale_en-rw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sb.js b/src/ngLocale/angular-locale_en-sb.js
index 4f195c03084b..c77cbfd4d8c0 100644
--- a/src/ngLocale/angular-locale_en-sb.js
+++ b/src/ngLocale/angular-locale_en-sb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sc.js b/src/ngLocale/angular-locale_en-sc.js
index c77368e42b3c..7614581e8ef7 100644
--- a/src/ngLocale/angular-locale_en-sc.js
+++ b/src/ngLocale/angular-locale_en-sc.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sd.js b/src/ngLocale/angular-locale_en-sd.js
index 642fed131e0c..d4ad1293eb40 100644
--- a/src/ngLocale/angular-locale_en-sd.js
+++ b/src/ngLocale/angular-locale_en-sd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_en-sg.js b/src/ngLocale/angular-locale_en-sg.js
index 9a573044f96d..62001d1fc28c 100644
--- a/src/ngLocale/angular-locale_en-sg.js
+++ b/src/ngLocale/angular-locale_en-sg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sh.js b/src/ngLocale/angular-locale_en-sh.js
index f44ca8a1c861..641521b12271 100644
--- a/src/ngLocale/angular-locale_en-sh.js
+++ b/src/ngLocale/angular-locale_en-sh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sl.js b/src/ngLocale/angular-locale_en-sl.js
index c66cc354acd3..2f6238b2e40d 100644
--- a/src/ngLocale/angular-locale_en-sl.js
+++ b/src/ngLocale/angular-locale_en-sl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ss.js b/src/ngLocale/angular-locale_en-ss.js
index 8c0e69477230..c83ef5c4b72a 100644
--- a/src/ngLocale/angular-locale_en-ss.js
+++ b/src/ngLocale/angular-locale_en-ss.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sx.js b/src/ngLocale/angular-locale_en-sx.js
index b84c964f65cf..b5bc05ddf062 100644
--- a/src/ngLocale/angular-locale_en-sx.js
+++ b/src/ngLocale/angular-locale_en-sx.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-sz.js b/src/ngLocale/angular-locale_en-sz.js
index 5dc361c01af6..d1d2162c5fdf 100644
--- a/src/ngLocale/angular-locale_en-sz.js
+++ b/src/ngLocale/angular-locale_en-sz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-tc.js b/src/ngLocale/angular-locale_en-tc.js
index d075f25c7fb8..afe27ce80960 100644
--- a/src/ngLocale/angular-locale_en-tc.js
+++ b/src/ngLocale/angular-locale_en-tc.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-tk.js b/src/ngLocale/angular-locale_en-tk.js
index 048c92565be0..e68270712b2d 100644
--- a/src/ngLocale/angular-locale_en-tk.js
+++ b/src/ngLocale/angular-locale_en-tk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-to.js b/src/ngLocale/angular-locale_en-to.js
index a208e5212f74..370bf68fe1f6 100644
--- a/src/ngLocale/angular-locale_en-to.js
+++ b/src/ngLocale/angular-locale_en-to.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-tt.js b/src/ngLocale/angular-locale_en-tt.js
index c10e2eea2bac..71df1e5fbaec 100644
--- a/src/ngLocale/angular-locale_en-tt.js
+++ b/src/ngLocale/angular-locale_en-tt.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-tv.js b/src/ngLocale/angular-locale_en-tv.js
index 32c7a2c83837..73ac8f10c29c 100644
--- a/src/ngLocale/angular-locale_en-tv.js
+++ b/src/ngLocale/angular-locale_en-tv.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-tz.js b/src/ngLocale/angular-locale_en-tz.js
index 488954d719a4..41f749e6d208 100644
--- a/src/ngLocale/angular-locale_en-tz.js
+++ b/src/ngLocale/angular-locale_en-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ug.js b/src/ngLocale/angular-locale_en-ug.js
index 9cde496b662c..7ed86b1f061c 100644
--- a/src/ngLocale/angular-locale_en-ug.js
+++ b/src/ngLocale/angular-locale_en-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-um.js b/src/ngLocale/angular-locale_en-um.js
index 827b56c1b662..654673c23228 100644
--- a/src/ngLocale/angular-locale_en-um.js
+++ b/src/ngLocale/angular-locale_en-um.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-us.js b/src/ngLocale/angular-locale_en-us.js
index 9a9bfe8263dd..a6111650a45d 100644
--- a/src/ngLocale/angular-locale_en-us.js
+++ b/src/ngLocale/angular-locale_en-us.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-vc.js b/src/ngLocale/angular-locale_en-vc.js
index f9c1ab9b3bc8..99bc8b97a993 100644
--- a/src/ngLocale/angular-locale_en-vc.js
+++ b/src/ngLocale/angular-locale_en-vc.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-vg.js b/src/ngLocale/angular-locale_en-vg.js
index 74fabbf873f1..b7da3ce4ea15 100644
--- a/src/ngLocale/angular-locale_en-vg.js
+++ b/src/ngLocale/angular-locale_en-vg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-vi.js b/src/ngLocale/angular-locale_en-vi.js
index 3d02ce57d718..b871c2858e68 100644
--- a/src/ngLocale/angular-locale_en-vi.js
+++ b/src/ngLocale/angular-locale_en-vi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-vu.js b/src/ngLocale/angular-locale_en-vu.js
index a9f6a6ac9284..e7ea96a1f93c 100644
--- a/src/ngLocale/angular-locale_en-vu.js
+++ b/src/ngLocale/angular-locale_en-vu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-ws.js b/src/ngLocale/angular-locale_en-ws.js
index 49d0931e35e3..1f39ff65a36a 100644
--- a/src/ngLocale/angular-locale_en-ws.js
+++ b/src/ngLocale/angular-locale_en-ws.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-za.js b/src/ngLocale/angular-locale_en-za.js
index 56283c80aca9..2803dae84d55 100644
--- a/src/ngLocale/angular-locale_en-za.js
+++ b/src/ngLocale/angular-locale_en-za.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-zm.js b/src/ngLocale/angular-locale_en-zm.js
index 78a5cd99319a..350fb719f381 100644
--- a/src/ngLocale/angular-locale_en-zm.js
+++ b/src/ngLocale/angular-locale_en-zm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en-zw.js b/src/ngLocale/angular-locale_en-zw.js
index 84125681b16a..6f9923f7ec35 100644
--- a/src/ngLocale/angular-locale_en-zw.js
+++ b/src/ngLocale/angular-locale_en-zw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_en.js b/src/ngLocale/angular-locale_en.js
index 55076c8432c8..44ce04a48ae2 100644
--- a/src/ngLocale/angular-locale_en.js
+++ b/src/ngLocale/angular-locale_en.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_eo-001.js b/src/ngLocale/angular-locale_eo-001.js
index 4a153257fdcd..5a910e4f98bb 100644
--- a/src/ngLocale/angular-locale_eo-001.js
+++ b/src/ngLocale/angular-locale_eo-001.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januaro",
+ "februaro",
+ "marto",
+ "aprilo",
+ "majo",
+ "junio",
+ "julio",
+ "a\u016dgusto",
+ "septembro",
+ "oktobro",
+ "novembro",
+ "decembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_eo.js b/src/ngLocale/angular-locale_eo.js
index b70d7a05c627..57f73853b07e 100644
--- a/src/ngLocale/angular-locale_eo.js
+++ b/src/ngLocale/angular-locale_eo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januaro",
+ "februaro",
+ "marto",
+ "aprilo",
+ "majo",
+ "junio",
+ "julio",
+ "a\u016dgusto",
+ "septembro",
+ "oktobro",
+ "novembro",
+ "decembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-419.js b/src/ngLocale/angular-locale_es-419.js
index 00dcab26495e..56b28ad1bf04 100644
--- a/src/ngLocale/angular-locale_es-419.js
+++ b/src/ngLocale/angular-locale_es-419.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ar.js b/src/ngLocale/angular-locale_es-ar.js
index 155dfad9fb4b..b8c4f73d3990 100644
--- a/src/ngLocale/angular-locale_es-ar.js
+++ b/src/ngLocale/angular-locale_es-ar.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-bo.js b/src/ngLocale/angular-locale_es-bo.js
index b7aa597b07ca..c31f01ea363c 100644
--- a/src/ngLocale/angular-locale_es-bo.js
+++ b/src/ngLocale/angular-locale_es-bo.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-cl.js b/src/ngLocale/angular-locale_es-cl.js
index 2b4a8a5a5b7c..13c8e0a87119 100644
--- a/src/ngLocale/angular-locale_es-cl.js
+++ b/src/ngLocale/angular-locale_es-cl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-co.js b/src/ngLocale/angular-locale_es-co.js
index 46b4d6bf586f..a37e6f3b8bdf 100644
--- a/src/ngLocale/angular-locale_es-co.js
+++ b/src/ngLocale/angular-locale_es-co.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-cr.js b/src/ngLocale/angular-locale_es-cr.js
index 42927de91534..3921419e77cb 100644
--- a/src/ngLocale/angular-locale_es-cr.js
+++ b/src/ngLocale/angular-locale_es-cr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-cu.js b/src/ngLocale/angular-locale_es-cu.js
index ec16c71b55fc..db9de3d8dad7 100644
--- a/src/ngLocale/angular-locale_es-cu.js
+++ b/src/ngLocale/angular-locale_es-cu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-do.js b/src/ngLocale/angular-locale_es-do.js
index beedf8a3b2d4..f6e60118a728 100644
--- a/src/ngLocale/angular-locale_es-do.js
+++ b/src/ngLocale/angular-locale_es-do.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ea.js b/src/ngLocale/angular-locale_es-ea.js
index ffefb9d1731e..64ce7ba75769 100644
--- a/src/ngLocale/angular-locale_es-ea.js
+++ b/src/ngLocale/angular-locale_es-ea.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ec.js b/src/ngLocale/angular-locale_es-ec.js
index 10949c127abe..21119ae1dce9 100644
--- a/src/ngLocale/angular-locale_es-ec.js
+++ b/src/ngLocale/angular-locale_es-ec.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-es.js b/src/ngLocale/angular-locale_es-es.js
index 9d0eb6569649..6049f010f729 100644
--- a/src/ngLocale/angular-locale_es-es.js
+++ b/src/ngLocale/angular-locale_es-es.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-gq.js b/src/ngLocale/angular-locale_es-gq.js
index d8fcd4b7c281..6d8d8f50e31e 100644
--- a/src/ngLocale/angular-locale_es-gq.js
+++ b/src/ngLocale/angular-locale_es-gq.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-gt.js b/src/ngLocale/angular-locale_es-gt.js
index e9b27cc00d6d..7c5452704c0f 100644
--- a/src/ngLocale/angular-locale_es-gt.js
+++ b/src/ngLocale/angular-locale_es-gt.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-hn.js b/src/ngLocale/angular-locale_es-hn.js
index 1fc839e6ed75..c2f2443ff432 100644
--- a/src/ngLocale/angular-locale_es-hn.js
+++ b/src/ngLocale/angular-locale_es-hn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ic.js b/src/ngLocale/angular-locale_es-ic.js
index 10987395850a..4a53381089d4 100644
--- a/src/ngLocale/angular-locale_es-ic.js
+++ b/src/ngLocale/angular-locale_es-ic.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-mx.js b/src/ngLocale/angular-locale_es-mx.js
index 95eb1456017b..810f13502f33 100644
--- a/src/ngLocale/angular-locale_es-mx.js
+++ b/src/ngLocale/angular-locale_es-mx.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dic"
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ni.js b/src/ngLocale/angular-locale_es-ni.js
index 775fb5fdfbcc..9432fa3aab24 100644
--- a/src/ngLocale/angular-locale_es-ni.js
+++ b/src/ngLocale/angular-locale_es-ni.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-pa.js b/src/ngLocale/angular-locale_es-pa.js
index 141605ed5105..ea67481e04ad 100644
--- a/src/ngLocale/angular-locale_es-pa.js
+++ b/src/ngLocale/angular-locale_es-pa.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-pe.js b/src/ngLocale/angular-locale_es-pe.js
index ea7dfd229d58..59f032de1621 100644
--- a/src/ngLocale/angular-locale_es-pe.js
+++ b/src/ngLocale/angular-locale_es-pe.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Setiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ph.js b/src/ngLocale/angular-locale_es-ph.js
index 0d7bc9838a90..65b6e7d0e412 100644
--- a/src/ngLocale/angular-locale_es-ph.js
+++ b/src/ngLocale/angular-locale_es-ph.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-pr.js b/src/ngLocale/angular-locale_es-pr.js
index 0ac3ff9553c9..ec2c89d7a4ec 100644
--- a/src/ngLocale/angular-locale_es-pr.js
+++ b/src/ngLocale/angular-locale_es-pr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-py.js b/src/ngLocale/angular-locale_es-py.js
index 3dd2301bb9f8..de7d25cfa7c7 100644
--- a/src/ngLocale/angular-locale_es-py.js
+++ b/src/ngLocale/angular-locale_es-py.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-sv.js b/src/ngLocale/angular-locale_es-sv.js
index 9a7574f259f4..7878a6e6c1a4 100644
--- a/src/ngLocale/angular-locale_es-sv.js
+++ b/src/ngLocale/angular-locale_es-sv.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-us.js b/src/ngLocale/angular-locale_es-us.js
index bb8e3ccce844..76243e82e679 100644
--- a/src/ngLocale/angular-locale_es-us.js
+++ b/src/ngLocale/angular-locale_es-us.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-uy.js b/src/ngLocale/angular-locale_es-uy.js
index adfccd9f7c0a..d3ed1f336054 100644
--- a/src/ngLocale/angular-locale_es-uy.js
+++ b/src/ngLocale/angular-locale_es-uy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Setiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es-ve.js b/src/ngLocale/angular-locale_es-ve.js
index ed2093cfc3a6..e30a4806fb8b 100644
--- a/src/ngLocale/angular-locale_es-ve.js
+++ b/src/ngLocale/angular-locale_es-ve.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_es.js b/src/ngLocale/angular-locale_es.js
index 929ab026725d..88656217e110 100644
--- a/src/ngLocale/angular-locale_es.js
+++ b/src/ngLocale/angular-locale_es.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dic."
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Febrero",
+ "Marzo",
+ "Abril",
+ "Mayo",
+ "Junio",
+ "Julio",
+ "Agosto",
+ "Septiembre",
+ "Octubre",
+ "Noviembre",
+ "Diciembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_et-ee.js b/src/ngLocale/angular-locale_et-ee.js
index 3b900ae31a3d..0f583b624751 100644
--- a/src/ngLocale/angular-locale_et-ee.js
+++ b/src/ngLocale/angular-locale_et-ee.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dets"
],
+ "STANDALONEMONTH": [
+ "jaanuar",
+ "veebruar",
+ "m\u00e4rts",
+ "aprill",
+ "mai",
+ "juuni",
+ "juuli",
+ "august",
+ "september",
+ "oktoober",
+ "november",
+ "detsember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_et.js b/src/ngLocale/angular-locale_et.js
index d10ad68a2f39..a0889c4b2113 100644
--- a/src/ngLocale/angular-locale_et.js
+++ b/src/ngLocale/angular-locale_et.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dets"
],
+ "STANDALONEMONTH": [
+ "jaanuar",
+ "veebruar",
+ "m\u00e4rts",
+ "aprill",
+ "mai",
+ "juuni",
+ "juuli",
+ "august",
+ "september",
+ "oktoober",
+ "november",
+ "detsember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_eu-es.js b/src/ngLocale/angular-locale_eu-es.js
index 3a38161c4f86..31ce4b24d758 100644
--- a/src/ngLocale/angular-locale_eu-es.js
+++ b/src/ngLocale/angular-locale_eu-es.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"aza.",
"abe."
],
+ "STANDALONEMONTH": [
+ "Urtarrila",
+ "Otsaila",
+ "Martxoa",
+ "Apirila",
+ "Maiatza",
+ "Ekaina",
+ "Uztaila",
+ "Abuztua",
+ "Iraila",
+ "Urria",
+ "Azaroa",
+ "Abendua"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_eu.js b/src/ngLocale/angular-locale_eu.js
index 47e847112c48..de7e9a8d112b 100644
--- a/src/ngLocale/angular-locale_eu.js
+++ b/src/ngLocale/angular-locale_eu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"aza.",
"abe."
],
+ "STANDALONEMONTH": [
+ "Urtarrila",
+ "Otsaila",
+ "Martxoa",
+ "Apirila",
+ "Maiatza",
+ "Ekaina",
+ "Uztaila",
+ "Abuztua",
+ "Iraila",
+ "Urria",
+ "Azaroa",
+ "Abendua"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ewo-cm.js b/src/ngLocale/angular-locale_ewo-cm.js
index 0acddea869f0..fc146d2bbb21 100644
--- a/src/ngLocale/angular-locale_ewo-cm.js
+++ b/src/ngLocale/angular-locale_ewo-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ngad",
"ngab"
],
+ "STANDALONEMONTH": [
+ "ng\u0254n os\u00fa",
+ "ng\u0254n b\u025b\u030c",
+ "ng\u0254n l\u00e1la",
+ "ng\u0254n nyina",
+ "ng\u0254n t\u00e1na",
+ "ng\u0254n sam\u0259na",
+ "ng\u0254n zamgb\u00e1la",
+ "ng\u0254n mwom",
+ "ng\u0254n ebul\u00fa",
+ "ng\u0254n aw\u00f3m",
+ "ng\u0254n aw\u00f3m ai dzi\u00e1",
+ "ng\u0254n aw\u00f3m ai b\u025b\u030c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ewo.js b/src/ngLocale/angular-locale_ewo.js
index dbef8cdecfdc..c58b6874bd75 100644
--- a/src/ngLocale/angular-locale_ewo.js
+++ b/src/ngLocale/angular-locale_ewo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ngad",
"ngab"
],
+ "STANDALONEMONTH": [
+ "ng\u0254n os\u00fa",
+ "ng\u0254n b\u025b\u030c",
+ "ng\u0254n l\u00e1la",
+ "ng\u0254n nyina",
+ "ng\u0254n t\u00e1na",
+ "ng\u0254n sam\u0259na",
+ "ng\u0254n zamgb\u00e1la",
+ "ng\u0254n mwom",
+ "ng\u0254n ebul\u00fa",
+ "ng\u0254n aw\u00f3m",
+ "ng\u0254n aw\u00f3m ai dzi\u00e1",
+ "ng\u0254n aw\u00f3m ai b\u025b\u030c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fa-af.js b/src/ngLocale/angular-locale_fa-af.js
index e3fccd3901a8..fb79f835be16 100644
--- a/src/ngLocale/angular-locale_fa-af.js
+++ b/src/ngLocale/angular-locale_fa-af.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0627\u0645\u0628\u0631",
"\u062f\u0633\u0645"
],
+ "STANDALONEMONTH": [
+ "\u0698\u0627\u0646\u0648\u06cc\u0647",
+ "\u0641\u0648\u0631\u06cc\u0647",
+ "\u0645\u0627\u0631\u0633",
+ "\u0622\u0648\u0631\u06cc\u0644",
+ "\u0645\u0647",
+ "\u0698\u0648\u0626\u0646",
+ "\u0698\u0648\u0626\u06cc\u0647",
+ "\u0627\u0648\u062a",
+ "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0628\u0631",
+ "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "\u062f\u0633\u0627\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
3,
4
diff --git a/src/ngLocale/angular-locale_fa-ir.js b/src/ngLocale/angular-locale_fa-ir.js
index 44a72b74fe18..09762735d6fb 100644
--- a/src/ngLocale/angular-locale_fa-ir.js
+++ b/src/ngLocale/angular-locale_fa-ir.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0627\u0645\u0628\u0631",
"\u062f\u0633\u0627\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u0698\u0627\u0646\u0648\u06cc\u0647",
+ "\u0641\u0648\u0631\u06cc\u0647",
+ "\u0645\u0627\u0631\u0633",
+ "\u0622\u0648\u0631\u06cc\u0644",
+ "\u0645\u0647",
+ "\u0698\u0648\u0626\u0646",
+ "\u0698\u0648\u0626\u06cc\u0647",
+ "\u0627\u0648\u062a",
+ "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0628\u0631",
+ "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "\u062f\u0633\u0627\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
4
diff --git a/src/ngLocale/angular-locale_fa.js b/src/ngLocale/angular-locale_fa.js
index 48eb5dd038df..14137793eb3b 100644
--- a/src/ngLocale/angular-locale_fa.js
+++ b/src/ngLocale/angular-locale_fa.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0627\u0645\u0628\u0631",
"\u062f\u0633\u0627\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u0698\u0627\u0646\u0648\u06cc\u0647",
+ "\u0641\u0648\u0631\u06cc\u0647",
+ "\u0645\u0627\u0631\u0633",
+ "\u0622\u0648\u0631\u06cc\u0644",
+ "\u0645\u0647",
+ "\u0698\u0648\u0626\u0646",
+ "\u0698\u0648\u0626\u06cc\u0647",
+ "\u0627\u0648\u062a",
+ "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0628\u0631",
+ "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "\u062f\u0633\u0627\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
4,
4
diff --git a/src/ngLocale/angular-locale_ff-cm.js b/src/ngLocale/angular-locale_ff-cm.js
index 87589cf17524..0b6b149613e6 100644
--- a/src/ngLocale/angular-locale_ff-cm.js
+++ b/src/ngLocale/angular-locale_ff-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"jol",
"bow"
],
+ "STANDALONEMONTH": [
+ "siilo",
+ "colte",
+ "mbooy",
+ "see\u0257to",
+ "duujal",
+ "korse",
+ "morso",
+ "juko",
+ "siilto",
+ "yarkomaa",
+ "jolal",
+ "bowte"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ff-gn.js b/src/ngLocale/angular-locale_ff-gn.js
index a7678f02d38d..a4aba55a554d 100644
--- a/src/ngLocale/angular-locale_ff-gn.js
+++ b/src/ngLocale/angular-locale_ff-gn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"jol",
"bow"
],
+ "STANDALONEMONTH": [
+ "siilo",
+ "colte",
+ "mbooy",
+ "see\u0257to",
+ "duujal",
+ "korse",
+ "morso",
+ "juko",
+ "siilto",
+ "yarkomaa",
+ "jolal",
+ "bowte"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ff-mr.js b/src/ngLocale/angular-locale_ff-mr.js
index c36b8a2515eb..6bf4ca949c8b 100644
--- a/src/ngLocale/angular-locale_ff-mr.js
+++ b/src/ngLocale/angular-locale_ff-mr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"jol",
"bow"
],
+ "STANDALONEMONTH": [
+ "siilo",
+ "colte",
+ "mbooy",
+ "see\u0257to",
+ "duujal",
+ "korse",
+ "morso",
+ "juko",
+ "siilto",
+ "yarkomaa",
+ "jolal",
+ "bowte"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ff-sn.js b/src/ngLocale/angular-locale_ff-sn.js
index e71e7b62214b..9ef723a44384 100644
--- a/src/ngLocale/angular-locale_ff-sn.js
+++ b/src/ngLocale/angular-locale_ff-sn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"jol",
"bow"
],
+ "STANDALONEMONTH": [
+ "siilo",
+ "colte",
+ "mbooy",
+ "see\u0257to",
+ "duujal",
+ "korse",
+ "morso",
+ "juko",
+ "siilto",
+ "yarkomaa",
+ "jolal",
+ "bowte"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ff.js b/src/ngLocale/angular-locale_ff.js
index 9ce7b830c6f6..e9c190b5811a 100644
--- a/src/ngLocale/angular-locale_ff.js
+++ b/src/ngLocale/angular-locale_ff.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"jol",
"bow"
],
+ "STANDALONEMONTH": [
+ "siilo",
+ "colte",
+ "mbooy",
+ "see\u0257to",
+ "duujal",
+ "korse",
+ "morso",
+ "juko",
+ "siilto",
+ "yarkomaa",
+ "jolal",
+ "bowte"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fi-fi.js b/src/ngLocale/angular-locale_fi-fi.js
index 44bd41203986..4b1b3a1166ae 100644
--- a/src/ngLocale/angular-locale_fi-fi.js
+++ b/src/ngLocale/angular-locale_fi-fi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"marraskuuta",
"joulukuuta"
],
+ "STANDALONEMONTH": [
+ "tammikuu",
+ "helmikuu",
+ "maaliskuu",
+ "huhtikuu",
+ "toukokuu",
+ "kes\u00e4kuu",
+ "hein\u00e4kuu",
+ "elokuu",
+ "syyskuu",
+ "lokakuu",
+ "marraskuu",
+ "joulukuu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fi.js b/src/ngLocale/angular-locale_fi.js
index ade165642af4..6dce6d182cc4 100644
--- a/src/ngLocale/angular-locale_fi.js
+++ b/src/ngLocale/angular-locale_fi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"marraskuuta",
"joulukuuta"
],
+ "STANDALONEMONTH": [
+ "tammikuu",
+ "helmikuu",
+ "maaliskuu",
+ "huhtikuu",
+ "toukokuu",
+ "kes\u00e4kuu",
+ "hein\u00e4kuu",
+ "elokuu",
+ "syyskuu",
+ "lokakuu",
+ "marraskuu",
+ "joulukuu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fil-ph.js b/src/ngLocale/angular-locale_fil-ph.js
index 541d3cde6d9a..5db5b3fe7380 100644
--- a/src/ngLocale/angular-locale_fil-ph.js
+++ b/src/ngLocale/angular-locale_fil-ph.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nob",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Pebrero",
+ "Marso",
+ "Abril",
+ "Mayo",
+ "Hunyo",
+ "Hulyo",
+ "Agosto",
+ "Setyembre",
+ "Oktubre",
+ "Nobyembre",
+ "Disyembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fil.js b/src/ngLocale/angular-locale_fil.js
index 5cded550bdd0..ccaf1b728c3a 100644
--- a/src/ngLocale/angular-locale_fil.js
+++ b/src/ngLocale/angular-locale_fil.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nob",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Pebrero",
+ "Marso",
+ "Abril",
+ "Mayo",
+ "Hunyo",
+ "Hulyo",
+ "Agosto",
+ "Setyembre",
+ "Oktubre",
+ "Nobyembre",
+ "Disyembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fo-fo.js b/src/ngLocale/angular-locale_fo-fo.js
index a861d8c3bda9..d78eb41ad4ce 100644
--- a/src/ngLocale/angular-locale_fo-fo.js
+++ b/src/ngLocale/angular-locale_fo-fo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"des"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "apr\u00edl",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fo.js b/src/ngLocale/angular-locale_fo.js
index aa33cd323107..9848c047d68d 100644
--- a/src/ngLocale/angular-locale_fo.js
+++ b/src/ngLocale/angular-locale_fo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"des"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "apr\u00edl",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-be.js b/src/ngLocale/angular-locale_fr-be.js
index acec9a42545c..5987be7d5fb8 100644
--- a/src/ngLocale/angular-locale_fr-be.js
+++ b/src/ngLocale/angular-locale_fr-be.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-bf.js b/src/ngLocale/angular-locale_fr-bf.js
index bd30d5500301..8103fe715cf5 100644
--- a/src/ngLocale/angular-locale_fr-bf.js
+++ b/src/ngLocale/angular-locale_fr-bf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-bi.js b/src/ngLocale/angular-locale_fr-bi.js
index 39d3b329b628..55feea98d854 100644
--- a/src/ngLocale/angular-locale_fr-bi.js
+++ b/src/ngLocale/angular-locale_fr-bi.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-bj.js b/src/ngLocale/angular-locale_fr-bj.js
index 6753f0203fde..021f64c5b856 100644
--- a/src/ngLocale/angular-locale_fr-bj.js
+++ b/src/ngLocale/angular-locale_fr-bj.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-bl.js b/src/ngLocale/angular-locale_fr-bl.js
index 2f15f5a32409..aa3f191e1e31 100644
--- a/src/ngLocale/angular-locale_fr-bl.js
+++ b/src/ngLocale/angular-locale_fr-bl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ca.js b/src/ngLocale/angular-locale_fr-ca.js
index 6f5f703bce80..4f67be324e9b 100644
--- a/src/ngLocale/angular-locale_fr-ca.js
+++ b/src/ngLocale/angular-locale_fr-ca.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "janvier",
+ "f\u00e9vrier",
+ "mars",
+ "avril",
+ "mai",
+ "juin",
+ "juillet",
+ "ao\u00fbt",
+ "septembre",
+ "octobre",
+ "novembre",
+ "d\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-cd.js b/src/ngLocale/angular-locale_fr-cd.js
index 1e1d1cc3dc89..365bb24e7bd4 100644
--- a/src/ngLocale/angular-locale_fr-cd.js
+++ b/src/ngLocale/angular-locale_fr-cd.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-cf.js b/src/ngLocale/angular-locale_fr-cf.js
index bf60553820ae..42a0d3037422 100644
--- a/src/ngLocale/angular-locale_fr-cf.js
+++ b/src/ngLocale/angular-locale_fr-cf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-cg.js b/src/ngLocale/angular-locale_fr-cg.js
index c4417732b979..94d974025157 100644
--- a/src/ngLocale/angular-locale_fr-cg.js
+++ b/src/ngLocale/angular-locale_fr-cg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ch.js b/src/ngLocale/angular-locale_fr-ch.js
index e69d2fe3c8fc..760aa7179f2a 100644
--- a/src/ngLocale/angular-locale_fr-ch.js
+++ b/src/ngLocale/angular-locale_fr-ch.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ci.js b/src/ngLocale/angular-locale_fr-ci.js
index 2954b10386ee..f0b365beae74 100644
--- a/src/ngLocale/angular-locale_fr-ci.js
+++ b/src/ngLocale/angular-locale_fr-ci.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-cm.js b/src/ngLocale/angular-locale_fr-cm.js
index d8f03d2e0042..36cb07816c96 100644
--- a/src/ngLocale/angular-locale_fr-cm.js
+++ b/src/ngLocale/angular-locale_fr-cm.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-dj.js b/src/ngLocale/angular-locale_fr-dj.js
index 9c850c2989eb..4b89de489087 100644
--- a/src/ngLocale/angular-locale_fr-dj.js
+++ b/src/ngLocale/angular-locale_fr-dj.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-dz.js b/src/ngLocale/angular-locale_fr-dz.js
index ae1e1c67525e..36c55e8f3627 100644
--- a/src/ngLocale/angular-locale_fr-dz.js
+++ b/src/ngLocale/angular-locale_fr-dz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_fr-fr.js b/src/ngLocale/angular-locale_fr-fr.js
index bdef4eff377e..745a956bb3f8 100644
--- a/src/ngLocale/angular-locale_fr-fr.js
+++ b/src/ngLocale/angular-locale_fr-fr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ga.js b/src/ngLocale/angular-locale_fr-ga.js
index 6268c7775ef2..e40838a72ea7 100644
--- a/src/ngLocale/angular-locale_fr-ga.js
+++ b/src/ngLocale/angular-locale_fr-ga.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-gf.js b/src/ngLocale/angular-locale_fr-gf.js
index a7d37a0ff71c..293c4615f4e6 100644
--- a/src/ngLocale/angular-locale_fr-gf.js
+++ b/src/ngLocale/angular-locale_fr-gf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-gn.js b/src/ngLocale/angular-locale_fr-gn.js
index 34f4b1010be9..754a4bed273c 100644
--- a/src/ngLocale/angular-locale_fr-gn.js
+++ b/src/ngLocale/angular-locale_fr-gn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-gp.js b/src/ngLocale/angular-locale_fr-gp.js
index 9db67089d86c..2225a96f0d5a 100644
--- a/src/ngLocale/angular-locale_fr-gp.js
+++ b/src/ngLocale/angular-locale_fr-gp.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-gq.js b/src/ngLocale/angular-locale_fr-gq.js
index 02bbba29455c..e08042e70eb3 100644
--- a/src/ngLocale/angular-locale_fr-gq.js
+++ b/src/ngLocale/angular-locale_fr-gq.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ht.js b/src/ngLocale/angular-locale_fr-ht.js
index 116e0da63770..46c3c880d7ef 100644
--- a/src/ngLocale/angular-locale_fr-ht.js
+++ b/src/ngLocale/angular-locale_fr-ht.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-km.js b/src/ngLocale/angular-locale_fr-km.js
index e178c7f3d9c0..f070814fd3a3 100644
--- a/src/ngLocale/angular-locale_fr-km.js
+++ b/src/ngLocale/angular-locale_fr-km.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-lu.js b/src/ngLocale/angular-locale_fr-lu.js
index bb2362772dc3..0e9706f0b459 100644
--- a/src/ngLocale/angular-locale_fr-lu.js
+++ b/src/ngLocale/angular-locale_fr-lu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ma.js b/src/ngLocale/angular-locale_fr-ma.js
index 92edf74b5f28..c6a49495943f 100644
--- a/src/ngLocale/angular-locale_fr-ma.js
+++ b/src/ngLocale/angular-locale_fr-ma.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_fr-mc.js b/src/ngLocale/angular-locale_fr-mc.js
index 85e0233e9bba..3ccac7c90cc5 100644
--- a/src/ngLocale/angular-locale_fr-mc.js
+++ b/src/ngLocale/angular-locale_fr-mc.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-mf.js b/src/ngLocale/angular-locale_fr-mf.js
index 2abced5c24d4..2e8bad8eab24 100644
--- a/src/ngLocale/angular-locale_fr-mf.js
+++ b/src/ngLocale/angular-locale_fr-mf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-mg.js b/src/ngLocale/angular-locale_fr-mg.js
index 02d274787243..917809152f26 100644
--- a/src/ngLocale/angular-locale_fr-mg.js
+++ b/src/ngLocale/angular-locale_fr-mg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ml.js b/src/ngLocale/angular-locale_fr-ml.js
index e4549e2b0d8c..6286a6a691b9 100644
--- a/src/ngLocale/angular-locale_fr-ml.js
+++ b/src/ngLocale/angular-locale_fr-ml.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-mq.js b/src/ngLocale/angular-locale_fr-mq.js
index 3973b32e3a5c..d52eb5aab098 100644
--- a/src/ngLocale/angular-locale_fr-mq.js
+++ b/src/ngLocale/angular-locale_fr-mq.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-mr.js b/src/ngLocale/angular-locale_fr-mr.js
index 5b993c6dcfcf..2239bb6282d8 100644
--- a/src/ngLocale/angular-locale_fr-mr.js
+++ b/src/ngLocale/angular-locale_fr-mr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-mu.js b/src/ngLocale/angular-locale_fr-mu.js
index 7b09bd2ead01..2f7098cb175c 100644
--- a/src/ngLocale/angular-locale_fr-mu.js
+++ b/src/ngLocale/angular-locale_fr-mu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-nc.js b/src/ngLocale/angular-locale_fr-nc.js
index a0694a9fd723..2e8a78a23fc5 100644
--- a/src/ngLocale/angular-locale_fr-nc.js
+++ b/src/ngLocale/angular-locale_fr-nc.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-ne.js b/src/ngLocale/angular-locale_fr-ne.js
index 7fd048212323..58b5be2718f8 100644
--- a/src/ngLocale/angular-locale_fr-ne.js
+++ b/src/ngLocale/angular-locale_fr-ne.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-pf.js b/src/ngLocale/angular-locale_fr-pf.js
index d5d023a330f0..31dbe931a3cb 100644
--- a/src/ngLocale/angular-locale_fr-pf.js
+++ b/src/ngLocale/angular-locale_fr-pf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-pm.js b/src/ngLocale/angular-locale_fr-pm.js
index 2ed15ec99554..1eed8394ff32 100644
--- a/src/ngLocale/angular-locale_fr-pm.js
+++ b/src/ngLocale/angular-locale_fr-pm.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-re.js b/src/ngLocale/angular-locale_fr-re.js
index 1c1e849ea7d9..e41f73f5e1f4 100644
--- a/src/ngLocale/angular-locale_fr-re.js
+++ b/src/ngLocale/angular-locale_fr-re.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-rw.js b/src/ngLocale/angular-locale_fr-rw.js
index 8966b7a8ce83..51efd851aef1 100644
--- a/src/ngLocale/angular-locale_fr-rw.js
+++ b/src/ngLocale/angular-locale_fr-rw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-sc.js b/src/ngLocale/angular-locale_fr-sc.js
index 80410913af43..8d111d75ed05 100644
--- a/src/ngLocale/angular-locale_fr-sc.js
+++ b/src/ngLocale/angular-locale_fr-sc.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-sn.js b/src/ngLocale/angular-locale_fr-sn.js
index 100a1025a466..8e16b66772c4 100644
--- a/src/ngLocale/angular-locale_fr-sn.js
+++ b/src/ngLocale/angular-locale_fr-sn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-sy.js b/src/ngLocale/angular-locale_fr-sy.js
index 8bcfaf1a1751..6d17286d81ef 100644
--- a/src/ngLocale/angular-locale_fr-sy.js
+++ b/src/ngLocale/angular-locale_fr-sy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_fr-td.js b/src/ngLocale/angular-locale_fr-td.js
index 2341ef760a1f..5894a24ea1d0 100644
--- a/src/ngLocale/angular-locale_fr-td.js
+++ b/src/ngLocale/angular-locale_fr-td.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-tg.js b/src/ngLocale/angular-locale_fr-tg.js
index a7c21313171d..4465cba188c6 100644
--- a/src/ngLocale/angular-locale_fr-tg.js
+++ b/src/ngLocale/angular-locale_fr-tg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-tn.js b/src/ngLocale/angular-locale_fr-tn.js
index 14a31151a3cf..8734028c9b7a 100644
--- a/src/ngLocale/angular-locale_fr-tn.js
+++ b/src/ngLocale/angular-locale_fr-tn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_fr-vu.js b/src/ngLocale/angular-locale_fr-vu.js
index d23d528c6c27..4c1115f1202e 100644
--- a/src/ngLocale/angular-locale_fr-vu.js
+++ b/src/ngLocale/angular-locale_fr-vu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-wf.js b/src/ngLocale/angular-locale_fr-wf.js
index bf5a357bbb9d..0be4ba0d71b4 100644
--- a/src/ngLocale/angular-locale_fr-wf.js
+++ b/src/ngLocale/angular-locale_fr-wf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr-yt.js b/src/ngLocale/angular-locale_fr-yt.js
index 265a0324f30d..71ba7730a3dd 100644
--- a/src/ngLocale/angular-locale_fr-yt.js
+++ b/src/ngLocale/angular-locale_fr-yt.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fr.js b/src/ngLocale/angular-locale_fr.js
index f4d89ba2a502..3a8210755535 100644
--- a/src/ngLocale/angular-locale_fr.js
+++ b/src/ngLocale/angular-locale_fr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"d\u00e9c."
],
+ "STANDALONEMONTH": [
+ "Janvier",
+ "F\u00e9vrier",
+ "Mars",
+ "Avril",
+ "Mai",
+ "Juin",
+ "Juillet",
+ "Ao\u00fbt",
+ "Septembre",
+ "Octobre",
+ "Novembre",
+ "D\u00e9cembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fur-it.js b/src/ngLocale/angular-locale_fur-it.js
index 8f1e80b91355..50c2beb6a9be 100644
--- a/src/ngLocale/angular-locale_fur-it.js
+++ b/src/ngLocale/angular-locale_fur-it.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dic"
],
+ "STANDALONEMONTH": [
+ "Zen\u00e2r",
+ "Fevr\u00e2r",
+ "Mar\u00e7",
+ "Avr\u00eel",
+ "Mai",
+ "Jugn",
+ "Lui",
+ "Avost",
+ "Setembar",
+ "Otubar",
+ "Novembar",
+ "Dicembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fur.js b/src/ngLocale/angular-locale_fur.js
index ccb733004f8e..021c790940fe 100644
--- a/src/ngLocale/angular-locale_fur.js
+++ b/src/ngLocale/angular-locale_fur.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dic"
],
+ "STANDALONEMONTH": [
+ "Zen\u00e2r",
+ "Fevr\u00e2r",
+ "Mar\u00e7",
+ "Avr\u00eel",
+ "Mai",
+ "Jugn",
+ "Lui",
+ "Avost",
+ "Setembar",
+ "Otubar",
+ "Novembar",
+ "Dicembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fy-nl.js b/src/ngLocale/angular-locale_fy-nl.js
index 234e983b78f2..acec2bb8bba4 100644
--- a/src/ngLocale/angular-locale_fy-nl.js
+++ b/src/ngLocale/angular-locale_fy-nl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "jannewaris",
+ "febrewaris",
+ "maart",
+ "april",
+ "maaie",
+ "juny",
+ "july",
+ "augustus",
+ "septimber",
+ "oktober",
+ "novimber",
+ "desimber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_fy.js b/src/ngLocale/angular-locale_fy.js
index 6bf7ba6b0a7b..fdd59af50ff5 100644
--- a/src/ngLocale/angular-locale_fy.js
+++ b/src/ngLocale/angular-locale_fy.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "jannewaris",
+ "febrewaris",
+ "maart",
+ "april",
+ "maaie",
+ "juny",
+ "july",
+ "augustus",
+ "septimber",
+ "oktober",
+ "novimber",
+ "desimber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ga-ie.js b/src/ngLocale/angular-locale_ga-ie.js
index 5740a197d82d..6fddcc218ede 100644
--- a/src/ngLocale/angular-locale_ga-ie.js
+++ b/src/ngLocale/angular-locale_ga-ie.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Samh",
"Noll"
],
+ "STANDALONEMONTH": [
+ "Ean\u00e1ir",
+ "Feabhra",
+ "M\u00e1rta",
+ "Aibre\u00e1n",
+ "Bealtaine",
+ "Meitheamh",
+ "I\u00fail",
+ "L\u00fanasa",
+ "Me\u00e1n F\u00f3mhair",
+ "Deireadh F\u00f3mhair",
+ "Samhain",
+ "Nollaig"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ga.js b/src/ngLocale/angular-locale_ga.js
index 76f0d145e67b..874903572ece 100644
--- a/src/ngLocale/angular-locale_ga.js
+++ b/src/ngLocale/angular-locale_ga.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Samh",
"Noll"
],
+ "STANDALONEMONTH": [
+ "Ean\u00e1ir",
+ "Feabhra",
+ "M\u00e1rta",
+ "Aibre\u00e1n",
+ "Bealtaine",
+ "Meitheamh",
+ "I\u00fail",
+ "L\u00fanasa",
+ "Me\u00e1n F\u00f3mhair",
+ "Deireadh F\u00f3mhair",
+ "Samhain",
+ "Nollaig"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gd-gb.js b/src/ngLocale/angular-locale_gd-gb.js
index c245bc5d78da..110a04a31fad 100644
--- a/src/ngLocale/angular-locale_gd-gb.js
+++ b/src/ngLocale/angular-locale_gd-gb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Samh",
"D\u00f9bh"
],
+ "STANDALONEMONTH": [
+ "Am Faoilleach",
+ "An Gearran",
+ "Am M\u00e0rt",
+ "An Giblean",
+ "An C\u00e8itean",
+ "An t-\u00d2gmhios",
+ "An t-Iuchar",
+ "An L\u00f9nastal",
+ "An t-Sultain",
+ "An D\u00e0mhair",
+ "An t-Samhain",
+ "An D\u00f9bhlachd"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gd.js b/src/ngLocale/angular-locale_gd.js
index 9fe0c4d80f06..c699c252fcc8 100644
--- a/src/ngLocale/angular-locale_gd.js
+++ b/src/ngLocale/angular-locale_gd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Samh",
"D\u00f9bh"
],
+ "STANDALONEMONTH": [
+ "Am Faoilleach",
+ "An Gearran",
+ "Am M\u00e0rt",
+ "An Giblean",
+ "An C\u00e8itean",
+ "An t-\u00d2gmhios",
+ "An t-Iuchar",
+ "An L\u00f9nastal",
+ "An t-Sultain",
+ "An D\u00e0mhair",
+ "An t-Samhain",
+ "An D\u00f9bhlachd"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gl-es.js b/src/ngLocale/angular-locale_gl-es.js
index fff9928c8f18..4369b4054123 100644
--- a/src/ngLocale/angular-locale_gl-es.js
+++ b/src/ngLocale/angular-locale_gl-es.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "Xaneiro",
+ "Febreiro",
+ "Marzo",
+ "Abril",
+ "Maio",
+ "Xu\u00f1o",
+ "Xullo",
+ "Agosto",
+ "Setembro",
+ "Outubro",
+ "Novembro",
+ "Decembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gl.js b/src/ngLocale/angular-locale_gl.js
index 9223c2769f10..5adb5ffd0979 100644
--- a/src/ngLocale/angular-locale_gl.js
+++ b/src/ngLocale/angular-locale_gl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "Xaneiro",
+ "Febreiro",
+ "Marzo",
+ "Abril",
+ "Maio",
+ "Xu\u00f1o",
+ "Xullo",
+ "Agosto",
+ "Setembro",
+ "Outubro",
+ "Novembro",
+ "Decembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gsw-ch.js b/src/ngLocale/angular-locale_gsw-ch.js
index 54278de0ac70..b102ac3abe5a 100644
--- a/src/ngLocale/angular-locale_gsw-ch.js
+++ b/src/ngLocale/angular-locale_gsw-ch.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dez"
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "Auguscht",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gsw-fr.js b/src/ngLocale/angular-locale_gsw-fr.js
index 979ced7a77e4..d7cdad767f87 100644
--- a/src/ngLocale/angular-locale_gsw-fr.js
+++ b/src/ngLocale/angular-locale_gsw-fr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dez"
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "Auguscht",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gsw-li.js b/src/ngLocale/angular-locale_gsw-li.js
index c1a5aebcfb76..4ecc5d239aa5 100644
--- a/src/ngLocale/angular-locale_gsw-li.js
+++ b/src/ngLocale/angular-locale_gsw-li.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dez"
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "Auguscht",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gsw.js b/src/ngLocale/angular-locale_gsw.js
index 93ef2cd09ac0..80587f8c3e81 100644
--- a/src/ngLocale/angular-locale_gsw.js
+++ b/src/ngLocale/angular-locale_gsw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dez"
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "Auguscht",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gu-in.js b/src/ngLocale/angular-locale_gu-in.js
index db7daba84954..9f9573bb848f 100644
--- a/src/ngLocale/angular-locale_gu-in.js
+++ b/src/ngLocale/angular-locale_gu-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0aa8\u0ab5\u0ac7",
"\u0aa1\u0abf\u0ab8\u0ac7"
],
+ "STANDALONEMONTH": [
+ "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0",
+ "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0",
+ "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
+ "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
+ "\u0aae\u0ac7",
+ "\u0a9c\u0ac2\u0aa8",
+ "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
+ "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0",
+ "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_gu.js b/src/ngLocale/angular-locale_gu.js
index a66e2b549fa9..4040e619ae3f 100644
--- a/src/ngLocale/angular-locale_gu.js
+++ b/src/ngLocale/angular-locale_gu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0aa8\u0ab5\u0ac7",
"\u0aa1\u0abf\u0ab8\u0ac7"
],
+ "STANDALONEMONTH": [
+ "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0",
+ "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0",
+ "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
+ "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
+ "\u0aae\u0ac7",
+ "\u0a9c\u0ac2\u0aa8",
+ "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
+ "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0",
+ "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_guz-ke.js b/src/ngLocale/angular-locale_guz-ke.js
index 675efe9537bf..229a20b45d16 100644
--- a/src/ngLocale/angular-locale_guz-ke.js
+++ b/src/ngLocale/angular-locale_guz-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nob",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Chanuari",
+ "Feburari",
+ "Machi",
+ "Apiriri",
+ "Mei",
+ "Juni",
+ "Chulai",
+ "Agosti",
+ "Septemba",
+ "Okitoba",
+ "Nobemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_guz.js b/src/ngLocale/angular-locale_guz.js
index 9ce1ce3f1a75..29bb03b85379 100644
--- a/src/ngLocale/angular-locale_guz.js
+++ b/src/ngLocale/angular-locale_guz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nob",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Chanuari",
+ "Feburari",
+ "Machi",
+ "Apiriri",
+ "Mei",
+ "Juni",
+ "Chulai",
+ "Agosti",
+ "Septemba",
+ "Okitoba",
+ "Nobemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gv-im.js b/src/ngLocale/angular-locale_gv-im.js
index aca51df15c8b..e93bb558b5cc 100644
--- a/src/ngLocale/angular-locale_gv-im.js
+++ b/src/ngLocale/angular-locale_gv-im.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"M.Houney",
"M.Nollick"
],
+ "STANDALONEMONTH": [
+ "Jerrey-geuree",
+ "Toshiaght-arree",
+ "Mayrnt",
+ "Averil",
+ "Boaldyn",
+ "Mean-souree",
+ "Jerrey-souree",
+ "Luanistyn",
+ "Mean-fouyir",
+ "Jerrey-fouyir",
+ "Mee Houney",
+ "Mee ny Nollick"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_gv.js b/src/ngLocale/angular-locale_gv.js
index 0f99b6a475e3..64ca090d2628 100644
--- a/src/ngLocale/angular-locale_gv.js
+++ b/src/ngLocale/angular-locale_gv.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"M.Houney",
"M.Nollick"
],
+ "STANDALONEMONTH": [
+ "Jerrey-geuree",
+ "Toshiaght-arree",
+ "Mayrnt",
+ "Averil",
+ "Boaldyn",
+ "Mean-souree",
+ "Jerrey-souree",
+ "Luanistyn",
+ "Mean-fouyir",
+ "Jerrey-fouyir",
+ "Mee Houney",
+ "Mee ny Nollick"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ha-latn-gh.js b/src/ngLocale/angular-locale_ha-latn-gh.js
index c5209311eb44..25339eed2b2b 100644
--- a/src/ngLocale/angular-locale_ha-latn-gh.js
+++ b/src/ngLocale/angular-locale_ha-latn-gh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuw",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Janairu",
+ "Faburairu",
+ "Maris",
+ "Afirilu",
+ "Mayu",
+ "Yuni",
+ "Yuli",
+ "Agusta",
+ "Satumba",
+ "Oktoba",
+ "Nuwamba",
+ "Disamba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ha-latn-ne.js b/src/ngLocale/angular-locale_ha-latn-ne.js
index f4b280c5b738..64e90e84bfe0 100644
--- a/src/ngLocale/angular-locale_ha-latn-ne.js
+++ b/src/ngLocale/angular-locale_ha-latn-ne.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuw",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Janairu",
+ "Faburairu",
+ "Maris",
+ "Afirilu",
+ "Mayu",
+ "Yuni",
+ "Yuli",
+ "Agusta",
+ "Satumba",
+ "Oktoba",
+ "Nuwamba",
+ "Disamba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ha-latn-ng.js b/src/ngLocale/angular-locale_ha-latn-ng.js
index 81af53ebf344..d78f8c6e1a9b 100644
--- a/src/ngLocale/angular-locale_ha-latn-ng.js
+++ b/src/ngLocale/angular-locale_ha-latn-ng.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuw",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Janairu",
+ "Faburairu",
+ "Maris",
+ "Afirilu",
+ "Mayu",
+ "Yuni",
+ "Yuli",
+ "Agusta",
+ "Satumba",
+ "Oktoba",
+ "Nuwamba",
+ "Disamba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ha-latn.js b/src/ngLocale/angular-locale_ha-latn.js
index 615939cd89f1..13140e67f431 100644
--- a/src/ngLocale/angular-locale_ha-latn.js
+++ b/src/ngLocale/angular-locale_ha-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuw",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Janairu",
+ "Faburairu",
+ "Maris",
+ "Afirilu",
+ "Mayu",
+ "Yuni",
+ "Yuli",
+ "Agusta",
+ "Satumba",
+ "Oktoba",
+ "Nuwamba",
+ "Disamba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ha.js b/src/ngLocale/angular-locale_ha.js
index 0f36507e6a0f..92c83e3f521b 100644
--- a/src/ngLocale/angular-locale_ha.js
+++ b/src/ngLocale/angular-locale_ha.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuw",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Janairu",
+ "Faburairu",
+ "Maris",
+ "Afirilu",
+ "Mayu",
+ "Yuni",
+ "Yuli",
+ "Agusta",
+ "Satumba",
+ "Oktoba",
+ "Nuwamba",
+ "Disamba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_haw-us.js b/src/ngLocale/angular-locale_haw-us.js
index 4091590e7aa9..8712114661e7 100644
--- a/src/ngLocale/angular-locale_haw-us.js
+++ b/src/ngLocale/angular-locale_haw-us.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Now.",
"Kek."
],
+ "STANDALONEMONTH": [
+ "Ianuali",
+ "Pepeluali",
+ "Malaki",
+ "\u02bbApelila",
+ "Mei",
+ "Iune",
+ "Iulai",
+ "\u02bbAukake",
+ "Kepakemapa",
+ "\u02bbOkakopa",
+ "Nowemapa",
+ "Kekemapa"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_haw.js b/src/ngLocale/angular-locale_haw.js
index a1253a4a9d59..4191fa741863 100644
--- a/src/ngLocale/angular-locale_haw.js
+++ b/src/ngLocale/angular-locale_haw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Now.",
"Kek."
],
+ "STANDALONEMONTH": [
+ "Ianuali",
+ "Pepeluali",
+ "Malaki",
+ "\u02bbApelila",
+ "Mei",
+ "Iune",
+ "Iulai",
+ "\u02bbAukake",
+ "Kepakemapa",
+ "\u02bbOkakopa",
+ "Nowemapa",
+ "Kekemapa"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_he-il.js b/src/ngLocale/angular-locale_he-il.js
index 7a05b986a7a1..471c2a2f4efa 100644
--- a/src/ngLocale/angular-locale_he-il.js
+++ b/src/ngLocale/angular-locale_he-il.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u05e0\u05d5\u05d1\u05f3",
"\u05d3\u05e6\u05de\u05f3"
],
+ "STANDALONEMONTH": [
+ "\u05d9\u05e0\u05d5\u05d0\u05e8",
+ "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
+ "\u05de\u05e8\u05e5",
+ "\u05d0\u05e4\u05e8\u05d9\u05dc",
+ "\u05de\u05d0\u05d9",
+ "\u05d9\u05d5\u05e0\u05d9",
+ "\u05d9\u05d5\u05dc\u05d9",
+ "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
+ "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
+ "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
+ "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
+ "\u05d3\u05e6\u05de\u05d1\u05e8"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_he.js b/src/ngLocale/angular-locale_he.js
index 2ef1d3c2c253..6e4d1063423e 100644
--- a/src/ngLocale/angular-locale_he.js
+++ b/src/ngLocale/angular-locale_he.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u05e0\u05d5\u05d1\u05f3",
"\u05d3\u05e6\u05de\u05f3"
],
+ "STANDALONEMONTH": [
+ "\u05d9\u05e0\u05d5\u05d0\u05e8",
+ "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
+ "\u05de\u05e8\u05e5",
+ "\u05d0\u05e4\u05e8\u05d9\u05dc",
+ "\u05de\u05d0\u05d9",
+ "\u05d9\u05d5\u05e0\u05d9",
+ "\u05d9\u05d5\u05dc\u05d9",
+ "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
+ "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
+ "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
+ "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
+ "\u05d3\u05e6\u05de\u05d1\u05e8"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_hi-in.js b/src/ngLocale/angular-locale_hi-in.js
index febae3995bbc..291d8a52a2ba 100644
--- a/src/ngLocale/angular-locale_hi-in.js
+++ b/src/ngLocale/angular-locale_hi-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u0935\u0970",
"\u0926\u093f\u0938\u0970"
],
+ "STANDALONEMONTH": [
+ "\u091c\u0928\u0935\u0930\u0940",
+ "\u092b\u093c\u0930\u0935\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u0905\u092a\u094d\u0930\u0948\u0932",
+ "\u092e\u0908",
+ "\u091c\u0942\u0928",
+ "\u091c\u0941\u0932\u093e\u0908",
+ "\u0905\u0917\u0938\u094d\u0924",
+ "\u0938\u093f\u0924\u0902\u092c\u0930",
+ "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
+ "\u0928\u0935\u0902\u092c\u0930",
+ "\u0926\u093f\u0938\u0902\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_hi.js b/src/ngLocale/angular-locale_hi.js
index e5c34123669f..69e07f3b19d7 100644
--- a/src/ngLocale/angular-locale_hi.js
+++ b/src/ngLocale/angular-locale_hi.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u0935\u0970",
"\u0926\u093f\u0938\u0970"
],
+ "STANDALONEMONTH": [
+ "\u091c\u0928\u0935\u0930\u0940",
+ "\u092b\u093c\u0930\u0935\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u0905\u092a\u094d\u0930\u0948\u0932",
+ "\u092e\u0908",
+ "\u091c\u0942\u0928",
+ "\u091c\u0941\u0932\u093e\u0908",
+ "\u0905\u0917\u0938\u094d\u0924",
+ "\u0938\u093f\u0924\u0902\u092c\u0930",
+ "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
+ "\u0928\u0935\u0902\u092c\u0930",
+ "\u0926\u093f\u0938\u0902\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_hr-ba.js b/src/ngLocale/angular-locale_hr-ba.js
index cb70c76e7415..501147dbb842 100644
--- a/src/ngLocale/angular-locale_hr-ba.js
+++ b/src/ngLocale/angular-locale_hr-ba.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"stu",
"pro"
],
+ "STANDALONEMONTH": [
+ "sije\u010danj",
+ "velja\u010da",
+ "o\u017eujak",
+ "travanj",
+ "svibanj",
+ "lipanj",
+ "srpanj",
+ "kolovoz",
+ "rujan",
+ "listopad",
+ "studeni",
+ "prosinac"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hr-hr.js b/src/ngLocale/angular-locale_hr-hr.js
index 248734f6b069..6a3a3ff3e1a5 100644
--- a/src/ngLocale/angular-locale_hr-hr.js
+++ b/src/ngLocale/angular-locale_hr-hr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"stu",
"pro"
],
+ "STANDALONEMONTH": [
+ "sije\u010danj",
+ "velja\u010da",
+ "o\u017eujak",
+ "travanj",
+ "svibanj",
+ "lipanj",
+ "srpanj",
+ "kolovoz",
+ "rujan",
+ "listopad",
+ "studeni",
+ "prosinac"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hr.js b/src/ngLocale/angular-locale_hr.js
index 4f6f1c140cf1..f52a8635939f 100644
--- a/src/ngLocale/angular-locale_hr.js
+++ b/src/ngLocale/angular-locale_hr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"stu",
"pro"
],
+ "STANDALONEMONTH": [
+ "sije\u010danj",
+ "velja\u010da",
+ "o\u017eujak",
+ "travanj",
+ "svibanj",
+ "lipanj",
+ "srpanj",
+ "kolovoz",
+ "rujan",
+ "listopad",
+ "studeni",
+ "prosinac"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hsb-de.js b/src/ngLocale/angular-locale_hsb-de.js
index f432ed9491c4..1c119bb343dc 100644
--- a/src/ngLocale/angular-locale_hsb-de.js
+++ b/src/ngLocale/angular-locale_hsb-de.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "m\u011brc",
+ "apryl",
+ "meja",
+ "junij",
+ "julij",
+ "awgust",
+ "september",
+ "oktober",
+ "nowember",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hsb.js b/src/ngLocale/angular-locale_hsb.js
index c11ebc7832e9..fd82f0e463a1 100644
--- a/src/ngLocale/angular-locale_hsb.js
+++ b/src/ngLocale/angular-locale_hsb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"now.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "m\u011brc",
+ "apryl",
+ "meja",
+ "junij",
+ "julij",
+ "awgust",
+ "september",
+ "oktober",
+ "nowember",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hu-hu.js b/src/ngLocale/angular-locale_hu-hu.js
index 10a3bbc518fe..eff9442469a0 100644
--- a/src/ngLocale/angular-locale_hu-hu.js
+++ b/src/ngLocale/angular-locale_hu-hu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "janu\u00e1r",
+ "febru\u00e1r",
+ "m\u00e1rcius",
+ "\u00e1prilis",
+ "m\u00e1jus",
+ "j\u00fanius",
+ "j\u00falius",
+ "augusztus",
+ "szeptember",
+ "okt\u00f3ber",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hu.js b/src/ngLocale/angular-locale_hu.js
index 1e61f045e215..97db7db6f1d7 100644
--- a/src/ngLocale/angular-locale_hu.js
+++ b/src/ngLocale/angular-locale_hu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "janu\u00e1r",
+ "febru\u00e1r",
+ "m\u00e1rcius",
+ "\u00e1prilis",
+ "m\u00e1jus",
+ "j\u00fanius",
+ "j\u00falius",
+ "augusztus",
+ "szeptember",
+ "okt\u00f3ber",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hy-am.js b/src/ngLocale/angular-locale_hy-am.js
index 17afd2763bd9..f7e9371cc6ea 100644
--- a/src/ngLocale/angular-locale_hy-am.js
+++ b/src/ngLocale/angular-locale_hy-am.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0576\u0578\u0575",
"\u0564\u0565\u056f"
],
+ "STANDALONEMONTH": [
+ "\u0570\u0578\u0582\u0576\u057e\u0561\u0580",
+ "\u0583\u0565\u057f\u0580\u057e\u0561\u0580",
+ "\u0574\u0561\u0580\u057f",
+ "\u0561\u057a\u0580\u056b\u056c",
+ "\u0574\u0561\u0575\u056b\u057d",
+ "\u0570\u0578\u0582\u0576\u056b\u057d",
+ "\u0570\u0578\u0582\u056c\u056b\u057d",
+ "\u0585\u0563\u0578\u057d\u057f\u0578\u057d",
+ "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580",
+ "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580",
+ "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580",
+ "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_hy.js b/src/ngLocale/angular-locale_hy.js
index c54fe770fdfc..5f8682e8c584 100644
--- a/src/ngLocale/angular-locale_hy.js
+++ b/src/ngLocale/angular-locale_hy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0576\u0578\u0575",
"\u0564\u0565\u056f"
],
+ "STANDALONEMONTH": [
+ "\u0570\u0578\u0582\u0576\u057e\u0561\u0580",
+ "\u0583\u0565\u057f\u0580\u057e\u0561\u0580",
+ "\u0574\u0561\u0580\u057f",
+ "\u0561\u057a\u0580\u056b\u056c",
+ "\u0574\u0561\u0575\u056b\u057d",
+ "\u0570\u0578\u0582\u0576\u056b\u057d",
+ "\u0570\u0578\u0582\u056c\u056b\u057d",
+ "\u0585\u0563\u0578\u057d\u057f\u0578\u057d",
+ "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580",
+ "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580",
+ "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580",
+ "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_id-id.js b/src/ngLocale/angular-locale_id-id.js
index 8324dce6cfa8..d58841e81092 100644
--- a/src/ngLocale/angular-locale_id-id.js
+++ b/src/ngLocale/angular-locale_id-id.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maret",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Agustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_id.js b/src/ngLocale/angular-locale_id.js
index b91f32dd5c76..da8bc785e8b1 100644
--- a/src/ngLocale/angular-locale_id.js
+++ b/src/ngLocale/angular-locale_id.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maret",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Agustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ig-ng.js b/src/ngLocale/angular-locale_ig-ng.js
index 0515635b35e2..758d791dc1af 100644
--- a/src/ngLocale/angular-locale_ig-ng.js
+++ b/src/ngLocale/angular-locale_ig-ng.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Jen\u1ee5war\u1ecb",
+ "Febr\u1ee5war\u1ecb",
+ "Maach\u1ecb",
+ "Eprel",
+ "Mee",
+ "Juun",
+ "Jula\u1ecb",
+ "\u1eccg\u1ecd\u1ecdst",
+ "Septemba",
+ "\u1eccktoba",
+ "Novemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ig.js b/src/ngLocale/angular-locale_ig.js
index 2c9cfe40060f..e126c753df9a 100644
--- a/src/ngLocale/angular-locale_ig.js
+++ b/src/ngLocale/angular-locale_ig.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Jen\u1ee5war\u1ecb",
+ "Febr\u1ee5war\u1ecb",
+ "Maach\u1ecb",
+ "Eprel",
+ "Mee",
+ "Juun",
+ "Jula\u1ecb",
+ "\u1eccg\u1ecd\u1ecdst",
+ "Septemba",
+ "\u1eccktoba",
+ "Novemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ii-cn.js b/src/ngLocale/angular-locale_ii-cn.js
index 5cddd2021c72..9ff0ede251f2 100644
--- a/src/ngLocale/angular-locale_ii-cn.js
+++ b/src/ngLocale/angular-locale_ii-cn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"11",
"12"
],
+ "STANDALONEMONTH": [
+ "\ua2cd\ua1aa",
+ "\ua44d\ua1aa",
+ "\ua315\ua1aa",
+ "\ua1d6\ua1aa",
+ "\ua26c\ua1aa",
+ "\ua0d8\ua1aa",
+ "\ua3c3\ua1aa",
+ "\ua246\ua1aa",
+ "\ua22c\ua1aa",
+ "\ua2b0\ua1aa",
+ "\ua2b0\ua2aa\ua1aa",
+ "\ua2b0\ua44b\ua1aa"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ii.js b/src/ngLocale/angular-locale_ii.js
index 2b4f22f87b5c..b9440d60f093 100644
--- a/src/ngLocale/angular-locale_ii.js
+++ b/src/ngLocale/angular-locale_ii.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"11",
"12"
],
+ "STANDALONEMONTH": [
+ "\ua2cd\ua1aa",
+ "\ua44d\ua1aa",
+ "\ua315\ua1aa",
+ "\ua1d6\ua1aa",
+ "\ua26c\ua1aa",
+ "\ua0d8\ua1aa",
+ "\ua3c3\ua1aa",
+ "\ua246\ua1aa",
+ "\ua22c\ua1aa",
+ "\ua2b0\ua1aa",
+ "\ua2b0\ua2aa\ua1aa",
+ "\ua2b0\ua44b\ua1aa"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_in.js b/src/ngLocale/angular-locale_in.js
index f9d523aee674..ff0eefedb9dc 100644
--- a/src/ngLocale/angular-locale_in.js
+++ b/src/ngLocale/angular-locale_in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maret",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Agustus",
+ "September",
+ "Oktober",
+ "November",
+ "Desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_is-is.js b/src/ngLocale/angular-locale_is-is.js
index b38bd19fe2df..cb7c17dc0ee7 100644
--- a/src/ngLocale/angular-locale_is-is.js
+++ b/src/ngLocale/angular-locale_is-is.js
@@ -93,6 +93,20 @@ $provide.value("$locale", {
"n\u00f3v.",
"des."
],
+ "STANDALONEMONTH": [
+ "jan\u00faar",
+ "febr\u00faar",
+ "mars",
+ "apr\u00edl",
+ "ma\u00ed",
+ "j\u00fan\u00ed",
+ "j\u00fal\u00ed",
+ "\u00e1g\u00fast",
+ "september",
+ "okt\u00f3ber",
+ "n\u00f3vember",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_is.js b/src/ngLocale/angular-locale_is.js
index 5b3ad4313a56..01187493cf13 100644
--- a/src/ngLocale/angular-locale_is.js
+++ b/src/ngLocale/angular-locale_is.js
@@ -93,6 +93,20 @@ $provide.value("$locale", {
"n\u00f3v.",
"des."
],
+ "STANDALONEMONTH": [
+ "jan\u00faar",
+ "febr\u00faar",
+ "mars",
+ "apr\u00edl",
+ "ma\u00ed",
+ "j\u00fan\u00ed",
+ "j\u00fal\u00ed",
+ "\u00e1g\u00fast",
+ "september",
+ "okt\u00f3ber",
+ "n\u00f3vember",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_it-ch.js b/src/ngLocale/angular-locale_it-ch.js
index 1adbbe48eeb3..415f16a5c68c 100644
--- a/src/ngLocale/angular-locale_it-ch.js
+++ b/src/ngLocale/angular-locale_it-ch.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dic"
],
+ "STANDALONEMONTH": [
+ "Gennaio",
+ "Febbraio",
+ "Marzo",
+ "Aprile",
+ "Maggio",
+ "Giugno",
+ "Luglio",
+ "Agosto",
+ "Settembre",
+ "Ottobre",
+ "Novembre",
+ "Dicembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_it-it.js b/src/ngLocale/angular-locale_it-it.js
index f02cc459f1b8..0b9386992ee8 100644
--- a/src/ngLocale/angular-locale_it-it.js
+++ b/src/ngLocale/angular-locale_it-it.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dic"
],
+ "STANDALONEMONTH": [
+ "Gennaio",
+ "Febbraio",
+ "Marzo",
+ "Aprile",
+ "Maggio",
+ "Giugno",
+ "Luglio",
+ "Agosto",
+ "Settembre",
+ "Ottobre",
+ "Novembre",
+ "Dicembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_it-sm.js b/src/ngLocale/angular-locale_it-sm.js
index 5ee2ce18efd3..a56bacfde995 100644
--- a/src/ngLocale/angular-locale_it-sm.js
+++ b/src/ngLocale/angular-locale_it-sm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dic"
],
+ "STANDALONEMONTH": [
+ "Gennaio",
+ "Febbraio",
+ "Marzo",
+ "Aprile",
+ "Maggio",
+ "Giugno",
+ "Luglio",
+ "Agosto",
+ "Settembre",
+ "Ottobre",
+ "Novembre",
+ "Dicembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_it.js b/src/ngLocale/angular-locale_it.js
index b4b5e4e590e6..6b1a78e5d837 100644
--- a/src/ngLocale/angular-locale_it.js
+++ b/src/ngLocale/angular-locale_it.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dic"
],
+ "STANDALONEMONTH": [
+ "Gennaio",
+ "Febbraio",
+ "Marzo",
+ "Aprile",
+ "Maggio",
+ "Giugno",
+ "Luglio",
+ "Agosto",
+ "Settembre",
+ "Ottobre",
+ "Novembre",
+ "Dicembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_iw.js b/src/ngLocale/angular-locale_iw.js
index 02622c14cbb0..a6de60881886 100644
--- a/src/ngLocale/angular-locale_iw.js
+++ b/src/ngLocale/angular-locale_iw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u05e0\u05d5\u05d1\u05f3",
"\u05d3\u05e6\u05de\u05f3"
],
+ "STANDALONEMONTH": [
+ "\u05d9\u05e0\u05d5\u05d0\u05e8",
+ "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
+ "\u05de\u05e8\u05e5",
+ "\u05d0\u05e4\u05e8\u05d9\u05dc",
+ "\u05de\u05d0\u05d9",
+ "\u05d9\u05d5\u05e0\u05d9",
+ "\u05d9\u05d5\u05dc\u05d9",
+ "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
+ "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
+ "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
+ "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
+ "\u05d3\u05e6\u05de\u05d1\u05e8"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ja-jp.js b/src/ngLocale/angular-locale_ja-jp.js
index 78cd06948eb4..f93a71587e72 100644
--- a/src/ngLocale/angular-locale_ja-jp.js
+++ b/src/ngLocale/angular-locale_ja-jp.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ja.js b/src/ngLocale/angular-locale_ja.js
index 0011b5cc3337..3e9306ccf0b5 100644
--- a/src/ngLocale/angular-locale_ja.js
+++ b/src/ngLocale/angular-locale_ja.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_jgo-cm.js b/src/ngLocale/angular-locale_jgo-cm.js
index ae05a5a7efce..c8269e7b2d39 100644
--- a/src/ngLocale/angular-locale_jgo-cm.js
+++ b/src/ngLocale/angular-locale_jgo-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301",
"P\u025bsa\u014b Nts\u0254\u030cpp\u00e1"
],
+ "STANDALONEMONTH": [
+ "Ndu\u014bmbi Sa\u014b",
+ "P\u025bsa\u014b P\u025b\u0301p\u00e1",
+ "P\u025bsa\u014b P\u025b\u0301t\u00e1t",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301kwa",
+ "P\u025bsa\u014b Pataa",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301nt\u00fak\u00fa",
+ "P\u025bsa\u014b Saamb\u00e1",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301f\u0254m",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301pf\u00fa\ua78b\u00fa",
+ "P\u025bsa\u014b N\u025bg\u025b\u0301m",
+ "P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301",
+ "P\u025bsa\u014b Nts\u0254\u030cpp\u00e1"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_jgo.js b/src/ngLocale/angular-locale_jgo.js
index f27c22c3836f..c079125bd918 100644
--- a/src/ngLocale/angular-locale_jgo.js
+++ b/src/ngLocale/angular-locale_jgo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301",
"P\u025bsa\u014b Nts\u0254\u030cpp\u00e1"
],
+ "STANDALONEMONTH": [
+ "Ndu\u014bmbi Sa\u014b",
+ "P\u025bsa\u014b P\u025b\u0301p\u00e1",
+ "P\u025bsa\u014b P\u025b\u0301t\u00e1t",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301kwa",
+ "P\u025bsa\u014b Pataa",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301nt\u00fak\u00fa",
+ "P\u025bsa\u014b Saamb\u00e1",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301f\u0254m",
+ "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301pf\u00fa\ua78b\u00fa",
+ "P\u025bsa\u014b N\u025bg\u025b\u0301m",
+ "P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301",
+ "P\u025bsa\u014b Nts\u0254\u030cpp\u00e1"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_jmc-tz.js b/src/ngLocale/angular-locale_jmc-tz.js
index 8eff91dfe0c8..61ebbcadb89c 100644
--- a/src/ngLocale/angular-locale_jmc-tz.js
+++ b/src/ngLocale/angular-locale_jmc-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprilyi",
+ "Mei",
+ "Junyi",
+ "Julyai",
+ "Agusti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_jmc.js b/src/ngLocale/angular-locale_jmc.js
index dd754e93de64..877638e75abc 100644
--- a/src/ngLocale/angular-locale_jmc.js
+++ b/src/ngLocale/angular-locale_jmc.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprilyi",
+ "Mei",
+ "Junyi",
+ "Julyai",
+ "Agusti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ka-ge.js b/src/ngLocale/angular-locale_ka-ge.js
index 4383940aa5c7..afe52b88c3e5 100644
--- a/src/ngLocale/angular-locale_ka-ge.js
+++ b/src/ngLocale/angular-locale_ka-ge.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u10dc\u10dd\u10d4",
"\u10d3\u10d4\u10d9"
],
+ "STANDALONEMONTH": [
+ "\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8",
+ "\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8",
+ "\u10db\u10d0\u10e0\u10e2\u10d8",
+ "\u10d0\u10de\u10e0\u10d8\u10da\u10d8",
+ "\u10db\u10d0\u10d8\u10e1\u10d8",
+ "\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8",
+ "\u10d8\u10d5\u10da\u10d8\u10e1\u10d8",
+ "\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd",
+ "\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8",
+ "\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8",
+ "\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8",
+ "\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ka.js b/src/ngLocale/angular-locale_ka.js
index fc846caeac23..70a4755a737b 100644
--- a/src/ngLocale/angular-locale_ka.js
+++ b/src/ngLocale/angular-locale_ka.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u10dc\u10dd\u10d4",
"\u10d3\u10d4\u10d9"
],
+ "STANDALONEMONTH": [
+ "\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8",
+ "\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8",
+ "\u10db\u10d0\u10e0\u10e2\u10d8",
+ "\u10d0\u10de\u10e0\u10d8\u10da\u10d8",
+ "\u10db\u10d0\u10d8\u10e1\u10d8",
+ "\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8",
+ "\u10d8\u10d5\u10da\u10d8\u10e1\u10d8",
+ "\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd",
+ "\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8",
+ "\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8",
+ "\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8",
+ "\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kab-dz.js b/src/ngLocale/angular-locale_kab-dz.js
index 6063c588f24b..ff98f4d4d5d8 100644
--- a/src/ngLocale/angular-locale_kab-dz.js
+++ b/src/ngLocale/angular-locale_kab-dz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nun",
"Du\u01e7"
],
+ "STANDALONEMONTH": [
+ "Yennayer",
+ "Fu\u1e5bar",
+ "Me\u0263res",
+ "Yebrir",
+ "Mayyu",
+ "Yunyu",
+ "Yulyu",
+ "\u0194uct",
+ "Ctembe\u1e5b",
+ "Tube\u1e5b",
+ "Nunembe\u1e5b",
+ "Du\u01e7embe\u1e5b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kab.js b/src/ngLocale/angular-locale_kab.js
index d7b82a94e863..f478973486e9 100644
--- a/src/ngLocale/angular-locale_kab.js
+++ b/src/ngLocale/angular-locale_kab.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nun",
"Du\u01e7"
],
+ "STANDALONEMONTH": [
+ "Yennayer",
+ "Fu\u1e5bar",
+ "Me\u0263res",
+ "Yebrir",
+ "Mayyu",
+ "Yunyu",
+ "Yulyu",
+ "\u0194uct",
+ "Ctembe\u1e5b",
+ "Tube\u1e5b",
+ "Nunembe\u1e5b",
+ "Du\u01e7embe\u1e5b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kam-ke.js b/src/ngLocale/angular-locale_kam-ke.js
index 669f17f152d6..340fc96654fa 100644
--- a/src/ngLocale/angular-locale_kam-ke.js
+++ b/src/ngLocale/angular-locale_kam-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0128km",
"\u0128kl"
],
+ "STANDALONEMONTH": [
+ "Mwai wa mbee",
+ "Mwai wa kel\u0129",
+ "Mwai wa katat\u0169",
+ "Mwai wa kana",
+ "Mwai wa katano",
+ "Mwai wa thanthat\u0169",
+ "Mwai wa muonza",
+ "Mwai wa nyaanya",
+ "Mwai wa kenda",
+ "Mwai wa \u0129kumi",
+ "Mwai wa \u0129kumi na \u0129mwe",
+ "Mwai wa \u0129kumi na il\u0129"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kam.js b/src/ngLocale/angular-locale_kam.js
index f099840034ec..ee358a3f70b7 100644
--- a/src/ngLocale/angular-locale_kam.js
+++ b/src/ngLocale/angular-locale_kam.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0128km",
"\u0128kl"
],
+ "STANDALONEMONTH": [
+ "Mwai wa mbee",
+ "Mwai wa kel\u0129",
+ "Mwai wa katat\u0169",
+ "Mwai wa kana",
+ "Mwai wa katano",
+ "Mwai wa thanthat\u0169",
+ "Mwai wa muonza",
+ "Mwai wa nyaanya",
+ "Mwai wa kenda",
+ "Mwai wa \u0129kumi",
+ "Mwai wa \u0129kumi na \u0129mwe",
+ "Mwai wa \u0129kumi na il\u0129"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kde-tz.js b/src/ngLocale/angular-locale_kde-tz.js
index 0363929f49dc..547dd5270989 100644
--- a/src/ngLocale/angular-locale_kde-tz.js
+++ b/src/ngLocale/angular-locale_kde-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Mwedi Ntandi",
+ "Mwedi wa Pili",
+ "Mwedi wa Tatu",
+ "Mwedi wa Nchechi",
+ "Mwedi wa Nnyano",
+ "Mwedi wa Nnyano na Umo",
+ "Mwedi wa Nnyano na Mivili",
+ "Mwedi wa Nnyano na Mitatu",
+ "Mwedi wa Nnyano na Nchechi",
+ "Mwedi wa Nnyano na Nnyano",
+ "Mwedi wa Nnyano na Nnyano na U",
+ "Mwedi wa Nnyano na Nnyano na M"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kde.js b/src/ngLocale/angular-locale_kde.js
index 6dcc55eb6075..9694c677b387 100644
--- a/src/ngLocale/angular-locale_kde.js
+++ b/src/ngLocale/angular-locale_kde.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Mwedi Ntandi",
+ "Mwedi wa Pili",
+ "Mwedi wa Tatu",
+ "Mwedi wa Nchechi",
+ "Mwedi wa Nnyano",
+ "Mwedi wa Nnyano na Umo",
+ "Mwedi wa Nnyano na Mivili",
+ "Mwedi wa Nnyano na Mitatu",
+ "Mwedi wa Nnyano na Nchechi",
+ "Mwedi wa Nnyano na Nnyano",
+ "Mwedi wa Nnyano na Nnyano na U",
+ "Mwedi wa Nnyano na Nnyano na M"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kea-cv.js b/src/ngLocale/angular-locale_kea-cv.js
index 1fc8d8e68348..c1a7e50571ec 100644
--- a/src/ngLocale/angular-locale_kea-cv.js
+++ b/src/ngLocale/angular-locale_kea-cv.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuv",
"Diz"
],
+ "STANDALONEMONTH": [
+ "Janeru",
+ "Febreru",
+ "Marsu",
+ "Abril",
+ "Maiu",
+ "Junhu",
+ "Julhu",
+ "Agostu",
+ "Setenbru",
+ "Otubru",
+ "Nuvenbru",
+ "Dizenbru"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kea.js b/src/ngLocale/angular-locale_kea.js
index 0bab114dd5b5..014c08d6cae4 100644
--- a/src/ngLocale/angular-locale_kea.js
+++ b/src/ngLocale/angular-locale_kea.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nuv",
"Diz"
],
+ "STANDALONEMONTH": [
+ "Janeru",
+ "Febreru",
+ "Marsu",
+ "Abril",
+ "Maiu",
+ "Junhu",
+ "Julhu",
+ "Agostu",
+ "Setenbru",
+ "Otubru",
+ "Nuvenbru",
+ "Dizenbru"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_khq-ml.js b/src/ngLocale/angular-locale_khq-ml.js
index 328809e19552..d5eea1aa3345 100644
--- a/src/ngLocale/angular-locale_khq-ml.js
+++ b/src/ngLocale/angular-locale_khq-ml.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_khq.js b/src/ngLocale/angular-locale_khq.js
index 90fa7e6bb33c..5527f1334366 100644
--- a/src/ngLocale/angular-locale_khq.js
+++ b/src/ngLocale/angular-locale_khq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ki-ke.js b/src/ngLocale/angular-locale_ki-ke.js
index c8d312b7a4bf..5f3bcf34ca6e 100644
--- a/src/ngLocale/angular-locale_ki-ke.js
+++ b/src/ngLocale/angular-locale_ki-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"WMW",
"DIT"
],
+ "STANDALONEMONTH": [
+ "Njenuar\u0129",
+ "Mwere wa ker\u0129",
+ "Mwere wa gatat\u0169",
+ "Mwere wa kana",
+ "Mwere wa gatano",
+ "Mwere wa gatandat\u0169",
+ "Mwere wa m\u0169gwanja",
+ "Mwere wa kanana",
+ "Mwere wa kenda",
+ "Mwere wa ik\u0169mi",
+ "Mwere wa ik\u0169mi na \u0169mwe",
+ "Ndithemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ki.js b/src/ngLocale/angular-locale_ki.js
index b21103da2c1b..f4bf20d18ee5 100644
--- a/src/ngLocale/angular-locale_ki.js
+++ b/src/ngLocale/angular-locale_ki.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"WMW",
"DIT"
],
+ "STANDALONEMONTH": [
+ "Njenuar\u0129",
+ "Mwere wa ker\u0129",
+ "Mwere wa gatat\u0169",
+ "Mwere wa kana",
+ "Mwere wa gatano",
+ "Mwere wa gatandat\u0169",
+ "Mwere wa m\u0169gwanja",
+ "Mwere wa kanana",
+ "Mwere wa kenda",
+ "Mwere wa ik\u0169mi",
+ "Mwere wa ik\u0169mi na \u0169mwe",
+ "Ndithemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kk-cyrl-kz.js b/src/ngLocale/angular-locale_kk-cyrl-kz.js
index 828abbf4f6f8..7dd9bb33b928 100644
--- a/src/ngLocale/angular-locale_kk-cyrl-kz.js
+++ b/src/ngLocale/angular-locale_kk-cyrl-kz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u049b\u0430\u0440.",
"\u0436\u0435\u043b\u0442."
],
+ "STANDALONEMONTH": [
+ "\u049b\u0430\u04a3\u0442\u0430\u0440",
+ "\u0430\u049b\u043f\u0430\u043d",
+ "\u043d\u0430\u0443\u0440\u044b\u0437",
+ "\u0441\u04d9\u0443\u0456\u0440",
+ "\u043c\u0430\u043c\u044b\u0440",
+ "\u043c\u0430\u0443\u0441\u044b\u043c",
+ "\u0448\u0456\u043b\u0434\u0435",
+ "\u0442\u0430\u043c\u044b\u0437",
+ "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
+ "\u049b\u0430\u0437\u0430\u043d",
+ "\u049b\u0430\u0440\u0430\u0448\u0430",
+ "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kk-cyrl.js b/src/ngLocale/angular-locale_kk-cyrl.js
index 321fad886cf1..6524301d195b 100644
--- a/src/ngLocale/angular-locale_kk-cyrl.js
+++ b/src/ngLocale/angular-locale_kk-cyrl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u049b\u0430\u0440.",
"\u0436\u0435\u043b\u0442."
],
+ "STANDALONEMONTH": [
+ "\u049b\u0430\u04a3\u0442\u0430\u0440",
+ "\u0430\u049b\u043f\u0430\u043d",
+ "\u043d\u0430\u0443\u0440\u044b\u0437",
+ "\u0441\u04d9\u0443\u0456\u0440",
+ "\u043c\u0430\u043c\u044b\u0440",
+ "\u043c\u0430\u0443\u0441\u044b\u043c",
+ "\u0448\u0456\u043b\u0434\u0435",
+ "\u0442\u0430\u043c\u044b\u0437",
+ "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
+ "\u049b\u0430\u0437\u0430\u043d",
+ "\u049b\u0430\u0440\u0430\u0448\u0430",
+ "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kk.js b/src/ngLocale/angular-locale_kk.js
index 3d4a44e0c7e1..efe0291cf0c3 100644
--- a/src/ngLocale/angular-locale_kk.js
+++ b/src/ngLocale/angular-locale_kk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u049b\u0430\u0440.",
"\u0436\u0435\u043b\u0442."
],
+ "STANDALONEMONTH": [
+ "\u049b\u0430\u04a3\u0442\u0430\u0440",
+ "\u0430\u049b\u043f\u0430\u043d",
+ "\u043d\u0430\u0443\u0440\u044b\u0437",
+ "\u0441\u04d9\u0443\u0456\u0440",
+ "\u043c\u0430\u043c\u044b\u0440",
+ "\u043c\u0430\u0443\u0441\u044b\u043c",
+ "\u0448\u0456\u043b\u0434\u0435",
+ "\u0442\u0430\u043c\u044b\u0437",
+ "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a",
+ "\u049b\u0430\u0437\u0430\u043d",
+ "\u049b\u0430\u0440\u0430\u0448\u0430",
+ "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kkj-cm.js b/src/ngLocale/angular-locale_kkj-cm.js
index 8b2a2538793b..5ba8a1fc76b6 100644
--- a/src/ngLocale/angular-locale_kkj-cm.js
+++ b/src/ngLocale/angular-locale_kkj-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"11",
"\u0253ul\u0253us\u025b"
],
+ "STANDALONEMONTH": [
+ "pamba",
+ "wanja",
+ "mbiy\u0254 m\u025bndo\u014bg\u0254",
+ "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
+ "M\u0254n\u0254 \u014bgbanja",
+ "Nya\u014bgw\u025b \u014bgbanja",
+ "ku\u014bgw\u025b",
+ "f\u025b",
+ "njapi",
+ "nyukul",
+ "11",
+ "\u0253ul\u0253us\u025b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kkj.js b/src/ngLocale/angular-locale_kkj.js
index dc0b25ad01d5..56b7cecb45c2 100644
--- a/src/ngLocale/angular-locale_kkj.js
+++ b/src/ngLocale/angular-locale_kkj.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"11",
"\u0253ul\u0253us\u025b"
],
+ "STANDALONEMONTH": [
+ "pamba",
+ "wanja",
+ "mbiy\u0254 m\u025bndo\u014bg\u0254",
+ "Ny\u0254l\u0254mb\u0254\u014bg\u0254",
+ "M\u0254n\u0254 \u014bgbanja",
+ "Nya\u014bgw\u025b \u014bgbanja",
+ "ku\u014bgw\u025b",
+ "f\u025b",
+ "njapi",
+ "nyukul",
+ "11",
+ "\u0253ul\u0253us\u025b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kl-gl.js b/src/ngLocale/angular-locale_kl-gl.js
index 3b3e77d0433b..eb4b01f78b2d 100644
--- a/src/ngLocale/angular-locale_kl-gl.js
+++ b/src/ngLocale/angular-locale_kl-gl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januari",
+ "februari",
+ "martsi",
+ "aprili",
+ "maji",
+ "juni",
+ "juli",
+ "augustusi",
+ "septemberi",
+ "oktoberi",
+ "novemberi",
+ "decemberi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kl.js b/src/ngLocale/angular-locale_kl.js
index a20a1950b4d3..7d1ecdf440d8 100644
--- a/src/ngLocale/angular-locale_kl.js
+++ b/src/ngLocale/angular-locale_kl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januari",
+ "februari",
+ "martsi",
+ "aprili",
+ "maji",
+ "juni",
+ "juli",
+ "augustusi",
+ "septemberi",
+ "oktoberi",
+ "novemberi",
+ "decemberi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kln-ke.js b/src/ngLocale/angular-locale_kln-ke.js
index 41e740503b19..74f99554f07c 100644
--- a/src/ngLocale/angular-locale_kln-ke.js
+++ b/src/ngLocale/angular-locale_kln-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kpt",
"Kpa"
],
+ "STANDALONEMONTH": [
+ "Mulgul",
+ "Ng\u2019atyaato",
+ "Kiptaamo",
+ "Iwootkuut",
+ "Mamuut",
+ "Paagi",
+ "Ng\u2019eiyeet",
+ "Rooptui",
+ "Bureet",
+ "Epeeso",
+ "Kipsuunde ne taai",
+ "Kipsuunde nebo aeng\u2019"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kln.js b/src/ngLocale/angular-locale_kln.js
index 973b711f84b8..072e28ffa1a5 100644
--- a/src/ngLocale/angular-locale_kln.js
+++ b/src/ngLocale/angular-locale_kln.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kpt",
"Kpa"
],
+ "STANDALONEMONTH": [
+ "Mulgul",
+ "Ng\u2019atyaato",
+ "Kiptaamo",
+ "Iwootkuut",
+ "Mamuut",
+ "Paagi",
+ "Ng\u2019eiyeet",
+ "Rooptui",
+ "Bureet",
+ "Epeeso",
+ "Kipsuunde ne taai",
+ "Kipsuunde nebo aeng\u2019"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_km-kh.js b/src/ngLocale/angular-locale_km-kh.js
index 43649cd6dc80..d84691c31c84 100644
--- a/src/ngLocale/angular-locale_km-kh.js
+++ b/src/ngLocale/angular-locale_km-kh.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
"\u1792\u17d2\u1793\u17bc"
],
+ "STANDALONEMONTH": [
+ "\u1798\u1780\u179a\u17b6",
+ "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
+ "\u1798\u17b8\u1793\u17b6",
+ "\u1798\u17c1\u179f\u17b6",
+ "\u17a7\u179f\u1797\u17b6",
+ "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
+ "\u1780\u1780\u17d2\u1780\u178a\u17b6",
+ "\u179f\u17b8\u17a0\u17b6",
+ "\u1780\u1789\u17d2\u1789\u17b6",
+ "\u178f\u17bb\u179b\u17b6",
+ "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
+ "\u1792\u17d2\u1793\u17bc"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_km.js b/src/ngLocale/angular-locale_km.js
index ee21ccc1a96b..ddeb756e2201 100644
--- a/src/ngLocale/angular-locale_km.js
+++ b/src/ngLocale/angular-locale_km.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
"\u1792\u17d2\u1793\u17bc"
],
+ "STANDALONEMONTH": [
+ "\u1798\u1780\u179a\u17b6",
+ "\u1780\u17bb\u1798\u17d2\u1797\u17c8",
+ "\u1798\u17b8\u1793\u17b6",
+ "\u1798\u17c1\u179f\u17b6",
+ "\u17a7\u179f\u1797\u17b6",
+ "\u1798\u17b7\u1790\u17bb\u1793\u17b6",
+ "\u1780\u1780\u17d2\u1780\u178a\u17b6",
+ "\u179f\u17b8\u17a0\u17b6",
+ "\u1780\u1789\u17d2\u1789\u17b6",
+ "\u178f\u17bb\u179b\u17b6",
+ "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6",
+ "\u1792\u17d2\u1793\u17bc"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kn-in.js b/src/ngLocale/angular-locale_kn-in.js
index 59f60a75c8e5..740b6b811d04 100644
--- a/src/ngLocale/angular-locale_kn-in.js
+++ b/src/ngLocale/angular-locale_kn-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ca8\u0cb5\u0cc6\u0c82",
"\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"
],
+ "STANDALONEMONTH": [
+ "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf",
+ "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf",
+ "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
+ "\u0cae\u0cc7",
+ "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
+ "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
+ "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_kn.js b/src/ngLocale/angular-locale_kn.js
index 4dcebb61cb5d..04a2651d82d3 100644
--- a/src/ngLocale/angular-locale_kn.js
+++ b/src/ngLocale/angular-locale_kn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ca8\u0cb5\u0cc6\u0c82",
"\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"
],
+ "STANDALONEMONTH": [
+ "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf",
+ "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf",
+ "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
+ "\u0cae\u0cc7",
+ "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
+ "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
+ "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ko-kp.js b/src/ngLocale/angular-locale_ko-kp.js
index 61ae2b1be5c8..5a7ad847a845 100644
--- a/src/ngLocale/angular-locale_ko-kp.js
+++ b/src/ngLocale/angular-locale_ko-kp.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\uc6d4",
"12\uc6d4"
],
+ "STANDALONEMONTH": [
+ "1\uc6d4",
+ "2\uc6d4",
+ "3\uc6d4",
+ "4\uc6d4",
+ "5\uc6d4",
+ "6\uc6d4",
+ "7\uc6d4",
+ "8\uc6d4",
+ "9\uc6d4",
+ "10\uc6d4",
+ "11\uc6d4",
+ "12\uc6d4"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ko-kr.js b/src/ngLocale/angular-locale_ko-kr.js
index 004a2d8db71f..39af6df7f7fa 100644
--- a/src/ngLocale/angular-locale_ko-kr.js
+++ b/src/ngLocale/angular-locale_ko-kr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\uc6d4",
"12\uc6d4"
],
+ "STANDALONEMONTH": [
+ "1\uc6d4",
+ "2\uc6d4",
+ "3\uc6d4",
+ "4\uc6d4",
+ "5\uc6d4",
+ "6\uc6d4",
+ "7\uc6d4",
+ "8\uc6d4",
+ "9\uc6d4",
+ "10\uc6d4",
+ "11\uc6d4",
+ "12\uc6d4"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ko.js b/src/ngLocale/angular-locale_ko.js
index b9c6fea38abf..593abbe2e571 100644
--- a/src/ngLocale/angular-locale_ko.js
+++ b/src/ngLocale/angular-locale_ko.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\uc6d4",
"12\uc6d4"
],
+ "STANDALONEMONTH": [
+ "1\uc6d4",
+ "2\uc6d4",
+ "3\uc6d4",
+ "4\uc6d4",
+ "5\uc6d4",
+ "6\uc6d4",
+ "7\uc6d4",
+ "8\uc6d4",
+ "9\uc6d4",
+ "10\uc6d4",
+ "11\uc6d4",
+ "12\uc6d4"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kok-in.js b/src/ngLocale/angular-locale_kok-in.js
index fde838b73260..f48823ed5c9d 100644
--- a/src/ngLocale/angular-locale_kok-in.js
+++ b/src/ngLocale/angular-locale_kok-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
"\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u090f\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0942\u0928",
+ "\u091c\u0941\u0932\u0948",
+ "\u0913\u0917\u0938\u094d\u091f",
+ "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
+ "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_kok.js b/src/ngLocale/angular-locale_kok.js
index 701c8f7e0844..15505c95149f 100644
--- a/src/ngLocale/angular-locale_kok.js
+++ b/src/ngLocale/angular-locale_kok.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
"\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u090f\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0942\u0928",
+ "\u091c\u0941\u0932\u0948",
+ "\u0913\u0917\u0938\u094d\u091f",
+ "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
+ "\u0913\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ks-arab-in.js b/src/ngLocale/angular-locale_ks-arab-in.js
index 3f2caf1cf0c4..954f2d0b389d 100644
--- a/src/ngLocale/angular-locale_ks-arab-in.js
+++ b/src/ngLocale/angular-locale_ks-arab-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0624\u0631\u06cc",
+ "\u0641\u0631\u0624\u0631\u06cc",
+ "\u0645\u0627\u0631\u0655\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc\u0654",
+ "\u062c\u0648\u0657\u0646",
+ "\u062c\u0648\u0657\u0644\u0627\u06cc\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0657\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ks-arab.js b/src/ngLocale/angular-locale_ks-arab.js
index 364703caeb8b..7d6f211fb0cb 100644
--- a/src/ngLocale/angular-locale_ks-arab.js
+++ b/src/ngLocale/angular-locale_ks-arab.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0624\u0631\u06cc",
+ "\u0641\u0631\u0624\u0631\u06cc",
+ "\u0645\u0627\u0631\u0655\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc\u0654",
+ "\u062c\u0648\u0657\u0646",
+ "\u062c\u0648\u0657\u0644\u0627\u06cc\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0657\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ks.js b/src/ngLocale/angular-locale_ks.js
index d5d58c66f245..5e9de026dc71 100644
--- a/src/ngLocale/angular-locale_ks.js
+++ b/src/ngLocale/angular-locale_ks.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0624\u0631\u06cc",
+ "\u0641\u0631\u0624\u0631\u06cc",
+ "\u0645\u0627\u0631\u0655\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc\u0654",
+ "\u062c\u0648\u0657\u0646",
+ "\u062c\u0648\u0657\u0644\u0627\u06cc\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0657\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ksb-tz.js b/src/ngLocale/angular-locale_ksb-tz.js
index f52a6f36252d..6927d58420b3 100644
--- a/src/ngLocale/angular-locale_ksb-tz.js
+++ b/src/ngLocale/angular-locale_ksb-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januali",
+ "Febluali",
+ "Machi",
+ "Aplili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ksb.js b/src/ngLocale/angular-locale_ksb.js
index 145289260197..457fe2d8d823 100644
--- a/src/ngLocale/angular-locale_ksb.js
+++ b/src/ngLocale/angular-locale_ksb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januali",
+ "Febluali",
+ "Machi",
+ "Aplili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ksf-cm.js b/src/ngLocale/angular-locale_ksf-cm.js
index a3f69547b074..d7ea7edb121f 100644
--- a/src/ngLocale/angular-locale_ksf-cm.js
+++ b/src/ngLocale/angular-locale_ksf-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u014b11",
"\u014b12"
],
+ "STANDALONEMONTH": [
+ "\u014bw\u00ed\u00ed a nt\u0254\u0301nt\u0254",
+ "\u014bw\u00ed\u00ed ak\u01dd b\u025b\u0301\u025b",
+ "\u014bw\u00ed\u00ed ak\u01dd r\u00e1\u00e1",
+ "\u014bw\u00ed\u00ed ak\u01dd nin",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1an",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1af\u0254k",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1ab\u025b\u025b",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1araa",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1anin",
+ "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk",
+ "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u0254\u0301k",
+ "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u025b\u0301\u025b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ksf.js b/src/ngLocale/angular-locale_ksf.js
index dfd65a2e4457..e84c9dd64f09 100644
--- a/src/ngLocale/angular-locale_ksf.js
+++ b/src/ngLocale/angular-locale_ksf.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u014b11",
"\u014b12"
],
+ "STANDALONEMONTH": [
+ "\u014bw\u00ed\u00ed a nt\u0254\u0301nt\u0254",
+ "\u014bw\u00ed\u00ed ak\u01dd b\u025b\u0301\u025b",
+ "\u014bw\u00ed\u00ed ak\u01dd r\u00e1\u00e1",
+ "\u014bw\u00ed\u00ed ak\u01dd nin",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1an",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1af\u0254k",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1ab\u025b\u025b",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1araa",
+ "\u014bw\u00ed\u00ed ak\u01dd t\u00e1anin",
+ "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk",
+ "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u0254\u0301k",
+ "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u025b\u0301\u025b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ksh-de.js b/src/ngLocale/angular-locale_ksh-de.js
index c69f40d7430a..f2e138b66b40 100644
--- a/src/ngLocale/angular-locale_ksh-de.js
+++ b/src/ngLocale/angular-locale_ksh-de.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dez"
],
+ "STANDALONEMONTH": [
+ "Jannewa",
+ "F\u00e4browa",
+ "M\u00e4\u00e4z",
+ "Aprell",
+ "M\u00e4i",
+ "Juuni",
+ "Juuli",
+ "Oujo\u00df",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ksh.js b/src/ngLocale/angular-locale_ksh.js
index cb166982d715..d4bf1699fe92 100644
--- a/src/ngLocale/angular-locale_ksh.js
+++ b/src/ngLocale/angular-locale_ksh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dez"
],
+ "STANDALONEMONTH": [
+ "Jannewa",
+ "F\u00e4browa",
+ "M\u00e4\u00e4z",
+ "Aprell",
+ "M\u00e4i",
+ "Juuni",
+ "Juuli",
+ "Oujo\u00df",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kw-gb.js b/src/ngLocale/angular-locale_kw-gb.js
index 45be15071378..2a95376ccbe0 100644
--- a/src/ngLocale/angular-locale_kw-gb.js
+++ b/src/ngLocale/angular-locale_kw-gb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Du",
"Kev"
],
+ "STANDALONEMONTH": [
+ "mis Genver",
+ "mis Hwevrer",
+ "mis Meurth",
+ "mis Ebrel",
+ "mis Me",
+ "mis Metheven",
+ "mis Gortheren",
+ "mis Est",
+ "mis Gwynngala",
+ "mis Hedra",
+ "mis Du",
+ "mis Kevardhu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_kw.js b/src/ngLocale/angular-locale_kw.js
index b1349d6a4234..5be45e290945 100644
--- a/src/ngLocale/angular-locale_kw.js
+++ b/src/ngLocale/angular-locale_kw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Du",
"Kev"
],
+ "STANDALONEMONTH": [
+ "mis Genver",
+ "mis Hwevrer",
+ "mis Meurth",
+ "mis Ebrel",
+ "mis Me",
+ "mis Metheven",
+ "mis Gortheren",
+ "mis Est",
+ "mis Gwynngala",
+ "mis Hedra",
+ "mis Du",
+ "mis Kevardhu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ky-cyrl-kg.js b/src/ngLocale/angular-locale_ky-cyrl-kg.js
index 75a594719d95..784c2d16d132 100644
--- a/src/ngLocale/angular-locale_ky-cyrl-kg.js
+++ b/src/ngLocale/angular-locale_ky-cyrl-kg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440\u044c",
+ "\u0424\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u041c\u0430\u0440\u0442",
+ "\u0410\u043f\u0440\u0435\u043b\u044c",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d\u044c",
+ "\u0418\u044e\u043b\u044c",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u041e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u041d\u043e\u044f\u0431\u0440\u044c",
+ "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ky-cyrl.js b/src/ngLocale/angular-locale_ky-cyrl.js
index 7c5a577843de..073cfbbcfc46 100644
--- a/src/ngLocale/angular-locale_ky-cyrl.js
+++ b/src/ngLocale/angular-locale_ky-cyrl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440\u044c",
+ "\u0424\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u041c\u0430\u0440\u0442",
+ "\u0410\u043f\u0440\u0435\u043b\u044c",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d\u044c",
+ "\u0418\u044e\u043b\u044c",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u041e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u041d\u043e\u044f\u0431\u0440\u044c",
+ "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ky.js b/src/ngLocale/angular-locale_ky.js
index b7fe26351d5a..f012d22aad2b 100644
--- a/src/ngLocale/angular-locale_ky.js
+++ b/src/ngLocale/angular-locale_ky.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440\u044c",
+ "\u0424\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u041c\u0430\u0440\u0442",
+ "\u0410\u043f\u0440\u0435\u043b\u044c",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d\u044c",
+ "\u0418\u044e\u043b\u044c",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u041e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u041d\u043e\u044f\u0431\u0440\u044c",
+ "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lag-tz.js b/src/ngLocale/angular-locale_lag-tz.js
index a76e7696ede0..20a8682ef36f 100644
--- a/src/ngLocale/angular-locale_lag-tz.js
+++ b/src/ngLocale/angular-locale_lag-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Saano",
"Sasat\u0289"
],
+ "STANDALONEMONTH": [
+ "K\u0289f\u00fangat\u0268",
+ "K\u0289naan\u0268",
+ "K\u0289keenda",
+ "Kwiikumi",
+ "Kwiinyamb\u00e1la",
+ "Kwiidwaata",
+ "K\u0289m\u0289\u0289nch\u0268",
+ "K\u0289v\u0268\u0268r\u0268",
+ "K\u0289saat\u0289",
+ "Kwiinyi",
+ "K\u0289saano",
+ "K\u0289sasat\u0289"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lag.js b/src/ngLocale/angular-locale_lag.js
index 6fb2f6e53c51..3b8bb4fa7813 100644
--- a/src/ngLocale/angular-locale_lag.js
+++ b/src/ngLocale/angular-locale_lag.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Saano",
"Sasat\u0289"
],
+ "STANDALONEMONTH": [
+ "K\u0289f\u00fangat\u0268",
+ "K\u0289naan\u0268",
+ "K\u0289keenda",
+ "Kwiikumi",
+ "Kwiinyamb\u00e1la",
+ "Kwiidwaata",
+ "K\u0289m\u0289\u0289nch\u0268",
+ "K\u0289v\u0268\u0268r\u0268",
+ "K\u0289saat\u0289",
+ "Kwiinyi",
+ "K\u0289saano",
+ "K\u0289sasat\u0289"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lb-lu.js b/src/ngLocale/angular-locale_lb-lu.js
index 64ef9776921a..e05f59cfed47 100644
--- a/src/ngLocale/angular-locale_lb-lu.js
+++ b/src/ngLocale/angular-locale_lb-lu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4erz",
+ "Abr\u00ebll",
+ "Mee",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lb.js b/src/ngLocale/angular-locale_lb.js
index dd721993738a..8734cc3ec7f1 100644
--- a/src/ngLocale/angular-locale_lb.js
+++ b/src/ngLocale/angular-locale_lb.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov.",
"Dez."
],
+ "STANDALONEMONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4erz",
+ "Abr\u00ebll",
+ "Mee",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lg-ug.js b/src/ngLocale/angular-locale_lg-ug.js
index 78d1c9f0be6f..ac345cd6872d 100644
--- a/src/ngLocale/angular-locale_lg-ug.js
+++ b/src/ngLocale/angular-locale_lg-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Janwaliyo",
+ "Febwaliyo",
+ "Marisi",
+ "Apuli",
+ "Maayi",
+ "Juuni",
+ "Julaayi",
+ "Agusito",
+ "Sebuttemba",
+ "Okitobba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lg.js b/src/ngLocale/angular-locale_lg.js
index e0bbf02f1fe9..61e1c20db1b0 100644
--- a/src/ngLocale/angular-locale_lg.js
+++ b/src/ngLocale/angular-locale_lg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Janwaliyo",
+ "Febwaliyo",
+ "Marisi",
+ "Apuli",
+ "Maayi",
+ "Juuni",
+ "Julaayi",
+ "Agusito",
+ "Sebuttemba",
+ "Okitobba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lkt-us.js b/src/ngLocale/angular-locale_lkt-us.js
index e5b488b86ca4..c59db627073b 100644
--- a/src/ngLocale/angular-locale_lkt-us.js
+++ b/src/ngLocale/angular-locale_lkt-us.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Wan\u00edyetu W\u00ed",
"T\u021fah\u00e9kap\u0161u\u014b W\u00ed"
],
+ "STANDALONEMONTH": [
+ "Wi\u00f3the\u021fika W\u00ed",
+ "Thiy\u00f3\u021feyu\u014bka W\u00ed",
+ "I\u0161t\u00e1wi\u010dhayaza\u014b W\u00ed",
+ "P\u021fe\u017e\u00edt\u021fo W\u00ed",
+ "\u010cha\u014bw\u00e1pet\u021fo W\u00ed",
+ "W\u00edpazuk\u021fa-wa\u0161t\u00e9 W\u00ed",
+ "\u010cha\u014bp\u021f\u00e1sapa W\u00ed",
+ "Was\u00fat\u021fu\u014b W\u00ed",
+ "\u010cha\u014bw\u00e1pe\u01e7i W\u00ed",
+ "\u010cha\u014bw\u00e1pe-kasn\u00e1 W\u00ed",
+ "Wan\u00edyetu W\u00ed",
+ "T\u021fah\u00e9kap\u0161u\u014b W\u00ed"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lkt.js b/src/ngLocale/angular-locale_lkt.js
index 57398cb3e1b3..e65494a6fd03 100644
--- a/src/ngLocale/angular-locale_lkt.js
+++ b/src/ngLocale/angular-locale_lkt.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Wan\u00edyetu W\u00ed",
"T\u021fah\u00e9kap\u0161u\u014b W\u00ed"
],
+ "STANDALONEMONTH": [
+ "Wi\u00f3the\u021fika W\u00ed",
+ "Thiy\u00f3\u021feyu\u014bka W\u00ed",
+ "I\u0161t\u00e1wi\u010dhayaza\u014b W\u00ed",
+ "P\u021fe\u017e\u00edt\u021fo W\u00ed",
+ "\u010cha\u014bw\u00e1pet\u021fo W\u00ed",
+ "W\u00edpazuk\u021fa-wa\u0161t\u00e9 W\u00ed",
+ "\u010cha\u014bp\u021f\u00e1sapa W\u00ed",
+ "Was\u00fat\u021fu\u014b W\u00ed",
+ "\u010cha\u014bw\u00e1pe\u01e7i W\u00ed",
+ "\u010cha\u014bw\u00e1pe-kasn\u00e1 W\u00ed",
+ "Wan\u00edyetu W\u00ed",
+ "T\u021fah\u00e9kap\u0161u\u014b W\u00ed"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ln-ao.js b/src/ngLocale/angular-locale_ln-ao.js
index 8a88e889ae03..9d01b1c90a05 100644
--- a/src/ngLocale/angular-locale_ln-ao.js
+++ b/src/ngLocale/angular-locale_ln-ao.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nvb",
"dsb"
],
+ "STANDALONEMONTH": [
+ "s\u00e1nz\u00e1 ya yambo",
+ "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "s\u00e1nz\u00e1 ya m\u00ednei",
+ "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "s\u00e1nz\u00e1 ya nsambo",
+ "s\u00e1nz\u00e1 ya mwambe",
+ "s\u00e1nz\u00e1 ya libwa",
+ "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ln-cd.js b/src/ngLocale/angular-locale_ln-cd.js
index f08e4f4f6643..d7ad31d17b46 100644
--- a/src/ngLocale/angular-locale_ln-cd.js
+++ b/src/ngLocale/angular-locale_ln-cd.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nvb",
"dsb"
],
+ "STANDALONEMONTH": [
+ "s\u00e1nz\u00e1 ya yambo",
+ "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "s\u00e1nz\u00e1 ya m\u00ednei",
+ "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "s\u00e1nz\u00e1 ya nsambo",
+ "s\u00e1nz\u00e1 ya mwambe",
+ "s\u00e1nz\u00e1 ya libwa",
+ "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ln-cf.js b/src/ngLocale/angular-locale_ln-cf.js
index 7af86d5a9272..b2b8535cad5c 100644
--- a/src/ngLocale/angular-locale_ln-cf.js
+++ b/src/ngLocale/angular-locale_ln-cf.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nvb",
"dsb"
],
+ "STANDALONEMONTH": [
+ "s\u00e1nz\u00e1 ya yambo",
+ "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "s\u00e1nz\u00e1 ya m\u00ednei",
+ "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "s\u00e1nz\u00e1 ya nsambo",
+ "s\u00e1nz\u00e1 ya mwambe",
+ "s\u00e1nz\u00e1 ya libwa",
+ "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ln-cg.js b/src/ngLocale/angular-locale_ln-cg.js
index 5c8e41cd5ada..92ba0b5b3e9b 100644
--- a/src/ngLocale/angular-locale_ln-cg.js
+++ b/src/ngLocale/angular-locale_ln-cg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nvb",
"dsb"
],
+ "STANDALONEMONTH": [
+ "s\u00e1nz\u00e1 ya yambo",
+ "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "s\u00e1nz\u00e1 ya m\u00ednei",
+ "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "s\u00e1nz\u00e1 ya nsambo",
+ "s\u00e1nz\u00e1 ya mwambe",
+ "s\u00e1nz\u00e1 ya libwa",
+ "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ln.js b/src/ngLocale/angular-locale_ln.js
index 300de98e8522..05facff8c651 100644
--- a/src/ngLocale/angular-locale_ln.js
+++ b/src/ngLocale/angular-locale_ln.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nvb",
"dsb"
],
+ "STANDALONEMONTH": [
+ "s\u00e1nz\u00e1 ya yambo",
+ "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "s\u00e1nz\u00e1 ya m\u00ednei",
+ "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "s\u00e1nz\u00e1 ya nsambo",
+ "s\u00e1nz\u00e1 ya mwambe",
+ "s\u00e1nz\u00e1 ya libwa",
+ "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lo-la.js b/src/ngLocale/angular-locale_lo-la.js
index f6bf34f10749..08e5daa0dbf4 100644
--- a/src/ngLocale/angular-locale_lo-la.js
+++ b/src/ngLocale/angular-locale_lo-la.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0e9e.\u0e88.",
"\u0e97.\u0ea7."
],
+ "STANDALONEMONTH": [
+ "\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99",
+ "\u0e81\u0eb8\u0ea1\u0e9e\u0eb2",
+ "\u0ea1\u0eb5\u0e99\u0eb2",
+ "\u0ec0\u0ea1\u0eaa\u0eb2",
+ "\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2",
+ "\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2",
+ "\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94",
+ "\u0eaa\u0eb4\u0e87\u0eab\u0eb2",
+ "\u0e81\u0eb1\u0e99\u0e8d\u0eb2",
+ "\u0e95\u0eb8\u0ea5\u0eb2",
+ "\u0e9e\u0eb0\u0e88\u0eb4\u0e81",
+ "\u0e97\u0eb1\u0e99\u0ea7\u0eb2"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lo.js b/src/ngLocale/angular-locale_lo.js
index 76d517543fd8..99c438792368 100644
--- a/src/ngLocale/angular-locale_lo.js
+++ b/src/ngLocale/angular-locale_lo.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0e9e.\u0e88.",
"\u0e97.\u0ea7."
],
+ "STANDALONEMONTH": [
+ "\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99",
+ "\u0e81\u0eb8\u0ea1\u0e9e\u0eb2",
+ "\u0ea1\u0eb5\u0e99\u0eb2",
+ "\u0ec0\u0ea1\u0eaa\u0eb2",
+ "\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2",
+ "\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2",
+ "\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94",
+ "\u0eaa\u0eb4\u0e87\u0eab\u0eb2",
+ "\u0e81\u0eb1\u0e99\u0e8d\u0eb2",
+ "\u0e95\u0eb8\u0ea5\u0eb2",
+ "\u0e9e\u0eb0\u0e88\u0eb4\u0e81",
+ "\u0e97\u0eb1\u0e99\u0ea7\u0eb2"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lt-lt.js b/src/ngLocale/angular-locale_lt-lt.js
index 34e16f9d6594..491a184b0a32 100644
--- a/src/ngLocale/angular-locale_lt-lt.js
+++ b/src/ngLocale/angular-locale_lt-lt.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"lapkr.",
"gruod."
],
+ "STANDALONEMONTH": [
+ "sausis",
+ "vasaris",
+ "kovas",
+ "balandis",
+ "gegu\u017e\u0117",
+ "bir\u017eelis",
+ "liepa",
+ "rugpj\u016btis",
+ "rugs\u0117jis",
+ "spalis",
+ "lapkritis",
+ "gruodis"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lt.js b/src/ngLocale/angular-locale_lt.js
index b8f7a9b3df5f..54222b2737d5 100644
--- a/src/ngLocale/angular-locale_lt.js
+++ b/src/ngLocale/angular-locale_lt.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"lapkr.",
"gruod."
],
+ "STANDALONEMONTH": [
+ "sausis",
+ "vasaris",
+ "kovas",
+ "balandis",
+ "gegu\u017e\u0117",
+ "bir\u017eelis",
+ "liepa",
+ "rugpj\u016btis",
+ "rugs\u0117jis",
+ "spalis",
+ "lapkritis",
+ "gruodis"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lu-cd.js b/src/ngLocale/angular-locale_lu-cd.js
index 055332330b53..de0abaea1233 100644
--- a/src/ngLocale/angular-locale_lu-cd.js
+++ b/src/ngLocale/angular-locale_lu-cd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kas",
"Cis"
],
+ "STANDALONEMONTH": [
+ "Ciongo",
+ "L\u00f9ishi",
+ "Lus\u00f2lo",
+ "M\u00f9uy\u00e0",
+ "Lum\u00f9ng\u00f9l\u00f9",
+ "Lufuimi",
+ "Kab\u00e0l\u00e0sh\u00ecp\u00f9",
+ "L\u00f9sh\u00eck\u00e0",
+ "Lutongolo",
+ "Lung\u00f9di",
+ "Kasw\u00e8k\u00e8s\u00e8",
+ "Cisw\u00e0"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lu.js b/src/ngLocale/angular-locale_lu.js
index 9cddb8fab549..864e73860090 100644
--- a/src/ngLocale/angular-locale_lu.js
+++ b/src/ngLocale/angular-locale_lu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kas",
"Cis"
],
+ "STANDALONEMONTH": [
+ "Ciongo",
+ "L\u00f9ishi",
+ "Lus\u00f2lo",
+ "M\u00f9uy\u00e0",
+ "Lum\u00f9ng\u00f9l\u00f9",
+ "Lufuimi",
+ "Kab\u00e0l\u00e0sh\u00ecp\u00f9",
+ "L\u00f9sh\u00eck\u00e0",
+ "Lutongolo",
+ "Lung\u00f9di",
+ "Kasw\u00e8k\u00e8s\u00e8",
+ "Cisw\u00e0"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_luo-ke.js b/src/ngLocale/angular-locale_luo-ke.js
index 0f85ee6be2f8..96396b354919 100644
--- a/src/ngLocale/angular-locale_luo-ke.js
+++ b/src/ngLocale/angular-locale_luo-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"DGI",
"DAG"
],
+ "STANDALONEMONTH": [
+ "Dwe mar Achiel",
+ "Dwe mar Ariyo",
+ "Dwe mar Adek",
+ "Dwe mar Ang\u2019wen",
+ "Dwe mar Abich",
+ "Dwe mar Auchiel",
+ "Dwe mar Abiriyo",
+ "Dwe mar Aboro",
+ "Dwe mar Ochiko",
+ "Dwe mar Apar",
+ "Dwe mar gi achiel",
+ "Dwe mar Apar gi ariyo"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_luo.js b/src/ngLocale/angular-locale_luo.js
index 0067d1f42f45..cda811a6a18f 100644
--- a/src/ngLocale/angular-locale_luo.js
+++ b/src/ngLocale/angular-locale_luo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"DGI",
"DAG"
],
+ "STANDALONEMONTH": [
+ "Dwe mar Achiel",
+ "Dwe mar Ariyo",
+ "Dwe mar Adek",
+ "Dwe mar Ang\u2019wen",
+ "Dwe mar Abich",
+ "Dwe mar Auchiel",
+ "Dwe mar Abiriyo",
+ "Dwe mar Aboro",
+ "Dwe mar Ochiko",
+ "Dwe mar Apar",
+ "Dwe mar gi achiel",
+ "Dwe mar Apar gi ariyo"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_luy-ke.js b/src/ngLocale/angular-locale_luy-ke.js
index 301f5bf83775..96cfd849691b 100644
--- a/src/ngLocale/angular-locale_luy-ke.js
+++ b/src/ngLocale/angular-locale_luy-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_luy.js b/src/ngLocale/angular-locale_luy.js
index 01f683a53d71..8c6406e34e14 100644
--- a/src/ngLocale/angular-locale_luy.js
+++ b/src/ngLocale/angular-locale_luy.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lv-lv.js b/src/ngLocale/angular-locale_lv-lv.js
index e892fd4373dc..733588cdc6dc 100644
--- a/src/ngLocale/angular-locale_lv-lv.js
+++ b/src/ngLocale/angular-locale_lv-lv.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Janv\u0101ris",
+ "Febru\u0101ris",
+ "Marts",
+ "Apr\u012blis",
+ "Maijs",
+ "J\u016bnijs",
+ "J\u016blijs",
+ "Augusts",
+ "Septembris",
+ "Oktobris",
+ "Novembris",
+ "Decembris"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_lv.js b/src/ngLocale/angular-locale_lv.js
index c22256cbbae3..574c73ced27b 100644
--- a/src/ngLocale/angular-locale_lv.js
+++ b/src/ngLocale/angular-locale_lv.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Janv\u0101ris",
+ "Febru\u0101ris",
+ "Marts",
+ "Apr\u012blis",
+ "Maijs",
+ "J\u016bnijs",
+ "J\u016blijs",
+ "Augusts",
+ "Septembris",
+ "Oktobris",
+ "Novembris",
+ "Decembris"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mas-ke.js b/src/ngLocale/angular-locale_mas-ke.js
index 74bf268bde6b..1a05ccf1c684 100644
--- a/src/ngLocale/angular-locale_mas-ke.js
+++ b/src/ngLocale/angular-locale_mas-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Sh\u0289\u0301",
"Nt\u0289\u0301"
],
+ "STANDALONEMONTH": [
+ "Oladal\u0289\u0301",
+ "Ar\u00e1t",
+ "\u0186\u025bn\u0268\u0301\u0254\u0268\u014b\u0254k",
+ "Olodoy\u00ed\u00f3r\u00ed\u00ea ink\u00f3k\u00fa\u00e2",
+ "Oloil\u00e9p\u016bny\u012b\u0113 ink\u00f3k\u00fa\u00e2",
+ "K\u00faj\u00fa\u0254r\u0254k",
+ "M\u00f3rus\u00e1sin",
+ "\u0186l\u0254\u0301\u0268\u0301b\u0254\u0301r\u00e1r\u025b",
+ "K\u00fash\u00een",
+ "Olg\u00edsan",
+ "P\u0289sh\u0289\u0301ka",
+ "Nt\u0289\u0301\u014b\u0289\u0301s"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mas-tz.js b/src/ngLocale/angular-locale_mas-tz.js
index 0a81920be8d4..555c9ced0c44 100644
--- a/src/ngLocale/angular-locale_mas-tz.js
+++ b/src/ngLocale/angular-locale_mas-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Sh\u0289\u0301",
"Nt\u0289\u0301"
],
+ "STANDALONEMONTH": [
+ "Oladal\u0289\u0301",
+ "Ar\u00e1t",
+ "\u0186\u025bn\u0268\u0301\u0254\u0268\u014b\u0254k",
+ "Olodoy\u00ed\u00f3r\u00ed\u00ea ink\u00f3k\u00fa\u00e2",
+ "Oloil\u00e9p\u016bny\u012b\u0113 ink\u00f3k\u00fa\u00e2",
+ "K\u00faj\u00fa\u0254r\u0254k",
+ "M\u00f3rus\u00e1sin",
+ "\u0186l\u0254\u0301\u0268\u0301b\u0254\u0301r\u00e1r\u025b",
+ "K\u00fash\u00een",
+ "Olg\u00edsan",
+ "P\u0289sh\u0289\u0301ka",
+ "Nt\u0289\u0301\u014b\u0289\u0301s"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mas.js b/src/ngLocale/angular-locale_mas.js
index 16938f98df4d..3f46d8b76856 100644
--- a/src/ngLocale/angular-locale_mas.js
+++ b/src/ngLocale/angular-locale_mas.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Sh\u0289\u0301",
"Nt\u0289\u0301"
],
+ "STANDALONEMONTH": [
+ "Oladal\u0289\u0301",
+ "Ar\u00e1t",
+ "\u0186\u025bn\u0268\u0301\u0254\u0268\u014b\u0254k",
+ "Olodoy\u00ed\u00f3r\u00ed\u00ea ink\u00f3k\u00fa\u00e2",
+ "Oloil\u00e9p\u016bny\u012b\u0113 ink\u00f3k\u00fa\u00e2",
+ "K\u00faj\u00fa\u0254r\u0254k",
+ "M\u00f3rus\u00e1sin",
+ "\u0186l\u0254\u0301\u0268\u0301b\u0254\u0301r\u00e1r\u025b",
+ "K\u00fash\u00een",
+ "Olg\u00edsan",
+ "P\u0289sh\u0289\u0301ka",
+ "Nt\u0289\u0301\u014b\u0289\u0301s"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mer-ke.js b/src/ngLocale/angular-locale_mer-ke.js
index da3e57d0d5a0..3f4960dee88f 100644
--- a/src/ngLocale/angular-locale_mer-ke.js
+++ b/src/ngLocale/angular-locale_mer-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"NOV",
"DEC"
],
+ "STANDALONEMONTH": [
+ "Januar\u0129",
+ "Feburuar\u0129",
+ "Machi",
+ "\u0128pur\u0169",
+ "M\u0129\u0129",
+ "Njuni",
+ "Njura\u0129",
+ "Agasti",
+ "Septemba",
+ "Okt\u0169ba",
+ "Novemba",
+ "Dicemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mer.js b/src/ngLocale/angular-locale_mer.js
index 8c359f30edba..4b658b5600e4 100644
--- a/src/ngLocale/angular-locale_mer.js
+++ b/src/ngLocale/angular-locale_mer.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"NOV",
"DEC"
],
+ "STANDALONEMONTH": [
+ "Januar\u0129",
+ "Feburuar\u0129",
+ "Machi",
+ "\u0128pur\u0169",
+ "M\u0129\u0129",
+ "Njuni",
+ "Njura\u0129",
+ "Agasti",
+ "Septemba",
+ "Okt\u0169ba",
+ "Novemba",
+ "Dicemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mfe-mu.js b/src/ngLocale/angular-locale_mfe-mu.js
index 1222582ea749..ae9e8d82f1bf 100644
--- a/src/ngLocale/angular-locale_mfe-mu.js
+++ b/src/ngLocale/angular-locale_mfe-mu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"des"
],
+ "STANDALONEMONTH": [
+ "zanvie",
+ "fevriye",
+ "mars",
+ "avril",
+ "me",
+ "zin",
+ "zilye",
+ "out",
+ "septam",
+ "oktob",
+ "novam",
+ "desam"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mfe.js b/src/ngLocale/angular-locale_mfe.js
index 56029318d6cb..5578bcce76f5 100644
--- a/src/ngLocale/angular-locale_mfe.js
+++ b/src/ngLocale/angular-locale_mfe.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"des"
],
+ "STANDALONEMONTH": [
+ "zanvie",
+ "fevriye",
+ "mars",
+ "avril",
+ "me",
+ "zin",
+ "zilye",
+ "out",
+ "septam",
+ "oktob",
+ "novam",
+ "desam"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mg-mg.js b/src/ngLocale/angular-locale_mg-mg.js
index 7d6499176341..425c85fac52e 100644
--- a/src/ngLocale/angular-locale_mg-mg.js
+++ b/src/ngLocale/angular-locale_mg-mg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Janoary",
+ "Febroary",
+ "Martsa",
+ "Aprily",
+ "Mey",
+ "Jona",
+ "Jolay",
+ "Aogositra",
+ "Septambra",
+ "Oktobra",
+ "Novambra",
+ "Desambra"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mg.js b/src/ngLocale/angular-locale_mg.js
index 7b4b871689b9..64c69dda0c41 100644
--- a/src/ngLocale/angular-locale_mg.js
+++ b/src/ngLocale/angular-locale_mg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Janoary",
+ "Febroary",
+ "Martsa",
+ "Aprily",
+ "Mey",
+ "Jona",
+ "Jolay",
+ "Aogositra",
+ "Septambra",
+ "Oktobra",
+ "Novambra",
+ "Desambra"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mgh-mz.js b/src/ngLocale/angular-locale_mgh-mz.js
index 3a96657c7e30..b75b9d81cb80 100644
--- a/src/ngLocale/angular-locale_mgh-mz.js
+++ b/src/ngLocale/angular-locale_mgh-mz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Moj",
"Yel"
],
+ "STANDALONEMONTH": [
+ "Mweri wo kwanza",
+ "Mweri wo unayeli",
+ "Mweri wo uneraru",
+ "Mweri wo unecheshe",
+ "Mweri wo unethanu",
+ "Mweri wo thanu na mocha",
+ "Mweri wo saba",
+ "Mweri wo nane",
+ "Mweri wo tisa",
+ "Mweri wo kumi",
+ "Mweri wo kumi na moja",
+ "Mweri wo kumi na yel\u2019li"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mgh.js b/src/ngLocale/angular-locale_mgh.js
index 8b52d09442ec..cefa7dbf17a7 100644
--- a/src/ngLocale/angular-locale_mgh.js
+++ b/src/ngLocale/angular-locale_mgh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Moj",
"Yel"
],
+ "STANDALONEMONTH": [
+ "Mweri wo kwanza",
+ "Mweri wo unayeli",
+ "Mweri wo uneraru",
+ "Mweri wo unecheshe",
+ "Mweri wo unethanu",
+ "Mweri wo thanu na mocha",
+ "Mweri wo saba",
+ "Mweri wo nane",
+ "Mweri wo tisa",
+ "Mweri wo kumi",
+ "Mweri wo kumi na moja",
+ "Mweri wo kumi na yel\u2019li"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mgo-cm.js b/src/ngLocale/angular-locale_mgo-cm.js
index da0baa9d2173..ef41badcc926 100644
--- a/src/ngLocale/angular-locale_mgo-cm.js
+++ b/src/ngLocale/angular-locale_mgo-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"im\u0259g z\u00f2",
"im\u0259g krizmed"
],
+ "STANDALONEMONTH": [
+ "im\u0259g mbegtug",
+ "imeg \u00e0b\u00f9b\u00ec",
+ "imeg mb\u0259\u014bchubi",
+ "im\u0259g ngw\u0259\u0300t",
+ "im\u0259g fog",
+ "im\u0259g ichiib\u0254d",
+ "im\u0259g \u00e0d\u00f9mb\u0259\u0300\u014b",
+ "im\u0259g ichika",
+ "im\u0259g kud",
+ "im\u0259g t\u00e8si\u02bce",
+ "im\u0259g z\u00f2",
+ "im\u0259g krizmed"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mgo.js b/src/ngLocale/angular-locale_mgo.js
index 74bc53ecad0d..9f0d50882c9c 100644
--- a/src/ngLocale/angular-locale_mgo.js
+++ b/src/ngLocale/angular-locale_mgo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"im\u0259g z\u00f2",
"im\u0259g krizmed"
],
+ "STANDALONEMONTH": [
+ "im\u0259g mbegtug",
+ "imeg \u00e0b\u00f9b\u00ec",
+ "imeg mb\u0259\u014bchubi",
+ "im\u0259g ngw\u0259\u0300t",
+ "im\u0259g fog",
+ "im\u0259g ichiib\u0254d",
+ "im\u0259g \u00e0d\u00f9mb\u0259\u0300\u014b",
+ "im\u0259g ichika",
+ "im\u0259g kud",
+ "im\u0259g t\u00e8si\u02bce",
+ "im\u0259g z\u00f2",
+ "im\u0259g krizmed"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mk-mk.js b/src/ngLocale/angular-locale_mk-mk.js
index bd775d868684..6bda8ef30599 100644
--- a/src/ngLocale/angular-locale_mk-mk.js
+++ b/src/ngLocale/angular-locale_mk-mk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440\u0438",
+ "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d\u0438",
+ "\u0458\u0443\u043b\u0438",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
+ "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
+ "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
+ "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mk.js b/src/ngLocale/angular-locale_mk.js
index b456dc6efebd..c8145fa61667 100644
--- a/src/ngLocale/angular-locale_mk.js
+++ b/src/ngLocale/angular-locale_mk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440\u0438",
+ "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d\u0438",
+ "\u0458\u0443\u043b\u0438",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
+ "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
+ "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
+ "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ml-in.js b/src/ngLocale/angular-locale_ml-in.js
index c3d012ff7a1a..e3f23631343b 100644
--- a/src/ngLocale/angular-locale_ml-in.js
+++ b/src/ngLocale/angular-locale_ml-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0d28\u0d35\u0d02",
"\u0d21\u0d3f\u0d38\u0d02"
],
+ "STANDALONEMONTH": [
+ "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f",
+ "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f",
+ "\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d",
+ "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d",
+ "\u0d2e\u0d47\u0d2f\u0d4d",
+ "\u0d1c\u0d42\u0d7a",
+ "\u0d1c\u0d42\u0d32\u0d48",
+ "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
+ "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c",
+ "\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c",
+ "\u0d28\u0d35\u0d02\u0d2c\u0d7c",
+ "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ml.js b/src/ngLocale/angular-locale_ml.js
index 8d50656ed960..e7a3fd4d01fb 100644
--- a/src/ngLocale/angular-locale_ml.js
+++ b/src/ngLocale/angular-locale_ml.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0d28\u0d35\u0d02",
"\u0d21\u0d3f\u0d38\u0d02"
],
+ "STANDALONEMONTH": [
+ "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f",
+ "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f",
+ "\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d",
+ "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d",
+ "\u0d2e\u0d47\u0d2f\u0d4d",
+ "\u0d1c\u0d42\u0d7a",
+ "\u0d1c\u0d42\u0d32\u0d48",
+ "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
+ "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c",
+ "\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c",
+ "\u0d28\u0d35\u0d02\u0d2c\u0d7c",
+ "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_mn-cyrl-mn.js b/src/ngLocale/angular-locale_mn-cyrl-mn.js
index 961fdd2c6d53..a49572945229 100644
--- a/src/ngLocale/angular-locale_mn-cyrl-mn.js
+++ b/src/ngLocale/angular-locale_mn-cyrl-mn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11-\u0440 \u0441\u0430\u0440",
"12-\u0440 \u0441\u0430\u0440"
],
+ "STANDALONEMONTH": [
+ "\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mn-cyrl.js b/src/ngLocale/angular-locale_mn-cyrl.js
index c69a40d3823b..41a2166a8540 100644
--- a/src/ngLocale/angular-locale_mn-cyrl.js
+++ b/src/ngLocale/angular-locale_mn-cyrl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11-\u0440 \u0441\u0430\u0440",
"12-\u0440 \u0441\u0430\u0440"
],
+ "STANDALONEMONTH": [
+ "\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mn.js b/src/ngLocale/angular-locale_mn.js
index 0b4240931be3..c29b23a70735 100644
--- a/src/ngLocale/angular-locale_mn.js
+++ b/src/ngLocale/angular-locale_mn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11-\u0440 \u0441\u0430\u0440",
"12-\u0440 \u0441\u0430\u0440"
],
+ "STANDALONEMONTH": [
+ "\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440",
+ "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mr-in.js b/src/ngLocale/angular-locale_mr-in.js
index b040d89d5218..6987709bbb37 100644
--- a/src/ngLocale/angular-locale_mr-in.js
+++ b/src/ngLocale/angular-locale_mr-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u094b\u0935\u094d\u0939\u0947\u0902",
"\u0921\u093f\u0938\u0947\u0902"
],
+ "STANDALONEMONTH": [
+ "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u090f\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0942\u0928",
+ "\u091c\u0941\u0932\u0948",
+ "\u0911\u0917\u0938\u094d\u091f",
+ "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
+ "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_mr.js b/src/ngLocale/angular-locale_mr.js
index 5f5847dfdf94..95489e794600 100644
--- a/src/ngLocale/angular-locale_mr.js
+++ b/src/ngLocale/angular-locale_mr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u094b\u0935\u094d\u0939\u0947\u0902",
"\u0921\u093f\u0938\u0947\u0902"
],
+ "STANDALONEMONTH": [
+ "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u090f\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0942\u0928",
+ "\u091c\u0941\u0932\u0948",
+ "\u0911\u0917\u0938\u094d\u091f",
+ "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
+ "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ms-latn-bn.js b/src/ngLocale/angular-locale_ms-latn-bn.js
index 1bc9d07ce225..8194f4ddfb52 100644
--- a/src/ngLocale/angular-locale_ms-latn-bn.js
+++ b/src/ngLocale/angular-locale_ms-latn-bn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mac",
+ "April",
+ "Mei",
+ "Jun",
+ "Julai",
+ "Ogos",
+ "September",
+ "Oktober",
+ "November",
+ "Disember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ms-latn-my.js b/src/ngLocale/angular-locale_ms-latn-my.js
index 5177e15f4221..24c1a2378e64 100644
--- a/src/ngLocale/angular-locale_ms-latn-my.js
+++ b/src/ngLocale/angular-locale_ms-latn-my.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mac",
+ "April",
+ "Mei",
+ "Jun",
+ "Julai",
+ "Ogos",
+ "September",
+ "Oktober",
+ "November",
+ "Disember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ms-latn-sg.js b/src/ngLocale/angular-locale_ms-latn-sg.js
index ebd3bd4cbbc1..65e9d3b8e597 100644
--- a/src/ngLocale/angular-locale_ms-latn-sg.js
+++ b/src/ngLocale/angular-locale_ms-latn-sg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mac",
+ "April",
+ "Mei",
+ "Jun",
+ "Julai",
+ "Ogos",
+ "September",
+ "Oktober",
+ "November",
+ "Disember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ms-latn.js b/src/ngLocale/angular-locale_ms-latn.js
index 2d4c07a84282..fdecd0f49f9e 100644
--- a/src/ngLocale/angular-locale_ms-latn.js
+++ b/src/ngLocale/angular-locale_ms-latn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mac",
+ "April",
+ "Mei",
+ "Jun",
+ "Julai",
+ "Ogos",
+ "September",
+ "Oktober",
+ "November",
+ "Disember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ms.js b/src/ngLocale/angular-locale_ms.js
index 0549f85b0e4f..37e14a6bf1ff 100644
--- a/src/ngLocale/angular-locale_ms.js
+++ b/src/ngLocale/angular-locale_ms.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mac",
+ "April",
+ "Mei",
+ "Jun",
+ "Julai",
+ "Ogos",
+ "September",
+ "Oktober",
+ "November",
+ "Disember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mt-mt.js b/src/ngLocale/angular-locale_mt-mt.js
index 20170a1a0a41..6377ee69ec7d 100644
--- a/src/ngLocale/angular-locale_mt-mt.js
+++ b/src/ngLocale/angular-locale_mt-mt.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Di\u010b"
],
+ "STANDALONEMONTH": [
+ "Jannar",
+ "Frar",
+ "Marzu",
+ "April",
+ "Mejju",
+ "\u0120unju",
+ "Lulju",
+ "Awwissu",
+ "Settembru",
+ "Ottubru",
+ "Novembru",
+ "Di\u010bembru"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mt.js b/src/ngLocale/angular-locale_mt.js
index 94902b1952f0..17ffdf79f0bb 100644
--- a/src/ngLocale/angular-locale_mt.js
+++ b/src/ngLocale/angular-locale_mt.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Di\u010b"
],
+ "STANDALONEMONTH": [
+ "Jannar",
+ "Frar",
+ "Marzu",
+ "April",
+ "Mejju",
+ "\u0120unju",
+ "Lulju",
+ "Awwissu",
+ "Settembru",
+ "Ottubru",
+ "Novembru",
+ "Di\u010bembru"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mua-cm.js b/src/ngLocale/angular-locale_mua-cm.js
index 49c1012de479..ef4142a54473 100644
--- a/src/ngLocale/angular-locale_mua-cm.js
+++ b/src/ngLocale/angular-locale_mua-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"FGW",
"FYU"
],
+ "STANDALONEMONTH": [
+ "F\u0129i Loo",
+ "Cokcwakla\u014bne",
+ "Cokcwaklii",
+ "F\u0129i Marfoo",
+ "Mad\u01dd\u01dduut\u01ddbija\u014b",
+ "Mam\u01dd\u014bgw\u00e3afahbii",
+ "Mam\u01dd\u014bgw\u00e3alii",
+ "Mad\u01ddmbii",
+ "F\u0129i D\u01dd\u0253lii",
+ "F\u0129i Munda\u014b",
+ "F\u0129i Gwahlle",
+ "F\u0129i Yuru"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_mua.js b/src/ngLocale/angular-locale_mua.js
index c5f30a2f850b..3aa7d673cff3 100644
--- a/src/ngLocale/angular-locale_mua.js
+++ b/src/ngLocale/angular-locale_mua.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"FGW",
"FYU"
],
+ "STANDALONEMONTH": [
+ "F\u0129i Loo",
+ "Cokcwakla\u014bne",
+ "Cokcwaklii",
+ "F\u0129i Marfoo",
+ "Mad\u01dd\u01dduut\u01ddbija\u014b",
+ "Mam\u01dd\u014bgw\u00e3afahbii",
+ "Mam\u01dd\u014bgw\u00e3alii",
+ "Mad\u01ddmbii",
+ "F\u0129i D\u01dd\u0253lii",
+ "F\u0129i Munda\u014b",
+ "F\u0129i Gwahlle",
+ "F\u0129i Yuru"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_my-mm.js b/src/ngLocale/angular-locale_my-mm.js
index d658ac96cd73..560eb6111595 100644
--- a/src/ngLocale/angular-locale_my-mm.js
+++ b/src/ngLocale/angular-locale_my-mm.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u1014\u102d\u102f",
"\u1012\u102e"
],
+ "STANDALONEMONTH": [
+ "\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e",
+ "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e",
+ "\u1019\u1010\u103a",
+ "\u1027\u1015\u103c\u102e",
+ "\u1019\u1031",
+ "\u1007\u103d\u1014\u103a",
+ "\u1007\u1030\u101c\u102d\u102f\u1004\u103a",
+ "\u1029\u1002\u102f\u1010\u103a",
+ "\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c",
+ "\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c",
+ "\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c",
+ "\u1012\u102e\u1007\u1004\u103a\u1018\u102c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_my.js b/src/ngLocale/angular-locale_my.js
index 7a6c02b472d7..ad609dba463f 100644
--- a/src/ngLocale/angular-locale_my.js
+++ b/src/ngLocale/angular-locale_my.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u1014\u102d\u102f",
"\u1012\u102e"
],
+ "STANDALONEMONTH": [
+ "\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e",
+ "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e",
+ "\u1019\u1010\u103a",
+ "\u1027\u1015\u103c\u102e",
+ "\u1019\u1031",
+ "\u1007\u103d\u1014\u103a",
+ "\u1007\u1030\u101c\u102d\u102f\u1004\u103a",
+ "\u1029\u1002\u102f\u1010\u103a",
+ "\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c",
+ "\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c",
+ "\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c",
+ "\u1012\u102e\u1007\u1004\u103a\u1018\u102c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_naq-na.js b/src/ngLocale/angular-locale_naq-na.js
index 699ab6211b3f..55ccfa94dfe0 100644
--- a/src/ngLocale/angular-locale_naq-na.js
+++ b/src/ngLocale/angular-locale_naq-na.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "\u01c3Khanni",
+ "\u01c3Khan\u01c0g\u00f4ab",
+ "\u01c0Khuu\u01c1kh\u00e2b",
+ "\u01c3H\u00f4a\u01c2khaib",
+ "\u01c3Khaits\u00e2b",
+ "Gama\u01c0aeb",
+ "\u01c2Khoesaob",
+ "Ao\u01c1khuum\u00fb\u01c1kh\u00e2b",
+ "Tara\u01c0khuum\u00fb\u01c1kh\u00e2b",
+ "\u01c2N\u00fb\u01c1n\u00e2iseb",
+ "\u01c0Hoo\u01c2gaeb",
+ "H\u00f4asore\u01c1kh\u00e2b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_naq.js b/src/ngLocale/angular-locale_naq.js
index 3c376cdb7de2..ee3ae873709d 100644
--- a/src/ngLocale/angular-locale_naq.js
+++ b/src/ngLocale/angular-locale_naq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "\u01c3Khanni",
+ "\u01c3Khan\u01c0g\u00f4ab",
+ "\u01c0Khuu\u01c1kh\u00e2b",
+ "\u01c3H\u00f4a\u01c2khaib",
+ "\u01c3Khaits\u00e2b",
+ "Gama\u01c0aeb",
+ "\u01c2Khoesaob",
+ "Ao\u01c1khuum\u00fb\u01c1kh\u00e2b",
+ "Tara\u01c0khuum\u00fb\u01c1kh\u00e2b",
+ "\u01c2N\u00fb\u01c1n\u00e2iseb",
+ "\u01c0Hoo\u01c2gaeb",
+ "H\u00f4asore\u01c1kh\u00e2b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nb-no.js b/src/ngLocale/angular-locale_nb-no.js
index 931bf639e739..b6fd1312cf61 100644
--- a/src/ngLocale/angular-locale_nb-no.js
+++ b/src/ngLocale/angular-locale_nb-no.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nb-sj.js b/src/ngLocale/angular-locale_nb-sj.js
index 487815bf0f98..92d048b0a12e 100644
--- a/src/ngLocale/angular-locale_nb-sj.js
+++ b/src/ngLocale/angular-locale_nb-sj.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nb.js b/src/ngLocale/angular-locale_nb.js
index 61106d82e15d..54fe1f0c567c 100644
--- a/src/ngLocale/angular-locale_nb.js
+++ b/src/ngLocale/angular-locale_nb.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nd-zw.js b/src/ngLocale/angular-locale_nd-zw.js
index b9ac58142e15..89d2ff89aa30 100644
--- a/src/ngLocale/angular-locale_nd-zw.js
+++ b/src/ngLocale/angular-locale_nd-zw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Lwe",
"Mpal"
],
+ "STANDALONEMONTH": [
+ "Zibandlela",
+ "Nhlolanja",
+ "Mbimbitho",
+ "Mabasa",
+ "Nkwenkwezi",
+ "Nhlangula",
+ "Ntulikazi",
+ "Ncwabakazi",
+ "Mpandula",
+ "Mfumfu",
+ "Lwezi",
+ "Mpalakazi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nd.js b/src/ngLocale/angular-locale_nd.js
index 96d113bd1664..63dd61fdc333 100644
--- a/src/ngLocale/angular-locale_nd.js
+++ b/src/ngLocale/angular-locale_nd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Lwe",
"Mpal"
],
+ "STANDALONEMONTH": [
+ "Zibandlela",
+ "Nhlolanja",
+ "Mbimbitho",
+ "Mabasa",
+ "Nkwenkwezi",
+ "Nhlangula",
+ "Ntulikazi",
+ "Ncwabakazi",
+ "Mpandula",
+ "Mfumfu",
+ "Lwezi",
+ "Mpalakazi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ne-in.js b/src/ngLocale/angular-locale_ne-in.js
index 283c8ca2adf8..f827eb7cd4a2 100644
--- a/src/ngLocale/angular-locale_ne-in.js
+++ b/src/ngLocale/angular-locale_ne-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930",
"\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u0928\u0935\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u0905\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0941\u0928",
+ "\u091c\u0941\u0932\u093e\u0908",
+ "\u0905\u0917\u0938\u094d\u091f",
+ "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930",
+ "\u0905\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ne-np.js b/src/ngLocale/angular-locale_ne-np.js
index d8e52d088ab4..5e7b5737659d 100644
--- a/src/ngLocale/angular-locale_ne-np.js
+++ b/src/ngLocale/angular-locale_ne-np.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930",
"\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u0928\u0935\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u0905\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0941\u0928",
+ "\u091c\u0941\u0932\u093e\u0908",
+ "\u0905\u0917\u0938\u094d\u091f",
+ "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930",
+ "\u0905\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ne.js b/src/ngLocale/angular-locale_ne.js
index cff99fec1bf4..26ab63e1e93e 100644
--- a/src/ngLocale/angular-locale_ne.js
+++ b/src/ngLocale/angular-locale_ne.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930",
"\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"
],
+ "STANDALONEMONTH": [
+ "\u091c\u0928\u0935\u0930\u0940",
+ "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940",
+ "\u092e\u093e\u0930\u094d\u091a",
+ "\u0905\u092a\u094d\u0930\u093f\u0932",
+ "\u092e\u0947",
+ "\u091c\u0941\u0928",
+ "\u091c\u0941\u0932\u093e\u0908",
+ "\u0905\u0917\u0938\u094d\u091f",
+ "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930",
+ "\u0905\u0915\u094d\u091f\u094b\u092c\u0930",
+ "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930",
+ "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-aw.js b/src/ngLocale/angular-locale_nl-aw.js
index 3e22477d4e31..3f3ab3fd162c 100644
--- a/src/ngLocale/angular-locale_nl-aw.js
+++ b/src/ngLocale/angular-locale_nl-aw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-be.js b/src/ngLocale/angular-locale_nl-be.js
index 38ba3ab8425e..5ec84e3d40c4 100644
--- a/src/ngLocale/angular-locale_nl-be.js
+++ b/src/ngLocale/angular-locale_nl-be.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-bq.js b/src/ngLocale/angular-locale_nl-bq.js
index 87c008a23afd..4d1ca2504a45 100644
--- a/src/ngLocale/angular-locale_nl-bq.js
+++ b/src/ngLocale/angular-locale_nl-bq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-cw.js b/src/ngLocale/angular-locale_nl-cw.js
index 7475f6ed9bb0..0966a86bbd29 100644
--- a/src/ngLocale/angular-locale_nl-cw.js
+++ b/src/ngLocale/angular-locale_nl-cw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-nl.js b/src/ngLocale/angular-locale_nl-nl.js
index 3b7bd150e686..ff59e65ac3b1 100644
--- a/src/ngLocale/angular-locale_nl-nl.js
+++ b/src/ngLocale/angular-locale_nl-nl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-sr.js b/src/ngLocale/angular-locale_nl-sr.js
index 06875a8158a7..49e5c7bcd354 100644
--- a/src/ngLocale/angular-locale_nl-sr.js
+++ b/src/ngLocale/angular-locale_nl-sr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl-sx.js b/src/ngLocale/angular-locale_nl-sx.js
index c59dfb5accaa..9234decf7c71 100644
--- a/src/ngLocale/angular-locale_nl-sx.js
+++ b/src/ngLocale/angular-locale_nl-sx.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nl.js b/src/ngLocale/angular-locale_nl.js
index 79428d98be28..8b0bc820cc0d 100644
--- a/src/ngLocale/angular-locale_nl.js
+++ b/src/ngLocale/angular-locale_nl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Maart",
+ "April",
+ "Mei",
+ "Juni",
+ "Juli",
+ "Augustus",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nmg-cm.js b/src/ngLocale/angular-locale_nmg-cm.js
index 24594190e8da..f77a235c0518 100644
--- a/src/ngLocale/angular-locale_nmg-cm.js
+++ b/src/ngLocale/angular-locale_nmg-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ng11",
"kris"
],
+ "STANDALONEMONTH": [
+ "ngw\u025bn mat\u00e1hra",
+ "ngw\u025bn \u0144mba",
+ "ngw\u025bn \u0144lal",
+ "ngw\u025bn \u0144na",
+ "ngw\u025bn \u0144tan",
+ "ngw\u025bn \u0144tu\u00f3",
+ "ngw\u025bn h\u025bmbu\u025br\u00ed",
+ "ngw\u025bn l\u0254mbi",
+ "ngw\u025bn r\u025bbvu\u00e2",
+ "ngw\u025bn wum",
+ "ngw\u025bn wum nav\u01d4r",
+ "kr\u00edsimin"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nmg.js b/src/ngLocale/angular-locale_nmg.js
index 98f5073e6f78..73588a8e9071 100644
--- a/src/ngLocale/angular-locale_nmg.js
+++ b/src/ngLocale/angular-locale_nmg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ng11",
"kris"
],
+ "STANDALONEMONTH": [
+ "ngw\u025bn mat\u00e1hra",
+ "ngw\u025bn \u0144mba",
+ "ngw\u025bn \u0144lal",
+ "ngw\u025bn \u0144na",
+ "ngw\u025bn \u0144tan",
+ "ngw\u025bn \u0144tu\u00f3",
+ "ngw\u025bn h\u025bmbu\u025br\u00ed",
+ "ngw\u025bn l\u0254mbi",
+ "ngw\u025bn r\u025bbvu\u00e2",
+ "ngw\u025bn wum",
+ "ngw\u025bn wum nav\u01d4r",
+ "kr\u00edsimin"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nn-no.js b/src/ngLocale/angular-locale_nn-no.js
index c303718bb475..05da031f81de 100644
--- a/src/ngLocale/angular-locale_nn-no.js
+++ b/src/ngLocale/angular-locale_nn-no.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nn.js b/src/ngLocale/angular-locale_nn.js
index 6d2f0370c59a..50d242215ad8 100644
--- a/src/ngLocale/angular-locale_nn.js
+++ b/src/ngLocale/angular-locale_nn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nnh-cm.js b/src/ngLocale/angular-locale_nnh-cm.js
index 92eef3bf8058..1236df95fbfa 100644
--- a/src/ngLocale/angular-locale_nnh-cm.js
+++ b/src/ngLocale/angular-locale_nnh-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"sa\u014b mejwo\u014b\u00f3",
"sa\u014b l\u00f9m"
],
+ "STANDALONEMONTH": [
+ "sa\u014b tsets\u025b\u0300\u025b l\u00f9m",
+ "sa\u014b k\u00e0g ngw\u00f3\u014b",
+ "sa\u014b lepy\u00e8 sh\u00fam",
+ "sa\u014b c\u00ff\u00f3",
+ "sa\u014b ts\u025b\u0300\u025b c\u00ff\u00f3",
+ "sa\u014b nj\u00ffol\u00e1\u02bc",
+ "sa\u014b ty\u025b\u0300b ty\u025b\u0300b mb\u0289\u0300",
+ "sa\u014b mb\u0289\u0300\u014b",
+ "sa\u014b ngw\u0254\u0300\u02bc mb\u00ff\u025b",
+ "sa\u014b t\u00e0\u014ba tsets\u00e1\u02bc",
+ "sa\u014b mejwo\u014b\u00f3",
+ "sa\u014b l\u00f9m"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nnh.js b/src/ngLocale/angular-locale_nnh.js
index b8745d193346..631bbdc6e43f 100644
--- a/src/ngLocale/angular-locale_nnh.js
+++ b/src/ngLocale/angular-locale_nnh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"sa\u014b mejwo\u014b\u00f3",
"sa\u014b l\u00f9m"
],
+ "STANDALONEMONTH": [
+ "sa\u014b tsets\u025b\u0300\u025b l\u00f9m",
+ "sa\u014b k\u00e0g ngw\u00f3\u014b",
+ "sa\u014b lepy\u00e8 sh\u00fam",
+ "sa\u014b c\u00ff\u00f3",
+ "sa\u014b ts\u025b\u0300\u025b c\u00ff\u00f3",
+ "sa\u014b nj\u00ffol\u00e1\u02bc",
+ "sa\u014b ty\u025b\u0300b ty\u025b\u0300b mb\u0289\u0300",
+ "sa\u014b mb\u0289\u0300\u014b",
+ "sa\u014b ngw\u0254\u0300\u02bc mb\u00ff\u025b",
+ "sa\u014b t\u00e0\u014ba tsets\u00e1\u02bc",
+ "sa\u014b mejwo\u014b\u00f3",
+ "sa\u014b l\u00f9m"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_no-no.js b/src/ngLocale/angular-locale_no-no.js
index dc93791c96be..ccc662b0ee04 100644
--- a/src/ngLocale/angular-locale_no-no.js
+++ b/src/ngLocale/angular-locale_no-no.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_no.js b/src/ngLocale/angular-locale_no.js
index b0b2fec1c676..07585f4b5788 100644
--- a/src/ngLocale/angular-locale_no.js
+++ b/src/ngLocale/angular-locale_no.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov.",
"des."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mars",
+ "april",
+ "mai",
+ "juni",
+ "juli",
+ "august",
+ "september",
+ "oktober",
+ "november",
+ "desember"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nus-sd.js b/src/ngLocale/angular-locale_nus-sd.js
index a46aee485d63..64f90a4bd332 100644
--- a/src/ngLocale/angular-locale_nus-sd.js
+++ b/src/ngLocale/angular-locale_nus-sd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kur",
"Tid"
],
+ "STANDALONEMONTH": [
+ "Tiop thar p\u025bt",
+ "P\u025bt",
+ "Du\u0254\u0331\u0254\u0331\u014b",
+ "Guak",
+ "Du\u00e4t",
+ "Kornyoot",
+ "Pay yie\u0331tni",
+ "Tho\u0331o\u0331r",
+ "T\u025b\u025br",
+ "Laath",
+ "Kur",
+ "Tio\u0331p in di\u0331i\u0331t"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nus.js b/src/ngLocale/angular-locale_nus.js
index 8d2014984505..9588182ce884 100644
--- a/src/ngLocale/angular-locale_nus.js
+++ b/src/ngLocale/angular-locale_nus.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Kur",
"Tid"
],
+ "STANDALONEMONTH": [
+ "Tiop thar p\u025bt",
+ "P\u025bt",
+ "Du\u0254\u0331\u0254\u0331\u014b",
+ "Guak",
+ "Du\u00e4t",
+ "Kornyoot",
+ "Pay yie\u0331tni",
+ "Tho\u0331o\u0331r",
+ "T\u025b\u025br",
+ "Laath",
+ "Kur",
+ "Tio\u0331p in di\u0331i\u0331t"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nyn-ug.js b/src/ngLocale/angular-locale_nyn-ug.js
index bc15a7dce521..1cde06938cfa 100644
--- a/src/ngLocale/angular-locale_nyn-ug.js
+++ b/src/ngLocale/angular-locale_nyn-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KNK",
"KNB"
],
+ "STANDALONEMONTH": [
+ "Okwokubanza",
+ "Okwakabiri",
+ "Okwakashatu",
+ "Okwakana",
+ "Okwakataana",
+ "Okwamukaaga",
+ "Okwamushanju",
+ "Okwamunaana",
+ "Okwamwenda",
+ "Okwaikumi",
+ "Okwaikumi na kumwe",
+ "Okwaikumi na ibiri"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_nyn.js b/src/ngLocale/angular-locale_nyn.js
index ecc65b9ba843..31cf2bcbcca6 100644
--- a/src/ngLocale/angular-locale_nyn.js
+++ b/src/ngLocale/angular-locale_nyn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KNK",
"KNB"
],
+ "STANDALONEMONTH": [
+ "Okwokubanza",
+ "Okwakabiri",
+ "Okwakashatu",
+ "Okwakana",
+ "Okwakataana",
+ "Okwamukaaga",
+ "Okwamushanju",
+ "Okwamunaana",
+ "Okwamwenda",
+ "Okwaikumi",
+ "Okwaikumi na kumwe",
+ "Okwaikumi na ibiri"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_om-et.js b/src/ngLocale/angular-locale_om-et.js
index 3857abd03935..b6e63b053277 100644
--- a/src/ngLocale/angular-locale_om-et.js
+++ b/src/ngLocale/angular-locale_om-et.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Sad",
"Mud"
],
+ "STANDALONEMONTH": [
+ "Amajjii",
+ "Guraandhala",
+ "Bitooteessa",
+ "Elba",
+ "Caamsa",
+ "Waxabajjii",
+ "Adooleessa",
+ "Hagayya",
+ "Fuulbana",
+ "Onkololeessa",
+ "Sadaasa",
+ "Muddee"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_om-ke.js b/src/ngLocale/angular-locale_om-ke.js
index dba7fd1f3393..d23f6a66419e 100644
--- a/src/ngLocale/angular-locale_om-ke.js
+++ b/src/ngLocale/angular-locale_om-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Sad",
"Mud"
],
+ "STANDALONEMONTH": [
+ "Amajjii",
+ "Guraandhala",
+ "Bitooteessa",
+ "Elba",
+ "Caamsa",
+ "Waxabajjii",
+ "Adooleessa",
+ "Hagayya",
+ "Fuulbana",
+ "Onkololeessa",
+ "Sadaasa",
+ "Muddee"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_om.js b/src/ngLocale/angular-locale_om.js
index c41c27722e51..24fb7e6f0401 100644
--- a/src/ngLocale/angular-locale_om.js
+++ b/src/ngLocale/angular-locale_om.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Sad",
"Mud"
],
+ "STANDALONEMONTH": [
+ "Amajjii",
+ "Guraandhala",
+ "Bitooteessa",
+ "Elba",
+ "Caamsa",
+ "Waxabajjii",
+ "Adooleessa",
+ "Hagayya",
+ "Fuulbana",
+ "Onkololeessa",
+ "Sadaasa",
+ "Muddee"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_or-in.js b/src/ngLocale/angular-locale_or-in.js
index 5f1da84c5e9a..b972437f9d51 100644
--- a/src/ngLocale/angular-locale_or-in.js
+++ b/src/ngLocale/angular-locale_or-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
"\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
],
+ "STANDALONEMONTH": [
+ "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
+ "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40",
+ "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
+ "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
+ "\u0b2e\u0b07",
+ "\u0b1c\u0b41\u0b28",
+ "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
+ "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
+ "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
+ "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_or.js b/src/ngLocale/angular-locale_or.js
index 43c4fd3af647..82edfb9d262e 100644
--- a/src/ngLocale/angular-locale_or.js
+++ b/src/ngLocale/angular-locale_or.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
"\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
],
+ "STANDALONEMONTH": [
+ "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
+ "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40",
+ "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
+ "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
+ "\u0b2e\u0b07",
+ "\u0b1c\u0b41\u0b28",
+ "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
+ "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
+ "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
+ "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_os-ge.js b/src/ngLocale/angular-locale_os-ge.js
index 3516f726b96f..17841ea9269b 100644
--- a/src/ngLocale/angular-locale_os-ge.js
+++ b/src/ngLocale/angular-locale_os-ge.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440\u044c",
+ "\u0424\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u041c\u0430\u0440\u0442\u044a\u0438",
+ "\u0410\u043f\u0440\u0435\u043b\u044c",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d\u044c",
+ "\u0418\u044e\u043b\u044c",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u041e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u041d\u043e\u044f\u0431\u0440\u044c",
+ "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_os-ru.js b/src/ngLocale/angular-locale_os-ru.js
index d740670b057a..4cb8879a74cd 100644
--- a/src/ngLocale/angular-locale_os-ru.js
+++ b/src/ngLocale/angular-locale_os-ru.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440\u044c",
+ "\u0424\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u041c\u0430\u0440\u0442\u044a\u0438",
+ "\u0410\u043f\u0440\u0435\u043b\u044c",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d\u044c",
+ "\u0418\u044e\u043b\u044c",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u041e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u041d\u043e\u044f\u0431\u0440\u044c",
+ "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_os.js b/src/ngLocale/angular-locale_os.js
index a643a330faf2..5d1c43491db3 100644
--- a/src/ngLocale/angular-locale_os.js
+++ b/src/ngLocale/angular-locale_os.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440\u044c",
+ "\u0424\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u041c\u0430\u0440\u0442\u044a\u0438",
+ "\u0410\u043f\u0440\u0435\u043b\u044c",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d\u044c",
+ "\u0418\u044e\u043b\u044c",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u041e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u041d\u043e\u044f\u0431\u0440\u044c",
+ "\u0414\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pa-arab-pk.js b/src/ngLocale/angular-locale_pa-arab-pk.js
index 90f605797616..464c6664e50a 100644
--- a/src/ngLocale/angular-locale_pa-arab-pk.js
+++ b/src/ngLocale/angular-locale_pa-arab-pk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u0626",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u0626\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pa-arab.js b/src/ngLocale/angular-locale_pa-arab.js
index 184a60c70d12..44938a70797a 100644
--- a/src/ngLocale/angular-locale_pa-arab.js
+++ b/src/ngLocale/angular-locale_pa-arab.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u0626",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u0626\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pa-guru-in.js b/src/ngLocale/angular-locale_pa-guru-in.js
index 3572f992afeb..5bab508201d4 100644
--- a/src/ngLocale/angular-locale_pa-guru-in.js
+++ b/src/ngLocale/angular-locale_pa-guru-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0a28\u0a35\u0a70",
"\u0a26\u0a38\u0a70"
],
+ "STANDALONEMONTH": [
+ "\u0a1c\u0a28\u0a35\u0a30\u0a40",
+ "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40",
+ "\u0a2e\u0a3e\u0a30\u0a1a",
+ "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32",
+ "\u0a2e\u0a08",
+ "\u0a1c\u0a42\u0a28",
+ "\u0a1c\u0a41\u0a32\u0a3e\u0a08",
+ "\u0a05\u0a17\u0a38\u0a24",
+ "\u0a38\u0a24\u0a70\u0a2c\u0a30",
+ "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30",
+ "\u0a28\u0a35\u0a70\u0a2c\u0a30",
+ "\u0a26\u0a38\u0a70\u0a2c\u0a30"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_pa-guru.js b/src/ngLocale/angular-locale_pa-guru.js
index 18c8431ceed5..63eb6c2f30a3 100644
--- a/src/ngLocale/angular-locale_pa-guru.js
+++ b/src/ngLocale/angular-locale_pa-guru.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0a28\u0a35\u0a70",
"\u0a26\u0a38\u0a70"
],
+ "STANDALONEMONTH": [
+ "\u0a1c\u0a28\u0a35\u0a30\u0a40",
+ "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40",
+ "\u0a2e\u0a3e\u0a30\u0a1a",
+ "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32",
+ "\u0a2e\u0a08",
+ "\u0a1c\u0a42\u0a28",
+ "\u0a1c\u0a41\u0a32\u0a3e\u0a08",
+ "\u0a05\u0a17\u0a38\u0a24",
+ "\u0a38\u0a24\u0a70\u0a2c\u0a30",
+ "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30",
+ "\u0a28\u0a35\u0a70\u0a2c\u0a30",
+ "\u0a26\u0a38\u0a70\u0a2c\u0a30"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_pa.js b/src/ngLocale/angular-locale_pa.js
index 6f6dc99539b3..a939a4581bf5 100644
--- a/src/ngLocale/angular-locale_pa.js
+++ b/src/ngLocale/angular-locale_pa.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0a28\u0a35\u0a70",
"\u0a26\u0a38\u0a70"
],
+ "STANDALONEMONTH": [
+ "\u0a1c\u0a28\u0a35\u0a30\u0a40",
+ "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40",
+ "\u0a2e\u0a3e\u0a30\u0a1a",
+ "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32",
+ "\u0a2e\u0a08",
+ "\u0a1c\u0a42\u0a28",
+ "\u0a1c\u0a41\u0a32\u0a3e\u0a08",
+ "\u0a05\u0a17\u0a38\u0a24",
+ "\u0a38\u0a24\u0a70\u0a2c\u0a30",
+ "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30",
+ "\u0a28\u0a35\u0a70\u0a2c\u0a30",
+ "\u0a26\u0a38\u0a70\u0a2c\u0a30"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_pl-pl.js b/src/ngLocale/angular-locale_pl-pl.js
index fae20c898c71..ea2e09620c66 100644
--- a/src/ngLocale/angular-locale_pl-pl.js
+++ b/src/ngLocale/angular-locale_pl-pl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"lis",
"gru"
],
+ "STANDALONEMONTH": [
+ "stycze\u0144",
+ "luty",
+ "marzec",
+ "kwiecie\u0144",
+ "maj",
+ "czerwiec",
+ "lipiec",
+ "sierpie\u0144",
+ "wrzesie\u0144",
+ "pa\u017adziernik",
+ "listopad",
+ "grudzie\u0144"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pl.js b/src/ngLocale/angular-locale_pl.js
index a37a284f72be..6999f918d604 100644
--- a/src/ngLocale/angular-locale_pl.js
+++ b/src/ngLocale/angular-locale_pl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"lis",
"gru"
],
+ "STANDALONEMONTH": [
+ "stycze\u0144",
+ "luty",
+ "marzec",
+ "kwiecie\u0144",
+ "maj",
+ "czerwiec",
+ "lipiec",
+ "sierpie\u0144",
+ "wrzesie\u0144",
+ "pa\u017adziernik",
+ "listopad",
+ "grudzie\u0144"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ps-af.js b/src/ngLocale/angular-locale_ps-af.js
index d6d407750223..516d9be4980d 100644
--- a/src/ngLocale/angular-locale_ps-af.js
+++ b/src/ngLocale/angular-locale_ps-af.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u064a",
+ "\u0641\u0628\u0631\u0648\u0631\u064a",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u06cc",
+ "\u0627\u06ab\u0633\u062a",
+ "\u0633\u067e\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
3,
4
diff --git a/src/ngLocale/angular-locale_ps.js b/src/ngLocale/angular-locale_ps.js
index 4bbe51110495..2ffb84116cd8 100644
--- a/src/ngLocale/angular-locale_ps.js
+++ b/src/ngLocale/angular-locale_ps.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u064a",
+ "\u0641\u0628\u0631\u0648\u0631\u064a",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u06cc",
+ "\u0627\u06ab\u0633\u062a",
+ "\u0633\u067e\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
3,
4
diff --git a/src/ngLocale/angular-locale_pt-ao.js b/src/ngLocale/angular-locale_pt-ao.js
index dcc91dab62aa..45633778f376 100644
--- a/src/ngLocale/angular-locale_pt-ao.js
+++ b/src/ngLocale/angular-locale_pt-ao.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-br.js b/src/ngLocale/angular-locale_pt-br.js
index 146aad33647a..6ff4b5e4f5e9 100644
--- a/src/ngLocale/angular-locale_pt-br.js
+++ b/src/ngLocale/angular-locale_pt-br.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-cv.js b/src/ngLocale/angular-locale_pt-cv.js
index d9beaa1d60b9..7dd09909707d 100644
--- a/src/ngLocale/angular-locale_pt-cv.js
+++ b/src/ngLocale/angular-locale_pt-cv.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-gw.js b/src/ngLocale/angular-locale_pt-gw.js
index 801f3e72ca9d..248fa397fd78 100644
--- a/src/ngLocale/angular-locale_pt-gw.js
+++ b/src/ngLocale/angular-locale_pt-gw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-mo.js b/src/ngLocale/angular-locale_pt-mo.js
index fecce7cb9315..625037261cdf 100644
--- a/src/ngLocale/angular-locale_pt-mo.js
+++ b/src/ngLocale/angular-locale_pt-mo.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-mz.js b/src/ngLocale/angular-locale_pt-mz.js
index e7450a218675..9c3a5e052c51 100644
--- a/src/ngLocale/angular-locale_pt-mz.js
+++ b/src/ngLocale/angular-locale_pt-mz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-pt.js b/src/ngLocale/angular-locale_pt-pt.js
index 6718f9dc26d1..286cd41307c9 100644
--- a/src/ngLocale/angular-locale_pt-pt.js
+++ b/src/ngLocale/angular-locale_pt-pt.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-st.js b/src/ngLocale/angular-locale_pt-st.js
index a6ff9cd7c0b1..b43435bc2068 100644
--- a/src/ngLocale/angular-locale_pt-st.js
+++ b/src/ngLocale/angular-locale_pt-st.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt-tl.js b/src/ngLocale/angular-locale_pt-tl.js
index bb36d6dc8e37..425a8627ad3b 100644
--- a/src/ngLocale/angular-locale_pt-tl.js
+++ b/src/ngLocale/angular-locale_pt-tl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_pt.js b/src/ngLocale/angular-locale_pt.js
index 4c80611e51cd..3e651e76b134 100644
--- a/src/ngLocale/angular-locale_pt.js
+++ b/src/ngLocale/angular-locale_pt.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"nov",
"dez"
],
+ "STANDALONEMONTH": [
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_qu-bo.js b/src/ngLocale/angular-locale_qu-bo.js
index cb05d91a5df5..412bcdc21a6e 100644
--- a/src/ngLocale/angular-locale_qu-bo.js
+++ b/src/ngLocale/angular-locale_qu-bo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Aya",
"Kap"
],
+ "STANDALONEMONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_qu-ec.js b/src/ngLocale/angular-locale_qu-ec.js
index 9978c4a3c619..8fca57d16149 100644
--- a/src/ngLocale/angular-locale_qu-ec.js
+++ b/src/ngLocale/angular-locale_qu-ec.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Aya",
"Kap"
],
+ "STANDALONEMONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_qu-pe.js b/src/ngLocale/angular-locale_qu-pe.js
index 942275b6be79..de81ef142386 100644
--- a/src/ngLocale/angular-locale_qu-pe.js
+++ b/src/ngLocale/angular-locale_qu-pe.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Aya",
"Kap"
],
+ "STANDALONEMONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_qu.js b/src/ngLocale/angular-locale_qu.js
index e2b56e6d5fb3..63f3c4581cc4 100644
--- a/src/ngLocale/angular-locale_qu.js
+++ b/src/ngLocale/angular-locale_qu.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Aya",
"Kap"
],
+ "STANDALONEMONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rm-ch.js b/src/ngLocale/angular-locale_rm-ch.js
index 091c0827e2fb..d907140a9810 100644
--- a/src/ngLocale/angular-locale_rm-ch.js
+++ b/src/ngLocale/angular-locale_rm-ch.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "schaner",
+ "favrer",
+ "mars",
+ "avrigl",
+ "matg",
+ "zercladur",
+ "fanadur",
+ "avust",
+ "settember",
+ "october",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rm.js b/src/ngLocale/angular-locale_rm.js
index 7bddcf97216e..811db26d6937 100644
--- a/src/ngLocale/angular-locale_rm.js
+++ b/src/ngLocale/angular-locale_rm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "schaner",
+ "favrer",
+ "mars",
+ "avrigl",
+ "matg",
+ "zercladur",
+ "fanadur",
+ "avust",
+ "settember",
+ "october",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rn-bi.js b/src/ngLocale/angular-locale_rn-bi.js
index cd61a1d476df..7743b8f77f3e 100644
--- a/src/ngLocale/angular-locale_rn-bi.js
+++ b/src/ngLocale/angular-locale_rn-bi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Ugu.",
"Uku."
],
+ "STANDALONEMONTH": [
+ "Nzero",
+ "Ruhuhuma",
+ "Ntwarante",
+ "Ndamukiza",
+ "Rusama",
+ "Ruheshi",
+ "Mukakaro",
+ "Nyandagaro",
+ "Nyakanga",
+ "Gitugutu",
+ "Munyonyo",
+ "Kigarama"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rn.js b/src/ngLocale/angular-locale_rn.js
index 0a2a5e8ec88d..0ceb82d7ff4e 100644
--- a/src/ngLocale/angular-locale_rn.js
+++ b/src/ngLocale/angular-locale_rn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Ugu.",
"Uku."
],
+ "STANDALONEMONTH": [
+ "Nzero",
+ "Ruhuhuma",
+ "Ntwarante",
+ "Ndamukiza",
+ "Rusama",
+ "Ruheshi",
+ "Mukakaro",
+ "Nyandagaro",
+ "Nyakanga",
+ "Gitugutu",
+ "Munyonyo",
+ "Kigarama"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ro-md.js b/src/ngLocale/angular-locale_ro-md.js
index b36304708566..7f8544c89c46 100644
--- a/src/ngLocale/angular-locale_ro-md.js
+++ b/src/ngLocale/angular-locale_ro-md.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Ianuarie",
+ "Februarie",
+ "Martie",
+ "Aprilie",
+ "Mai",
+ "Iunie",
+ "Iulie",
+ "August",
+ "Septembrie",
+ "Octombrie",
+ "Noiembrie",
+ "Decembrie"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ro-ro.js b/src/ngLocale/angular-locale_ro-ro.js
index d87922602678..2931e8ebeaae 100644
--- a/src/ngLocale/angular-locale_ro-ro.js
+++ b/src/ngLocale/angular-locale_ro-ro.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Ianuarie",
+ "Februarie",
+ "Martie",
+ "Aprilie",
+ "Mai",
+ "Iunie",
+ "Iulie",
+ "August",
+ "Septembrie",
+ "Octombrie",
+ "Noiembrie",
+ "Decembrie"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ro.js b/src/ngLocale/angular-locale_ro.js
index 3c52dd2a70d1..c30d0d989098 100644
--- a/src/ngLocale/angular-locale_ro.js
+++ b/src/ngLocale/angular-locale_ro.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Ianuarie",
+ "Februarie",
+ "Martie",
+ "Aprilie",
+ "Mai",
+ "Iunie",
+ "Iulie",
+ "August",
+ "Septembrie",
+ "Octombrie",
+ "Noiembrie",
+ "Decembrie"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rof-tz.js b/src/ngLocale/angular-locale_rof-tz.js
index 8458d5ca910a..6ddc5ac6d127 100644
--- a/src/ngLocale/angular-locale_rof-tz.js
+++ b/src/ngLocale/angular-locale_rof-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"M11",
"M12"
],
+ "STANDALONEMONTH": [
+ "Mweri wa kwanza",
+ "Mweri wa kaili",
+ "Mweri wa katatu",
+ "Mweri wa kaana",
+ "Mweri wa tanu",
+ "Mweri wa sita",
+ "Mweri wa saba",
+ "Mweri wa nane",
+ "Mweri wa tisa",
+ "Mweri wa ikumi",
+ "Mweri wa ikumi na moja",
+ "Mweri wa ikumi na mbili"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rof.js b/src/ngLocale/angular-locale_rof.js
index a233d6cad528..70ff21851ee8 100644
--- a/src/ngLocale/angular-locale_rof.js
+++ b/src/ngLocale/angular-locale_rof.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"M11",
"M12"
],
+ "STANDALONEMONTH": [
+ "Mweri wa kwanza",
+ "Mweri wa kaili",
+ "Mweri wa katatu",
+ "Mweri wa kaana",
+ "Mweri wa tanu",
+ "Mweri wa sita",
+ "Mweri wa saba",
+ "Mweri wa nane",
+ "Mweri wa tisa",
+ "Mweri wa ikumi",
+ "Mweri wa ikumi na moja",
+ "Mweri wa ikumi na mbili"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru-by.js b/src/ngLocale/angular-locale_ru-by.js
index f735266cf0e2..603381668538 100644
--- a/src/ngLocale/angular-locale_ru-by.js
+++ b/src/ngLocale/angular-locale_ru-by.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru-kg.js b/src/ngLocale/angular-locale_ru-kg.js
index b1d9db982035..cae7d7806cbd 100644
--- a/src/ngLocale/angular-locale_ru-kg.js
+++ b/src/ngLocale/angular-locale_ru-kg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru-kz.js b/src/ngLocale/angular-locale_ru-kz.js
index a1c93672969d..4d600a77e670 100644
--- a/src/ngLocale/angular-locale_ru-kz.js
+++ b/src/ngLocale/angular-locale_ru-kz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru-md.js b/src/ngLocale/angular-locale_ru-md.js
index de3f0498624d..6eeaea422dbf 100644
--- a/src/ngLocale/angular-locale_ru-md.js
+++ b/src/ngLocale/angular-locale_ru-md.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru-ru.js b/src/ngLocale/angular-locale_ru-ru.js
index e9337210de25..b0ab8dce679d 100644
--- a/src/ngLocale/angular-locale_ru-ru.js
+++ b/src/ngLocale/angular-locale_ru-ru.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru-ua.js b/src/ngLocale/angular-locale_ru-ua.js
index f6dfc507eac3..9e54f2c8b3cf 100644
--- a/src/ngLocale/angular-locale_ru-ua.js
+++ b/src/ngLocale/angular-locale_ru-ua.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ru.js b/src/ngLocale/angular-locale_ru.js
index 553360f025fc..bf09f0f9fc5a 100644
--- a/src/ngLocale/angular-locale_ru.js
+++ b/src/ngLocale/angular-locale_ru.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u044f\u0431.",
"\u0434\u0435\u043a."
],
+ "STANDALONEMONTH": [
+ "\u044f\u043d\u0432\u0430\u0440\u044c",
+ "\u0444\u0435\u0432\u0440\u0430\u043b\u044c",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0435\u043b\u044c",
+ "\u043c\u0430\u0439",
+ "\u0438\u044e\u043d\u044c",
+ "\u0438\u044e\u043b\u044c",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c",
+ "\u043e\u043a\u0442\u044f\u0431\u0440\u044c",
+ "\u043d\u043e\u044f\u0431\u0440\u044c",
+ "\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rw-rw.js b/src/ngLocale/angular-locale_rw-rw.js
index 7e679df6b9c0..48d9613e5d97 100644
--- a/src/ngLocale/angular-locale_rw-rw.js
+++ b/src/ngLocale/angular-locale_rw-rw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ugu.",
"uku."
],
+ "STANDALONEMONTH": [
+ "Mutarama",
+ "Gashyantare",
+ "Werurwe",
+ "Mata",
+ "Gicuransi",
+ "Kamena",
+ "Nyakanga",
+ "Kanama",
+ "Nzeli",
+ "Ukwakira",
+ "Ugushyingo",
+ "Ukuboza"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rw.js b/src/ngLocale/angular-locale_rw.js
index 2e5db17a54f1..6dab48fd3a27 100644
--- a/src/ngLocale/angular-locale_rw.js
+++ b/src/ngLocale/angular-locale_rw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"ugu.",
"uku."
],
+ "STANDALONEMONTH": [
+ "Mutarama",
+ "Gashyantare",
+ "Werurwe",
+ "Mata",
+ "Gicuransi",
+ "Kamena",
+ "Nyakanga",
+ "Kanama",
+ "Nzeli",
+ "Ukwakira",
+ "Ugushyingo",
+ "Ukuboza"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rwk-tz.js b/src/ngLocale/angular-locale_rwk-tz.js
index 3dcb29aea7dc..85e799016382 100644
--- a/src/ngLocale/angular-locale_rwk-tz.js
+++ b/src/ngLocale/angular-locale_rwk-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprilyi",
+ "Mei",
+ "Junyi",
+ "Julyai",
+ "Agusti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_rwk.js b/src/ngLocale/angular-locale_rwk.js
index 726ed59ad231..9ad59b88c20b 100644
--- a/src/ngLocale/angular-locale_rwk.js
+++ b/src/ngLocale/angular-locale_rwk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprilyi",
+ "Mei",
+ "Junyi",
+ "Julyai",
+ "Agusti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sah-ru.js b/src/ngLocale/angular-locale_sah-ru.js
index 85b3776f2bd5..5d4feaf47e26 100644
--- a/src/ngLocale/angular-locale_sah-ru.js
+++ b/src/ngLocale/angular-locale_sah-ru.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0421\u044d\u0442",
"\u0410\u0445\u0441"
],
+ "STANDALONEMONTH": [
+ "\u0422\u043e\u0445\u0441\u0443\u043d\u043d\u044c\u0443",
+ "\u041e\u043b\u0443\u043d\u043d\u044c\u0443",
+ "\u041a\u0443\u043b\u0443\u043d \u0442\u0443\u0442\u0430\u0440",
+ "\u041c\u0443\u0443\u0441 \u0443\u0441\u0442\u0430\u0440",
+ "\u042b\u0430\u043c \u044b\u0439\u044b\u043d",
+ "\u0411\u044d\u0441 \u044b\u0439\u044b\u043d",
+ "\u041e\u0442 \u044b\u0439\u044b\u043d",
+ "\u0410\u0442\u044b\u0440\u0434\u044c\u044b\u0445 \u044b\u0439\u044b\u043d",
+ "\u0411\u0430\u043b\u0430\u0495\u0430\u043d \u044b\u0439\u044b\u043d",
+ "\u0410\u043b\u0442\u044b\u043d\u043d\u044c\u044b",
+ "\u0421\u044d\u0442\u0438\u043d\u043d\u044c\u0438",
+ "\u0410\u0445\u0441\u044b\u043d\u043d\u044c\u044b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sah.js b/src/ngLocale/angular-locale_sah.js
index 23bd88ee59e7..038898d14500 100644
--- a/src/ngLocale/angular-locale_sah.js
+++ b/src/ngLocale/angular-locale_sah.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0421\u044d\u0442",
"\u0410\u0445\u0441"
],
+ "STANDALONEMONTH": [
+ "\u0422\u043e\u0445\u0441\u0443\u043d\u043d\u044c\u0443",
+ "\u041e\u043b\u0443\u043d\u043d\u044c\u0443",
+ "\u041a\u0443\u043b\u0443\u043d \u0442\u0443\u0442\u0430\u0440",
+ "\u041c\u0443\u0443\u0441 \u0443\u0441\u0442\u0430\u0440",
+ "\u042b\u0430\u043c \u044b\u0439\u044b\u043d",
+ "\u0411\u044d\u0441 \u044b\u0439\u044b\u043d",
+ "\u041e\u0442 \u044b\u0439\u044b\u043d",
+ "\u0410\u0442\u044b\u0440\u0434\u044c\u044b\u0445 \u044b\u0439\u044b\u043d",
+ "\u0411\u0430\u043b\u0430\u0495\u0430\u043d \u044b\u0439\u044b\u043d",
+ "\u0410\u043b\u0442\u044b\u043d\u043d\u044c\u044b",
+ "\u0421\u044d\u0442\u0438\u043d\u043d\u044c\u0438",
+ "\u0410\u0445\u0441\u044b\u043d\u043d\u044c\u044b"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_saq-ke.js b/src/ngLocale/angular-locale_saq-ke.js
index a7f8998041e1..dd7e3d25719a 100644
--- a/src/ngLocale/angular-locale_saq-ke.js
+++ b/src/ngLocale/angular-locale_saq-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Tob",
"Tow"
],
+ "STANDALONEMONTH": [
+ "Lapa le obo",
+ "Lapa le waare",
+ "Lapa le okuni",
+ "Lapa le ong\u2019wan",
+ "Lapa le imet",
+ "Lapa le ile",
+ "Lapa le sapa",
+ "Lapa le isiet",
+ "Lapa le saal",
+ "Lapa le tomon",
+ "Lapa le tomon obo",
+ "Lapa le tomon waare"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_saq.js b/src/ngLocale/angular-locale_saq.js
index b515603a9a59..c2018d190d77 100644
--- a/src/ngLocale/angular-locale_saq.js
+++ b/src/ngLocale/angular-locale_saq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Tob",
"Tow"
],
+ "STANDALONEMONTH": [
+ "Lapa le obo",
+ "Lapa le waare",
+ "Lapa le okuni",
+ "Lapa le ong\u2019wan",
+ "Lapa le imet",
+ "Lapa le ile",
+ "Lapa le sapa",
+ "Lapa le isiet",
+ "Lapa le saal",
+ "Lapa le tomon",
+ "Lapa le tomon obo",
+ "Lapa le tomon waare"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sbp-tz.js b/src/ngLocale/angular-locale_sbp-tz.js
index 1e5a0e825c40..bb66514b03f7 100644
--- a/src/ngLocale/angular-locale_sbp-tz.js
+++ b/src/ngLocale/angular-locale_sbp-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Mus",
"Muh"
],
+ "STANDALONEMONTH": [
+ "Mupalangulwa",
+ "Mwitope",
+ "Mushende",
+ "Munyi",
+ "Mushende Magali",
+ "Mujimbi",
+ "Mushipepo",
+ "Mupuguto",
+ "Munyense",
+ "Mokhu",
+ "Musongandembwe",
+ "Muhaano"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sbp.js b/src/ngLocale/angular-locale_sbp.js
index da6106a6a81a..a19aefa266b4 100644
--- a/src/ngLocale/angular-locale_sbp.js
+++ b/src/ngLocale/angular-locale_sbp.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Mus",
"Muh"
],
+ "STANDALONEMONTH": [
+ "Mupalangulwa",
+ "Mwitope",
+ "Mushende",
+ "Munyi",
+ "Mushende Magali",
+ "Mujimbi",
+ "Mushipepo",
+ "Mupuguto",
+ "Munyense",
+ "Mokhu",
+ "Musongandembwe",
+ "Muhaano"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_se-fi.js b/src/ngLocale/angular-locale_se-fi.js
index 62de6b1ada6b..ae4868f1c47e 100644
--- a/src/ngLocale/angular-locale_se-fi.js
+++ b/src/ngLocale/angular-locale_se-fi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"sk\u00e1bma",
"juovla"
],
+ "STANDALONEMONTH": [
+ "o\u0111\u0111ajagem\u00e1nnu",
+ "guovvam\u00e1nnu",
+ "njuk\u010dam\u00e1nnu",
+ "cuo\u014bom\u00e1nnu",
+ "miessem\u00e1nnu",
+ "geassem\u00e1nnu",
+ "suoidnem\u00e1nnu",
+ "borgem\u00e1nnu",
+ "\u010dak\u010dam\u00e1nnu",
+ "golggotm\u00e1nnu",
+ "sk\u00e1bmam\u00e1nnu",
+ "juovlam\u00e1nnu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_se-no.js b/src/ngLocale/angular-locale_se-no.js
index b2e24ae6afbb..f1be3a564368 100644
--- a/src/ngLocale/angular-locale_se-no.js
+++ b/src/ngLocale/angular-locale_se-no.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"sk\u00e1b",
"juov"
],
+ "STANDALONEMONTH": [
+ "o\u0111\u0111ajagem\u00e1nnu",
+ "guovvam\u00e1nnu",
+ "njuk\u010dam\u00e1nnu",
+ "cuo\u014bom\u00e1nnu",
+ "miessem\u00e1nnu",
+ "geassem\u00e1nnu",
+ "suoidnem\u00e1nnu",
+ "borgem\u00e1nnu",
+ "\u010dak\u010dam\u00e1nnu",
+ "golggotm\u00e1nnu",
+ "sk\u00e1bmam\u00e1nnu",
+ "juovlam\u00e1nnu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_se-se.js b/src/ngLocale/angular-locale_se-se.js
index 7915d431c94a..0093aef074a5 100644
--- a/src/ngLocale/angular-locale_se-se.js
+++ b/src/ngLocale/angular-locale_se-se.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"sk\u00e1b",
"juov"
],
+ "STANDALONEMONTH": [
+ "o\u0111\u0111ajagem\u00e1nnu",
+ "guovvam\u00e1nnu",
+ "njuk\u010dam\u00e1nnu",
+ "cuo\u014bom\u00e1nnu",
+ "miessem\u00e1nnu",
+ "geassem\u00e1nnu",
+ "suoidnem\u00e1nnu",
+ "borgem\u00e1nnu",
+ "\u010dak\u010dam\u00e1nnu",
+ "golggotm\u00e1nnu",
+ "sk\u00e1bmam\u00e1nnu",
+ "juovlam\u00e1nnu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_se.js b/src/ngLocale/angular-locale_se.js
index 0a6d7d665482..85da150cee96 100644
--- a/src/ngLocale/angular-locale_se.js
+++ b/src/ngLocale/angular-locale_se.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"sk\u00e1b",
"juov"
],
+ "STANDALONEMONTH": [
+ "o\u0111\u0111ajagem\u00e1nnu",
+ "guovvam\u00e1nnu",
+ "njuk\u010dam\u00e1nnu",
+ "cuo\u014bom\u00e1nnu",
+ "miessem\u00e1nnu",
+ "geassem\u00e1nnu",
+ "suoidnem\u00e1nnu",
+ "borgem\u00e1nnu",
+ "\u010dak\u010dam\u00e1nnu",
+ "golggotm\u00e1nnu",
+ "sk\u00e1bmam\u00e1nnu",
+ "juovlam\u00e1nnu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_seh-mz.js b/src/ngLocale/angular-locale_seh-mz.js
index f723c867881d..c343c1a31b93 100644
--- a/src/ngLocale/angular-locale_seh-mz.js
+++ b/src/ngLocale/angular-locale_seh-mz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "Janeiro",
+ "Fevreiro",
+ "Marco",
+ "Abril",
+ "Maio",
+ "Junho",
+ "Julho",
+ "Augusto",
+ "Setembro",
+ "Otubro",
+ "Novembro",
+ "Decembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_seh.js b/src/ngLocale/angular-locale_seh.js
index d9c55eecfdd9..9f634bab9596 100644
--- a/src/ngLocale/angular-locale_seh.js
+++ b/src/ngLocale/angular-locale_seh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
+ "STANDALONEMONTH": [
+ "Janeiro",
+ "Fevreiro",
+ "Marco",
+ "Abril",
+ "Maio",
+ "Junho",
+ "Julho",
+ "Augusto",
+ "Setembro",
+ "Otubro",
+ "Novembro",
+ "Decembro"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ses-ml.js b/src/ngLocale/angular-locale_ses-ml.js
index 596dfe43b05e..ec52ebe5d043 100644
--- a/src/ngLocale/angular-locale_ses-ml.js
+++ b/src/ngLocale/angular-locale_ses-ml.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ses.js b/src/ngLocale/angular-locale_ses.js
index e150d779fe21..abb629a5ed4d 100644
--- a/src/ngLocale/angular-locale_ses.js
+++ b/src/ngLocale/angular-locale_ses.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sg-cf.js b/src/ngLocale/angular-locale_sg-cf.js
index fb6d2f76c8cf..effce3dd44c7 100644
--- a/src/ngLocale/angular-locale_sg-cf.js
+++ b/src/ngLocale/angular-locale_sg-cf.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nab",
"Kak"
],
+ "STANDALONEMONTH": [
+ "Nyenye",
+ "Fulund\u00efgi",
+ "Mb\u00e4ng\u00fc",
+ "Ngub\u00f9e",
+ "B\u00eal\u00e4w\u00fc",
+ "F\u00f6ndo",
+ "Lengua",
+ "K\u00fck\u00fcr\u00fc",
+ "Mvuka",
+ "Ngberere",
+ "Nab\u00e4nd\u00fcru",
+ "Kakauka"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sg.js b/src/ngLocale/angular-locale_sg.js
index 3b671dae11ef..8f714dbed381 100644
--- a/src/ngLocale/angular-locale_sg.js
+++ b/src/ngLocale/angular-locale_sg.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nab",
"Kak"
],
+ "STANDALONEMONTH": [
+ "Nyenye",
+ "Fulund\u00efgi",
+ "Mb\u00e4ng\u00fc",
+ "Ngub\u00f9e",
+ "B\u00eal\u00e4w\u00fc",
+ "F\u00f6ndo",
+ "Lengua",
+ "K\u00fck\u00fcr\u00fc",
+ "Mvuka",
+ "Ngberere",
+ "Nab\u00e4nd\u00fcru",
+ "Kakauka"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_shi-latn-ma.js b/src/ngLocale/angular-locale_shi-latn-ma.js
index 02156c6921b6..7cbe1df4649e 100644
--- a/src/ngLocale/angular-locale_shi-latn-ma.js
+++ b/src/ngLocale/angular-locale_shi-latn-ma.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nuw",
"duj"
],
+ "STANDALONEMONTH": [
+ "innayr",
+ "b\u1e5bay\u1e5b",
+ "ma\u1e5b\u1e63",
+ "ibrir",
+ "mayyu",
+ "yunyu",
+ "yulyuz",
+ "\u0263uct",
+ "cutanbir",
+ "ktubr",
+ "nuwanbir",
+ "dujanbir"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_shi-latn.js b/src/ngLocale/angular-locale_shi-latn.js
index 6b8b6f7042ce..887ca9500a35 100644
--- a/src/ngLocale/angular-locale_shi-latn.js
+++ b/src/ngLocale/angular-locale_shi-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nuw",
"duj"
],
+ "STANDALONEMONTH": [
+ "innayr",
+ "b\u1e5bay\u1e5b",
+ "ma\u1e5b\u1e63",
+ "ibrir",
+ "mayyu",
+ "yunyu",
+ "yulyuz",
+ "\u0263uct",
+ "cutanbir",
+ "ktubr",
+ "nuwanbir",
+ "dujanbir"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_shi-tfng-ma.js b/src/ngLocale/angular-locale_shi-tfng-ma.js
index 998d17a2f315..77497d9f7034 100644
--- a/src/ngLocale/angular-locale_shi-tfng-ma.js
+++ b/src/ngLocale/angular-locale_shi-tfng-ma.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u2d4f\u2d53\u2d61",
"\u2d37\u2d53\u2d4a"
],
+ "STANDALONEMONTH": [
+ "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54",
+ "\u2d31\u2d55\u2d30\u2d62\u2d55",
+ "\u2d4e\u2d30\u2d55\u2d5a",
+ "\u2d49\u2d31\u2d54\u2d49\u2d54",
+ "\u2d4e\u2d30\u2d62\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4f\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63",
+ "\u2d56\u2d53\u2d5b\u2d5c",
+ "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d3d\u2d5c\u2d53\u2d31\u2d54",
+ "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_shi-tfng.js b/src/ngLocale/angular-locale_shi-tfng.js
index a2d825b3243b..e797c6728c25 100644
--- a/src/ngLocale/angular-locale_shi-tfng.js
+++ b/src/ngLocale/angular-locale_shi-tfng.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u2d4f\u2d53\u2d61",
"\u2d37\u2d53\u2d4a"
],
+ "STANDALONEMONTH": [
+ "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54",
+ "\u2d31\u2d55\u2d30\u2d62\u2d55",
+ "\u2d4e\u2d30\u2d55\u2d5a",
+ "\u2d49\u2d31\u2d54\u2d49\u2d54",
+ "\u2d4e\u2d30\u2d62\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4f\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63",
+ "\u2d56\u2d53\u2d5b\u2d5c",
+ "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d3d\u2d5c\u2d53\u2d31\u2d54",
+ "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_shi.js b/src/ngLocale/angular-locale_shi.js
index 5f2fe453d200..f3600ad527cb 100644
--- a/src/ngLocale/angular-locale_shi.js
+++ b/src/ngLocale/angular-locale_shi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u2d4f\u2d53\u2d61",
"\u2d37\u2d53\u2d4a"
],
+ "STANDALONEMONTH": [
+ "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54",
+ "\u2d31\u2d55\u2d30\u2d62\u2d55",
+ "\u2d4e\u2d30\u2d55\u2d5a",
+ "\u2d49\u2d31\u2d54\u2d49\u2d54",
+ "\u2d4e\u2d30\u2d62\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4f\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63",
+ "\u2d56\u2d53\u2d5b\u2d5c",
+ "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d3d\u2d5c\u2d53\u2d31\u2d54",
+ "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_si-lk.js b/src/ngLocale/angular-locale_si-lk.js
index c216c7530654..76e47499c8b1 100644
--- a/src/ngLocale/angular-locale_si-lk.js
+++ b/src/ngLocale/angular-locale_si-lk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0db1\u0ddc\u0dc0\u0dd0",
"\u0daf\u0dd9\u0dc3\u0dd0"
],
+ "STANDALONEMONTH": [
+ "\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2",
+ "\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2",
+ "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4",
+ "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca",
+ "\u0db8\u0dd0\u0dba\u0dd2",
+ "\u0da2\u0dd6\u0db1\u0dd2",
+ "\u0da2\u0dd6\u0dbd\u0dd2",
+ "\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4",
+ "\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca",
+ "\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca",
+ "\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca",
+ "\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_si.js b/src/ngLocale/angular-locale_si.js
index bfcdd628f21e..e2e342c13c86 100644
--- a/src/ngLocale/angular-locale_si.js
+++ b/src/ngLocale/angular-locale_si.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0db1\u0ddc\u0dc0\u0dd0",
"\u0daf\u0dd9\u0dc3\u0dd0"
],
+ "STANDALONEMONTH": [
+ "\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2",
+ "\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2",
+ "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4",
+ "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca",
+ "\u0db8\u0dd0\u0dba\u0dd2",
+ "\u0da2\u0dd6\u0db1\u0dd2",
+ "\u0da2\u0dd6\u0dbd\u0dd2",
+ "\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4",
+ "\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca",
+ "\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca",
+ "\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca",
+ "\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sk-sk.js b/src/ngLocale/angular-locale_sk-sk.js
index 01f0f0cb42ef..07f25c959ff4 100644
--- a/src/ngLocale/angular-locale_sk-sk.js
+++ b/src/ngLocale/angular-locale_sk-sk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "janu\u00e1r",
+ "febru\u00e1r",
+ "marec",
+ "apr\u00edl",
+ "m\u00e1j",
+ "j\u00fan",
+ "j\u00fal",
+ "august",
+ "september",
+ "okt\u00f3ber",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sk.js b/src/ngLocale/angular-locale_sk.js
index 7618fe3835dd..bd6800287cea 100644
--- a/src/ngLocale/angular-locale_sk.js
+++ b/src/ngLocale/angular-locale_sk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "janu\u00e1r",
+ "febru\u00e1r",
+ "marec",
+ "apr\u00edl",
+ "m\u00e1j",
+ "j\u00fan",
+ "j\u00fal",
+ "august",
+ "september",
+ "okt\u00f3ber",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sl-si.js b/src/ngLocale/angular-locale_sl-si.js
index f480b7895180..5b90ec4656d6 100644
--- a/src/ngLocale/angular-locale_sl-si.js
+++ b/src/ngLocale/angular-locale_sl-si.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "marec",
+ "april",
+ "maj",
+ "junij",
+ "julij",
+ "avgust",
+ "september",
+ "oktober",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sl.js b/src/ngLocale/angular-locale_sl.js
index 24d4a779f3d5..068ceade66ec 100644
--- a/src/ngLocale/angular-locale_sl.js
+++ b/src/ngLocale/angular-locale_sl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "marec",
+ "april",
+ "maj",
+ "junij",
+ "julij",
+ "avgust",
+ "september",
+ "oktober",
+ "november",
+ "december"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_smn-fi.js b/src/ngLocale/angular-locale_smn-fi.js
index 027b0a2c88db..1e9920b88e03 100644
--- a/src/ngLocale/angular-locale_smn-fi.js
+++ b/src/ngLocale/angular-locale_smn-fi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"M11",
"M12"
],
+ "STANDALONEMONTH": [
+ "u\u0111\u0111\u00e2ivem\u00e1\u00e1nu",
+ "kuov\u00e2m\u00e1\u00e1nu",
+ "njuh\u010d\u00e2m\u00e1\u00e1nu",
+ "cu\u00e1\u014buim\u00e1\u00e1nu",
+ "vyesim\u00e1\u00e1nu",
+ "kesim\u00e1\u00e1nu",
+ "syeinim\u00e1\u00e1nu",
+ "porgem\u00e1\u00e1nu",
+ "\u010doh\u010d\u00e2m\u00e1\u00e1nu",
+ "roovv\u00e2dm\u00e1\u00e1nu",
+ "skamm\u00e2m\u00e1\u00e1nu",
+ "juovl\u00e2m\u00e1\u00e1nu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_smn.js b/src/ngLocale/angular-locale_smn.js
index 68c71cfaf367..0576fc37745c 100644
--- a/src/ngLocale/angular-locale_smn.js
+++ b/src/ngLocale/angular-locale_smn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"M11",
"M12"
],
+ "STANDALONEMONTH": [
+ "u\u0111\u0111\u00e2ivem\u00e1\u00e1nu",
+ "kuov\u00e2m\u00e1\u00e1nu",
+ "njuh\u010d\u00e2m\u00e1\u00e1nu",
+ "cu\u00e1\u014buim\u00e1\u00e1nu",
+ "vyesim\u00e1\u00e1nu",
+ "kesim\u00e1\u00e1nu",
+ "syeinim\u00e1\u00e1nu",
+ "porgem\u00e1\u00e1nu",
+ "\u010doh\u010d\u00e2m\u00e1\u00e1nu",
+ "roovv\u00e2dm\u00e1\u00e1nu",
+ "skamm\u00e2m\u00e1\u00e1nu",
+ "juovl\u00e2m\u00e1\u00e1nu"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sn-zw.js b/src/ngLocale/angular-locale_sn-zw.js
index 1d8cd0ffb1af..fcccf07a11b6 100644
--- a/src/ngLocale/angular-locale_sn-zw.js
+++ b/src/ngLocale/angular-locale_sn-zw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Mb",
"Zvi"
],
+ "STANDALONEMONTH": [
+ "Ndira",
+ "Kukadzi",
+ "Kurume",
+ "Kubvumbi",
+ "Chivabvu",
+ "Chikumi",
+ "Chikunguru",
+ "Nyamavhuvhu",
+ "Gunyana",
+ "Gumiguru",
+ "Mbudzi",
+ "Zvita"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sn.js b/src/ngLocale/angular-locale_sn.js
index 7b16b4dc258e..85ddc5870683 100644
--- a/src/ngLocale/angular-locale_sn.js
+++ b/src/ngLocale/angular-locale_sn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Mb",
"Zvi"
],
+ "STANDALONEMONTH": [
+ "Ndira",
+ "Kukadzi",
+ "Kurume",
+ "Kubvumbi",
+ "Chivabvu",
+ "Chikumi",
+ "Chikunguru",
+ "Nyamavhuvhu",
+ "Gunyana",
+ "Gumiguru",
+ "Mbudzi",
+ "Zvita"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_so-dj.js b/src/ngLocale/angular-locale_so-dj.js
index d8307cbda7e7..ba730757e696 100644
--- a/src/ngLocale/angular-locale_so-dj.js
+++ b/src/ngLocale/angular-locale_so-dj.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KIT",
"LIT"
],
+ "STANDALONEMONTH": [
+ "Bisha Koobaad",
+ "Bisha Labaad",
+ "Bisha Saddexaad",
+ "Bisha Afraad",
+ "Bisha Shanaad",
+ "Bisha Lixaad",
+ "Bisha Todobaad",
+ "Bisha Sideedaad",
+ "Bisha Sagaalaad",
+ "Bisha Tobnaad",
+ "Bisha Kow iyo Tobnaad",
+ "Bisha Laba iyo Tobnaad"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_so-et.js b/src/ngLocale/angular-locale_so-et.js
index ef34ea2c8e17..c235f85dbc86 100644
--- a/src/ngLocale/angular-locale_so-et.js
+++ b/src/ngLocale/angular-locale_so-et.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KIT",
"LIT"
],
+ "STANDALONEMONTH": [
+ "Bisha Koobaad",
+ "Bisha Labaad",
+ "Bisha Saddexaad",
+ "Bisha Afraad",
+ "Bisha Shanaad",
+ "Bisha Lixaad",
+ "Bisha Todobaad",
+ "Bisha Sideedaad",
+ "Bisha Sagaalaad",
+ "Bisha Tobnaad",
+ "Bisha Kow iyo Tobnaad",
+ "Bisha Laba iyo Tobnaad"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_so-ke.js b/src/ngLocale/angular-locale_so-ke.js
index 67fc74e0162e..d3d8529fae70 100644
--- a/src/ngLocale/angular-locale_so-ke.js
+++ b/src/ngLocale/angular-locale_so-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KIT",
"LIT"
],
+ "STANDALONEMONTH": [
+ "Bisha Koobaad",
+ "Bisha Labaad",
+ "Bisha Saddexaad",
+ "Bisha Afraad",
+ "Bisha Shanaad",
+ "Bisha Lixaad",
+ "Bisha Todobaad",
+ "Bisha Sideedaad",
+ "Bisha Sagaalaad",
+ "Bisha Tobnaad",
+ "Bisha Kow iyo Tobnaad",
+ "Bisha Laba iyo Tobnaad"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_so-so.js b/src/ngLocale/angular-locale_so-so.js
index c91a42358446..8fb95547dbeb 100644
--- a/src/ngLocale/angular-locale_so-so.js
+++ b/src/ngLocale/angular-locale_so-so.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KIT",
"LIT"
],
+ "STANDALONEMONTH": [
+ "Bisha Koobaad",
+ "Bisha Labaad",
+ "Bisha Saddexaad",
+ "Bisha Afraad",
+ "Bisha Shanaad",
+ "Bisha Lixaad",
+ "Bisha Todobaad",
+ "Bisha Sideedaad",
+ "Bisha Sagaalaad",
+ "Bisha Tobnaad",
+ "Bisha Kow iyo Tobnaad",
+ "Bisha Laba iyo Tobnaad"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_so.js b/src/ngLocale/angular-locale_so.js
index 743a24ba98bd..b5bef99e2fea 100644
--- a/src/ngLocale/angular-locale_so.js
+++ b/src/ngLocale/angular-locale_so.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"KIT",
"LIT"
],
+ "STANDALONEMONTH": [
+ "Bisha Koobaad",
+ "Bisha Labaad",
+ "Bisha Saddexaad",
+ "Bisha Afraad",
+ "Bisha Shanaad",
+ "Bisha Lixaad",
+ "Bisha Todobaad",
+ "Bisha Sideedaad",
+ "Bisha Sagaalaad",
+ "Bisha Tobnaad",
+ "Bisha Kow iyo Tobnaad",
+ "Bisha Laba iyo Tobnaad"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sq-al.js b/src/ngLocale/angular-locale_sq-al.js
index 6dac5e79ef1e..2a0c58ba5548 100644
--- a/src/ngLocale/angular-locale_sq-al.js
+++ b/src/ngLocale/angular-locale_sq-al.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
+ "STANDALONEMONTH": [
+ "Janar",
+ "Shkurt",
+ "Mars",
+ "Prill",
+ "Maj",
+ "Qershor",
+ "Korrik",
+ "Gusht",
+ "Shtator",
+ "Tetor",
+ "N\u00ebntor",
+ "Dhjetor"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sq-mk.js b/src/ngLocale/angular-locale_sq-mk.js
index e7f5c31e1bea..c4e4bdeca297 100644
--- a/src/ngLocale/angular-locale_sq-mk.js
+++ b/src/ngLocale/angular-locale_sq-mk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
+ "STANDALONEMONTH": [
+ "Janar",
+ "Shkurt",
+ "Mars",
+ "Prill",
+ "Maj",
+ "Qershor",
+ "Korrik",
+ "Gusht",
+ "Shtator",
+ "Tetor",
+ "N\u00ebntor",
+ "Dhjetor"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sq-xk.js b/src/ngLocale/angular-locale_sq-xk.js
index ccdf61f562b6..c61fc5f3548c 100644
--- a/src/ngLocale/angular-locale_sq-xk.js
+++ b/src/ngLocale/angular-locale_sq-xk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
+ "STANDALONEMONTH": [
+ "Janar",
+ "Shkurt",
+ "Mars",
+ "Prill",
+ "Maj",
+ "Qershor",
+ "Korrik",
+ "Gusht",
+ "Shtator",
+ "Tetor",
+ "N\u00ebntor",
+ "Dhjetor"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sq.js b/src/ngLocale/angular-locale_sq.js
index bc614eedb67f..ce420dbea6ac 100644
--- a/src/ngLocale/angular-locale_sq.js
+++ b/src/ngLocale/angular-locale_sq.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
+ "STANDALONEMONTH": [
+ "Janar",
+ "Shkurt",
+ "Mars",
+ "Prill",
+ "Maj",
+ "Qershor",
+ "Korrik",
+ "Gusht",
+ "Shtator",
+ "Tetor",
+ "N\u00ebntor",
+ "Dhjetor"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-cyrl-ba.js b/src/ngLocale/angular-locale_sr-cyrl-ba.js
index e3843b15953e..549bfe41424c 100644
--- a/src/ngLocale/angular-locale_sr-cyrl-ba.js
+++ b/src/ngLocale/angular-locale_sr-cyrl-ba.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d",
+ "\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-cyrl-me.js b/src/ngLocale/angular-locale_sr-cyrl-me.js
index 3bf9c2cc07b6..721b6527f1d8 100644
--- a/src/ngLocale/angular-locale_sr-cyrl-me.js
+++ b/src/ngLocale/angular-locale_sr-cyrl-me.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d",
+ "\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-cyrl-rs.js b/src/ngLocale/angular-locale_sr-cyrl-rs.js
index 0f883f0bb7c7..af70f7817abc 100644
--- a/src/ngLocale/angular-locale_sr-cyrl-rs.js
+++ b/src/ngLocale/angular-locale_sr-cyrl-rs.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d",
+ "\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-cyrl-xk.js b/src/ngLocale/angular-locale_sr-cyrl-xk.js
index cf7c3e2fd49b..3527f42f68c3 100644
--- a/src/ngLocale/angular-locale_sr-cyrl-xk.js
+++ b/src/ngLocale/angular-locale_sr-cyrl-xk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d",
+ "\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-cyrl.js b/src/ngLocale/angular-locale_sr-cyrl.js
index a917cf7fd093..e876eff2fd98 100644
--- a/src/ngLocale/angular-locale_sr-cyrl.js
+++ b/src/ngLocale/angular-locale_sr-cyrl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d",
+ "\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-latn-ba.js b/src/ngLocale/angular-locale_sr-latn-ba.js
index 54d8cd0e6b5c..0de3c625c2ae 100644
--- a/src/ngLocale/angular-locale_sr-latn-ba.js
+++ b/src/ngLocale/angular-locale_sr-latn-ba.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "jun",
+ "jul",
+ "avgust",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-latn-me.js b/src/ngLocale/angular-locale_sr-latn-me.js
index cc0607a17aef..dea5a7d64e43 100644
--- a/src/ngLocale/angular-locale_sr-latn-me.js
+++ b/src/ngLocale/angular-locale_sr-latn-me.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "jun",
+ "jul",
+ "avgust",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-latn-rs.js b/src/ngLocale/angular-locale_sr-latn-rs.js
index 517e8eab6976..5fb45f9d3f2e 100644
--- a/src/ngLocale/angular-locale_sr-latn-rs.js
+++ b/src/ngLocale/angular-locale_sr-latn-rs.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "jun",
+ "jul",
+ "avgust",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-latn-xk.js b/src/ngLocale/angular-locale_sr-latn-xk.js
index 1cb50a737a5b..1305e7d6769c 100644
--- a/src/ngLocale/angular-locale_sr-latn-xk.js
+++ b/src/ngLocale/angular-locale_sr-latn-xk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "jun",
+ "jul",
+ "avgust",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr-latn.js b/src/ngLocale/angular-locale_sr-latn.js
index 040041da2b3e..cb9f44c57552 100644
--- a/src/ngLocale/angular-locale_sr-latn.js
+++ b/src/ngLocale/angular-locale_sr-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov",
"dec"
],
+ "STANDALONEMONTH": [
+ "januar",
+ "februar",
+ "mart",
+ "april",
+ "maj",
+ "jun",
+ "jul",
+ "avgust",
+ "septembar",
+ "oktobar",
+ "novembar",
+ "decembar"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sr.js b/src/ngLocale/angular-locale_sr.js
index 15f2f1de24bc..8d929bb1cdd5 100644
--- a/src/ngLocale/angular-locale_sr.js
+++ b/src/ngLocale/angular-locale_sr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043d\u043e\u0432",
"\u0434\u0435\u0446"
],
+ "STANDALONEMONTH": [
+ "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "\u043c\u0430\u0440\u0442",
+ "\u0430\u043f\u0440\u0438\u043b",
+ "\u043c\u0430\u0458",
+ "\u0458\u0443\u043d",
+ "\u0458\u0443\u043b",
+ "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sv-ax.js b/src/ngLocale/angular-locale_sv-ax.js
index 3c2e1f0d945d..10513ccef63b 100644
--- a/src/ngLocale/angular-locale_sv-ax.js
+++ b/src/ngLocale/angular-locale_sv-ax.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mars",
+ "April",
+ "Maj",
+ "Juni",
+ "Juli",
+ "Augusti",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sv-fi.js b/src/ngLocale/angular-locale_sv-fi.js
index 2d62ce66c8a3..0154b2625366 100644
--- a/src/ngLocale/angular-locale_sv-fi.js
+++ b/src/ngLocale/angular-locale_sv-fi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mars",
+ "April",
+ "Maj",
+ "Juni",
+ "Juli",
+ "Augusti",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sv-se.js b/src/ngLocale/angular-locale_sv-se.js
index 124285db403c..db8b672ec2cd 100644
--- a/src/ngLocale/angular-locale_sv-se.js
+++ b/src/ngLocale/angular-locale_sv-se.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mars",
+ "April",
+ "Maj",
+ "Juni",
+ "Juli",
+ "Augusti",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sv.js b/src/ngLocale/angular-locale_sv.js
index dfd1aa78f503..e33f94655e7c 100644
--- a/src/ngLocale/angular-locale_sv.js
+++ b/src/ngLocale/angular-locale_sv.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"nov.",
"dec."
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Mars",
+ "April",
+ "Maj",
+ "Juni",
+ "Juli",
+ "Augusti",
+ "September",
+ "Oktober",
+ "November",
+ "December"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sw-cd.js b/src/ngLocale/angular-locale_sw-cd.js
index b41d77c8b95e..ba72b709a073 100644
--- a/src/ngLocale/angular-locale_sw-cd.js
+++ b/src/ngLocale/angular-locale_sw-cd.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"mkm",
"mkb"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sw-ke.js b/src/ngLocale/angular-locale_sw-ke.js
index 6230e7c9e523..761d21d4d45f 100644
--- a/src/ngLocale/angular-locale_sw-ke.js
+++ b/src/ngLocale/angular-locale_sw-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sw-tz.js b/src/ngLocale/angular-locale_sw-tz.js
index 3f1cc2d23f96..38f68e93f97d 100644
--- a/src/ngLocale/angular-locale_sw-tz.js
+++ b/src/ngLocale/angular-locale_sw-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sw-ug.js b/src/ngLocale/angular-locale_sw-ug.js
index f2d0312014bf..1d7e970cf51c 100644
--- a/src/ngLocale/angular-locale_sw-ug.js
+++ b/src/ngLocale/angular-locale_sw-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_sw.js b/src/ngLocale/angular-locale_sw.js
index e6dd8fe8c08e..994c7971dbda 100644
--- a/src/ngLocale/angular-locale_sw.js
+++ b/src/ngLocale/angular-locale_sw.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprili",
+ "Mei",
+ "Juni",
+ "Julai",
+ "Agosti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ta-in.js b/src/ngLocale/angular-locale_ta-in.js
index 8ef2205a8a9f..4e5647a4df50 100644
--- a/src/ngLocale/angular-locale_ta-in.js
+++ b/src/ngLocale/angular-locale_ta-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ba8\u0bb5.",
"\u0b9f\u0bbf\u0b9a."
],
+ "STANDALONEMONTH": [
+ "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "\u0bae\u0bc7",
+ "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1",
+ "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ta-lk.js b/src/ngLocale/angular-locale_ta-lk.js
index ffb0e7ca6e51..e112383cc457 100644
--- a/src/ngLocale/angular-locale_ta-lk.js
+++ b/src/ngLocale/angular-locale_ta-lk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ba8\u0bb5.",
"\u0b9f\u0bbf\u0b9a."
],
+ "STANDALONEMONTH": [
+ "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "\u0bae\u0bc7",
+ "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1",
+ "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ta-my.js b/src/ngLocale/angular-locale_ta-my.js
index 3a9287a63cf0..7b260131b36f 100644
--- a/src/ngLocale/angular-locale_ta-my.js
+++ b/src/ngLocale/angular-locale_ta-my.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ba8\u0bb5.",
"\u0b9f\u0bbf\u0b9a."
],
+ "STANDALONEMONTH": [
+ "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "\u0bae\u0bc7",
+ "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1",
+ "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ta-sg.js b/src/ngLocale/angular-locale_ta-sg.js
index fc6a77d88ce6..2bf73b973ba6 100644
--- a/src/ngLocale/angular-locale_ta-sg.js
+++ b/src/ngLocale/angular-locale_ta-sg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ba8\u0bb5.",
"\u0b9f\u0bbf\u0b9a."
],
+ "STANDALONEMONTH": [
+ "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "\u0bae\u0bc7",
+ "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1",
+ "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ta.js b/src/ngLocale/angular-locale_ta.js
index 627262465791..4c248f0c2e89 100644
--- a/src/ngLocale/angular-locale_ta.js
+++ b/src/ngLocale/angular-locale_ta.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0ba8\u0bb5.",
"\u0b9f\u0bbf\u0b9a."
],
+ "STANDALONEMONTH": [
+ "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "\u0bae\u0bc7",
+ "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1",
+ "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_te-in.js b/src/ngLocale/angular-locale_te-in.js
index fccdcfe8ca7a..ffd82e89b105 100644
--- a/src/ngLocale/angular-locale_te-in.js
+++ b/src/ngLocale/angular-locale_te-in.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0c28\u0c35\u0c02",
"\u0c21\u0c3f\u0c38\u0c46\u0c02"
],
+ "STANDALONEMONTH": [
+ "\u0c1c\u0c28\u0c35\u0c30\u0c3f",
+ "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
+ "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
+ "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
+ "\u0c2e\u0c47",
+ "\u0c1c\u0c42\u0c28\u0c4d",
+ "\u0c1c\u0c41\u0c32\u0c48",
+ "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
+ "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
+ "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
+ "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
+ "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_te.js b/src/ngLocale/angular-locale_te.js
index a3c493fc3d60..e5028890148b 100644
--- a/src/ngLocale/angular-locale_te.js
+++ b/src/ngLocale/angular-locale_te.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0c28\u0c35\u0c02",
"\u0c21\u0c3f\u0c38\u0c46\u0c02"
],
+ "STANDALONEMONTH": [
+ "\u0c1c\u0c28\u0c35\u0c30\u0c3f",
+ "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
+ "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
+ "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
+ "\u0c2e\u0c47",
+ "\u0c1c\u0c42\u0c28\u0c4d",
+ "\u0c1c\u0c41\u0c32\u0c48",
+ "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
+ "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
+ "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
+ "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
+ "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_teo-ke.js b/src/ngLocale/angular-locale_teo-ke.js
index 04178e1c5681..30d7543e71ee 100644
--- a/src/ngLocale/angular-locale_teo-ke.js
+++ b/src/ngLocale/angular-locale_teo-ke.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Lab",
"Poo"
],
+ "STANDALONEMONTH": [
+ "Orara",
+ "Omuk",
+ "Okwamg\u2019",
+ "Odung\u2019el",
+ "Omaruk",
+ "Omodok\u2019king\u2019ol",
+ "Ojola",
+ "Opedel",
+ "Osokosokoma",
+ "Otibar",
+ "Olabor",
+ "Opoo"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_teo-ug.js b/src/ngLocale/angular-locale_teo-ug.js
index 8a6e1a783ce8..f7852e3ff884 100644
--- a/src/ngLocale/angular-locale_teo-ug.js
+++ b/src/ngLocale/angular-locale_teo-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Lab",
"Poo"
],
+ "STANDALONEMONTH": [
+ "Orara",
+ "Omuk",
+ "Okwamg\u2019",
+ "Odung\u2019el",
+ "Omaruk",
+ "Omodok\u2019king\u2019ol",
+ "Ojola",
+ "Opedel",
+ "Osokosokoma",
+ "Otibar",
+ "Olabor",
+ "Opoo"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_teo.js b/src/ngLocale/angular-locale_teo.js
index b3a750c60bec..119e66ae5ed6 100644
--- a/src/ngLocale/angular-locale_teo.js
+++ b/src/ngLocale/angular-locale_teo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Lab",
"Poo"
],
+ "STANDALONEMONTH": [
+ "Orara",
+ "Omuk",
+ "Okwamg\u2019",
+ "Odung\u2019el",
+ "Omaruk",
+ "Omodok\u2019king\u2019ol",
+ "Ojola",
+ "Opedel",
+ "Osokosokoma",
+ "Otibar",
+ "Olabor",
+ "Opoo"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_th-th.js b/src/ngLocale/angular-locale_th-th.js
index 93c1cce8321c..3998b3b6d05b 100644
--- a/src/ngLocale/angular-locale_th-th.js
+++ b/src/ngLocale/angular-locale_th-th.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0e1e.\u0e22.",
"\u0e18.\u0e04."
],
+ "STANDALONEMONTH": [
+ "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
+ "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
+ "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
+ "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
+ "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
+ "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
+ "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
+ "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
+ "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
+ "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
+ "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
+ "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_th.js b/src/ngLocale/angular-locale_th.js
index d9c21b282064..df7a7202684e 100644
--- a/src/ngLocale/angular-locale_th.js
+++ b/src/ngLocale/angular-locale_th.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0e1e.\u0e22.",
"\u0e18.\u0e04."
],
+ "STANDALONEMONTH": [
+ "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
+ "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
+ "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
+ "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
+ "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
+ "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
+ "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
+ "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
+ "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
+ "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
+ "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
+ "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ti-er.js b/src/ngLocale/angular-locale_ti-er.js
index 26948d7c219e..be3484a0d30e 100644
--- a/src/ngLocale/angular-locale_ti-er.js
+++ b/src/ngLocale/angular-locale_ti-er.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u1215\u12f3\u122d",
"\u1273\u1215\u1233"
],
+ "STANDALONEMONTH": [
+ "\u1325\u122a",
+ "\u1208\u12ab\u1272\u1275",
+ "\u1218\u130b\u1262\u1275",
+ "\u121a\u12eb\u12dd\u12eb",
+ "\u130d\u1295\u1266\u1275",
+ "\u1230\u1290",
+ "\u1213\u121d\u1208",
+ "\u1290\u1213\u1230",
+ "\u1218\u1235\u12a8\u1228\u121d",
+ "\u1325\u1245\u121d\u1272",
+ "\u1215\u12f3\u122d",
+ "\u1273\u1215\u1233\u1235"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ti-et.js b/src/ngLocale/angular-locale_ti-et.js
index 1be479a0f54f..5aee651170a3 100644
--- a/src/ngLocale/angular-locale_ti-et.js
+++ b/src/ngLocale/angular-locale_ti-et.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u1296\u126c\u121d",
"\u12f2\u1234\u121d"
],
+ "STANDALONEMONTH": [
+ "\u1303\u1295\u12e9\u12c8\u122a",
+ "\u134c\u1265\u1229\u12c8\u122a",
+ "\u121b\u122d\u127d",
+ "\u12a4\u1355\u1228\u120d",
+ "\u121c\u12ed",
+ "\u1301\u1295",
+ "\u1301\u120b\u12ed",
+ "\u12a6\u1308\u1235\u1275",
+ "\u1234\u1355\u1274\u121d\u1260\u122d",
+ "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
+ "\u1296\u126c\u121d\u1260\u122d",
+ "\u12f2\u1234\u121d\u1260\u122d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ti.js b/src/ngLocale/angular-locale_ti.js
index 872204c4afb0..1a3bd80e6173 100644
--- a/src/ngLocale/angular-locale_ti.js
+++ b/src/ngLocale/angular-locale_ti.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u1296\u126c\u121d",
"\u12f2\u1234\u121d"
],
+ "STANDALONEMONTH": [
+ "\u1303\u1295\u12e9\u12c8\u122a",
+ "\u134c\u1265\u1229\u12c8\u122a",
+ "\u121b\u122d\u127d",
+ "\u12a4\u1355\u1228\u120d",
+ "\u121c\u12ed",
+ "\u1301\u1295",
+ "\u1301\u120b\u12ed",
+ "\u12a6\u1308\u1235\u1275",
+ "\u1234\u1355\u1274\u121d\u1260\u122d",
+ "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
+ "\u1296\u126c\u121d\u1260\u122d",
+ "\u12f2\u1234\u121d\u1260\u122d"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_tl.js b/src/ngLocale/angular-locale_tl.js
index 59b7a10d8176..a2e784e294db 100644
--- a/src/ngLocale/angular-locale_tl.js
+++ b/src/ngLocale/angular-locale_tl.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nob",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Enero",
+ "Pebrero",
+ "Marso",
+ "Abril",
+ "Mayo",
+ "Hunyo",
+ "Hulyo",
+ "Agosto",
+ "Setyembre",
+ "Oktubre",
+ "Nobyembre",
+ "Disyembre"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_to-to.js b/src/ngLocale/angular-locale_to-to.js
index 568ba879b70d..c5a01a0ddf2b 100644
--- a/src/ngLocale/angular-locale_to-to.js
+++ b/src/ngLocale/angular-locale_to-to.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"N\u014dv",
"T\u012bs"
],
+ "STANDALONEMONTH": [
+ "S\u0101nuali",
+ "F\u0113pueli",
+ "Ma\u02bbasi",
+ "\u02bbEpeleli",
+ "M\u0113",
+ "Sune",
+ "Siulai",
+ "\u02bbAokosi",
+ "Sepitema",
+ "\u02bbOkatopa",
+ "N\u014dvema",
+ "T\u012bsema"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_to.js b/src/ngLocale/angular-locale_to.js
index 81ee57580b53..539545afb5a1 100644
--- a/src/ngLocale/angular-locale_to.js
+++ b/src/ngLocale/angular-locale_to.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"N\u014dv",
"T\u012bs"
],
+ "STANDALONEMONTH": [
+ "S\u0101nuali",
+ "F\u0113pueli",
+ "Ma\u02bbasi",
+ "\u02bbEpeleli",
+ "M\u0113",
+ "Sune",
+ "Siulai",
+ "\u02bbAokosi",
+ "Sepitema",
+ "\u02bbOkatopa",
+ "N\u014dvema",
+ "T\u012bsema"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_tr-cy.js b/src/ngLocale/angular-locale_tr-cy.js
index ea4847590c90..067df34b900c 100644
--- a/src/ngLocale/angular-locale_tr-cy.js
+++ b/src/ngLocale/angular-locale_tr-cy.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Kas",
"Ara"
],
+ "STANDALONEMONTH": [
+ "Ocak",
+ "\u015eubat",
+ "Mart",
+ "Nisan",
+ "May\u0131s",
+ "Haziran",
+ "Temmuz",
+ "A\u011fustos",
+ "Eyl\u00fcl",
+ "Ekim",
+ "Kas\u0131m",
+ "Aral\u0131k"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_tr-tr.js b/src/ngLocale/angular-locale_tr-tr.js
index e9575d34e3d5..68413082a2d9 100644
--- a/src/ngLocale/angular-locale_tr-tr.js
+++ b/src/ngLocale/angular-locale_tr-tr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Kas",
"Ara"
],
+ "STANDALONEMONTH": [
+ "Ocak",
+ "\u015eubat",
+ "Mart",
+ "Nisan",
+ "May\u0131s",
+ "Haziran",
+ "Temmuz",
+ "A\u011fustos",
+ "Eyl\u00fcl",
+ "Ekim",
+ "Kas\u0131m",
+ "Aral\u0131k"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_tr.js b/src/ngLocale/angular-locale_tr.js
index e3521251855e..355cb4345909 100644
--- a/src/ngLocale/angular-locale_tr.js
+++ b/src/ngLocale/angular-locale_tr.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Kas",
"Ara"
],
+ "STANDALONEMONTH": [
+ "Ocak",
+ "\u015eubat",
+ "Mart",
+ "Nisan",
+ "May\u0131s",
+ "Haziran",
+ "Temmuz",
+ "A\u011fustos",
+ "Eyl\u00fcl",
+ "Ekim",
+ "Kas\u0131m",
+ "Aral\u0131k"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_twq-ne.js b/src/ngLocale/angular-locale_twq-ne.js
index 6213c47e83e6..529362877cec 100644
--- a/src/ngLocale/angular-locale_twq-ne.js
+++ b/src/ngLocale/angular-locale_twq-ne.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_twq.js b/src/ngLocale/angular-locale_twq.js
index b477674ab6d9..a4707aea628e 100644
--- a/src/ngLocale/angular-locale_twq.js
+++ b/src/ngLocale/angular-locale_twq.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Noo",
"Dee"
],
+ "STANDALONEMONTH": [
+ "\u017danwiye",
+ "Feewiriye",
+ "Marsi",
+ "Awiril",
+ "Me",
+ "\u017duwe\u014b",
+ "\u017duyye",
+ "Ut",
+ "Sektanbur",
+ "Oktoobur",
+ "Noowanbur",
+ "Deesanbur"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_tzm-latn-ma.js b/src/ngLocale/angular-locale_tzm-latn-ma.js
index bbfe0a7ebe45..3320f7640042 100644
--- a/src/ngLocale/angular-locale_tzm-latn-ma.js
+++ b/src/ngLocale/angular-locale_tzm-latn-ma.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nwa",
"Duj"
],
+ "STANDALONEMONTH": [
+ "Yennayer",
+ "Yebrayer",
+ "Mars",
+ "Ibrir",
+ "Mayyu",
+ "Yunyu",
+ "Yulyuz",
+ "\u0194uct",
+ "Cutanbir",
+ "K\u1e6duber",
+ "Nwanbir",
+ "Dujanbir"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_tzm-latn.js b/src/ngLocale/angular-locale_tzm-latn.js
index b17a71dc0fd7..a91a99e7b514 100644
--- a/src/ngLocale/angular-locale_tzm-latn.js
+++ b/src/ngLocale/angular-locale_tzm-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nwa",
"Duj"
],
+ "STANDALONEMONTH": [
+ "Yennayer",
+ "Yebrayer",
+ "Mars",
+ "Ibrir",
+ "Mayyu",
+ "Yunyu",
+ "Yulyuz",
+ "\u0194uct",
+ "Cutanbir",
+ "K\u1e6duber",
+ "Nwanbir",
+ "Dujanbir"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_tzm.js b/src/ngLocale/angular-locale_tzm.js
index a2f34ff5fa15..291a09053589 100644
--- a/src/ngLocale/angular-locale_tzm.js
+++ b/src/ngLocale/angular-locale_tzm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nwa",
"Duj"
],
+ "STANDALONEMONTH": [
+ "Yennayer",
+ "Yebrayer",
+ "Mars",
+ "Ibrir",
+ "Mayyu",
+ "Yunyu",
+ "Yulyuz",
+ "\u0194uct",
+ "Cutanbir",
+ "K\u1e6duber",
+ "Nwanbir",
+ "Dujanbir"
+ ],
"WEEKENDRANGE": [
4,
5
diff --git a/src/ngLocale/angular-locale_ug-arab-cn.js b/src/ngLocale/angular-locale_ug-arab-cn.js
index 67092f1e3997..7df5b5ba1bd9 100644
--- a/src/ngLocale/angular-locale_ug-arab-cn.js
+++ b/src/ngLocale/angular-locale_ug-arab-cn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u064a\u0627\u0628\u0649\u0631",
"\u062f\u06d0\u0643\u0627\u0628\u0649\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0627\u0646\u06cb\u0627\u0631",
+ "\u0641\u06d0\u06cb\u0631\u0627\u0644",
+ "\u0645\u0627\u0631\u062a",
+ "\u0626\u0627\u067e\u0631\u06d0\u0644",
+ "\u0645\u0627\u064a",
+ "\u0626\u0649\u064a\u06c7\u0646",
+ "\u0626\u0649\u064a\u06c7\u0644",
+ "\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a",
+ "\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631",
+ "\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631",
+ "\u0628\u0648\u064a\u0627\u0628\u0649\u0631",
+ "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ug-arab.js b/src/ngLocale/angular-locale_ug-arab.js
index bd9ae4abd404..732984b71605 100644
--- a/src/ngLocale/angular-locale_ug-arab.js
+++ b/src/ngLocale/angular-locale_ug-arab.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u064a\u0627\u0628\u0649\u0631",
"\u062f\u06d0\u0643\u0627\u0628\u0649\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0627\u0646\u06cb\u0627\u0631",
+ "\u0641\u06d0\u06cb\u0631\u0627\u0644",
+ "\u0645\u0627\u0631\u062a",
+ "\u0626\u0627\u067e\u0631\u06d0\u0644",
+ "\u0645\u0627\u064a",
+ "\u0626\u0649\u064a\u06c7\u0646",
+ "\u0626\u0649\u064a\u06c7\u0644",
+ "\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a",
+ "\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631",
+ "\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631",
+ "\u0628\u0648\u064a\u0627\u0628\u0649\u0631",
+ "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ug.js b/src/ngLocale/angular-locale_ug.js
index 2ed49abcf770..eb0127fd8a45 100644
--- a/src/ngLocale/angular-locale_ug.js
+++ b/src/ngLocale/angular-locale_ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u064a\u0627\u0628\u0649\u0631",
"\u062f\u06d0\u0643\u0627\u0628\u0649\u0631"
],
+ "STANDALONEMONTH": [
+ "\u064a\u0627\u0646\u06cb\u0627\u0631",
+ "\u0641\u06d0\u06cb\u0631\u0627\u0644",
+ "\u0645\u0627\u0631\u062a",
+ "\u0626\u0627\u067e\u0631\u06d0\u0644",
+ "\u0645\u0627\u064a",
+ "\u0626\u0649\u064a\u06c7\u0646",
+ "\u0626\u0649\u064a\u06c7\u0644",
+ "\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a",
+ "\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631",
+ "\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631",
+ "\u0628\u0648\u064a\u0627\u0628\u0649\u0631",
+ "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uk-ua.js b/src/ngLocale/angular-locale_uk-ua.js
index 1fca063b0443..8d5dd42d260e 100644
--- a/src/ngLocale/angular-locale_uk-ua.js
+++ b/src/ngLocale/angular-locale_uk-ua.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043b\u0438\u0441\u0442.",
"\u0433\u0440\u0443\u0434."
],
+ "STANDALONEMONTH": [
+ "\u0421\u0456\u0447\u0435\u043d\u044c",
+ "\u041b\u044e\u0442\u0438\u0439",
+ "\u0411\u0435\u0440\u0435\u0437\u0435\u043d\u044c",
+ "\u041a\u0432\u0456\u0442\u0435\u043d\u044c",
+ "\u0422\u0440\u0430\u0432\u0435\u043d\u044c",
+ "\u0427\u0435\u0440\u0432\u0435\u043d\u044c",
+ "\u041b\u0438\u043f\u0435\u043d\u044c",
+ "\u0421\u0435\u0440\u043f\u0435\u043d\u044c",
+ "\u0412\u0435\u0440\u0435\u0441\u0435\u043d\u044c",
+ "\u0416\u043e\u0432\u0442\u0435\u043d\u044c",
+ "\u041b\u0438\u0441\u0442\u043e\u043f\u0430\u0434",
+ "\u0413\u0440\u0443\u0434\u0435\u043d\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uk.js b/src/ngLocale/angular-locale_uk.js
index 9519ad862e53..369f3bd5a6a5 100644
--- a/src/ngLocale/angular-locale_uk.js
+++ b/src/ngLocale/angular-locale_uk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u043b\u0438\u0441\u0442.",
"\u0433\u0440\u0443\u0434."
],
+ "STANDALONEMONTH": [
+ "\u0421\u0456\u0447\u0435\u043d\u044c",
+ "\u041b\u044e\u0442\u0438\u0439",
+ "\u0411\u0435\u0440\u0435\u0437\u0435\u043d\u044c",
+ "\u041a\u0432\u0456\u0442\u0435\u043d\u044c",
+ "\u0422\u0440\u0430\u0432\u0435\u043d\u044c",
+ "\u0427\u0435\u0440\u0432\u0435\u043d\u044c",
+ "\u041b\u0438\u043f\u0435\u043d\u044c",
+ "\u0421\u0435\u0440\u043f\u0435\u043d\u044c",
+ "\u0412\u0435\u0440\u0435\u0441\u0435\u043d\u044c",
+ "\u0416\u043e\u0432\u0442\u0435\u043d\u044c",
+ "\u041b\u0438\u0441\u0442\u043e\u043f\u0430\u0434",
+ "\u0413\u0440\u0443\u0434\u0435\u043d\u044c"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ur-in.js b/src/ngLocale/angular-locale_ur-in.js
index c81b2df109ac..fb18729fadae 100644
--- a/src/ngLocale/angular-locale_ur-in.js
+++ b/src/ngLocale/angular-locale_ur-in.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u0626\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u0626\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
6,
6
diff --git a/src/ngLocale/angular-locale_ur-pk.js b/src/ngLocale/angular-locale_ur-pk.js
index f64e8f6096fa..57d4a5b22874 100644
--- a/src/ngLocale/angular-locale_ur-pk.js
+++ b/src/ngLocale/angular-locale_ur-pk.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u0626\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u0626\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_ur.js b/src/ngLocale/angular-locale_ur.js
index 79bf686cac5b..ac6d9be86758 100644
--- a/src/ngLocale/angular-locale_ur.js
+++ b/src/ngLocale/angular-locale_ur.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645\u0628\u0631",
"\u062f\u0633\u0645\u0628\u0631"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u0626\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u0626\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uz-arab-af.js b/src/ngLocale/angular-locale_uz-arab-af.js
index 118132ae5e8c..386ae812478e 100644
--- a/src/ngLocale/angular-locale_uz-arab-af.js
+++ b/src/ngLocale/angular-locale_uz-arab-af.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645",
"\u062f\u0633\u0645"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0628\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u067e\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
3,
4
diff --git a/src/ngLocale/angular-locale_uz-arab.js b/src/ngLocale/angular-locale_uz-arab.js
index 3f1a20da4fba..1b8147e17772 100644
--- a/src/ngLocale/angular-locale_uz-arab.js
+++ b/src/ngLocale/angular-locale_uz-arab.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u0646\u0648\u0645",
"\u062f\u0633\u0645"
],
+ "STANDALONEMONTH": [
+ "\u062c\u0646\u0648\u0631\u06cc",
+ "\u0641\u0628\u0631\u0648\u0631\u06cc",
+ "\u0645\u0627\u0631\u0686",
+ "\u0627\u067e\u0631\u06cc\u0644",
+ "\u0645\u06cc",
+ "\u062c\u0648\u0646",
+ "\u062c\u0648\u0644\u0627\u06cc",
+ "\u0627\u06af\u0633\u062a",
+ "\u0633\u067e\u062a\u0645\u0628\u0631",
+ "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "\u0646\u0648\u0645\u0628\u0631",
+ "\u062f\u0633\u0645\u0628\u0631"
+ ],
"WEEKENDRANGE": [
3,
4
diff --git a/src/ngLocale/angular-locale_uz-cyrl-uz.js b/src/ngLocale/angular-locale_uz-cyrl-uz.js
index 03e74ba69a5c..d5b74c870b08 100644
--- a/src/ngLocale/angular-locale_uz-cyrl-uz.js
+++ b/src/ngLocale/angular-locale_uz-cyrl-uz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u041d\u043e\u044f",
"\u0414\u0435\u043a"
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440",
+ "\u0424\u0435\u0432\u0440\u0430\u043b",
+ "\u041c\u0430\u0440\u0442",
+ "\u0410\u043f\u0440\u0435\u043b",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d",
+ "\u0418\u044e\u043b",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440",
+ "\u041e\u043a\u0442\u044f\u0431\u0440",
+ "\u041d\u043e\u044f\u0431\u0440",
+ "\u0414\u0435\u043a\u0430\u0431\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uz-cyrl.js b/src/ngLocale/angular-locale_uz-cyrl.js
index d284657c077d..c8a4eec34826 100644
--- a/src/ngLocale/angular-locale_uz-cyrl.js
+++ b/src/ngLocale/angular-locale_uz-cyrl.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"\u041d\u043e\u044f",
"\u0414\u0435\u043a"
],
+ "STANDALONEMONTH": [
+ "\u042f\u043d\u0432\u0430\u0440",
+ "\u0424\u0435\u0432\u0440\u0430\u043b",
+ "\u041c\u0430\u0440\u0442",
+ "\u0410\u043f\u0440\u0435\u043b",
+ "\u041c\u0430\u0439",
+ "\u0418\u044e\u043d",
+ "\u0418\u044e\u043b",
+ "\u0410\u0432\u0433\u0443\u0441\u0442",
+ "\u0421\u0435\u043d\u0442\u044f\u0431\u0440",
+ "\u041e\u043a\u0442\u044f\u0431\u0440",
+ "\u041d\u043e\u044f\u0431\u0440",
+ "\u0414\u0435\u043a\u0430\u0431\u0440"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uz-latn-uz.js b/src/ngLocale/angular-locale_uz-latn-uz.js
index d7b41bd0fb88..6312092ca2f3 100644
--- a/src/ngLocale/angular-locale_uz-latn-uz.js
+++ b/src/ngLocale/angular-locale_uz-latn-uz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Noya",
"Dek"
],
+ "STANDALONEMONTH": [
+ "Yanvar",
+ "Fevral",
+ "Mart",
+ "Aprel",
+ "May",
+ "Iyun",
+ "Iyul",
+ "Avgust",
+ "Sentabr",
+ "Oktabr",
+ "Noyabr",
+ "Dekabr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uz-latn.js b/src/ngLocale/angular-locale_uz-latn.js
index a02622714f81..6119b9668e6d 100644
--- a/src/ngLocale/angular-locale_uz-latn.js
+++ b/src/ngLocale/angular-locale_uz-latn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Noya",
"Dek"
],
+ "STANDALONEMONTH": [
+ "Yanvar",
+ "Fevral",
+ "Mart",
+ "Aprel",
+ "May",
+ "Iyun",
+ "Iyul",
+ "Avgust",
+ "Sentabr",
+ "Oktabr",
+ "Noyabr",
+ "Dekabr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_uz.js b/src/ngLocale/angular-locale_uz.js
index 1bf9a64524c7..a305b297eef5 100644
--- a/src/ngLocale/angular-locale_uz.js
+++ b/src/ngLocale/angular-locale_uz.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Noya",
"Dek"
],
+ "STANDALONEMONTH": [
+ "Yanvar",
+ "Fevral",
+ "Mart",
+ "Aprel",
+ "May",
+ "Iyun",
+ "Iyul",
+ "Avgust",
+ "Sentabr",
+ "Oktabr",
+ "Noyabr",
+ "Dekabr"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vai-latn-lr.js b/src/ngLocale/angular-locale_vai-latn-lr.js
index a3d63c35b0f3..07cc753605cc 100644
--- a/src/ngLocale/angular-locale_vai-latn-lr.js
+++ b/src/ngLocale/angular-locale_vai-latn-lr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"kenpkato \u0253olol\u0254",
"luukao l\u0254ma"
],
+ "STANDALONEMONTH": [
+ "luukao kem\u00e3",
+ "\u0253anda\u0253u",
+ "v\u0254\u0254",
+ "fulu",
+ "goo",
+ "6",
+ "7",
+ "k\u0254nde",
+ "saah",
+ "galo",
+ "kenpkato \u0253olol\u0254",
+ "luukao l\u0254ma"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vai-latn.js b/src/ngLocale/angular-locale_vai-latn.js
index 3afe6629b868..dd86c3f80e64 100644
--- a/src/ngLocale/angular-locale_vai-latn.js
+++ b/src/ngLocale/angular-locale_vai-latn.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"kenpkato \u0253olol\u0254",
"luukao l\u0254ma"
],
+ "STANDALONEMONTH": [
+ "luukao kem\u00e3",
+ "\u0253anda\u0253u",
+ "v\u0254\u0254",
+ "fulu",
+ "goo",
+ "6",
+ "7",
+ "k\u0254nde",
+ "saah",
+ "galo",
+ "kenpkato \u0253olol\u0254",
+ "luukao l\u0254ma"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vai-vaii-lr.js b/src/ngLocale/angular-locale_vai-vaii-lr.js
index 6666694983a9..b8aacff3daa7 100644
--- a/src/ngLocale/angular-locale_vai-vaii-lr.js
+++ b/src/ngLocale/angular-locale_vai-vaii-lr.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf",
"\ua5a8\ua56a\ua571 \ua5cf\ua56e"
],
+ "STANDALONEMONTH": [
+ "\ua5a8\ua56a\ua583 \ua51e\ua56e",
+ "\ua552\ua561\ua59d\ua595",
+ "\ua57e\ua5ba",
+ "\ua5a2\ua595",
+ "\ua591\ua571",
+ "6",
+ "7",
+ "\ua5db\ua515",
+ "\ua562\ua54c",
+ "\ua56d\ua583",
+ "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf",
+ "\ua5a8\ua56a\ua571 \ua5cf\ua56e"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vai-vaii.js b/src/ngLocale/angular-locale_vai-vaii.js
index fc172f820231..58cdcd450032 100644
--- a/src/ngLocale/angular-locale_vai-vaii.js
+++ b/src/ngLocale/angular-locale_vai-vaii.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf",
"\ua5a8\ua56a\ua571 \ua5cf\ua56e"
],
+ "STANDALONEMONTH": [
+ "\ua5a8\ua56a\ua583 \ua51e\ua56e",
+ "\ua552\ua561\ua59d\ua595",
+ "\ua57e\ua5ba",
+ "\ua5a2\ua595",
+ "\ua591\ua571",
+ "6",
+ "7",
+ "\ua5db\ua515",
+ "\ua562\ua54c",
+ "\ua56d\ua583",
+ "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf",
+ "\ua5a8\ua56a\ua571 \ua5cf\ua56e"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vai.js b/src/ngLocale/angular-locale_vai.js
index bdf3393a2b90..ff6d565e55b9 100644
--- a/src/ngLocale/angular-locale_vai.js
+++ b/src/ngLocale/angular-locale_vai.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf",
"\ua5a8\ua56a\ua571 \ua5cf\ua56e"
],
+ "STANDALONEMONTH": [
+ "\ua5a8\ua56a\ua583 \ua51e\ua56e",
+ "\ua552\ua561\ua59d\ua595",
+ "\ua57e\ua5ba",
+ "\ua5a2\ua595",
+ "\ua591\ua571",
+ "6",
+ "7",
+ "\ua5db\ua515",
+ "\ua562\ua54c",
+ "\ua56d\ua583",
+ "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf",
+ "\ua5a8\ua56a\ua571 \ua5cf\ua56e"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vi-vn.js b/src/ngLocale/angular-locale_vi-vn.js
index 112e96ae9818..7c4ae01095d0 100644
--- a/src/ngLocale/angular-locale_vi-vn.js
+++ b/src/ngLocale/angular-locale_vi-vn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"thg 11",
"thg 12"
],
+ "STANDALONEMONTH": [
+ "Th\u00e1ng 1",
+ "Th\u00e1ng 2",
+ "Th\u00e1ng 3",
+ "Th\u00e1ng 4",
+ "Th\u00e1ng 5",
+ "Th\u00e1ng 6",
+ "Th\u00e1ng 7",
+ "Th\u00e1ng 8",
+ "Th\u00e1ng 9",
+ "Th\u00e1ng 10",
+ "Th\u00e1ng 11",
+ "Th\u00e1ng 12"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vi.js b/src/ngLocale/angular-locale_vi.js
index be70bd8eb28e..3c6f415cc6e0 100644
--- a/src/ngLocale/angular-locale_vi.js
+++ b/src/ngLocale/angular-locale_vi.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"thg 11",
"thg 12"
],
+ "STANDALONEMONTH": [
+ "Th\u00e1ng 1",
+ "Th\u00e1ng 2",
+ "Th\u00e1ng 3",
+ "Th\u00e1ng 4",
+ "Th\u00e1ng 5",
+ "Th\u00e1ng 6",
+ "Th\u00e1ng 7",
+ "Th\u00e1ng 8",
+ "Th\u00e1ng 9",
+ "Th\u00e1ng 10",
+ "Th\u00e1ng 11",
+ "Th\u00e1ng 12"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vun-tz.js b/src/ngLocale/angular-locale_vun-tz.js
index 52b0670ee759..6de61112386c 100644
--- a/src/ngLocale/angular-locale_vun-tz.js
+++ b/src/ngLocale/angular-locale_vun-tz.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprilyi",
+ "Mei",
+ "Junyi",
+ "Julyai",
+ "Agusti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_vun.js b/src/ngLocale/angular-locale_vun.js
index 4efacdf09b6d..bfb1746f6c38 100644
--- a/src/ngLocale/angular-locale_vun.js
+++ b/src/ngLocale/angular-locale_vun.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Januari",
+ "Februari",
+ "Machi",
+ "Aprilyi",
+ "Mei",
+ "Junyi",
+ "Julyai",
+ "Agusti",
+ "Septemba",
+ "Oktoba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_wae-ch.js b/src/ngLocale/angular-locale_wae-ch.js
index fba5d6ffba80..4b1a8feb3226 100644
--- a/src/ngLocale/angular-locale_wae-ch.js
+++ b/src/ngLocale/angular-locale_wae-ch.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Win",
"Chr"
],
+ "STANDALONEMONTH": [
+ "Jenner",
+ "Hornig",
+ "M\u00e4rze",
+ "Abrille",
+ "Meije",
+ "Br\u00e1\u010det",
+ "Heiwet",
+ "\u00d6ig\u0161te",
+ "Herb\u0161tm\u00e1net",
+ "W\u00edm\u00e1net",
+ "Winterm\u00e1net",
+ "Chri\u0161tm\u00e1net"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_wae.js b/src/ngLocale/angular-locale_wae.js
index 0e16d9163f48..835be049801a 100644
--- a/src/ngLocale/angular-locale_wae.js
+++ b/src/ngLocale/angular-locale_wae.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Win",
"Chr"
],
+ "STANDALONEMONTH": [
+ "Jenner",
+ "Hornig",
+ "M\u00e4rze",
+ "Abrille",
+ "Meije",
+ "Br\u00e1\u010det",
+ "Heiwet",
+ "\u00d6ig\u0161te",
+ "Herb\u0161tm\u00e1net",
+ "W\u00edm\u00e1net",
+ "Winterm\u00e1net",
+ "Chri\u0161tm\u00e1net"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_xog-ug.js b/src/ngLocale/angular-locale_xog-ug.js
index 0288518ee545..d6277f1eb217 100644
--- a/src/ngLocale/angular-locale_xog-ug.js
+++ b/src/ngLocale/angular-locale_xog-ug.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Janwaliyo",
+ "Febwaliyo",
+ "Marisi",
+ "Apuli",
+ "Maayi",
+ "Juuni",
+ "Julaayi",
+ "Agusito",
+ "Sebuttemba",
+ "Okitobba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_xog.js b/src/ngLocale/angular-locale_xog.js
index 1a42ccf007c7..51890d77ddff 100644
--- a/src/ngLocale/angular-locale_xog.js
+++ b/src/ngLocale/angular-locale_xog.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"Nov",
"Des"
],
+ "STANDALONEMONTH": [
+ "Janwaliyo",
+ "Febwaliyo",
+ "Marisi",
+ "Apuli",
+ "Maayi",
+ "Juuni",
+ "Julaayi",
+ "Agusito",
+ "Sebuttemba",
+ "Okitobba",
+ "Novemba",
+ "Desemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yav-cm.js b/src/ngLocale/angular-locale_yav-cm.js
index 142164fcdd2b..a526be0c05f0 100644
--- a/src/ngLocale/angular-locale_yav-cm.js
+++ b/src/ngLocale/angular-locale_yav-cm.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"o.11",
"o.12"
],
+ "STANDALONEMONTH": [
+ "pik\u00edt\u00edk\u00edtie, o\u00f3l\u00ed \u00fa kut\u00faan",
+ "si\u025by\u025b\u0301, o\u00f3li \u00fa k\u00e1nd\u00ed\u025b",
+ "\u0254ns\u00famb\u0254l, o\u00f3li \u00fa k\u00e1t\u00e1t\u00fa\u025b",
+ "mesi\u014b, o\u00f3li \u00fa k\u00e9nie",
+ "ensil, o\u00f3li \u00fa k\u00e1t\u00e1nu\u025b",
+ "\u0254s\u0254n",
+ "efute",
+ "pisuy\u00fa",
+ "im\u025b\u014b i pu\u0254s",
+ "im\u025b\u014b i put\u00fak,o\u00f3li \u00fa k\u00e1t\u00ed\u025b",
+ "makandik\u025b",
+ "pil\u0254nd\u0254\u0301"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yav.js b/src/ngLocale/angular-locale_yav.js
index 01781a0d2361..dbd4d65c7c9c 100644
--- a/src/ngLocale/angular-locale_yav.js
+++ b/src/ngLocale/angular-locale_yav.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"o.11",
"o.12"
],
+ "STANDALONEMONTH": [
+ "pik\u00edt\u00edk\u00edtie, o\u00f3l\u00ed \u00fa kut\u00faan",
+ "si\u025by\u025b\u0301, o\u00f3li \u00fa k\u00e1nd\u00ed\u025b",
+ "\u0254ns\u00famb\u0254l, o\u00f3li \u00fa k\u00e1t\u00e1t\u00fa\u025b",
+ "mesi\u014b, o\u00f3li \u00fa k\u00e9nie",
+ "ensil, o\u00f3li \u00fa k\u00e1t\u00e1nu\u025b",
+ "\u0254s\u0254n",
+ "efute",
+ "pisuy\u00fa",
+ "im\u025b\u014b i pu\u0254s",
+ "im\u025b\u014b i put\u00fak,o\u00f3li \u00fa k\u00e1t\u00ed\u025b",
+ "makandik\u025b",
+ "pil\u0254nd\u0254\u0301"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yi-001.js b/src/ngLocale/angular-locale_yi-001.js
index 0ba2042d1355..98d0b70f1aa4 100644
--- a/src/ngLocale/angular-locale_yi-001.js
+++ b/src/ngLocale/angular-locale_yi-001.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8",
"\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8"
],
+ "STANDALONEMONTH": [
+ "\u05d9\u05d0\u05b7\u05e0\u05d5\u05d0\u05b7\u05e8",
+ "\u05e4\u05bf\u05e2\u05d1\u05e8\u05d5\u05d0\u05b7\u05e8",
+ "\u05de\u05e2\u05e8\u05e5",
+ "\u05d0\u05b7\u05e4\u05bc\u05e8\u05d9\u05dc",
+ "\u05de\u05d9\u05d9",
+ "\u05d9\u05d5\u05e0\u05d9",
+ "\u05d9\u05d5\u05dc\u05d9",
+ "\u05d0\u05d5\u05d9\u05d2\u05d5\u05e1\u05d8",
+ "\u05e1\u05e2\u05e4\u05bc\u05d8\u05e2\u05de\u05d1\u05e2\u05e8",
+ "\u05d0\u05e7\u05d8\u05d0\u05d1\u05e2\u05e8",
+ "\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8",
+ "\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yi.js b/src/ngLocale/angular-locale_yi.js
index 57fb4a9d11f4..4bb8e6894279 100644
--- a/src/ngLocale/angular-locale_yi.js
+++ b/src/ngLocale/angular-locale_yi.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8",
"\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8"
],
+ "STANDALONEMONTH": [
+ "\u05d9\u05d0\u05b7\u05e0\u05d5\u05d0\u05b7\u05e8",
+ "\u05e4\u05bf\u05e2\u05d1\u05e8\u05d5\u05d0\u05b7\u05e8",
+ "\u05de\u05e2\u05e8\u05e5",
+ "\u05d0\u05b7\u05e4\u05bc\u05e8\u05d9\u05dc",
+ "\u05de\u05d9\u05d9",
+ "\u05d9\u05d5\u05e0\u05d9",
+ "\u05d9\u05d5\u05dc\u05d9",
+ "\u05d0\u05d5\u05d9\u05d2\u05d5\u05e1\u05d8",
+ "\u05e1\u05e2\u05e4\u05bc\u05d8\u05e2\u05de\u05d1\u05e2\u05e8",
+ "\u05d0\u05e7\u05d8\u05d0\u05d1\u05e2\u05e8",
+ "\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8",
+ "\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yo-bj.js b/src/ngLocale/angular-locale_yo-bj.js
index afc112c32a43..c9b8d5ed8c6a 100644
--- a/src/ngLocale/angular-locale_yo-bj.js
+++ b/src/ngLocale/angular-locale_yo-bj.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"B\u00e9l\u00fa",
"\u0186\u0300p\u025b\u0300"
],
+ "STANDALONEMONTH": [
+ "Osh\u00f9 Sh\u025b\u0301r\u025b\u0301",
+ "Osh\u00f9 \u00c8r\u00e8l\u00e8",
+ "Osh\u00f9 \u0190r\u025b\u0300n\u00e0",
+ "Osh\u00f9 \u00ccgb\u00e9",
+ "Osh\u00f9 \u0190\u0300bibi",
+ "Osh\u00f9 \u00d2k\u00fadu",
+ "Osh\u00f9 Ag\u025bm\u0254",
+ "Osh\u00f9 \u00d2g\u00fan",
+ "Osh\u00f9 Owewe",
+ "Osh\u00f9 \u0186\u0300w\u00e0r\u00e0",
+ "Osh\u00f9 B\u00e9l\u00fa",
+ "Osh\u00f9 \u0186\u0300p\u025b\u0300"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yo-ng.js b/src/ngLocale/angular-locale_yo-ng.js
index 37b44503be6b..994a51c4a364 100644
--- a/src/ngLocale/angular-locale_yo-ng.js
+++ b/src/ngLocale/angular-locale_yo-ng.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"B\u00e9l\u00fa",
"\u1ecc\u0300p\u1eb9\u0300"
],
+ "STANDALONEMONTH": [
+ "O\u1e63\u00f9 \u1e62\u1eb9\u0301r\u1eb9\u0301",
+ "O\u1e63\u00f9 \u00c8r\u00e8l\u00e8",
+ "O\u1e63\u00f9 \u1eb8r\u1eb9\u0300n\u00e0",
+ "O\u1e63\u00f9 \u00ccgb\u00e9",
+ "O\u1e63\u00f9 \u1eb8\u0300bibi",
+ "O\u1e63\u00f9 \u00d2k\u00fadu",
+ "O\u1e63\u00f9 Ag\u1eb9m\u1ecd",
+ "O\u1e63\u00f9 \u00d2g\u00fan",
+ "O\u1e63\u00f9 Owewe",
+ "O\u1e63\u00f9 \u1ecc\u0300w\u00e0r\u00e0",
+ "O\u1e63\u00f9 B\u00e9l\u00fa",
+ "O\u1e63\u00f9 \u1ecc\u0300p\u1eb9\u0300"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_yo.js b/src/ngLocale/angular-locale_yo.js
index 49d87d4fb93a..3e95642280e0 100644
--- a/src/ngLocale/angular-locale_yo.js
+++ b/src/ngLocale/angular-locale_yo.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"B\u00e9l\u00fa",
"\u1ecc\u0300p\u1eb9\u0300"
],
+ "STANDALONEMONTH": [
+ "O\u1e63\u00f9 \u1e62\u1eb9\u0301r\u1eb9\u0301",
+ "O\u1e63\u00f9 \u00c8r\u00e8l\u00e8",
+ "O\u1e63\u00f9 \u1eb8r\u1eb9\u0300n\u00e0",
+ "O\u1e63\u00f9 \u00ccgb\u00e9",
+ "O\u1e63\u00f9 \u1eb8\u0300bibi",
+ "O\u1e63\u00f9 \u00d2k\u00fadu",
+ "O\u1e63\u00f9 Ag\u1eb9m\u1ecd",
+ "O\u1e63\u00f9 \u00d2g\u00fan",
+ "O\u1e63\u00f9 Owewe",
+ "O\u1e63\u00f9 \u1ecc\u0300w\u00e0r\u00e0",
+ "O\u1e63\u00f9 B\u00e9l\u00fa",
+ "O\u1e63\u00f9 \u1ecc\u0300p\u1eb9\u0300"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zgh-ma.js b/src/ngLocale/angular-locale_zgh-ma.js
index ec0c86b1de2c..1e6996c57835 100644
--- a/src/ngLocale/angular-locale_zgh-ma.js
+++ b/src/ngLocale/angular-locale_zgh-ma.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u2d4f\u2d53\u2d61",
"\u2d37\u2d53\u2d4a"
],
+ "STANDALONEMONTH": [
+ "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54",
+ "\u2d31\u2d55\u2d30\u2d62\u2d55",
+ "\u2d4e\u2d30\u2d55\u2d5a",
+ "\u2d49\u2d31\u2d54\u2d49\u2d54",
+ "\u2d4e\u2d30\u2d62\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4f\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63",
+ "\u2d56\u2d53\u2d5b\u2d5c",
+ "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d3d\u2d5c\u2d53\u2d31\u2d54",
+ "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zgh.js b/src/ngLocale/angular-locale_zgh.js
index c4c7a64e4069..76b7428ad95b 100644
--- a/src/ngLocale/angular-locale_zgh.js
+++ b/src/ngLocale/angular-locale_zgh.js
@@ -80,6 +80,20 @@ $provide.value("$locale", {
"\u2d4f\u2d53\u2d61",
"\u2d37\u2d53\u2d4a"
],
+ "STANDALONEMONTH": [
+ "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54",
+ "\u2d31\u2d55\u2d30\u2d62\u2d55",
+ "\u2d4e\u2d30\u2d55\u2d5a",
+ "\u2d49\u2d31\u2d54\u2d49\u2d54",
+ "\u2d4e\u2d30\u2d62\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4f\u2d62\u2d53",
+ "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63",
+ "\u2d56\u2d53\u2d5b\u2d5c",
+ "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d3d\u2d5c\u2d53\u2d31\u2d54",
+ "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54",
+ "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-cn.js b/src/ngLocale/angular-locale_zh-cn.js
index d15cdd61e6e0..f41d85efa0b0 100644
--- a/src/ngLocale/angular-locale_zh-cn.js
+++ b/src/ngLocale/angular-locale_zh-cn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hans-cn.js b/src/ngLocale/angular-locale_zh-hans-cn.js
index 120aa83039ed..a2cc4df5e211 100644
--- a/src/ngLocale/angular-locale_zh-hans-cn.js
+++ b/src/ngLocale/angular-locale_zh-hans-cn.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hans-hk.js b/src/ngLocale/angular-locale_zh-hans-hk.js
index d47c48b129a6..5902530c997f 100644
--- a/src/ngLocale/angular-locale_zh-hans-hk.js
+++ b/src/ngLocale/angular-locale_zh-hans-hk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hans-mo.js b/src/ngLocale/angular-locale_zh-hans-mo.js
index 750fd37447f5..d533ed8b9fb6 100644
--- a/src/ngLocale/angular-locale_zh-hans-mo.js
+++ b/src/ngLocale/angular-locale_zh-hans-mo.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hans-sg.js b/src/ngLocale/angular-locale_zh-hans-sg.js
index 329df2df8523..fd3075377c45 100644
--- a/src/ngLocale/angular-locale_zh-hans-sg.js
+++ b/src/ngLocale/angular-locale_zh-hans-sg.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hans.js b/src/ngLocale/angular-locale_zh-hans.js
index 920d39d06dfb..d65378bf8dad 100644
--- a/src/ngLocale/angular-locale_zh-hans.js
+++ b/src/ngLocale/angular-locale_zh-hans.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hant-hk.js b/src/ngLocale/angular-locale_zh-hant-hk.js
index 23d60d7c66e4..f00fb7d09a21 100644
--- a/src/ngLocale/angular-locale_zh-hant-hk.js
+++ b/src/ngLocale/angular-locale_zh-hant-hk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hant-mo.js b/src/ngLocale/angular-locale_zh-hant-mo.js
index a6e4a328bd3a..414051a1ae91 100644
--- a/src/ngLocale/angular-locale_zh-hant-mo.js
+++ b/src/ngLocale/angular-locale_zh-hant-mo.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hant-tw.js b/src/ngLocale/angular-locale_zh-hant-tw.js
index 7caaa086b7c8..ea15b5adf091 100644
--- a/src/ngLocale/angular-locale_zh-hant-tw.js
+++ b/src/ngLocale/angular-locale_zh-hant-tw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hant.js b/src/ngLocale/angular-locale_zh-hant.js
index 99b7e43d3efc..18c00de651ff 100644
--- a/src/ngLocale/angular-locale_zh-hant.js
+++ b/src/ngLocale/angular-locale_zh-hant.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-hk.js b/src/ngLocale/angular-locale_zh-hk.js
index 6c8fefb3a945..ce07aa369a08 100644
--- a/src/ngLocale/angular-locale_zh-hk.js
+++ b/src/ngLocale/angular-locale_zh-hk.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh-tw.js b/src/ngLocale/angular-locale_zh-tw.js
index b834a61731b0..74ede89b4170 100644
--- a/src/ngLocale/angular-locale_zh-tw.js
+++ b/src/ngLocale/angular-locale_zh-tw.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "1\u6708",
+ "2\u6708",
+ "3\u6708",
+ "4\u6708",
+ "5\u6708",
+ "6\u6708",
+ "7\u6708",
+ "8\u6708",
+ "9\u6708",
+ "10\u6708",
+ "11\u6708",
+ "12\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zh.js b/src/ngLocale/angular-locale_zh.js
index 8c764a76f4cb..3b6fe7f8b1a6 100644
--- a/src/ngLocale/angular-locale_zh.js
+++ b/src/ngLocale/angular-locale_zh.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
+ "STANDALONEMONTH": [
+ "\u4e00\u6708",
+ "\u4e8c\u6708",
+ "\u4e09\u6708",
+ "\u56db\u6708",
+ "\u4e94\u6708",
+ "\u516d\u6708",
+ "\u4e03\u6708",
+ "\u516b\u6708",
+ "\u4e5d\u6708",
+ "\u5341\u6708",
+ "\u5341\u4e00\u6708",
+ "\u5341\u4e8c\u6708"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zu-za.js b/src/ngLocale/angular-locale_zu-za.js
index 4f48a9fddd24..c6cf7cc26ffc 100644
--- a/src/ngLocale/angular-locale_zu-za.js
+++ b/src/ngLocale/angular-locale_zu-za.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januwari",
+ "Februwari",
+ "Mashi",
+ "Apreli",
+ "Meyi",
+ "Juni",
+ "Julayi",
+ "Agasti",
+ "Septhemba",
+ "Okthoba",
+ "Novemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngLocale/angular-locale_zu.js b/src/ngLocale/angular-locale_zu.js
index bd4d00ecfb91..1fb4a17d24c9 100644
--- a/src/ngLocale/angular-locale_zu.js
+++ b/src/ngLocale/angular-locale_zu.js
@@ -62,6 +62,20 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
+ "STANDALONEMONTH": [
+ "Januwari",
+ "Februwari",
+ "Mashi",
+ "Apreli",
+ "Meyi",
+ "Juni",
+ "Julayi",
+ "Agasti",
+ "Septhemba",
+ "Okthoba",
+ "Novemba",
+ "Disemba"
+ ],
"WEEKENDRANGE": [
5,
6
diff --git a/src/ngMessages/messages.js b/src/ngMessages/messages.js
index 14ffe00506b0..20edf80fa1c0 100644
--- a/src/ngMessages/messages.js
+++ b/src/ngMessages/messages.js
@@ -325,6 +325,9 @@ angular.module('ngMessages', [])
controller: ['$element', '$scope', '$attrs', function($element, $scope, $attrs) {
var ctrl = this;
var latestKey = 0;
+ var nextAttachId = 0;
+
+ this.getAttachId = function getAttachId() { return nextAttachId++; };
var messages = this.messages = {};
var renderLater, cachedCollection;
@@ -636,11 +639,15 @@ function ngMessageDirectiveFactory(restrict) {
$animate.enter(elm, null, element);
currentElement = elm;
+ // Each time we attach this node to a message we get a new id that we can match
+ // when we are destroying the node later.
+ var $$attachId = currentElement.$$attachId = ngMessagesCtrl.getAttachId();
+
// in the event that the parent element is destroyed
// by any other structural directive then it's time
// to deregister the message from the controller
currentElement.on('$destroy', function() {
- if (currentElement) {
+ if (currentElement && currentElement.$$attachId === $$attachId) {
ngMessagesCtrl.deregister(commentNode);
messageCtrl.detach();
}
diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js
index 38456a4c903b..ea1879c43874 100644
--- a/src/ngMock/angular-mocks.js
+++ b/src/ngMock/angular-mocks.js
@@ -1830,7 +1830,7 @@ angular.mock.$RootElementProvider = function() {
*
* // Controller definition ...
*
- * myMod.controller('MyDirectiveController', ['log', function($log) {
+ * myMod.controller('MyDirectiveController', ['$log', function($log) {
* $log.info(this.name);
* })];
*
@@ -2271,8 +2271,9 @@ if (window.jasmine || window.mocha) {
* @param {...(string|Function|Object)} fns any number of modules which are represented as string
* aliases or as anonymous module initialization functions. The modules are used to
* configure the injector. The 'ng' and 'ngMock' modules are automatically loaded. If an
- * object literal is passed they will be registered as values in the module, the key being
- * the module name and the value being what is returned.
+ * object literal is passed each key-value pair will be registered on the module via
+ * {@link auto.$provide $provide}.value, the key being the string name (or token) to associate
+ * with the value on the injector.
*/
window.module = angular.mock.module = function() {
var moduleFns = Array.prototype.slice.call(arguments, 0);
diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js
index 34ba768716b9..514e4c81b72b 100644
--- a/src/ngResource/resource.js
+++ b/src/ngResource/resource.js
@@ -97,7 +97,7 @@ function shallowClearAndCopy(src, dst) {
* can escape it with `/\.`.
*
* @param {Object=} paramDefaults Default values for `url` parameters. These can be overridden in
- * `actions` methods. If any of the parameter value is a function, it will be executed every time
+ * `actions` methods. If a parameter value is a function, it will be executed every time
* when a param value needs to be obtained for a request (unless the param was overridden).
*
* Each key value in the parameter object is first bound to url template if present and then any
@@ -150,8 +150,11 @@ function shallowClearAndCopy(src, dst) {
* GET request, otherwise if a cache instance built with
* {@link ng.$cacheFactory $cacheFactory}, this cache will be used for
* caching.
- * - **`timeout`** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} that
- * should abort the request when resolved.
+ * - **`timeout`** – `{number}` – timeout in milliseconds.
+ * **Note:** In contrast to {@link ng.$http#usage $http.config}, {@link ng.$q promises} are
+ * **not** supported in $resource, because the same value would be used for multiple requests.
+ * If you need support for cancellable $resource actions, you should upgrade to version 1.5 or
+ * higher.
* - **`withCredentials`** - `{boolean}` - whether to set the `withCredentials` flag on the
* XHR object. See
* [requests with credentials](https://developer.mozilla.org/en/http_access_control#section_5)
@@ -365,7 +368,7 @@ angular.module('ngResource', ['ng']).
}
};
- this.$get = ['$http', '$q', function($http, $q) {
+ this.$get = ['$http', '$log', '$q', function($http, $log, $q) {
var noop = angular.noop,
forEach = angular.forEach,
@@ -568,8 +571,24 @@ angular.module('ngResource', ['ng']).
undefined;
forEach(action, function(value, key) {
- if (key != 'params' && key != 'isArray' && key != 'interceptor') {
- httpConfig[key] = copy(value);
+ switch (key) {
+ default:
+ httpConfig[key] = copy(value);
+ break;
+ case 'params':
+ case 'isArray':
+ case 'interceptor':
+ break;
+ case 'timeout':
+ if (value && !angular.isNumber(value)) {
+ $log.debug('ngResource:\n' +
+ ' Only numeric values are allowed as `timeout`.\n' +
+ ' Promises are not supported in $resource, because the same value would ' +
+ 'be used for multiple requests.\n' +
+ ' If you need support for cancellable $resource actions, you should ' +
+ 'upgrade to version 1.5 or higher.');
+ }
+ break;
}
});
diff --git a/src/ngScenario/browserTrigger.js b/src/ngScenario/browserTrigger.js
index f3c22fe5ff62..79a70934063e 100644
--- a/src/ngScenario/browserTrigger.js
+++ b/src/ngScenario/browserTrigger.js
@@ -15,6 +15,7 @@
if (!element) return;
eventData = eventData || {};
+ var relatedTarget = eventData.relatedTarget || element;
var keys = eventData.keys;
var x = eventData.x;
var y = eventData.y;
@@ -84,7 +85,7 @@
x = x || 0;
y = y || 0;
evnt.initMouseEvent(eventType, true, true, window, 0, x, y, x, y, pressed('ctrl'),
- pressed('alt'), pressed('shift'), pressed('meta'), 0, element);
+ pressed('alt'), pressed('shift'), pressed('meta'), 0, relatedTarget);
}
/* we're unable to change the timeStamp value directly so this
diff --git a/src/ngTouch/swipe.js b/src/ngTouch/swipe.js
index b15628892882..50744559a472 100644
--- a/src/ngTouch/swipe.js
+++ b/src/ngTouch/swipe.js
@@ -12,8 +12,7 @@
*
* Requires the {@link ngTouch `ngTouch`} module to be installed.
*
- * `$swipe` is used by the `ngSwipeLeft` and `ngSwipeRight` directives in `ngTouch`, and by
- * `ngCarousel` in a separate component.
+ * `$swipe` is used by the `ngSwipeLeft` and `ngSwipeRight` directives in `ngTouch`.
*
* # Usage
* The `$swipe` service is an object with a single method: `bind`. `bind` takes an element
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index 7a21a0feea39..22773cf9c7fd 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -313,11 +313,19 @@ describe('angular', function() {
it('should throw an exception if a Scope is being copied', inject(function($rootScope) {
expect(function() { copy($rootScope.$new()); }).
toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported.");
+ expect(function() { copy({child: $rootScope.$new()}, {}); }).
+ toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported.");
+ expect(function() { copy([$rootScope.$new()]); }).
+ toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported.");
}));
it('should throw an exception if a Window is being copied', function() {
expect(function() { copy(window); }).
toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported.");
+ expect(function() { copy({child: window}); }).
+ toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported.");
+ expect(function() { copy([window], []); }).
+ toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported.");
});
it('should throw an exception when source and destination are equivalent', function() {
@@ -334,6 +342,11 @@ describe('angular', function() {
hashKey(src);
dst = copy(src);
expect(hashKey(dst)).not.toEqual(hashKey(src));
+
+ src = {foo: {}};
+ hashKey(src.foo);
+ dst = copy(src);
+ expect(hashKey(src.foo)).not.toEqual(hashKey(dst.foo));
});
it('should retain the previous $$hashKey when copying object with hashKey', function() {
@@ -461,6 +474,7 @@ describe('angular', function() {
});
describe("extend", function() {
+
it('should not copy the private $$hashKey', function() {
var src,dst;
src = {};
@@ -471,6 +485,24 @@ describe('angular', function() {
});
+ it('should copy the properties of the source object onto the destination object', function() {
+ var destination, source;
+ destination = {};
+ source = {foo: true};
+ destination = extend(destination, source);
+ expect(isDefined(destination.foo)).toBe(true);
+ });
+
+
+ it('ISSUE #4751 - should copy the length property of an object source to the destination object', function() {
+ var destination, source;
+ destination = {};
+ source = {radius: 30, length: 0};
+ destination = extend(destination, source);
+ expect(isDefined(destination.length)).toBe(true);
+ expect(isDefined(destination.radius)).toBe(true);
+ });
+
it('should retain the previous $$hashKey', function() {
var src,dst,h;
src = {};
@@ -503,6 +535,17 @@ describe('angular', function() {
expect(dst.date).toBe(src.date);
});
+
+ it('should copy elements by reference', function() {
+ var src = { element: document.createElement('div'),
+ jqObject: jqLite("
s1 s2
").find("span") };
+ var dst = {};
+
+ extend(dst, src);
+
+ expect(dst.element).toBe(src.element);
+ expect(dst.jqObject).toBe(src.jqObject);
+ });
});
@@ -593,6 +636,25 @@ describe('angular', function() {
expect(isRegExp(dst.regexp)).toBe(true);
expect(dst.regexp.toString()).toBe(src.regexp.toString());
});
+
+
+ it('should copy(clone) elements', function() {
+ var src = {
+ element: document.createElement('div'),
+ jqObject: jqLite('
s1 s2
').find('span')
+ };
+ var dst = {};
+
+ merge(dst, src);
+
+ expect(dst.element).not.toBe(src.element);
+ expect(dst.jqObject).not.toBe(src.jqObject);
+
+ expect(isElement(dst.element)).toBeTruthy();
+ expect(dst.element.nodeName).toBeDefined(); // i.e it is a DOM element
+ expect(isElement(dst.jqObject)).toBeTruthy();
+ expect(dst.jqObject.nodeName).toBeUndefined(); // i.e it is a jqLite/jQuery object
+ });
});
@@ -1035,6 +1097,42 @@ describe('angular', function() {
});
});
+ describe('isArrayLike', function() {
+
+ it('should return false if passed a number', function() {
+ expect(isArrayLike(10)).toBe(false);
+ });
+
+ it('should return true if passed an array', function() {
+ expect(isArrayLike([1,2,3,4])).toBe(true);
+ });
+
+ it('should return true if passed an object', function() {
+ expect(isArrayLike({0:"test", 1:"bob", 2:"tree", length:3})).toBe(true);
+ });
+
+ it('should return true if passed arguments object', function() {
+ function test(a,b,c) {
+ expect(isArrayLike(arguments)).toBe(true);
+ }
+ test(1,2,3);
+ });
+
+ it('should return true if passed a nodelist', function() {
+ var nodes = document.body.childNodes;
+ expect(isArrayLike(nodes)).toBe(true);
+ });
+
+ it('should return false for objects with `length` but no matching indexable items', function() {
+ var obj = {
+ a: 'a',
+ b:'b',
+ length: 10
+ };
+ expect(isArrayLike(obj)).toBe(false);
+ });
+ });
+
describe('forEach', function() {
it('should iterate over *own* object properties', function() {
@@ -1074,6 +1172,11 @@ describe('angular', function() {
forEach(jqObject, function(value, key) { log.push(key + ':' + value.innerHTML); });
expect(log).toEqual(['0:s1', '1:s2']);
+
+ log = [];
+ jqObject = jqLite("
");
+ forEach(jqObject.children(), function(value, key) { log.push(key + ':' + value.innerHTML); });
+ expect(log).toEqual([]);
});
diff --git a/test/helpers/testabilityPatch.js b/test/helpers/testabilityPatch.js
index acc8060dea25..469459c39094 100644
--- a/test/helpers/testabilityPatch.js
+++ b/test/helpers/testabilityPatch.js
@@ -1,4 +1,4 @@
-/* global jQuery: true, uid: true */
+/* global jQuery: true, uid: true, jqCache: true */
'use strict';
/**
@@ -12,6 +12,7 @@ if (window._jQuery) _jQuery.event.special.change = undefined;
if (window.bindJQuery) bindJQuery();
beforeEach(function() {
+
// all this stuff is not needed for module tests, where jqlite and publishExternalAPI and jqLite are not global vars
if (window.publishExternalAPI) {
publishExternalAPI(angular);
@@ -28,7 +29,10 @@ beforeEach(function() {
// reset to jQuery or default to us.
bindJQuery();
- jqLiteCacheSizeInit();
+
+ // Clear the cache to prevent memory leak failures from previous tests
+ // breaking subsequent tests unnecessarily
+ jqCache = jqLite.cache = {};
}
angular.element(document.body).empty().removeData();
@@ -84,7 +88,6 @@ afterEach(function() {
}
}
-
// copied from Angular.js
// we need this method here so that we can run module tests with wrapped angular.js
function forEachSorted(obj, iterator, context) {
@@ -133,14 +136,7 @@ function dealoc(obj) {
function jqLiteCacheSize() {
- var size = 0;
- forEach(jqLite.cache, function() { size++; });
- return size - jqLiteCacheSize.initSize;
-}
-jqLiteCacheSize.initSize = 0;
-
-function jqLiteCacheSizeInit() {
- jqLiteCacheSize.initSize = jqLiteCacheSize.initSize + jqLiteCacheSize();
+ return Object.keys(jqLite.cache).length;
}
diff --git a/test/jqLiteSpec.js b/test/jqLiteSpec.js
index 233e298f63f7..98c91c8a42c8 100644
--- a/test/jqLiteSpec.js
+++ b/test/jqLiteSpec.js
@@ -1193,21 +1193,45 @@ describe('jqLite', function() {
});
describe('mouseenter-mouseleave', function() {
- var root, parent, sibling, child, log;
+ var root, parent, child, log;
- beforeEach(function() {
+ function setup(html, parentNode, childNode) {
log = '';
- root = jqLite('
');
- parent = root.find('p');
- sibling = root.find('ul');
- child = parent.find('span');
+ root = jqLite(html);
+ parent = root.find(parentNode);
+ child = parent.find(childNode);
parent.on('mouseenter', function() { log += 'parentEnter;'; });
parent.on('mouseleave', function() { log += 'parentLeave;'; });
child.on('mouseenter', function() { log += 'childEnter;'; });
child.on('mouseleave', function() { log += 'childLeave;'; });
- });
+ }
+
+ function browserMoveTrigger(from, to) {
+ var fireEvent = function(type, element, relatedTarget) {
+ var evnt;
+ evnt = document.createEvent('MouseEvents');
+
+ var originalPreventDefault = evnt.preventDefault,
+ appWindow = window,
+ fakeProcessDefault = true,
+ finalProcessDefault;
+
+ evnt.preventDefault = function() {
+ fakeProcessDefault = false;
+ return originalPreventDefault.apply(evnt, arguments);
+ };
+
+ var x = 0, y = 0;
+ evnt.initMouseEvent(type, true, true, window, 0, x, y, x, y, false, false,
+ false, false, 0, relatedTarget);
+
+ element.dispatchEvent(evnt);
+ };
+ fireEvent('mouseout', from[0], to[0]);
+ fireEvent('mouseover', to[0], from[0]);
+ }
afterEach(function() {
dealoc(root);
@@ -1215,30 +1239,8 @@ describe('jqLite', function() {
it('should fire mouseenter when coming from outside the browser window', function() {
if (window.jQuery) return;
- var browserMoveTrigger = function(from, to) {
- var fireEvent = function(type, element, relatedTarget) {
- var evnt;
- evnt = document.createEvent('MouseEvents');
-
- var originalPreventDefault = evnt.preventDefault,
- appWindow = window,
- fakeProcessDefault = true,
- finalProcessDefault;
-
- evnt.preventDefault = function() {
- fakeProcessDefault = false;
- return originalPreventDefault.apply(evnt, arguments);
- };
-
- var x = 0, y = 0;
- evnt.initMouseEvent(type, true, true, window, 0, x, y, x, y, false, false,
- false, false, 0, relatedTarget);
-
- element.dispatchEvent(evnt);
- };
- fireEvent('mouseout', from[0], to[0]);
- fireEvent('mouseover', to[0], from[0]);
- };
+
+ setup('
', 'p', 'span');
browserMoveTrigger(root, parent);
expect(log).toEqual('parentEnter;');
@@ -1253,6 +1255,28 @@ describe('jqLite', function() {
expect(log).toEqual('parentEnter;childEnter;childLeave;parentLeave;');
});
+
+ it('should fire the mousenter on SVG elements', function() {
+ if (window.jQuery) return;
+
+ setup(
+ '
' +
+ '
' +
+ ' ' +
+ ' ' +
+ '
',
+ 'svg', 'path');
+
+ browserMoveTrigger(parent, child);
+ expect(log).toEqual('childEnter;');
+ });
});
// Only run this test for jqLite and not normal jQuery
@@ -1407,6 +1431,60 @@ describe('jqLite', function() {
});
+ it('should correctly deregister the mouseenter/mouseleave listeners', function() {
+ var aElem = jqLite(a);
+ var onMouseenter = jasmine.createSpy('onMouseenter');
+ var onMouseleave = jasmine.createSpy('onMouseleave');
+
+ aElem.on('mouseenter', onMouseenter);
+ aElem.on('mouseleave', onMouseleave);
+ aElem.off('mouseenter', onMouseenter);
+ aElem.off('mouseleave', onMouseleave);
+ aElem.on('mouseenter', onMouseenter);
+ aElem.on('mouseleave', onMouseleave);
+
+ browserTrigger(a, 'mouseover', {relatedTarget: b});
+ expect(onMouseenter).toHaveBeenCalledOnce();
+
+ browserTrigger(a, 'mouseout', {relatedTarget: b});
+ expect(onMouseleave).toHaveBeenCalledOnce();
+ });
+
+
+ it('should call a `mouseenter/leave` listener only once when `mouseenter/leave` and `mouseover/out` '
+ + 'are triggered simultaneously', function() {
+ var aElem = jqLite(a);
+ var onMouseenter = jasmine.createSpy('mouseenter');
+ var onMouseleave = jasmine.createSpy('mouseleave');
+
+ aElem.on('mouseenter', onMouseenter);
+ aElem.on('mouseleave', onMouseleave);
+
+ browserTrigger(a, 'mouseenter', {relatedTarget: b});
+ browserTrigger(a, 'mouseover', {relatedTarget: b});
+ expect(onMouseenter).toHaveBeenCalledOnce();
+
+ browserTrigger(a, 'mouseleave', {relatedTarget: b});
+ browserTrigger(a, 'mouseout', {relatedTarget: b});
+ expect(onMouseleave).toHaveBeenCalledOnce();
+ });
+
+ it('should call a `mouseenter/leave` listener when manually triggering the event', function() {
+ var aElem = jqLite(a);
+ var onMouseenter = jasmine.createSpy('mouseenter');
+ var onMouseleave = jasmine.createSpy('mouseleave');
+
+ aElem.on('mouseenter', onMouseenter);
+ aElem.on('mouseleave', onMouseleave);
+
+ aElem.triggerHandler('mouseenter');
+ expect(onMouseenter).toHaveBeenCalledOnce();
+
+ aElem.triggerHandler('mouseleave');
+ expect(onMouseleave).toHaveBeenCalledOnce();
+ });
+
+
it('should deregister specific listener within the listener and call subsequent listeners', function() {
var aElem = jqLite(a),
clickSpy = jasmine.createSpy('click'),
diff --git a/test/ng/animateCssSpec.js b/test/ng/animateCssSpec.js
index 52b697ba2834..f0a027805cfa 100644
--- a/test/ng/animateCssSpec.js
+++ b/test/ng/animateCssSpec.js
@@ -16,6 +16,21 @@ describe("$animateCss", function() {
describe("without animation", function() {
+ it("should not alter the provided options input in any way", inject(function($animateCss) {
+ var initialOptions = {
+ from: { height: '50px' },
+ to: { width: '50px' },
+ addClass: 'one',
+ removeClass: 'two'
+ };
+
+ var copiedOptions = copy(initialOptions);
+
+ expect(copiedOptions).toEqual(initialOptions);
+ $animateCss(element, copiedOptions).start();
+ expect(copiedOptions).toEqual(initialOptions);
+ }));
+
it("should apply the provided [from] CSS to the element", inject(function($animateCss) {
$animateCss(element, { from: { height: '50px' }}).start();
expect(element.css('height')).toBe('50px');
@@ -115,6 +130,38 @@ describe("$animateCss", function() {
expect(cancelSpy).toHaveBeenCalled();
expect(doneSpy).not.toHaveBeenCalled();
}));
+
+ it("should not bother applying the provided [from] and [to] styles to the element if [cleanupStyles] is present",
+ inject(function($animateCss, $rootScope) {
+
+ var animator = $animateCss(element, {
+ cleanupStyles: true,
+ from: { width: '100px' },
+ to: { width: '900px', height: '1000px' }
+ });
+
+ assertStyleIsEmpty(element, 'width');
+ assertStyleIsEmpty(element, 'height');
+
+ var runner = animator.start();
+
+ assertStyleIsEmpty(element, 'width');
+ assertStyleIsEmpty(element, 'height');
+
+ triggerRAF();
+
+ assertStyleIsEmpty(element, 'width');
+ assertStyleIsEmpty(element, 'height');
+
+ runner.end();
+
+ assertStyleIsEmpty(element, 'width');
+ assertStyleIsEmpty(element, 'height');
+
+ function assertStyleIsEmpty(element, prop) {
+ expect(element[0].style.getPropertyValue(prop)).toBeFalsy();
+ }
+ }));
});
});
diff --git a/test/ngAnimate/animateRunnerSpec.js b/test/ng/animateRunnerSpec.js
similarity index 99%
rename from test/ngAnimate/animateRunnerSpec.js
rename to test/ng/animateRunnerSpec.js
index f4526d8abb57..d6fab470e8df 100644
--- a/test/ngAnimate/animateRunnerSpec.js
+++ b/test/ng/animateRunnerSpec.js
@@ -1,8 +1,8 @@
'use strict';
-describe('$$animateAsyncRun', function() {
- beforeEach(module('ngAnimate'));
+/* jshint newcap: false */
+describe('$$animateAsyncRun', function() {
it('should fire the callback only when one or more RAFs have passed',
inject(function($$animateAsyncRun, $$rAF) {
@@ -32,9 +32,6 @@ describe('$$animateAsyncRun', function() {
});
describe("$$AnimateRunner", function() {
-
- beforeEach(module('ngAnimate'));
-
they("should trigger the host $prop function",
['end', 'cancel', 'pause', 'resume'], function(method) {
diff --git a/test/ng/animateSpec.js b/test/ng/animateSpec.js
index 76fae5ebcaa6..8c913114493a 100644
--- a/test/ng/animateSpec.js
+++ b/test/ng/animateSpec.js
@@ -378,6 +378,27 @@ describe("$animate", function() {
});
});
+ it("should not alter the provided options input in any way throughout the animation", inject(function($animate, $rootElement, $rootScope) {
+ var element = jqLite('
');
+ var parent = $rootElement;
+
+ var initialOptions = {
+ from: { height: '50px' },
+ to: { width: '50px' },
+ addClass: 'one',
+ removeClass: 'two'
+ };
+
+ var copiedOptions = copy(initialOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ var runner = $animate.enter(element, parent, null, copiedOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ $rootScope.$digest();
+ expect(copiedOptions).toEqual(initialOptions);
+ }));
+
describe('CSS class DOM manipulation', function() {
var element;
var addClass;
diff --git a/test/ng/cacheFactorySpec.js b/test/ng/cacheFactorySpec.js
index 7159484d68d4..cb65a1740679 100644
--- a/test/ng/cacheFactorySpec.js
+++ b/test/ng/cacheFactorySpec.js
@@ -133,6 +133,19 @@ describe('$cacheFactory', function() {
expect(cache.info().size).toBe(0);
}));
+ it('should only decrement size when an element is actually removed via remove', inject(function($cacheFactory) {
+ cache.put('foo', 'bar');
+ expect(cache.info().size).toBe(1);
+
+ cache.remove('undefined');
+ expect(cache.info().size).toBe(1);
+
+ cache.remove('hasOwnProperty');
+ expect(cache.info().size).toBe(1);
+
+ cache.remove('foo');
+ expect(cache.info().size).toBe(0);
+ }));
it('should return cache id', inject(function($cacheFactory) {
expect(cache.info().id).toBe('test');
diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js
index ef5787b49fa0..44b3bfd08bc5 100755
--- a/test/ng/compileSpec.js
+++ b/test/ng/compileSpec.js
@@ -947,6 +947,14 @@ describe('$compile', function() {
expect(child).toHaveClass('log'); // merged from replace directive template
}));
+ it('should interpolate the values once per digest',
+ inject(function($compile, $rootScope, log) {
+ element = $compile('
{{log("A")}} foo {{::log("B")}}
')($rootScope);
+ $rootScope.log = log;
+ $rootScope.$digest();
+ expect(log).toEqual('A; B; A; B');
+ }));
+
it('should update references to replaced jQuery context', function() {
module(function($compileProvider) {
$compileProvider.directive('foo', function() {
@@ -3577,6 +3585,22 @@ describe('$compile', function() {
});
});
+ it('should be able to interpolate attribute names which are present in Object.prototype', function() {
+ var attrs;
+ module(function() {
+ directive('attrExposer', valueFn({
+ link: function($scope, $element, $attrs) {
+ attrs = $attrs;
+ }
+ }));
+ });
+ inject(function($compile, $rootScope) {
+ $compile('
')($rootScope);
+ $rootScope.$apply();
+ expect(attrs.toString).toBe('2');
+ });
+ });
+
it('should not initialize scope value if optional expression binding is not passed', inject(function($compile) {
compile('
');
@@ -3929,7 +3953,7 @@ describe('$compile', function() {
expect(componentScope.ref).toBe('hello world');
componentScope.ref = 'ignore me';
- expect($rootScope.$apply).
+ expect(function() { $rootScope.$apply(); }).
toThrowMinErr("$compile", "nonassign", "Expression ''hello ' + name' used with directive 'myComponent' is non-assignable!");
expect(componentScope.ref).toBe('hello world');
// reset since the exception was rethrown which prevented phase clearing
@@ -3940,6 +3964,21 @@ describe('$compile', function() {
expect(componentScope.ref).toBe('hello misko');
}));
+ it('should complain if assigning to undefined', inject(function() {
+ compile('
');
+ $rootScope.$apply();
+ expect(componentScope.ref).toBeUndefined();
+
+ componentScope.ref = 'ignore me';
+ expect(function() { $rootScope.$apply(); }).
+ toThrowMinErr("$compile", "nonassign", "Expression 'undefined' used with directive 'myComponent' is non-assignable!");
+ expect(componentScope.ref).toBeUndefined();
+
+ $rootScope.$$phase = null; // reset since the exception was rethrown which prevented phase clearing
+ $rootScope.$apply();
+ expect(componentScope.ref).toBeUndefined();
+ }));
+
// regression
it('should stabilize model', inject(function() {
compile('');
@@ -4390,6 +4429,301 @@ describe('$compile', function() {
});
+ it('should bind to multiple directives controllers via object notation (no scope)', function() {
+ var controller1Called = false;
+ var controller2Called = false;
+ module(function($compileProvider, $controllerProvider) {
+ $compileProvider.directive('foo', valueFn({
+ bindToController: {
+ 'data': '=fooData',
+ 'str': '@fooStr',
+ 'fn': '&fooFn'
+ },
+ controllerAs: 'fooCtrl',
+ controller: function() {
+ expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'});
+ expect(this.str).toBe('Hello, world!');
+ expect(this.fn()).toBe('called!');
+ controller1Called = true;
+ }
+ }));
+ $compileProvider.directive('bar', valueFn({
+ bindToController: {
+ 'data': '=barData',
+ 'str': '@barStr',
+ 'fn': '&barFn'
+ },
+ controllerAs: 'barCtrl',
+ controller: function() {
+ expect(this.data).toEqualData({'foo2': 'bar2', 'baz2': 'biz2'});
+ expect(this.str).toBe('Hello, second world!');
+ expect(this.fn()).toBe('second called!');
+ controller2Called = true;
+ }
+ }));
+ });
+ inject(function($compile, $rootScope) {
+ $rootScope.fn = valueFn('called!');
+ $rootScope.string = 'world';
+ $rootScope.data = {'foo': 'bar','baz': 'biz'};
+ $rootScope.fn2 = valueFn('second called!');
+ $rootScope.string2 = 'second world';
+ $rootScope.data2 = {'foo2': 'bar2', 'baz2': 'biz2'};
+ element = $compile(
+ ' ' +
+ '
')($rootScope);
+ $rootScope.$digest();
+ expect(controller1Called).toBe(true);
+ expect(controller2Called).toBe(true);
+ });
+ });
+
+
+ it('should bind to multiple directives controllers via object notation (new iso scope)', function() {
+ var controller1Called = false;
+ var controller2Called = false;
+ module(function($compileProvider, $controllerProvider) {
+ $compileProvider.directive('foo', valueFn({
+ bindToController: {
+ 'data': '=fooData',
+ 'str': '@fooStr',
+ 'fn': '&fooFn'
+ },
+ scope: {},
+ controllerAs: 'fooCtrl',
+ controller: function() {
+ expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'});
+ expect(this.str).toBe('Hello, world!');
+ expect(this.fn()).toBe('called!');
+ controller1Called = true;
+ }
+ }));
+ $compileProvider.directive('bar', valueFn({
+ bindToController: {
+ 'data': '=barData',
+ 'str': '@barStr',
+ 'fn': '&barFn'
+ },
+ controllerAs: 'barCtrl',
+ controller: function() {
+ expect(this.data).toEqualData({'foo2': 'bar2', 'baz2': 'biz2'});
+ expect(this.str).toBe('Hello, second world!');
+ expect(this.fn()).toBe('second called!');
+ controller2Called = true;
+ }
+ }));
+ });
+ inject(function($compile, $rootScope) {
+ $rootScope.fn = valueFn('called!');
+ $rootScope.string = 'world';
+ $rootScope.data = {'foo': 'bar','baz': 'biz'};
+ $rootScope.fn2 = valueFn('second called!');
+ $rootScope.string2 = 'second world';
+ $rootScope.data2 = {'foo2': 'bar2', 'baz2': 'biz2'};
+ element = $compile(
+ ' ' +
+ '
')($rootScope);
+ $rootScope.$digest();
+ expect(controller1Called).toBe(true);
+ expect(controller2Called).toBe(true);
+ });
+ });
+
+
+ it('should bind to multiple directives controllers via object notation (new scope)', function() {
+ var controller1Called = false;
+ var controller2Called = false;
+ module(function($compileProvider, $controllerProvider) {
+ $compileProvider.directive('foo', valueFn({
+ bindToController: {
+ 'data': '=fooData',
+ 'str': '@fooStr',
+ 'fn': '&fooFn'
+ },
+ scope: true,
+ controllerAs: 'fooCtrl',
+ controller: function() {
+ expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'});
+ expect(this.str).toBe('Hello, world!');
+ expect(this.fn()).toBe('called!');
+ controller1Called = true;
+ }
+ }));
+ $compileProvider.directive('bar', valueFn({
+ bindToController: {
+ 'data': '=barData',
+ 'str': '@barStr',
+ 'fn': '&barFn'
+ },
+ scope: true,
+ controllerAs: 'barCtrl',
+ controller: function() {
+ expect(this.data).toEqualData({'foo2': 'bar2', 'baz2': 'biz2'});
+ expect(this.str).toBe('Hello, second world!');
+ expect(this.fn()).toBe('second called!');
+ controller2Called = true;
+ }
+ }));
+ });
+ inject(function($compile, $rootScope) {
+ $rootScope.fn = valueFn('called!');
+ $rootScope.string = 'world';
+ $rootScope.data = {'foo': 'bar','baz': 'biz'};
+ $rootScope.fn2 = valueFn('second called!');
+ $rootScope.string2 = 'second world';
+ $rootScope.data2 = {'foo2': 'bar2', 'baz2': 'biz2'};
+ element = $compile(
+ ' ' +
+ '
')($rootScope);
+ $rootScope.$digest();
+ expect(controller1Called).toBe(true);
+ expect(controller2Called).toBe(true);
+ });
+ });
+
+
+ it('should evaluate against the correct scope, when using `bindToController` (new scope)',
+ function() {
+ module(function($compileProvider, $controllerProvider) {
+ $controllerProvider.register({
+ 'ParentCtrl': function() {
+ this.value1 = 'parent1';
+ this.value2 = 'parent2';
+ this.value3 = function() { return 'parent3'; };
+ },
+ 'ChildCtrl': function() {
+ this.value1 = 'child1';
+ this.value2 = 'child2';
+ this.value3 = function() { return 'child3'; };
+ }
+ });
+
+ $compileProvider.directive('child', valueFn({
+ scope: true,
+ controller: 'ChildCtrl as ctrl',
+ bindToController: {
+ fromParent1: '@',
+ fromParent2: '=',
+ fromParent3: '&'
+ },
+ template: ''
+ }));
+ });
+
+ inject(function($compile, $rootScope) {
+ element = $compile(
+ '' +
+ '' +
+ ' ' +
+ '
')($rootScope);
+ $rootScope.$digest();
+
+ var parentCtrl = element.controller('ngController');
+ var childCtrl = element.find('child').controller('child');
+
+ expect(childCtrl.fromParent1).toBe(parentCtrl.value1);
+ expect(childCtrl.fromParent1).not.toBe(childCtrl.value1);
+ expect(childCtrl.fromParent2).toBe(parentCtrl.value2);
+ expect(childCtrl.fromParent2).not.toBe(childCtrl.value2);
+ expect(childCtrl.fromParent3()()).toBe(parentCtrl.value3());
+ expect(childCtrl.fromParent3()()).not.toBe(childCtrl.value3());
+
+ childCtrl.fromParent2 = 'modified';
+ $rootScope.$digest();
+
+ expect(parentCtrl.value2).toBe('modified');
+ expect(childCtrl.value2).toBe('child2');
+ });
+ }
+ );
+
+
+ it('should evaluate against the correct scope, when using `bindToController` (new iso scope)',
+ function() {
+ module(function($compileProvider, $controllerProvider) {
+ $controllerProvider.register({
+ 'ParentCtrl': function() {
+ this.value1 = 'parent1';
+ this.value2 = 'parent2';
+ this.value3 = function() { return 'parent3'; };
+ },
+ 'ChildCtrl': function() {
+ this.value1 = 'child1';
+ this.value2 = 'child2';
+ this.value3 = function() { return 'child3'; };
+ }
+ });
+
+ $compileProvider.directive('child', valueFn({
+ scope: {},
+ controller: 'ChildCtrl as ctrl',
+ bindToController: {
+ fromParent1: '@',
+ fromParent2: '=',
+ fromParent3: '&'
+ },
+ template: ''
+ }));
+ });
+
+ inject(function($compile, $rootScope) {
+ element = $compile(
+ '' +
+ '' +
+ ' ' +
+ '
')($rootScope);
+ $rootScope.$digest();
+
+ var parentCtrl = element.controller('ngController');
+ var childCtrl = element.find('child').controller('child');
+
+ expect(childCtrl.fromParent1).toBe(parentCtrl.value1);
+ expect(childCtrl.fromParent1).not.toBe(childCtrl.value1);
+ expect(childCtrl.fromParent2).toBe(parentCtrl.value2);
+ expect(childCtrl.fromParent2).not.toBe(childCtrl.value2);
+ expect(childCtrl.fromParent3()()).toBe(parentCtrl.value3());
+ expect(childCtrl.fromParent3()()).not.toBe(childCtrl.value3());
+
+ childCtrl.fromParent2 = 'modified';
+ $rootScope.$digest();
+
+ expect(parentCtrl.value2).toBe('modified');
+ expect(childCtrl.value2).toBe('child2');
+ });
+ }
+ );
+
+
it('should put controller in scope when controller identifier present but not using controllerAs', function() {
var controllerCalled = false;
var myCtrl;
@@ -5612,6 +5946,62 @@ describe('$compile', function() {
});
});
+ //see issue https://github.com/angular/angular.js/issues/12936
+ it('should use the proper scope when it is on the root element of a replaced directive template', function() {
+ module(function() {
+ directive('isolate', valueFn({
+ scope: {},
+ replace: true,
+ template: '{{x}}
',
+ link: function(scope, element, attr, ctrl) {
+ scope.x = 'iso';
+ }
+ }));
+ directive('trans', valueFn({
+ transclude: 'content',
+ link: function(scope, element, attr, ctrl, $transclude) {
+ $transclude(function(clone) {
+ element.append(clone);
+ });
+ }
+ }));
+ });
+ inject(function($rootScope, $compile) {
+ element = $compile(' ')($rootScope);
+ $rootScope.x = 'root';
+ $rootScope.$apply();
+ expect(element.text()).toEqual('iso');
+ });
+ });
+
+
+ //see issue https://github.com/angular/angular.js/issues/12936
+ it('should use the proper scope when it is on the root element of a replaced directive template with child scope', function() {
+ module(function() {
+ directive('child', valueFn({
+ scope: true,
+ replace: true,
+ template: '{{x}}
',
+ link: function(scope, element, attr, ctrl) {
+ scope.x = 'child';
+ }
+ }));
+ directive('trans', valueFn({
+ transclude: 'content',
+ link: function(scope, element, attr, ctrl, $transclude) {
+ $transclude(function(clone) {
+ element.append(clone);
+ });
+ }
+ }));
+ });
+ inject(function($rootScope, $compile) {
+ element = $compile(' ')($rootScope);
+ $rootScope.x = 'root';
+ $rootScope.$apply();
+ expect(element.text()).toEqual('child');
+ });
+ });
it('should not leak if two "element" transclusions are on the same element (with debug info)', function() {
diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js
index 053c64931cfe..77ee82ec1a00 100644
--- a/test/ng/directive/inputSpec.js
+++ b/test/ng/directive/inputSpec.js
@@ -2537,8 +2537,20 @@ describe('input', function() {
describe('URL_REGEXP', function() {
/* global URL_REGEXP: false */
it('should validate url', function() {
+ // See valid URLs in RFC3987 (http://tools.ietf.org/html/rfc3987)
expect(URL_REGEXP.test('http://server:123/path')).toBe(true);
+ expect(URL_REGEXP.test('https://server:123/path')).toBe(true);
+ expect(URL_REGEXP.test('file:///home/user')).toBe(true);
+ expect(URL_REGEXP.test('mailto:user@example.com?subject=Foo')).toBe(true);
+ expect(URL_REGEXP.test('r2-d2.c3-p0://localhost/foo')).toBe(true);
+ expect(URL_REGEXP.test('abc:/foo')).toBe(true);
+ expect(URL_REGEXP.test('http://example.com/path;path')).toBe(true);
+ expect(URL_REGEXP.test('http://example.com/[]$\'()*,~)')).toBe(true);
+ expect(URL_REGEXP.test('http:')).toBe(false);
expect(URL_REGEXP.test('a@B.c')).toBe(false);
+ expect(URL_REGEXP.test('a_B.c')).toBe(false);
+ expect(URL_REGEXP.test('0scheme://example.com')).toBe(false);
+ expect(URL_REGEXP.test('http://example.com:9999/``')).toBe(false);
});
});
});
diff --git a/test/ng/directive/ngClassSpec.js b/test/ng/directive/ngClassSpec.js
index a188ba129356..a50f611e4b18 100644
--- a/test/ng/directive/ngClassSpec.js
+++ b/test/ng/directive/ngClassSpec.js
@@ -468,12 +468,12 @@ describe('ngClass animations', function() {
};
});
});
- inject(function($compile, $rootScope, $browser, $rootElement, $animate, $timeout, $$body) {
+ inject(function($compile, $rootScope, $browser, $rootElement, $animate, $document) {
$animate.enabled(true);
$rootScope.val = 'crazy';
element = angular.element('
');
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$compile(element)($rootScope);
diff --git a/test/ng/directive/ngOptionsSpec.js b/test/ng/directive/ngOptionsSpec.js
index 40cb245253d5..b234312e906d 100644
--- a/test/ng/directive/ngOptionsSpec.js
+++ b/test/ng/directive/ngOptionsSpec.js
@@ -1,8 +1,8 @@
'use strict';
-describe('ngOptions', function() {
+ddescribe('ngOptions', function() {
- var scope, formElement, element, $compile;
+ var scope, formElement, element, $compile, linkLog;
function compile(html) {
formElement = jqLite('');
@@ -104,6 +104,53 @@ describe('ngOptions', function() {
});
});
+ beforeEach(module(function($compileProvider, $provide) {
+ linkLog = [];
+
+ $compileProvider
+ .directive('customSelect', function() {
+ return {
+ restrict: "E",
+ replace: true,
+ scope: {
+ ngModel: '=',
+ options: '='
+ },
+ templateUrl: 'select_template.html',
+ link: function(scope, $element, attributes) {
+ scope.selectable_options = scope.options;
+ }
+ };
+ })
+
+ .directive('oCompileContents', function() {
+ return {
+ link: function(scope, element) {
+ linkLog.push('linkCompileContents');
+ $compile(element.contents())(scope);
+ }
+ };
+ });
+
+ $provide.decorator('ngOptionsDirective', function($delegate) {
+
+ var origPreLink = $delegate[0].link.pre;
+ var origPostLink = $delegate[0].link.post;
+
+ $delegate[0].compile = function() {
+ return {
+ pre: origPreLink,
+ post: function() {
+ linkLog.push('linkNgOptions');
+ origPostLink.apply(this, arguments);
+ }
+ };
+ };
+
+ return $delegate;
+ });
+ }));
+
beforeEach(inject(function($rootScope, _$compile_) {
scope = $rootScope.$new(); //create a child scope because the root scope can't be $destroy-ed
$compile = _$compile_;
@@ -1506,16 +1553,19 @@ describe('ngOptions', function() {
expect(element).toEqualSelectValue(scope.selected);
- var first = jqLite(element.find('optgroup')[0]);
- var b = jqLite(first.find('option')[0]);
- var d = jqLite(first.find('option')[1]);
+ var optgroups = element.find('optgroup');
+ expect(optgroups.length).toBe(2);
+
+ var first = optgroups.eq(0);
+ var b = first.find('option').eq(0);
+ var d = first.find('option').eq(1);
expect(first.attr('label')).toEqual('first');
expect(b.text()).toEqual('B');
expect(d.text()).toEqual('D');
- var second = jqLite(element.find('optgroup')[1]);
- var c = jqLite(second.find('option')[0]);
- var e = jqLite(second.find('option')[1]);
+ var second = optgroups.eq(1);
+ var c = second.find('option').eq(0);
+ var e = second.find('option').eq(1);
expect(second.attr('label')).toEqual('second');
expect(c.text()).toEqual('C');
expect(e.text()).toEqual('E');
@@ -1528,6 +1578,118 @@ describe('ngOptions', function() {
});
+ it('should group when the options are available on compile time', function() {
+ scope.values = [{name: 'C', group: 'first'},
+ {name: 'D', group: 'second'},
+ {name: 'F', group: 'first'},
+ {name: 'G', group: 'second'}];
+ scope.selected = scope.values[3];
+
+ createSelect({
+ 'ng-model': 'selected',
+ 'ng-options': 'item as item.name group by item.group for item in values'
+ });
+
+ expect(element).toEqualSelectValue(scope.selected);
+
+ var optgroups = element.find('optgroup');
+ expect(optgroups.length).toBe(2);
+
+ var first = optgroups.eq(0);
+ var c = first.find('option').eq(0);
+ var f = first.find('option').eq(1);
+ expect(first.attr('label')).toEqual('first');
+ expect(c.text()).toEqual('C');
+ expect(f.text()).toEqual('F');
+
+ var second = optgroups.eq(1);
+ var d = second.find('option').eq(0);
+ var g = second.find('option').eq(1);
+ expect(second.attr('label')).toEqual('second');
+ expect(d.text()).toEqual('D');
+ expect(g.text()).toEqual('G');
+
+ scope.$apply(function() {
+ scope.selected = scope.values[0];
+ });
+
+ expect(element).toEqualSelectValue(scope.selected);
+ });
+
+
+ it('should group when the options are updated', function() {
+ var optgroups, one, two, three, alpha, beta, gamma, delta, epsilon;
+
+ createSelect({
+ 'ng-model': 'selected',
+ 'ng-options': 'i.name group by i.cls for i in list'
+ });
+
+ scope.list = [
+ {cls: 'one', name: 'Alpha'},
+ {cls: 'one', name: 'Beta'},
+ {cls: 'two', name: 'Gamma'}
+ ];
+ scope.$digest();
+
+ optgroups = element.find('optgroup');
+ expect(optgroups.length).toBe(2);
+
+ one = optgroups.eq(0);
+ expect(one.children('option').length).toBe(2);
+
+ alpha = one.find('option').eq(0);
+ beta = one.find('option').eq(1);
+ expect(one.attr('label')).toEqual('one');
+ expect(alpha.text()).toEqual('Alpha');
+ expect(beta.text()).toEqual('Beta');
+
+ two = optgroups.eq(1);
+ expect(two.children('option').length).toBe(1);
+
+ gamma = two.find('option').eq(0);
+ expect(two.attr('label')).toEqual('two');
+ expect(gamma.text()).toEqual('Gamma');
+
+ // Remove item from first group, add item to second group, add new group
+ scope.list.shift();
+ scope.list.push(
+ {cls: 'two', name: 'Delta'},
+ {cls: 'three', name: 'Epsilon'}
+ );
+ scope.$digest();
+
+ optgroups = element.find('optgroup');
+ expect(optgroups.length).toBe(3);
+
+ // Group with removed item
+ one = optgroups.eq(0);
+ expect(one.children('option').length).toBe(1);
+
+ beta = one.find('option').eq(0);
+ expect(one.attr('label')).toEqual('one');
+ expect(beta.text()).toEqual('Beta');
+
+ // Group with new item
+ two = optgroups.eq(1);
+ expect(two.children('option').length).toBe(2);
+
+ gamma = two.find('option').eq(0);
+ expect(two.attr('label')).toEqual('two');
+ expect(gamma.text()).toEqual('Gamma');
+ delta = two.find('option').eq(1);
+ expect(two.attr('label')).toEqual('two');
+ expect(delta.text()).toEqual('Delta');
+
+ // New group
+ three = optgroups.eq(2);
+ expect(three.children('option').length).toBe(1);
+
+ epsilon = three.find('option').eq(0);
+ expect(three.attr('label')).toEqual('three');
+ expect(epsilon.text()).toEqual('Epsilon');
+ });
+
it('should place non-grouped items in the list where they appear', function() {
createSelect({
'ng-model': 'selected',
@@ -2029,7 +2191,9 @@ describe('ngOptions', function() {
expect(option.text()).toBe('is blank');
});
- it('should support option without a value attribute', function() {
+ it('should be ignored when it has no value attribute', function() {
+ // The option value is set to the textContent if there's no value attribute,
+ // so in that case it doesn't count as a blank option
createSingleSelect('--select-- ');
scope.$apply(function() {
scope.values = [{name: 'A'}, {name: 'B'}, {name: 'C'}];
@@ -2084,6 +2248,81 @@ describe('ngOptions', function() {
expect(element[0].selectedIndex).toEqual(0);
expect(scope.selected).toEqual([]);
});
+
+
+ it('should be possible to use ngIf in the blank option', function() {
+ var option;
+ createSingleSelect('blank ');
+
+ scope.$apply(function() {
+ scope.values = [{name: 'A'}];
+ scope.isBlank = true;
+ });
+
+ expect(element.find('option').length).toBe(2);
+ option = element.find('option').eq(0);
+ expect(option.val()).toBe('');
+ expect(option.text()).toBe('blank');
+
+ scope.$apply(function() {
+ scope.isBlank = false;
+ });
+
+ expect(element.find('option').length).toBe(1);
+ option = element.find('option').eq(0);
+ expect(option.text()).toBe('A');
+ });
+
+
+ it('should be possible to use ngIf in the blank option when values are available upon linking',
+ function() {
+ var options;
+
+ scope.values = [{name: 'A'}];
+ createSingleSelect('blank ');
+
+ scope.$apply('isBlank = true');
+
+ options = element.find('option');
+ expect(options.length).toBe(2);
+ expect(options.eq(0).val()).toBe('');
+ expect(options.eq(0).text()).toBe('blank');
+
+ scope.$apply('isBlank = false');
+
+ options = element.find('option');
+ expect(options.length).toBe(1);
+ expect(options.eq(0).text()).toBe('A');
+ }
+ );
+
+ it('should not throw when a directive compiles the blank option before ngOptions is linked', function() {
+ expect(function() {
+ createSelect({
+ 'o-compile-contents': '',
+ 'name': 'select',
+ 'ng-model': 'value',
+ 'ng-options': 'item for item in items'
+ }, true);
+ }).not.toThrow();
+
+ expect(linkLog).toEqual(['linkCompileContents', 'linkNgOptions']);
+ });
+
+
+ it('should not throw with a directive that replaces', inject(function($templateCache, $httpBackend) {
+ $templateCache.put('select_template.html', ' This is a test ');
+
+ scope.options = ['a', 'b', 'c', 'd'];
+
+ expect(function() {
+ element = $compile(' ')(scope);
+ scope.$digest();
+ }).not.toThrow();
+
+ dealoc(element);
+ }));
+
});
@@ -2521,5 +2760,20 @@ describe('ngOptions', function() {
expect(scope.value).toBe('third');
expect(element).toEqualSelectValue('third');
}));
+
+ it('should not set $dirty with select-multiple after compilation', function() {
+ scope.values = ['a', 'b'];
+ scope.selected = ['b'];
+
+ createSelect({
+ 'ng-model':'selected',
+ 'multiple':true,
+ 'ng-options':'value for value in values',
+ 'name': 'select'
+ });
+
+ expect(element.find('option')[1].selected).toBe(true);
+ expect(scope.form.select.$pristine).toBe(true);
+ });
});
});
diff --git a/test/ng/directive/ngRepeatSpec.js b/test/ng/directive/ngRepeatSpec.js
index 018564f02356..4523718b64f0 100644
--- a/test/ng/directive/ngRepeatSpec.js
+++ b/test/ng/directive/ngRepeatSpec.js
@@ -612,6 +612,15 @@ describe('ngRepeat', function() {
expect(element.text()).toEqual('misko:m:0|shyam:s:1|frodo:f:2|');
});
+ it('should expose iterator offset as $index when iterating over objects with length key value 0', function() {
+ element = $compile(
+ '' +
+ '{{key}}:{{val}}:{{$index}}| ' +
+ ' ')(scope);
+ scope.items = {'misko':'m', 'shyam':'s', 'frodo':'f', 'length':0};
+ scope.$digest();
+ expect(element.text()).toEqual('misko:m:0|shyam:s:1|frodo:f:2|length:0:3|');
+ });
it('should expose iterator position as $first, $middle and $last when iterating over arrays',
function() {
diff --git a/test/ng/filter/filtersSpec.js b/test/ng/filter/filtersSpec.js
index 52ad6fbd6a4d..979fd2bf02b8 100644
--- a/test/ng/filter/filtersSpec.js
+++ b/test/ng/filter/filtersSpec.js
@@ -62,6 +62,8 @@ describe('filters', function() {
it('should format according different separators', function() {
var num = formatNumber(1234567.1, pattern, '.', ',', 2);
expect(num).toBe('1.234.567,10');
+ num = formatNumber(1e-14, pattern, '.', ',', 14);
+ expect(num).toBe('0,00000000000001');
});
it('should format with or without fractionSize', function() {
@@ -90,6 +92,39 @@ describe('filters', function() {
expect(formatNumber(-0.0001, pattern, ',', '.', 3)).toBe('0.000');
expect(formatNumber(-0.0000001, pattern, ',', '.', 6)).toBe('0.000000');
});
+
+ it('should work with numbers that are close to the limit for exponent notation', function() {
+ // previously, numbers that n * (10 ^ fractionSize) > localLimitMax
+ // were ending up with a second exponent in them, then coercing to
+ // NaN when formatNumber rounded them with the safe rounding
+ // function.
+
+ var localLimitMax = 999999999999999900000,
+ localLimitMin = 10000000000000000000,
+ exampleNumber = 444444444400000000000;
+
+ expect(formatNumber(localLimitMax, pattern, ',', '.', 2))
+ .toBe('999,999,999,999,999,900,000.00');
+ expect(formatNumber(localLimitMin, pattern, ',', '.', 2))
+ .toBe('10,000,000,000,000,000,000.00');
+ expect(formatNumber(exampleNumber, pattern, ',', '.', 2))
+ .toBe('444,444,444,400,000,000,000.00');
+
+ });
+
+ it('should format large number',function() {
+ var num;
+ num = formatNumber(12345868059685210000, pattern, ',', '.', 2);
+ expect(num).toBe('12,345,868,059,685,210,000.00');
+ num = formatNumber(79832749837498327498274983793234322432, pattern, ',', '.', 2);
+ expect(num).toBe('7.98e+37');
+ num = formatNumber(8798327498374983274928, pattern, ',', '.', 2);
+ expect(num).toBe('8,798,327,498,374,983,000,000.00');
+ num = formatNumber(879832749374983274928, pattern, ',', '.', 2);
+ expect(num).toBe('879,832,749,374,983,200,000.00');
+ num = formatNumber(879832749374983274928, pattern, ',', '.', 32);
+ expect(num).toBe('879,832,749,374,983,200,000.00000000000000000000000000000000');
+ });
});
describe('currency', function() {
@@ -184,13 +219,10 @@ describe('filters', function() {
});
it('should filter exponentially large numbers', function() {
- expect(number(1e50)).toEqual('1e+50');
- expect(number(-2e100)).toEqual('-2e+100');
- });
-
- it('should ignore fraction sizes for large numbers', function() {
- expect(number(1e50, 2)).toEqual('1e+50');
- expect(number(-2e100, 5)).toEqual('-2e+100');
+ expect(number(1.23e50)).toEqual('1.23e+50');
+ expect(number(-2.3456e100)).toEqual('-2.346e+100');
+ expect(number(1e50, 2)).toEqual('1.00e+50');
+ expect(number(-2e100, 5)).toEqual('-2.00000e+100');
});
it('should filter exponentially small numbers', function() {
@@ -204,6 +236,14 @@ describe('filters', function() {
expect(number(-1e-7, 6)).toEqual('0.000000');
expect(number(-1e-8, 9)).toEqual('-0.000000010');
});
+
+ it('should filter exponentially small numbers when no fraction specified', function() {
+ expect(number(1e-10)).toEqual('0.000');
+ expect(number(0.0000000001)).toEqual('0.000');
+
+ expect(number(-1e-10)).toEqual('0.000');
+ expect(number(-0.0000000001)).toEqual('0.000');
+ });
});
describe('json', function() {
diff --git a/test/ng/filter/limitToSpec.js b/test/ng/filter/limitToSpec.js
index 343290a55c5d..a403c43b94ba 100644
--- a/test/ng/filter/limitToSpec.js
+++ b/test/ng/filter/limitToSpec.js
@@ -140,16 +140,19 @@ describe('Filter: limitTo', function() {
it('should return an empty array if Y exceeds input length', function() {
expect(limitTo(items, '3', 12)).toEqual([]);
- expect(limitTo(items, 4, '-12')).toEqual([]);
expect(limitTo(items, -3, '12')).toEqual([]);
- expect(limitTo(items, '-4', -12)).toEqual([]);
});
it('should return an empty string if Y exceeds input length', function() {
expect(limitTo(str, '3', 12)).toEqual("");
- expect(limitTo(str, 4, '-12')).toEqual("");
expect(limitTo(str, -3, '12')).toEqual("");
- expect(limitTo(str, '-4', -12)).toEqual("");
+ });
+
+ it('should start at 0 if Y is negative and exceeds input length', function() {
+ expect(limitTo(items, 4, '-12')).toEqual(['a', 'b', 'c', 'd']);
+ expect(limitTo(items, '-4', -12)).toEqual(['e', 'f', 'g', 'h']);
+ expect(limitTo(str, 4, '-12')).toEqual("tuvw");
+ expect(limitTo(str, '-4', -12)).toEqual("wxyz");
});
it('should return the entire string beginning from Y if X is positive and X+Y exceeds input length', function() {
diff --git a/test/ng/httpBackendSpec.js b/test/ng/httpBackendSpec.js
index 03490fc4ca1f..cd356959578d 100644
--- a/test/ng/httpBackendSpec.js
+++ b/test/ng/httpBackendSpec.js
@@ -233,6 +233,13 @@ describe('$httpBackend', function() {
expect(MockXhr.$$lastInstance.withCredentials).toBe(true);
});
+ it('should call $xhrFactory with method and url', function() {
+ var mockXhrFactory = jasmine.createSpy('mockXhrFactory').andCallFake(createMockXhr);
+ $backend = createHttpBackend($browser, mockXhrFactory, $browser.defer, callbacks, fakeDocument);
+ $backend('GET', '/some-url', 'some-data', noop);
+ expect(mockXhrFactory).toHaveBeenCalledWith('GET', '/some-url');
+ });
+
describe('responseType', function() {
diff --git a/test/ng/httpSpec.js b/test/ng/httpSpec.js
index 168305eab34f..56424dff8e56 100644
--- a/test/ng/httpSpec.js
+++ b/test/ng/httpSpec.js
@@ -302,6 +302,13 @@ describe('$http', function() {
}).toThrowMinErr('$http','badreq', 'Http request configuration must be an object. Received: /url');
});
+ it('should throw error if the request configuration url is not a string', function() {
+ expect(function() {
+ $http({url: false});
+ }).toThrowMinErr('$http','badreq', 'Http request configuration url must be a string. Received: false');
+ });
+
+
it('should send GET requests if no method specified', function() {
$httpBackend.expect('GET', '/url').respond('');
$http({url: '/url'});
@@ -1391,6 +1398,25 @@ describe('$http', function() {
expect(callback).toHaveBeenCalledOnce();
expect(callback.mostRecentCall.args[0]).toBe('RESP-FIRST:V1');
});
+
+
+ it('should apply `transformResponse` even if the response data is empty', function(data) {
+ var callback = jasmine.createSpy('transformResponse');
+ var config = {transformResponse: callback};
+
+ $httpBackend.expect('GET', '/url1').respond(200, undefined);
+ $httpBackend.expect('GET', '/url2').respond(200, null);
+ $httpBackend.expect('GET', '/url3').respond(200, '');
+ $http.get('/url1', config);
+ $http.get('/url2', config);
+ $http.get('/url3', config);
+ $httpBackend.flush();
+
+ expect(callback.callCount).toBe(3);
+ expect(callback.calls[0].args[0]).toBe(undefined);
+ expect(callback.calls[1].args[0]).toBe(null);
+ expect(callback.calls[2].args[0]).toBe('');
+ });
});
});
diff --git a/test/ng/locationSpec.js b/test/ng/locationSpec.js
index 1efe3396762f..8e1607c83146 100644
--- a/test/ng/locationSpec.js
+++ b/test/ng/locationSpec.js
@@ -2141,6 +2141,31 @@ describe('$location', function() {
})
);
+ it('should fire $locationChangeSuccess when browser location changes to URL which ends with #',
+ inject(function($location, $browser, $rootScope, $log) {
+ $location.url('/somepath');
+ $rootScope.$apply();
+
+ expect($browser.url()).toEqual('http://server/#/somepath');
+ expect($location.url()).toEqual('/somepath');
+
+ $rootScope.$on('$locationChangeStart', function(event, newUrl, oldUrl) {
+ $log.info('start', newUrl, oldUrl);
+ });
+ $rootScope.$on('$locationChangeSuccess', function(event, newUrl, oldUrl) {
+ $log.info('after', newUrl, oldUrl);
+ });
+
+ $browser.url('http://server/#');
+ $browser.poll();
+
+ expect($log.info.logs.shift()).
+ toEqual(['start', 'http://server/', 'http://server/#/somepath']);
+ expect($log.info.logs.shift()).
+ toEqual(['after', 'http://server/', 'http://server/#/somepath']);
+ })
+ );
+
it('should allow redirect during browser url change',
inject(function($location, $browser, $rootScope, $log) {
$rootScope.$on('$locationChangeStart', function(event, newUrl, oldUrl) {
diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js
index 5b477b464947..82c6223e86ae 100644
--- a/test/ng/parseSpec.js
+++ b/test/ng/parseSpec.js
@@ -2692,6 +2692,15 @@ describe('parser', function() {
});
});
+ it('should prevent the exploit', function() {
+ expect(function() {
+ scope.$eval('(1)[{0: "__proto__", 1: "__proto__", 2: "__proto__", 3: "safe", length: 4, toString: [].pop}].foo = 1');
+ }).toThrow();
+ if (!msie || msie > 10) {
+ expect((1)['__proto__'].foo).toBeUndefined();
+ }
+ });
+
it('should prevent the exploit', function() {
expect(function() {
scope.$eval('' +
@@ -2703,6 +2712,35 @@ describe('parser', function() {
'');
}).toThrow();
});
+
+ it('should prevent assigning in the context of a constructor', function() {
+ expect(function() {
+ scope.$eval("''.constructor.join");
+ }).not.toThrow();
+ expect(function() {
+ scope.$eval("''.constructor.join = ''.constructor.join");
+ }).toThrow();
+ expect(function() {
+ scope.$eval("''.constructor[0] = ''");
+ }).toThrow();
+ expect(function() {
+ scope.$eval("(0).constructor[0] = ''");
+ }).toThrow();
+ expect(function() {
+ scope.$eval("{}.constructor[0] = ''");
+ }).toThrow();
+ // foo.constructor is the object constructor.
+ expect(function() {
+ scope.$eval("foo.constructor[0] = ''", {foo: {}});
+ }).toThrow();
+ // foo.constructor is not a constructor.
+ expect(function() {
+ scope.$eval("foo.constructor[0] = ''", {foo: {constructor: ''}});
+ }).not.toThrow();
+ expect(function() {
+ scope.$eval("objConstructor = {}.constructor; objConstructor.join = ''");
+ }).toThrow();
+ });
});
it('should call the function from the received instance and not from a new one', function() {
@@ -3127,6 +3165,17 @@ describe('parser', function() {
expect(called).toBe(true);
}));
+ it('should invoke interceptors when the expression is `undefined`', inject(function($parse) {
+ var called = false;
+ function interceptor(v) {
+ called = true;
+ return v;
+ }
+ scope.$watch($parse(undefined, interceptor));
+ scope.$digest();
+ expect(called).toBe(true);
+ }));
+
it('should treat filters with constant input as constants', inject(function($parse) {
var filterCalls = 0;
$filterProvider.register('foo', valueFn(function(input) {
diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js
index 8bdc6b4c50f0..a9a1ae120494 100644
--- a/test/ng/rootScopeSpec.js
+++ b/test/ng/rootScopeSpec.js
@@ -1211,6 +1211,36 @@ describe('Scope', function() {
expect(child.parentModel).toBe('parent');
expect(child.childModel).toBe('child');
}));
+
+
+ if (msie === 9) {
+ // See issue https://github.com/angular/angular.js/issues/10706
+ it('should completely disconnect all child scopes on IE9', inject(function($rootScope) {
+ var parent = $rootScope.$new(),
+ child1 = parent.$new(),
+ child2 = parent.$new(),
+ grandChild1 = child1.$new(),
+ grandChild2 = child1.$new();
+
+ child1.$destroy();
+ $rootScope.$digest();
+
+ expect(isDisconnected(parent)).toBe(false);
+ expect(isDisconnected(child1)).toBe(true);
+ expect(isDisconnected(child2)).toBe(false);
+ expect(isDisconnected(grandChild1)).toBe(true);
+ expect(isDisconnected(grandChild2)).toBe(true);
+
+ function isDisconnected($scope) {
+ return $scope.$$nextSibling === null &&
+ $scope.$$prevSibling === null &&
+ $scope.$$childHead === null &&
+ $scope.$$childTail === null &&
+ $scope.$root === null &&
+ $scope.$$watchers === null;
+ }
+ }));
+ }
});
diff --git a/test/ngAnimate/animateCssDriverSpec.js b/test/ngAnimate/animateCssDriverSpec.js
index 589d5932e3ff..923f9e3f821c 100644
--- a/test/ngAnimate/animateCssDriverSpec.js
+++ b/test/ngAnimate/animateCssDriverSpec.js
@@ -121,7 +121,7 @@ describe("ngAnimate $$animateCssDriver", function() {
var from, to, fromAnimation, toAnimation;
beforeEach(module(function() {
- return function($rootElement, $$body) {
+ return function($rootElement, $document) {
from = element;
to = jqLite('
');
fromAnimation = { element: from, event: 'enter' };
@@ -129,8 +129,14 @@ describe("ngAnimate $$animateCssDriver", function() {
$rootElement.append(from);
$rootElement.append(to);
- // we need to do this so that style detection works
- $$body.append($rootElement);
+ var doc = $document[0];
+
+ // there is one test in here that expects the rootElement
+ // to superceed the body node
+ if (!$rootElement[0].contains(doc.body)) {
+ // we need to do this so that style detection works
+ jqLite(doc.body).append($rootElement);
+ }
};
}));
@@ -975,6 +981,39 @@ describe("ngAnimate $$animateCssDriver", function() {
expect(completed).toBe(true);
}));
+
+ it("should use as the element container if the rootElement exists outside of the tag", function() {
+ module(function($provide) {
+ $provide.factory('$rootElement', function($document) {
+ return jqLite($document[0].querySelector('html'));
+ });
+ });
+ inject(function($rootElement, $rootScope, $animate, $document) {
+ ss.addRule('.ending-element', 'width:9999px; height:6666px; display:inline-block;');
+
+ var fromAnchor = jqLite('
');
+ from.append(fromAnchor);
+
+ var toAnchor = jqLite('
');
+ to.append(toAnchor);
+
+ $rootElement.append(fromAnchor);
+ $rootElement.append(toAnchor);
+
+ var completed = false;
+ driver({
+ from: fromAnimation,
+ to: toAnimation,
+ anchors: [{
+ 'out': fromAnchor,
+ 'in': toAnchor
+ }]
+ }).start();
+
+ var clone = captureLog[2].element[0];
+ expect(clone.parentNode).toBe($document[0].body);
+ });
+ });
});
});
});
diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js
index a4071782ab43..52182493f61a 100644
--- a/test/ngAnimate/animateCssSpec.js
+++ b/test/ngAnimate/animateCssSpec.js
@@ -35,12 +35,12 @@ describe("ngAnimate $animateCss", function() {
});
it("should return false if neither transitions or keyframes are supported by the browser",
- inject(function($animateCss, $sniffer, $rootElement, $$body) {
+ inject(function($animateCss, $sniffer, $rootElement, $document) {
var animator;
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$sniffer.transitions = $sniffer.animations = false;
animator = $animateCss(element, {
@@ -54,13 +54,13 @@ describe("ngAnimate $animateCss", function() {
if (!browserSupportsCssAnimations()) return;
it("should not attempt an animation if animations are globally disabled",
- inject(function($animateCss, $animate, $rootElement, $$body) {
+ inject(function($animateCss, $animate, $rootElement, $document) {
$animate.enabled(false);
var animator, element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
animator = $animateCss(element, {
duration: 10,
@@ -109,9 +109,9 @@ describe("ngAnimate $animateCss", function() {
describe("rAF usage", function() {
it("should buffer all requests into a single requestAnimationFrame call",
- inject(function($animateCss, $$rAF, $rootScope, $$body, $rootElement) {
+ inject(function($animateCss, $$rAF, $rootScope, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var count = 0;
var runners = [];
@@ -149,8 +149,8 @@ describe("ngAnimate $animateCss", function() {
};
});
});
- inject(function($animateCss, $$rAF, $$body, $rootElement) {
- $$body.append($rootElement);
+ inject(function($animateCss, $$rAF, $document, $rootElement) {
+ jqLite($document[0].body).append($rootElement);
function makeRequest() {
var element = jqLite('
');
@@ -169,10 +169,10 @@ describe("ngAnimate $animateCss", function() {
describe("animator and runner", function() {
var animationDuration = 5;
var element, animator;
- beforeEach(inject(function($animateCss, $rootElement, $$body) {
+ beforeEach(inject(function($animateCss, $rootElement, $document) {
element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
animator = $animateCss(element, {
event: 'enter',
@@ -365,10 +365,10 @@ describe("ngAnimate $animateCss", function() {
{ timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration });
}
- beforeEach(inject(function($rootElement, $$body) {
+ beforeEach(inject(function($rootElement, $document) {
element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
options = { event: 'enter', structural: true };
}));
@@ -638,9 +638,9 @@ describe("ngAnimate $animateCss", function() {
describe("staggering", function() {
it("should apply a stagger based when an active ng-EVENT-stagger class with a transition-delay is detected",
- inject(function($animateCss, $$body, $rootElement, $timeout) {
+ inject(function($animateCss, $document, $rootElement, $timeout) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s');
ss.addRule('.ng-enter', 'transition:2s linear all');
@@ -679,9 +679,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should apply a stagger based when for all provided addClass/removeClass CSS classes",
- inject(function($animateCss, $$body, $rootElement, $timeout) {
+ inject(function($animateCss, $document, $rootElement, $timeout) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.red-add-stagger,' +
'.blue-remove-stagger,' +
@@ -749,9 +749,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should block the transition animation between start and animate when staggered",
- inject(function($animateCss, $$body, $rootElement) {
+ inject(function($animateCss, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s');
ss.addRule('.ng-enter', 'transition:2s linear all;');
@@ -780,9 +780,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should block (pause) the keyframe animation between start and animate when staggered",
- inject(function($animateCss, $$body, $rootElement) {
+ inject(function($animateCss, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', prefix + 'animation-delay:0.2s');
ss.addRule('.ng-enter', prefix + 'animation:my_animation 2s;');
@@ -809,9 +809,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should not apply a stagger if the transition delay value is inherited from a earlier CSS class",
- inject(function($animateCss, $$body, $rootElement) {
+ inject(function($animateCss, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.transition-animation', 'transition:2s 5s linear all;');
@@ -828,9 +828,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should apply a stagger only if the transition duration value is zero when inherited from a earlier CSS class",
- inject(function($animateCss, $$body, $rootElement) {
+ inject(function($animateCss, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.transition-animation', 'transition:2s 5s linear all;');
ss.addRule('.transition-animation.ng-enter-stagger',
@@ -854,9 +854,9 @@ describe("ngAnimate $animateCss", function() {
it("should ignore animation staggers if only transition animations were detected",
- inject(function($animateCss, $$body, $rootElement) {
+ inject(function($animateCss, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', prefix + 'animation-delay:0.2s');
ss.addRule('.transition-animation', 'transition:2s 5s linear all;');
@@ -874,9 +874,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should ignore transition staggers if only keyframe animations were detected",
- inject(function($animateCss, $$body, $rootElement) {
+ inject(function($animateCss, $document, $rootElement) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s');
ss.addRule('.transition-animation', prefix + 'animation:2s 5s my_animation;');
@@ -894,9 +894,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should start on the highest stagger value if both transition and keyframe staggers are used together",
- inject(function($animateCss, $$body, $rootElement, $timeout, $browser) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $browser) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', 'transition-delay:0.5s;' +
prefix + 'animation-delay:1s');
@@ -932,9 +932,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should apply the closing timeout ontop of the stagger timeout",
- inject(function($animateCss, $$body, $rootElement, $timeout, $browser) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $browser) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', 'transition-delay:1s;');
ss.addRule('.ng-enter', 'transition:10s linear all;');
@@ -959,9 +959,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should apply the closing timeout ontop of the stagger timeout with an added delay",
- inject(function($animateCss, $$body, $rootElement, $timeout, $browser) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $browser) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter-stagger', 'transition-delay:1s;');
ss.addRule('.ng-enter', 'transition:10s linear all; transition-delay:50s;');
@@ -986,9 +986,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should issue a stagger if a stagger value is provided in the options",
- inject(function($animateCss, $$body, $rootElement, $timeout) {
+ inject(function($animateCss, $document, $rootElement, $timeout) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.ng-enter', 'transition:2s linear all');
var elm, i, elements = [];
@@ -1025,9 +1025,9 @@ describe("ngAnimate $animateCss", function() {
}));
it("should only add/remove classes once the stagger timeout has passed",
- inject(function($animateCss, $$body, $rootElement, $timeout) {
+ inject(function($animateCss, $document, $rootElement, $timeout) {
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var element = jqLite('
');
$rootElement.append(element);
@@ -1052,13 +1052,13 @@ describe("ngAnimate $animateCss", function() {
describe("closing timeout", function() {
it("should close off the animation after 150% of the animation time has passed",
- inject(function($animateCss, $$body, $rootElement, $timeout) {
+ inject(function($animateCss, $document, $rootElement, $timeout) {
ss.addRule('.ng-enter', 'transition:10s linear all;');
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, { event: 'enter', structural: true });
animator.start();
@@ -1075,13 +1075,13 @@ describe("ngAnimate $animateCss", function() {
}));
it("should close off the animation after 150% of the animation time has passed and consider the detected delay value",
- inject(function($animateCss, $$body, $rootElement, $timeout) {
+ inject(function($animateCss, $document, $rootElement, $timeout) {
ss.addRule('.ng-enter', 'transition:10s linear all; transition-delay:30s;');
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, { event: 'enter', structural: true });
animator.start();
@@ -1098,13 +1098,13 @@ describe("ngAnimate $animateCss", function() {
}));
it("should still resolve the animation once expired",
- inject(function($animateCss, $$body, $rootElement, $timeout, $animate, $rootScope) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $animate, $rootScope) {
ss.addRule('.ng-enter', 'transition:10s linear all;');
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, { event: 'enter', structural: true });
@@ -1123,13 +1123,13 @@ describe("ngAnimate $animateCss", function() {
}));
it("should not resolve/reject after passing if the animation completed successfully",
- inject(function($animateCss, $$body, $rootElement, $timeout, $rootScope, $animate) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $rootScope, $animate) {
ss.addRule('.ng-enter', 'transition:10s linear all;');
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, { event: 'enter', structural: true });
@@ -1160,7 +1160,7 @@ describe("ngAnimate $animateCss", function() {
}));
it("should close all stacked animations after the last timeout runs on the same element",
- inject(function($animateCss, $$body, $rootElement, $timeout, $animate) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $animate) {
var now = 0;
spyOn(Date, 'now').andCallFake(function() {
@@ -1177,7 +1177,7 @@ describe("ngAnimate $animateCss", function() {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
// timeout will be at 1500s
animate(element, 'red', doneSpy);
@@ -1218,11 +1218,11 @@ describe("ngAnimate $animateCss", function() {
}));
it("should not throw an error any pending timeout requests resolve after the element has already been removed",
- inject(function($animateCss, $$body, $rootElement, $timeout, $animate) {
+ inject(function($animateCss, $document, $rootElement, $timeout, $animate) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.red', 'transition:1s linear all;');
@@ -1234,6 +1234,73 @@ describe("ngAnimate $animateCss", function() {
$timeout.flush();
}).not.toThrow();
}));
+
+ it("should consider a positive options.delay value for the closing timeout",
+ inject(function($animateCss, $rootElement, $timeout, $document) {
+
+ var element = jqLite('
');
+ $rootElement.append(element);
+ jqLite($document[0].body).append($rootElement);
+
+ var options = {
+ delay: 3,
+ duration: 3,
+ to: {
+ height: '100px'
+ }
+ };
+
+ var animator = $animateCss(element, options);
+
+ animator.start();
+ triggerAnimationStartFrame();
+
+ // At this point, the animation should still be running (closing timeout is 7500ms ... duration * 1.5 + delay => 7.5)
+ $timeout.flush(7000);
+
+ expect(element.css(prefix + 'transition-delay')).toBe('3s');
+ expect(element.css(prefix + 'transition-duration')).toBe('3s');
+
+ // Let's flush the remaining amout of time for the timeout timer to kick in
+ $timeout.flush(500);
+
+ expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s');
+ expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s');
+ }));
+
+ it("should ignore a boolean options.delay value for the closing timeout",
+ inject(function($animateCss, $rootElement, $timeout, $document) {
+
+ var element = jqLite('
');
+ $rootElement.append(element);
+ jqLite($document[0].body).append($rootElement);
+
+ var options = {
+ delay: true,
+ duration: 3,
+ to: {
+ height: '100px'
+ }
+ };
+
+ var animator = $animateCss(element, options);
+
+ animator.start();
+ triggerAnimationStartFrame();
+
+ // At this point, the animation should still be running (closing timeout is 4500ms ... duration * 1.5 => 4.5)
+ $timeout.flush(4000);
+
+ expect(element.css(prefix + 'transition-delay')).toBeOneOf('initial', '0s');
+ expect(element.css(prefix + 'transition-duration')).toBe('3s');
+
+ // Let's flush the remaining amout of time for the timeout timer to kick in
+ $timeout.flush(500);
+
+ expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s');
+ expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s');
+ }));
+
});
describe("getComputedStyle", function() {
@@ -1255,8 +1322,8 @@ describe("ngAnimate $animateCss", function() {
}
}));
- return function($$body, $rootElement) {
- $$body.append($rootElement);
+ return function($document, $rootElement) {
+ jqLite($document[0].body).append($rootElement);
};
}));
@@ -1340,7 +1407,7 @@ describe("ngAnimate $animateCss", function() {
});
it('should avoid applying the same cache to an element a follow-up animation is run on the same element',
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
function endTransition(element, elapsedTime) {
browserTrigger(element, 'transitionend',
@@ -1357,7 +1424,7 @@ describe("ngAnimate $animateCss", function() {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
startAnimation(element, 0.5, 'red');
expect(element.attr('style')).toContain('transition');
@@ -1377,14 +1444,14 @@ describe("ngAnimate $animateCss", function() {
}));
it("should clear cache if no animation so follow-up animation on the same element will not be from cache",
- inject(function($animateCss, $rootElement, $$body, $$rAF) {
+ inject(function($animateCss, $rootElement, $document, $$rAF) {
var element = jqLite('
');
var options = {
event: 'enter',
structural: true
};
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, options);
expect(animator.$$willAnimate).toBeFalsy();
@@ -1396,11 +1463,11 @@ describe("ngAnimate $animateCss", function() {
}));
it('should apply a custom temporary class when a non-structural animation is used',
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$animateCss(element, {
event: 'super',
@@ -1416,10 +1483,10 @@ describe("ngAnimate $animateCss", function() {
describe("structural animations", function() {
they('should decorate the element with the ng-$prop CSS class',
['enter', 'leave', 'move'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$animateCss(element, {
event: event,
@@ -1433,10 +1500,10 @@ describe("ngAnimate $animateCss", function() {
they('should decorate the element with the ng-$prop-active CSS class',
['enter', 'leave', 'move'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, {
event: event,
@@ -1454,10 +1521,10 @@ describe("ngAnimate $animateCss", function() {
they('should remove the ng-$prop and ng-$prop-active CSS classes from the element once the animation is done',
['enter', 'leave', 'move'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var animator = $animateCss(element, {
event: event,
@@ -1511,10 +1578,10 @@ describe("ngAnimate $animateCss", function() {
they('should place a CSS transition block after the preparation function to block accidental style changes',
['enter', 'leave', 'move', 'addClass', 'removeClass'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.cool-animation', 'transition:1.5s linear all;');
element.addClass('cool-animation');
@@ -1541,10 +1608,10 @@ describe("ngAnimate $animateCss", function() {
they('should not place a CSS transition block if options.skipBlocking is provided',
['enter', 'leave', 'move', 'addClass', 'removeClass'], function(event) {
- inject(function($animateCss, $rootElement, $$body, $window) {
+ inject(function($animateCss, $rootElement, $document, $window) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.cool-animation', 'transition:1.5s linear all;');
element.addClass('cool-animation');
@@ -1582,10 +1649,10 @@ describe("ngAnimate $animateCss", function() {
they('should place a CSS transition block after the preparation function even if a duration is provided',
['enter', 'leave', 'move', 'addClass', 'removeClass'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
ss.addRule('.cool-animation', 'transition:1.5s linear all;');
element.addClass('cool-animation');
@@ -1616,11 +1683,11 @@ describe("ngAnimate $animateCss", function() {
});
it('should allow multiple events to be animated at the same time',
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$animateCss(element, {
event: ['enter', 'leave', 'move'],
@@ -1688,10 +1755,10 @@ describe("ngAnimate $animateCss", function() {
they('should remove the class-$prop-add and class-$prop-active CSS classes from the element once the animation is done',
['enter', 'leave', 'move'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var options = {};
options.event = event;
@@ -1713,7 +1780,7 @@ describe("ngAnimate $animateCss", function() {
they('should allow the class duration styles to be recalculated once started if the CSS classes being applied result new transition styles',
['add', 'remove'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
var element = jqLite('
');
@@ -1728,7 +1795,7 @@ describe("ngAnimate $animateCss", function() {
}
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var options = {};
options[event + 'Class'] = 'natural-class';
@@ -1749,13 +1816,13 @@ describe("ngAnimate $animateCss", function() {
they('should force the class-based values to be applied early if no options.applyClassEarly is used as an option',
['enter', 'leave', 'move'], function(event) {
- inject(function($animateCss, $rootElement, $$body) {
+ inject(function($animateCss, $rootElement, $document) {
ss.addRule('.blue.ng-' + event, 'transition:2s linear all;');
var element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
var runner = $animateCss(element, {
addClass: 'blue',
@@ -1790,14 +1857,45 @@ describe("ngAnimate $animateCss", function() {
describe("options", function() {
var element;
beforeEach(module(function() {
- return function($rootElement, $$body) {
- $$body.append($rootElement);
+ return function($rootElement, $document) {
+ jqLite($document[0].body).append($rootElement);
element = jqLite('
');
$rootElement.append(element);
};
}));
+ it("should not alter the provided options input in any way throughout the animation", inject(function($animateCss) {
+ var initialOptions = {
+ from: { height: '50px' },
+ to: { width: '50px' },
+ addClass: 'one',
+ removeClass: 'two',
+ duration: 10,
+ delay: 10,
+ structural: true,
+ keyframeStyle: '1s rotate',
+ transitionStyle: '1s linear',
+ stagger: 0.5,
+ staggerIndex: 3
+ };
+
+ var copiedOptions = copy(initialOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ var animator = $animateCss(element, copiedOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ var runner = animator.start();
+ expect(copiedOptions).toEqual(initialOptions);
+
+ triggerAnimationStartFrame();
+ expect(copiedOptions).toEqual(initialOptions);
+
+ runner.end();
+ expect(copiedOptions).toEqual(initialOptions);
+ }));
+
describe("[$$skipPreparationClasses]", function() {
it('should not apply and remove the preparation classes to the element when true',
inject(function($animateCss) {
@@ -2741,10 +2839,10 @@ describe("ngAnimate $animateCss", function() {
describe("[easing]", function() {
var element;
- beforeEach(inject(function($$body, $rootElement) {
+ beforeEach(inject(function($document, $rootElement) {
element = jqLite('
');
$rootElement.append(element);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
}));
it("should apply easing to a transition animation if it exists", inject(function($animateCss) {
@@ -2786,6 +2884,71 @@ describe("ngAnimate $animateCss", function() {
}));
});
+ describe("[cleanupStyles]", function() {
+ it("should cleanup [from] and [to] styles that have been applied for the animation when true",
+ inject(function($animateCss) {
+
+ var runner = $animateCss(element, {
+ duration: 1,
+ from: { background: 'gold' },
+ to: { color: 'brown' },
+ cleanupStyles: true
+ }).start();
+
+ assertStyleIsPresent(element, 'background', true);
+ assertStyleIsPresent(element, 'color', false);
+
+ triggerAnimationStartFrame();
+
+ assertStyleIsPresent(element, 'background', true);
+ assertStyleIsPresent(element, 'color', true);
+
+ runner.end();
+
+ assertStyleIsPresent(element, 'background', false);
+ assertStyleIsPresent(element, 'color', false);
+
+ function assertStyleIsPresent(element, style, bool) {
+ expect(element[0].style[style])[bool ? 'toBeTruthy' : 'toBeFalsy']();
+ }
+ }));
+
+ it('should restore existing overidden styles already present on the element when true',
+ inject(function($animateCss) {
+
+ element.css('height', '100px');
+ element.css('width', '111px');
+
+ var runner = $animateCss(element, {
+ duration: 1,
+ from: { height: '200px', 'font-size':'66px' },
+ to: { height: '300px', 'font-size': '99px', width: '222px' },
+ cleanupStyles: true
+ }).start();
+
+ assertStyle(element, 'height', '200px');
+ assertStyle(element, 'font-size', '66px');
+ assertStyle(element, 'width', '111px');
+
+ triggerAnimationStartFrame();
+
+ assertStyle(element, 'height', '300px');
+ assertStyle(element, 'width', '222px');
+ assertStyle(element, 'font-size', '99px');
+
+ runner.end();
+
+ assertStyle(element, 'width', '111px');
+ assertStyle(element, 'height', '100px');
+
+ expect(element[0].style.getPropertyValue('font-size')).not.toBe('66px');
+
+ function assertStyle(element, prop, value) {
+ expect(element[0].style.getPropertyValue(prop)).toBe(value);
+ }
+ }));
+ });
+
it('should round up long elapsedTime values to close off a CSS3 animation',
inject(function($animateCss) {
@@ -2812,13 +2975,13 @@ describe("ngAnimate $animateCss", function() {
describe('SVG', function() {
it('should properly apply transitions on an SVG element',
- inject(function($animateCss, $rootScope, $compile, $$body, $rootElement) {
+ inject(function($animateCss, $rootScope, $compile, $document, $rootElement) {
var element = $compile('' +
' ' +
' ')($rootScope);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$rootElement.append(element);
$animateCss(element, {
diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js
index 06e06a867cfa..dc665ead5398 100644
--- a/test/ngAnimate/animateSpec.js
+++ b/test/ngAnimate/animateSpec.js
@@ -26,12 +26,12 @@ describe("animations", function() {
});
});
- inject(function($animate, $rootScope, $$body) {
+ inject(function($animate, $rootScope, $document) {
$animate.enabled(true);
element = jqLite('
');
- $animate.enter(element, $$body);
+ $animate.enter(element, jqLite($document[0].body));
$rootScope.$digest();
expect(capturedAnimation).toBeTruthy();
@@ -116,7 +116,7 @@ describe("animations", function() {
return overriddenAnimationRunner || defaultFakeAnimationRunner;
});
- return function($rootElement, $q, $animate, $$AnimateRunner, $$body) {
+ return function($rootElement, $q, $animate, $$AnimateRunner, $document) {
defaultFakeAnimationRunner = new $$AnimateRunner();
$animate.enabled(true);
@@ -126,10 +126,28 @@ describe("animations", function() {
$rootElement.append(parent);
$rootElement.append(parent2);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
};
}));
+ it("should not alter the provided options input in any way throughout the animation", inject(function($animate, $rootScope) {
+ var initialOptions = {
+ from: { height: '50px' },
+ to: { width: '50px' },
+ addClass: 'one',
+ removeClass: 'two'
+ };
+
+ var copiedOptions = copy(initialOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ var runner = $animate.enter(element, parent, null, copiedOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ $rootScope.$digest();
+ expect(copiedOptions).toEqual(initialOptions);
+ }));
+
it('should animate only the specified CSS className matched within $animateProvider.classNameFilter', function() {
module(function($animateProvider) {
$animateProvider.classNameFilter(/only-allow-this-animation/);
@@ -149,20 +167,24 @@ describe("animations", function() {
});
});
- they('should nullify both options.$prop when passed into an animation if it is not a string or an array', ['addClass', 'removeClass'], function(prop) {
+ they('should not apply the provided options.$prop value unless it\'s a string or string-based array', ['addClass', 'removeClass'], function(prop) {
inject(function($animate, $rootScope) {
+ var startingCssClasses = element.attr('class') || '';
+
var options1 = {};
options1[prop] = function() {};
$animate.enter(element, parent, null, options1);
- expect(options1[prop]).toBeFalsy();
+ expect(element.attr('class')).toEqual(startingCssClasses);
+
$rootScope.$digest();
var options2 = {};
options2[prop] = true;
$animate.leave(element, options2);
- expect(options2[prop]).toBeFalsy();
+ expect(element.attr('class')).toEqual(startingCssClasses);
+
$rootScope.$digest();
capturedAnimation = null;
@@ -170,11 +192,15 @@ describe("animations", function() {
var options3 = {};
if (prop === 'removeClass') {
element.addClass('fatias');
+ startingCssClasses = element.attr('class');
}
options3[prop] = ['fatias'];
$animate.enter(element, parent, null, options3);
- expect(options3[prop]).toBe('fatias');
+
+ $rootScope.$digest();
+
+ expect(element.attr('class')).not.toEqual(startingCssClasses);
});
});
@@ -749,7 +775,7 @@ describe("animations", function() {
}));
it("should disable all child animations for atleast one turn when a structural animation is issued",
- inject(function($animate, $rootScope, $compile, $$body, $rootElement, $$AnimateRunner) {
+ inject(function($animate, $rootScope, $compile, $document, $rootElement, $$AnimateRunner) {
element = $compile(
'' +
@@ -759,7 +785,7 @@ describe("animations", function() {
'
'
)($rootScope);
- $$body.append($rootElement);
+ jqLite($document[0].body).append($rootElement);
$rootElement.append(element);
var runner = new $$AnimateRunner();
@@ -808,47 +834,70 @@ describe("animations", function() {
expect(capturedAnimation[0]).toBe(element);
}));
- it('should skip all pre-digest queued child animations when a parent structural animation is triggered',
- inject(function($rootScope, $rootElement, $animate) {
+ describe('when a parent structural animation is triggered:', function() {
- parent.append(element);
+ it('should skip all pre-digest queued child animations',
+ inject(function($rootScope, $rootElement, $animate) {
- $animate.addClass(element, 'rumlow');
- $animate.move(parent, null, parent2);
+ parent.append(element);
- expect(capturedAnimation).toBeFalsy();
- expect(capturedAnimationHistory.length).toBe(0);
- $rootScope.$digest();
+ $animate.addClass(element, 'rumlow');
+ $animate.move(parent, null, parent2);
- expect(capturedAnimation[0]).toBe(parent);
- expect(capturedAnimationHistory.length).toBe(1);
- }));
+ expect(capturedAnimation).toBeFalsy();
+ expect(capturedAnimationHistory.length).toBe(0);
+ $rootScope.$digest();
- it('should end all ongoing post-digest child animations when a parent structural animation is triggered',
- inject(function($rootScope, $rootElement, $animate) {
+ expect(capturedAnimation[0]).toBe(parent);
+ expect(capturedAnimationHistory.length).toBe(1);
+ }));
- parent.append(element);
+ it('should end all ongoing post-digest child animations',
+ inject(function($rootScope, $rootElement, $animate) {
- $animate.addClass(element, 'rumlow');
- var isCancelled = false;
- overriddenAnimationRunner = extend(defaultFakeAnimationRunner, {
- end: function() {
- isCancelled = true;
- }
- });
+ parent.append(element);
- $rootScope.$digest();
- expect(capturedAnimation[0]).toBe(element);
- expect(isCancelled).toBe(false);
+ $animate.addClass(element, 'rumlow');
+ var isCancelled = false;
+ overriddenAnimationRunner = extend(defaultFakeAnimationRunner, {
+ end: function() {
+ isCancelled = true;
+ }
+ });
- // restore the default
- overriddenAnimationRunner = defaultFakeAnimationRunner;
- $animate.move(parent, null, parent2);
- $rootScope.$digest();
- expect(capturedAnimation[0]).toBe(parent);
+ $rootScope.$digest();
+ expect(capturedAnimation[0]).toBe(element);
+ expect(isCancelled).toBe(false);
- expect(isCancelled).toBe(true);
- }));
+ // restore the default
+ overriddenAnimationRunner = defaultFakeAnimationRunner;
+ $animate.move(parent, null, parent2);
+ $rootScope.$digest();
+ expect(capturedAnimation[0]).toBe(parent);
+
+ expect(isCancelled).toBe(true);
+ }));
+
+ it('should ignore children that have animation data-attributes but no animation data',
+ inject(function($rootScope, $rootElement, $animate) {
+
+ parent.append(element);
+
+ $animate.addClass(element, 'rumlow');
+
+ $rootScope.$digest();
+ expect(capturedAnimation[0]).toBe(element);
+
+ // If an element is cloned during an animation, the clone has the data-attributes indicating
+ // an animation
+ var clone = element.clone();
+ parent.append(clone);
+
+ $animate.move(parent, null, parent2);
+ $rootScope.$digest();
+ expect(capturedAnimation[0]).toBe(parent);
+ }));
+ });
it('should not end any child animations if a parent class-based animation is issued',
inject(function($rootScope, $rootElement, $animate) {
@@ -890,7 +939,6 @@ describe("animations", function() {
});
$rootScope.$digest();
- $animate.flush();
expect(capturedAnimation).toBeTruthy();
expect(runner1done).toBeFalsy();
@@ -910,7 +958,6 @@ describe("animations", function() {
});
$rootScope.$digest();
- $animate.flush();
expect(capturedAnimation).toBeTruthy();
expect(runner2done).toBeFalsy();
@@ -990,8 +1037,6 @@ describe("animations", function() {
var doneHandler = jasmine.createSpy('addClass done');
runner.done(doneHandler);
- $animate.flush();
-
expect(doneHandler).not.toHaveBeenCalled();
$animate.removeClass(element, 'active-class');
@@ -1011,8 +1056,6 @@ describe("animations", function() {
var doneHandler = jasmine.createSpy('addClass done');
runner.done(doneHandler);
- $animate.flush();
-
expect(doneHandler).not.toHaveBeenCalled();
$animate.addClass(element, 'active-class');
@@ -1284,8 +1327,8 @@ describe("animations", function() {
return new $$AnimateRunner();
};
});
- return function($rootElement, $$body, $animate) {
- $$body.append($rootElement);
+ return function($rootElement, $document, $animate) {
+ jqLite($document[0].body).append($rootElement);
parent = jqLite('
');
element = jqLite('
');
child = jqLite('
');
@@ -1388,40 +1431,75 @@ describe("animations", function() {
});
}));
- it('should allow an element to pinned elsewhere and still be available in animations',
- inject(function($animate, $compile, $$body, $rootElement, $rootScope) {
-
- var innerParent = jqLite('
');
- $$body.append(innerParent);
- innerParent.append($rootElement);
+ it('should throw if the arguments are not elements',
+ inject(function($animate, $compile, $document, $rootScope, $rootElement) {
var element = jqLite('
');
- $$body.append(element);
- $animate.addClass(element, 'red');
- $rootScope.$digest();
- expect(capturedAnimation).toBeFalsy();
+ expect(function() {
+ $animate.pin(element);
+ }).toThrowMinErr('ng', 'areq', 'Argument \'parentElement\' is not an element');
- $animate.pin(element, $rootElement);
-
- $animate.addClass(element, 'blue');
- $rootScope.$digest();
- expect(capturedAnimation).toBeTruthy();
+ expect(function() {
+ $animate.pin(null, $rootElement);
+ }).toThrowMinErr('ng', 'areq', 'Argument \'element\' is not an element');
dealoc(element);
}));
+
+ they('should animate an element inside a pinned element that is the $prop element',
+ ['same', 'parent', 'grandparent'],
+ function(elementRelation) {
+ inject(function($animate, $compile, $document, $rootElement, $rootScope) {
+
+ var pinElement, animateElement;
+
+ var innerParent = jqLite('
');
+ jqLite($document[0].body).append(innerParent);
+ innerParent.append($rootElement);
+
+ switch (elementRelation) {
+ case 'same':
+ pinElement = jqLite('
');
+ break;
+ case 'parent':
+ pinElement = jqLite('');
+ break;
+ case 'grandparent':
+ pinElement = jqLite('');
+ break;
+ }
+
+ jqLite($document[0].body).append(pinElement);
+ animateElement = jqLite($document[0].getElementById('animate'));
+
+ $animate.addClass(animateElement, 'red');
+ $rootScope.$digest();
+ expect(capturedAnimation).toBeFalsy();
+
+ // Pin the element to the app root to enable animations
+ $animate.pin(pinElement, $rootElement);
+
+ $animate.addClass(animateElement, 'blue');
+ $rootScope.$digest();
+ expect(capturedAnimation).toBeTruthy();
+
+ dealoc(pinElement);
+ });
+ });
+
it('should adhere to the disabled state of the hosted parent when an element is pinned',
- inject(function($animate, $compile, $$body, $rootElement, $rootScope) {
+ inject(function($animate, $compile, $document, $rootElement, $rootScope) {
var innerParent = jqLite('
');
- $$body.append(innerParent);
+ jqLite($document[0].body).append(innerParent);
innerParent.append($rootElement);
var innerChild = jqLite('
');
$rootElement.append(innerChild);
var element = jqLite('
');
- $$body.append(element);
+ jqLite($document[0].body).append(element);
$animate.pin(element, innerChild);
@@ -1456,17 +1534,17 @@ describe("animations", function() {
};
});
- return function($$body, $rootElement, $animate) {
- $$body.append($rootElement);
+ return function($document, $rootElement, $animate) {
+ jqLite($document[0].body).append($rootElement);
$animate.enabled(true);
};
}));
it('should trigger a callback for an enter animation',
- inject(function($animate, $rootScope, $rootElement, $$body) {
+ inject(function($animate, $rootScope, $rootElement, $document) {
var callbackTriggered = false;
- $animate.on('enter', $$body, function() {
+ $animate.on('enter', jqLite($document[0].body), function() {
callbackTriggered = true;
});
@@ -1480,12 +1558,12 @@ describe("animations", function() {
}));
it('should fire the callback with the signature of (element, phase, data)',
- inject(function($animate, $rootScope, $rootElement, $$body) {
+ inject(function($animate, $rootScope, $rootElement, $document) {
var capturedElement;
var capturedPhase;
var capturedData;
- $animate.on('enter', $$body,
+ $animate.on('enter', jqLite($document[0].body),
function(element, phase, data) {
capturedElement = element;
@@ -1519,7 +1597,6 @@ describe("animations", function() {
element = jqLite('
');
$animate.enter(element, $rootElement);
$rootScope.$digest();
- $animate.flush();
expect(callbackTriggered).toBe(false);
}));
@@ -1544,13 +1621,13 @@ describe("animations", function() {
}));
it('should remove all the event-based event listeners when $animate.off(event) is called',
- inject(function($animate, $rootScope, $rootElement, $$body) {
+ inject(function($animate, $rootScope, $rootElement, $document) {
element = jqLite('
');
var count = 0;
$animate.on('enter', element, counter);
- $animate.on('enter', $$body, counter);
+ $animate.on('enter', jqLite($document[0].body), counter);
function counter(element, phase) {
count++;
@@ -1572,13 +1649,13 @@ describe("animations", function() {
}));
it('should remove the container-based event listeners when $animate.off(event, container) is called',
- inject(function($animate, $rootScope, $rootElement, $$body) {
+ inject(function($animate, $rootScope, $rootElement, $document) {
element = jqLite('
');
var count = 0;
$animate.on('enter', element, counter);
- $animate.on('enter', $$body, counter);
+ $animate.on('enter', jqLite($document[0].body), counter);
function counter(element, phase) {
if (phase === 'start') {
@@ -1592,7 +1669,7 @@ describe("animations", function() {
expect(count).toBe(2);
- $animate.off('enter', $$body);
+ $animate.off('enter', jqLite($document[0].body));
$animate.enter(element, $rootElement);
$rootScope.$digest();
@@ -1638,13 +1715,13 @@ describe("animations", function() {
}));
it('should fire a `start` callback when the animation starts with the matching element',
- inject(function($animate, $rootScope, $rootElement, $$body) {
+ inject(function($animate, $rootScope, $rootElement, $document) {
element = jqLite('
');
var capturedState;
var capturedElement;
- $animate.on('enter', $$body, function(element, phase) {
+ $animate.on('enter', jqLite($document[0].body), function(element, phase) {
capturedState = phase;
capturedElement = element;
});
@@ -1658,13 +1735,13 @@ describe("animations", function() {
}));
it('should fire a `close` callback when the animation ends with the matching element',
- inject(function($animate, $rootScope, $rootElement, $$body) {
+ inject(function($animate, $rootScope, $rootElement, $document) {
element = jqLite('
');
var capturedState;
var capturedElement;
- $animate.on('enter', $$body, function(element, phase) {
+ $animate.on('enter', jqLite($document[0].body), function(element, phase) {
capturedState = phase;
capturedElement = element;
});
@@ -1707,6 +1784,69 @@ describe("animations", function() {
expect(count).toBe(1);
}));
+ it('should always detect registered callbacks after one postDigest has fired',
+ inject(function($animate, $rootScope, $rootElement) {
+
+ element = jqLite('
');
+
+ var spy = jasmine.createSpy();
+ registerCallback();
+
+ var runner = $animate.enter(element, $rootElement);
+ registerCallback();
+
+ $rootScope.$digest();
+ registerCallback();
+
+ expect(spy.callCount).toBe(0);
+ $animate.flush();
+
+ // this is not 3 since the 3rd callback
+ // was added after the first callback
+ // was fired
+ expect(spy.callCount).toBe(2);
+
+ spy.reset();
+ runner.end();
+
+ $animate.flush();
+
+ // now we expect all three callbacks
+ // to fire when the animation ends since
+ // the callback detection happens again
+ expect(spy.callCount).toBe(3);
+
+ function registerCallback() {
+ $animate.on('enter', element, spy);
+ }
+ }));
+
+ it('should use RAF if there are detected callbacks within the hierachy of the element being animated',
+ inject(function($animate, $rootScope, $rootElement, $$rAF) {
+
+ var runner;
+
+ element = jqLite('
');
+ runner = $animate.enter(element, $rootElement);
+ $rootScope.$digest();
+ runner.end();
+
+ assertRAFsUsed(false);
+
+ var spy = jasmine.createSpy();
+ $animate.on('leave', element, spy);
+
+ runner = $animate.leave(element, $rootElement);
+ $rootScope.$digest();
+ runner.end();
+
+ assertRAFsUsed(true);
+
+ function assertRAFsUsed(bool) {
+ expect($$rAF.queue.length)[bool ? 'toBeGreaterThan' : 'toBe'](0);
+ }
+ }));
+
it('leave: should remove the element even if another animation is called after',
inject(function($animate, $rootScope, $rootElement) {
@@ -1725,5 +1865,86 @@ describe("animations", function() {
expect(isElementRemoved).toBe(true);
}));
+ it('leave : should trigger a callback for an leave animation',
+ inject(function($animate, $rootScope, $$rAF, $rootElement, $document) {
+
+ var callbackTriggered = false;
+ $animate.on('leave', jqLite($document[0].body), function() {
+ callbackTriggered = true;
+ });
+
+ element = jqLite('
');
+ $rootElement.append(element);
+ $animate.leave(element, $rootElement);
+ $rootScope.$digest();
+
+ $$rAF.flush();
+
+ expect(callbackTriggered).toBe(true);
+ }));
+
+ it('leave : should not fire a callback if the element is outside of the given container',
+ inject(function($animate, $rootScope, $$rAF, $rootElement) {
+
+ var callbackTriggered = false;
+ var innerContainer = jqLite('
');
+ $rootElement.append(innerContainer);
+
+ $animate.on('leave', innerContainer,
+ function(element, phase, data) {
+ callbackTriggered = true;
+ });
+
+ element = jqLite('
');
+ $rootElement.append(element);
+ $animate.leave(element, $rootElement);
+ $rootScope.$digest();
+
+ expect(callbackTriggered).toBe(false);
+ }));
+
+ it('leave : should fire a `start` callback when the animation starts with the matching element',
+ inject(function($animate, $rootScope, $$rAF, $rootElement, $document) {
+
+ element = jqLite('
');
+
+ var capturedState;
+ var capturedElement;
+ $animate.on('leave', jqLite($document[0].body), function(element, phase) {
+ capturedState = phase;
+ capturedElement = element;
+ });
+
+ $rootElement.append(element);
+ $animate.leave(element, $rootElement);
+ $rootScope.$digest();
+ $$rAF.flush();
+
+ expect(capturedState).toBe('start');
+ expect(capturedElement).toBe(element);
+ }));
+
+ it('leave : should fire a `close` callback when the animation ends with the matching element',
+ inject(function($animate, $rootScope, $$rAF, $rootElement, $document) {
+
+ element = jqLite('
');
+
+ var capturedState;
+ var capturedElement;
+ $animate.on('leave', jqLite($document[0].body), function(element, phase) {
+ capturedState = phase;
+ capturedElement = element;
+ });
+
+ $rootElement.append(element);
+ var runner = $animate.leave(element, $rootElement);
+ $rootScope.$digest();
+ runner.end();
+ $$rAF.flush();
+
+ expect(capturedState).toBe('close');
+ expect(capturedElement).toBe(element);
+ }));
+
});
});
diff --git a/test/ngAnimate/animationSpec.js b/test/ngAnimate/animationSpec.js
index ff5d998076cf..04ba3e5949a3 100644
--- a/test/ngAnimate/animationSpec.js
+++ b/test/ngAnimate/animationSpec.js
@@ -836,8 +836,8 @@ describe('$$animation', function() {
element = jqLite('
');
parent = jqLite('
');
- return function($$AnimateRunner, $q, $rootElement, $$body) {
- $$body.append($rootElement);
+ return function($$AnimateRunner, $rootElement, $document) {
+ jqLite($document[0].body).append($rootElement);
$rootElement.append(parent);
mockedDriverFn = function(element, method, options, domOperation) {
diff --git a/test/ngAnimate/bodySpec.js b/test/ngAnimate/bodySpec.js
deleted file mode 100644
index f87dabf1e355..000000000000
--- a/test/ngAnimate/bodySpec.js
+++ /dev/null
@@ -1,9 +0,0 @@
-'use strict';
-
-describe('$$body', function() {
- beforeEach(module('ngAnimate'));
-
- it("should inject $document", inject(function($$body, $document) {
- expect($$body).toEqual(jqLite($document[0].body));
- }));
-});
diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js
index 5e1e335b72f4..feb28e581456 100644
--- a/test/ngAnimate/integrationSpec.js
+++ b/test/ngAnimate/integrationSpec.js
@@ -7,12 +7,12 @@ describe('ngAnimate integration tests', function() {
var element, html, ss;
beforeEach(module(function() {
- return function($rootElement, $document, $$body, $window, $animate) {
+ return function($rootElement, $document, $window, $animate) {
$animate.enabled(true);
ss = createMockStyleSheet($document, $window);
- var body = $$body;
+ var body = jqLite($document[0].body);
html = function(element) {
body.append($rootElement);
$rootElement.append(element);
@@ -319,6 +319,38 @@ describe('ngAnimate integration tests', function() {
}
});
});
+
+ it('should trigger callbacks at the start and end of an animation',
+ inject(function($rootScope, $rootElement, $animate, $compile) {
+
+ ss.addRule('.animate-me', 'transition:2s linear all;');
+
+ var parent = jqLite('');
+ element = parent.find('div');
+ html(parent);
+
+ $compile(parent)($rootScope);
+ $rootScope.$digest();
+
+ var spy = jasmine.createSpy();
+ $animate.on('enter', parent, spy);
+
+ $rootScope.exp = true;
+ $rootScope.$digest();
+
+ element = parent.find('div');
+
+ $animate.flush();
+
+ expect(spy.callCount).toBe(1);
+
+ browserTrigger(element, 'transitionend', { timeStamp: Date.now(), elapsedTime: 2 });
+ $animate.flush();
+
+ expect(spy.callCount).toBe(2);
+
+ dealoc(element);
+ }));
});
describe('JS animations', function() {
@@ -530,5 +562,50 @@ describe('ngAnimate integration tests', function() {
}
});
});
+
+ it("should not alter the provided options values in anyway throughout the animation", function() {
+ var animationSpy = jasmine.createSpy();
+ module(function($animateProvider) {
+ $animateProvider.register('.this-animation', function() {
+ return {
+ enter: function(element, done) {
+ animationSpy();
+ done();
+ }
+ };
+ });
+ });
+
+ inject(function($animate, $rootScope, $compile) {
+ element = jqLite('
');
+ var child = jqLite('
');
+
+ var initialOptions = {
+ from: { height: '50px' },
+ to: { width: '100px' },
+ addClass: 'one',
+ removeClass: 'two'
+ };
+
+ var copiedOptions = copy(initialOptions);
+ expect(copiedOptions).toEqual(initialOptions);
+
+ html(element);
+ $compile(element)($rootScope);
+
+ $animate.enter(child, element, null, copiedOptions);
+ $rootScope.$digest();
+ expect(copiedOptions).toEqual(initialOptions);
+
+ $animate.flush();
+ expect(copiedOptions).toEqual(initialOptions);
+
+ expect(child).toHaveClass('one');
+ expect(child).not.toHaveClass('two');
+
+ expect(child.attr('style')).toContain('100px');
+ expect(child.attr('style')).toContain('50px');
+ });
+ });
});
});
diff --git a/test/ngAria/ariaSpec.js b/test/ngAria/ariaSpec.js
index 911e6aab73d5..73b015f710c3 100644
--- a/test/ngAria/ariaSpec.js
+++ b/test/ngAria/ariaSpec.js
@@ -616,16 +616,18 @@ describe('$aria', function() {
describe('tabindex', function() {
beforeEach(injectScopeAndCompiler);
- it('should not attach to native controls', function() {
- var element = [
- $compile(" ")(scope),
- $compile("")(scope),
- $compile(" ")(scope),
- $compile("")(scope),
- $compile(" ")(scope),
- $compile(" ")(scope)
- ];
- expectAriaAttrOnEachElement(element, 'tabindex', undefined);
+ they('should not attach to native control $prop', {
+ 'button': " ",
+ 'a': " ",
+ 'input[text]': " ",
+ 'input[radio]': " ",
+ 'input[checkbox]': " ",
+ 'textarea': "",
+ 'select': " ",
+ 'details': " "
+ }, function(html) {
+ compileElement(html);
+ expect(element.attr('tabindex')).toBeUndefined();
});
it('should not attach to random ng-model elements', function() {
diff --git a/test/ngMessages/messagesSpec.js b/test/ngMessages/messagesSpec.js
index 037175031ded..3d4f1100f06c 100644
--- a/test/ngMessages/messagesSpec.js
+++ b/test/ngMessages/messagesSpec.js
@@ -372,6 +372,50 @@ describe('ngMessages', function() {
expect(trim(element.text())).toEqual("Enter something");
}));
+ // issue #12856
+ it('should only detach the message object that is associated with the message node being removed',
+ inject(function($rootScope, $compile, $animate) {
+
+ // We are going to spy on the `leave` method to give us control over
+ // when the element is actually removed
+ spyOn($animate, 'leave');
+
+ // Create a basic ng-messages set up
+ element = $compile('' +
+ '
Enter something
' +
+ '
')($rootScope);
+
+ // Trigger the message to be displayed
+ $rootScope.col = { primary: true };
+ $rootScope.$digest();
+ expect(messageChildren(element).length).toEqual(1);
+ var oldMessageNode = messageChildren(element)[0];
+
+ // Remove the message
+ $rootScope.col = { primary: undefined };
+ $rootScope.$digest();
+
+ // Since we have spied on the `leave` method, the message node is still in the DOM
+ expect($animate.leave).toHaveBeenCalledOnce();
+ var nodeToRemove = $animate.leave.mostRecentCall.args[0][0];
+ expect(nodeToRemove).toBe(oldMessageNode);
+ $animate.leave.reset();
+
+ // Add the message back in
+ $rootScope.col = { primary: true };
+ $rootScope.$digest();
+
+ // Simulate the animation completing on the node
+ jqLite(nodeToRemove).remove();
+
+ // We should not get another call to `leave`
+ expect($animate.leave).not.toHaveBeenCalled();
+
+ // There should only be the new message node
+ expect(messageChildren(element).length).toEqual(1);
+ var newMessageNode = messageChildren(element)[0];
+ expect(newMessageNode).not.toBe(oldMessageNode);
+ }));
it('should render animations when the active/inactive classes are added/removed', function() {
module('ngAnimate');
diff --git a/test/ngResource/resourceSpec.js b/test/ngResource/resourceSpec.js
index 0fa7fc52959b..560f71ac1f3d 100644
--- a/test/ngResource/resourceSpec.js
+++ b/test/ngResource/resourceSpec.js
@@ -156,7 +156,7 @@ describe("resource", function() {
});
- it('should ignore slashes of undefinend parameters', function() {
+ it('should ignore slashes of undefined parameters', function() {
var R = $resource('/Path/:a/:b/:c');
$httpBackend.when('GET', '/Path').respond('{}');
@@ -181,7 +181,7 @@ describe("resource", function() {
R.get({a:6, b:7, c:8});
});
- it('should not ignore leading slashes of undefinend parameters that have non-slash trailing sequence', function() {
+ it('should not ignore leading slashes of undefined parameters that have non-slash trailing sequence', function() {
var R = $resource('/Path/:a.foo/:b.bar/:c.baz');
$httpBackend.when('GET', '/Path/.foo/.bar.baz').respond('{}');
@@ -242,7 +242,7 @@ describe("resource", function() {
});
it('should not encode @ in url params', function() {
- //encodeURIComponent is too agressive and doesn't follow http://www.ietf.org/rfc/rfc3986.txt
+ //encodeURIComponent is too aggressive and doesn't follow http://www.ietf.org/rfc/rfc3986.txt
//with regards to the character set (pchar) allowed in path segments
//so we need this test to make sure that we don't over-encode the params and break stuff like
//buzz api which uses @self
@@ -1355,6 +1355,48 @@ describe('resource', function() {
/^\[\$resource:badcfg\] Error in resource configuration for action `get`\. Expected response to contain an object but got an array \(Request: GET \/Customer\/123\)/
);
});
+});
+
+describe('resource with promises as `timeout`', function() {
+ var httpSpy;
+ var $httpBackend;
+ var $resource;
+
+ beforeEach(module('ngResource', function($provide) {
+ $provide.decorator('$http', function($delegate) {
+ httpSpy = jasmine.createSpy('$http').andCallFake($delegate);
+ return httpSpy;
+ });
+ }));
+
+ beforeEach(inject(function(_$httpBackend_, _$resource_) {
+ $httpBackend = _$httpBackend_;
+ $resource = _$resource_;
+ }));
+ it('should ignore non-numeric timeouts in actions and log a $debug message',
+ inject(function($log, $q) {
+ spyOn($log, 'debug');
+ $httpBackend.whenGET('/CreditCard').respond({});
+
+ var CreditCard = $resource('/CreditCard', {}, {
+ get: {
+ method: 'GET',
+ timeout: $q.defer().promise
+ }
+ });
+
+ CreditCard.get();
+ $httpBackend.flush();
+ expect(httpSpy).toHaveBeenCalledOnce();
+ expect(httpSpy.calls[0].args[0].timeout).toBeUndefined();
+ expect($log.debug).toHaveBeenCalledOnceWith('ngResource:\n' +
+ ' Only numeric values are allowed as `timeout`.\n' +
+ ' Promises are not supported in $resource, because the same value would ' +
+ 'be used for multiple requests.\n' +
+ ' If you need support for cancellable $resource actions, you should ' +
+ 'upgrade to version 1.5 or higher.');
+ })
+ );
});