diff --git a/Gemfile b/Gemfile
index 1b62b2e9..2a5e60a0 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,3 +6,5 @@ gem 'rack-rewrite'
gem 'sinatra'
gem 'sinatra-param'
gem 'puma'
+gem 'rake'
+gem 'pry'
diff --git a/Gemfile.lock b/Gemfile.lock
index 7a136649..b53f6861 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,25 +1,35 @@
GEM
remote: https://rubygems.org/
specs:
- puma (2.10.2)
+ coderay (1.1.0)
+ method_source (0.8.2)
+ pry (0.10.1)
+ coderay (~> 1.1.0)
+ method_source (~> 0.8.1)
+ slop (~> 3.4)
+ puma (2.11.0)
rack (>= 1.1, < 2.0)
rack (1.6.0)
rack-protection (1.5.3)
rack
rack-rewrite (1.5.1)
+ rake (10.4.2)
sinatra (1.4.5)
rack (~> 1.4)
rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4)
- sinatra-param (1.2.2)
+ sinatra-param (1.3.1)
sinatra (~> 1.3)
+ slop (3.6.0)
tilt (1.4.1)
PLATFORMS
ruby
DEPENDENCIES
+ pry
puma
rack-rewrite
+ rake
sinatra
sinatra-param
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 00000000..5b918ac8
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,27 @@
+require "bundler"
+require 'rake'
+require 'rake/clean'
+
+include Rake::DSL
+
+# All the bacon specifications
+PROJECT_SPECS = Dir.glob(File.expand_path('../spec/**/*.rb', __FILE__))
+PROJECT_SPECS.reject! { |e| e =~ /helper\.rb/ }
+PROJECT_SPECS.reject! { |e| e =~ /init\.rb/ }
+
+CLEAN.include %w[
+ **/.*.sw?
+ *.gem
+ .config
+ **/*~
+ **/{vttroute-*.db,cache.yaml}
+ *.yaml
+ pkg
+ rdoc
+ public/doc
+ *coverage*
+]
+
+Dir.glob(File.expand_path('../tasks/*.rake', __FILE__)).each do |f|
+ import(f)
+end
diff --git a/lib/ledger.rb b/lib/ledger.rb
index 85981e1a..1d942a05 100644
--- a/lib/ledger.rb
+++ b/lib/ledger.rb
@@ -75,7 +75,7 @@ module Ledger
end
end
- def budget( period, categories )
+ def budget( period = nil, categories = '' )
period = period.nil? ? '' : "-p '#{period}'"
budgeted = run( "--flat --no-total --budget --exchange '#{CURRENCY}' #{period}", 'budget', categories )
diff --git a/public/app/bower_components/angular-animate/.bower.json b/public/app/bower_components/angular-animate/.bower.json
index f197901c..e7cc7575 100644
--- a/public/app/bower_components/angular-animate/.bower.json
+++ b/public/app/bower_components/angular-animate/.bower.json
@@ -1,17 +1,17 @@
{
"name": "angular-animate",
- "version": "1.3.1",
+ "version": "1.3.12",
"main": "./angular-animate.js",
"ignore": [],
"dependencies": {
- "angular": "1.3.1"
+ "angular": "1.3.12"
},
"homepage": "https://github.com/angular/bower-angular-animate",
- "_release": "1.3.1",
+ "_release": "1.3.12",
"_resolution": {
"type": "version",
- "tag": "v1.3.1",
- "commit": "3b55cee18abd8aafab26456b59c663afb4263a1c"
+ "tag": "v1.3.12",
+ "commit": "15ed4de8c25663d412b0c953b0d70c1133e9fd31"
},
"_source": "git://github.com/angular/bower-angular-animate.git",
"_target": "~1.3.1",
diff --git a/public/app/bower_components/angular-animate/README.md b/public/app/bower_components/angular-animate/README.md
index 50ebe819..930b5dcc 100644
--- a/public/app/bower_components/angular-animate/README.md
+++ b/public/app/bower_components/angular-animate/README.md
@@ -17,7 +17,7 @@ npm install angular-animate
Add a `
+
```
Then add `ngAnimate` as a dependency for your app:
@@ -38,7 +38,7 @@ bower install angular-animate
Then add a `
+
```
Then add `ngAnimate` as a dependency for your app:
diff --git a/public/app/bower_components/angular-animate/angular-animate.js b/public/app/bower_components/angular-animate/angular-animate.js
index 5a56c7c2..98e39bc1 100644
--- a/public/app/bower_components/angular-animate/angular-animate.js
+++ b/public/app/bower_components/angular-animate/angular-animate.js
@@ -1,5 +1,5 @@
/**
- * @license AngularJS v1.3.1
+ * @license AngularJS v1.3.12
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -19,7 +19,7 @@
* # Usage
*
* To see animations in action, all that is required is to define the appropriate CSS classes
- * or to register a JavaScript animation via the myModule.animation() function. The directives that support animation automatically are:
+ * or to register a JavaScript animation via the `myModule.animation()` function. The directives that support animation automatically are:
* `ngRepeat`, `ngInclude`, `ngIf`, `ngSwitch`, `ngShow`, `ngHide`, `ngView` and `ngClass`. Custom directives can take advantage of animation
* by using the `$animate` service.
*
@@ -161,8 +161,8 @@
* ### Structural transition animations
*
* Structural transitions (such as enter, leave and move) will always apply a `0s none` transition
- * value to force the browser into rendering the styles defined in the setup (.ng-enter, .ng-leave
- * or .ng-move) class. This means that any active transition animations operating on the element
+ * value to force the browser into rendering the styles defined in the setup (`.ng-enter`, `.ng-leave`
+ * or `.ng-move`) class. This means that any active transition animations operating on the element
* will be cut off to make way for the enter, leave or move animation.
*
* ### Class-based transition animations
@@ -245,7 +245,7 @@
* You then configure `$animate` to enforce this prefix:
*
* ```js
- * $animateProvider.classNamePrefix(/animate-/);
+ * $animateProvider.classNameFilter(/animate-/);
* ```
*
*
@@ -479,11 +479,12 @@ angular.module('ngAnimate', ['ng'])
function isMatchingElement(elm1, elm2) {
return extractElementNode(elm1) == extractElementNode(elm2);
}
-
+ var $$jqLite;
$provide.decorator('$animate',
- ['$delegate', '$$q', '$injector', '$sniffer', '$rootElement', '$$asyncCallback', '$rootScope', '$document', '$templateRequest',
- function($delegate, $$q, $injector, $sniffer, $rootElement, $$asyncCallback, $rootScope, $document, $templateRequest) {
+ ['$delegate', '$$q', '$injector', '$sniffer', '$rootElement', '$$asyncCallback', '$rootScope', '$document', '$templateRequest', '$$jqLite',
+ function($delegate, $$q, $injector, $sniffer, $rootElement, $$asyncCallback, $rootScope, $document, $templateRequest, $$$jqLite) {
+ $$jqLite = $$$jqLite;
$rootElement.data(NG_ANIMATE_STATE, rootAnimateState);
// Wait until all directive and route-related templates are downloaded and
@@ -838,7 +839,8 @@ angular.module('ngAnimate', ['ng'])
* promise that was returned when the animation was started.
*
* ```js
- * var promise = $animate.addClass(element, 'super-long-animation').then(function() {
+ * var promise = $animate.addClass(element, 'super-long-animation');
+ * promise.then(function() {
* //this will still be called even if cancelled
* });
*
@@ -877,22 +879,22 @@ angular.module('ngAnimate', ['ng'])
*
* Below is a breakdown of each step that occurs during the `animate` animation:
*
- * | Animation Step | What the element class attribute looks like |
- * |-------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
- * | 1. $animate.animate(...) is called | class="my-animation" |
- * | 2. $animate waits for the next digest to start the animation | class="my-animation ng-animate" |
- * | 3. $animate runs the JavaScript-defined animations detected on the element | class="my-animation ng-animate" |
- * | 4. the className class value is added to the element | class="my-animation ng-animate className" |
- * | 5. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation ng-animate className" |
- * | 6. $animate blocks all CSS transitions on the element to ensure the .className class styling is applied right away| class="my-animation ng-animate className" |
- * | 7. $animate applies the provided collection of `from` CSS styles to the element | class="my-animation ng-animate className" |
- * | 8. $animate waits for a single animation frame (this performs a reflow) | class="my-animation ng-animate className" |
- * | 9. $animate removes the CSS transition block placed on the element | class="my-animation ng-animate className" |
- * | 10. the className-active class is added (this triggers the CSS transition/animation) | class="my-animation ng-animate className className-active" |
- * | 11. $animate applies the collection of `to` CSS styles to the element which are then handled by the transition | class="my-animation ng-animate className className-active" |
- * | 12. $animate waits for the animation to complete (via events and timeout) | class="my-animation ng-animate className className-active" |
- * | 13. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
- * | 14. The returned promise is resolved. | class="my-animation" |
+ * | Animation Step | What the element class attribute looks like |
+ * |-----------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
+ * | 1. `$animate.animate(...)` is called | `class="my-animation"` |
+ * | 2. `$animate` waits for the next digest to start the animation | `class="my-animation ng-animate"` |
+ * | 3. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation ng-animate"` |
+ * | 4. the `className` class value is added to the element | `class="my-animation ng-animate className"` |
+ * | 5. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate className"` |
+ * | 6. `$animate` blocks all CSS transitions on the element to ensure the `.className` class styling is applied right away| `class="my-animation ng-animate className"` |
+ * | 7. `$animate` applies the provided collection of `from` CSS styles to the element | `class="my-animation ng-animate className"` |
+ * | 8. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation ng-animate className"` |
+ * | 9. `$animate` removes the CSS transition block placed on the element | `class="my-animation ng-animate className"` |
+ * | 10. the `className-active` class is added (this triggers the CSS transition/animation) | `class="my-animation ng-animate className className-active"` |
+ * | 11. `$animate` applies the collection of `to` CSS styles to the element which are then handled by the transition | `class="my-animation ng-animate className className-active"` |
+ * | 12. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate className className-active"` |
+ * | 13. The animation ends and all generated CSS classes are removed from the element | `class="my-animation"` |
+ * | 14. The returned promise is resolved. | `class="my-animation"` |
*
* @param {DOMElement} element the element that will be the focus of the enter animation
* @param {object} from a collection of CSS styles that will be applied to the element at the start of the animation
@@ -923,21 +925,21 @@ angular.module('ngAnimate', ['ng'])
*
* Below is a breakdown of each step that occurs during enter animation:
*
- * | Animation Step | What the element class attribute looks like |
- * |-------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
- * | 1. $animate.enter(...) is called | class="my-animation" |
- * | 2. element is inserted into the parentElement element or beside the afterElement element | class="my-animation" |
- * | 3. $animate waits for the next digest to start the animation | class="my-animation ng-animate" |
- * | 4. $animate runs the JavaScript-defined animations detected on the element | class="my-animation ng-animate" |
- * | 5. the .ng-enter class is added to the element | class="my-animation ng-animate ng-enter" |
- * | 6. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation ng-animate ng-enter" |
- * | 7. $animate blocks all CSS transitions on the element to ensure the .ng-enter class styling is applied right away | class="my-animation ng-animate ng-enter" |
- * | 8. $animate waits for a single animation frame (this performs a reflow) | class="my-animation ng-animate ng-enter" |
- * | 9. $animate removes the CSS transition block placed on the element | class="my-animation ng-animate ng-enter" |
- * | 10. the .ng-enter-active class is added (this triggers the CSS transition/animation) | class="my-animation ng-animate ng-enter ng-enter-active" |
- * | 11. $animate waits for the animation to complete (via events and timeout) | class="my-animation ng-animate ng-enter ng-enter-active" |
- * | 12. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
- * | 13. The returned promise is resolved. | class="my-animation" |
+ * | Animation Step | What the element class attribute looks like |
+ * |-----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
+ * | 1. `$animate.enter(...)` is called | `class="my-animation"` |
+ * | 2. element is inserted into the `parentElement` element or beside the `afterElement` element | `class="my-animation"` |
+ * | 3. `$animate` waits for the next digest to start the animation | `class="my-animation ng-animate"` |
+ * | 4. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation ng-animate"` |
+ * | 5. the `.ng-enter` class is added to the element | `class="my-animation ng-animate ng-enter"` |
+ * | 6. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate ng-enter"` |
+ * | 7. `$animate` blocks all CSS transitions on the element to ensure the `.ng-enter` class styling is applied right away | `class="my-animation ng-animate ng-enter"` |
+ * | 8. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation ng-animate ng-enter"` |
+ * | 9. `$animate` removes the CSS transition block placed on the element | `class="my-animation ng-animate ng-enter"` |
+ * | 10. the `.ng-enter-active` class is added (this triggers the CSS transition/animation) | `class="my-animation ng-animate ng-enter ng-enter-active"` |
+ * | 11. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate ng-enter ng-enter-active"` |
+ * | 12. The animation ends and all generated CSS classes are removed from the element | `class="my-animation"` |
+ * | 13. The returned promise is resolved. | `class="my-animation"` |
*
* @param {DOMElement} element the element that will be the focus of the enter animation
* @param {DOMElement} parentElement the parent element of the element that will be the focus of the enter animation
@@ -969,21 +971,21 @@ angular.module('ngAnimate', ['ng'])
*
* Below is a breakdown of each step that occurs during leave animation:
*
- * | Animation Step | What the element class attribute looks like |
- * |-------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
- * | 1. $animate.leave(...) is called | class="my-animation" |
- * | 2. $animate runs the JavaScript-defined animations detected on the element | class="my-animation ng-animate" |
- * | 3. $animate waits for the next digest to start the animation | class="my-animation ng-animate" |
- * | 4. the .ng-leave class is added to the element | class="my-animation ng-animate ng-leave" |
- * | 5. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation ng-animate ng-leave" |
- * | 6. $animate blocks all CSS transitions on the element to ensure the .ng-leave class styling is applied right away | class="my-animation ng-animate ng-leave” |
- * | 7. $animate waits for a single animation frame (this performs a reflow) | class="my-animation ng-animate ng-leave" |
- * | 8. $animate removes the CSS transition block placed on the element | class="my-animation ng-animate ng-leave” |
- * | 9. the .ng-leave-active class is added (this triggers the CSS transition/animation) | class="my-animation ng-animate ng-leave ng-leave-active" |
- * | 10. $animate waits for the animation to complete (via events and timeout) | class="my-animation ng-animate ng-leave ng-leave-active" |
- * | 11. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
- * | 12. The element is removed from the DOM | ... |
- * | 13. The returned promise is resolved. | ... |
+ * | Animation Step | What the element class attribute looks like |
+ * |-----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
+ * | 1. `$animate.leave(...)` is called | `class="my-animation"` |
+ * | 2. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation ng-animate"` |
+ * | 3. `$animate` waits for the next digest to start the animation | `class="my-animation ng-animate"` |
+ * | 4. the `.ng-leave` class is added to the element | `class="my-animation ng-animate ng-leave"` |
+ * | 5. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate ng-leave"` |
+ * | 6. `$animate` blocks all CSS transitions on the element to ensure the `.ng-leave` class styling is applied right away | `class="my-animation ng-animate ng-leave"` |
+ * | 7. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation ng-animate ng-leave"` |
+ * | 8. `$animate` removes the CSS transition block placed on the element | `class="my-animation ng-animate ng-leave"` |
+ * | 9. the `.ng-leave-active` class is added (this triggers the CSS transition/animation) | `class="my-animation ng-animate ng-leave ng-leave-active"` |
+ * | 10. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate ng-leave ng-leave-active"` |
+ * | 11. The animation ends and all generated CSS classes are removed from the element | `class="my-animation"` |
+ * | 12. The element is removed from the DOM | ... |
+ * | 13. The returned promise is resolved. | ... |
*
* @param {DOMElement} element the element that will be the focus of the leave animation
* @param {object=} options an optional collection of styles that will be picked up by the CSS transition/animation
@@ -1014,21 +1016,21 @@ angular.module('ngAnimate', ['ng'])
*
* Below is a breakdown of each step that occurs during move animation:
*
- * | Animation Step | What the element class attribute looks like |
- * |------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
- * | 1. $animate.move(...) is called | class="my-animation" |
- * | 2. element is moved into the parentElement element or beside the afterElement element | class="my-animation" |
- * | 3. $animate waits for the next digest to start the animation | class="my-animation ng-animate" |
- * | 4. $animate runs the JavaScript-defined animations detected on the element | class="my-animation ng-animate" |
- * | 5. the .ng-move class is added to the element | class="my-animation ng-animate ng-move" |
- * | 6. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation ng-animate ng-move" |
- * | 7. $animate blocks all CSS transitions on the element to ensure the .ng-move class styling is applied right away | class="my-animation ng-animate ng-move” |
- * | 8. $animate waits for a single animation frame (this performs a reflow) | class="my-animation ng-animate ng-move" |
- * | 9. $animate removes the CSS transition block placed on the element | class="my-animation ng-animate ng-move” |
- * | 10. the .ng-move-active class is added (this triggers the CSS transition/animation) | class="my-animation ng-animate ng-move ng-move-active" |
- * | 11. $animate waits for the animation to complete (via events and timeout) | class="my-animation ng-animate ng-move ng-move-active" |
- * | 12. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
- * | 13. The returned promise is resolved. | class="my-animation" |
+ * | Animation Step | What the element class attribute looks like |
+ * |----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
+ * | 1. `$animate.move(...)` is called | `class="my-animation"` |
+ * | 2. element is moved into the parentElement element or beside the afterElement element | `class="my-animation"` |
+ * | 3. `$animate` waits for the next digest to start the animation | `class="my-animation ng-animate"` |
+ * | 4. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation ng-animate"` |
+ * | 5. the `.ng-move` class is added to the element | `class="my-animation ng-animate ng-move"` |
+ * | 6. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate ng-move"` |
+ * | 7. `$animate` blocks all CSS transitions on the element to ensure the `.ng-move` class styling is applied right away | `class="my-animation ng-animate ng-move"` |
+ * | 8. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation ng-animate ng-move"` |
+ * | 9. `$animate` removes the CSS transition block placed on the element | `class="my-animation ng-animate ng-move"` |
+ * | 10. the `.ng-move-active` class is added (this triggers the CSS transition/animation) | `class="my-animation ng-animate ng-move ng-move-active"` |
+ * | 11. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate ng-move ng-move-active"` |
+ * | 12. The animation ends and all generated CSS classes are removed from the element | `class="my-animation"` |
+ * | 13. The returned promise is resolved. | `class="my-animation"` |
*
* @param {DOMElement} element the element that will be the focus of the move animation
* @param {DOMElement} parentElement the parentElement element of the element that will be the focus of the move animation
@@ -1062,18 +1064,18 @@ angular.module('ngAnimate', ['ng'])
*
* Below is a breakdown of each step that occurs during addClass animation:
*
- * | Animation Step | What the element class attribute looks like |
- * |----------------------------------------------------------------------------------------------------|------------------------------------------------------------------|
- * | 1. $animate.addClass(element, 'super') is called | class="my-animation" |
- * | 2. $animate runs the JavaScript-defined animations detected on the element | class="my-animation ng-animate" |
- * | 3. the .super-add class is added to the element | class="my-animation ng-animate super-add" |
- * | 4. $animate waits for a single animation frame (this performs a reflow) | class="my-animation ng-animate super-add" |
- * | 5. the .super and .super-add-active classes are added (this triggers the CSS transition/animation) | class="my-animation ng-animate super super-add super-add-active" |
- * | 6. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation ng-animate super-add" |
- * | 7. $animate waits for the animation to complete (via events and timeout) | class="my-animation super super-add super-add-active" |
- * | 8. The animation ends and all generated CSS classes are removed from the element | class="my-animation super" |
- * | 9. The super class is kept on the element | class="my-animation super" |
- * | 10. The returned promise is resolved. | class="my-animation super" |
+ * | Animation Step | What the element class attribute looks like |
+ * |--------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
+ * | 1. `$animate.addClass(element, 'super')` is called | `class="my-animation"` |
+ * | 2. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation ng-animate"` |
+ * | 3. the `.super-add` class is added to the element | `class="my-animation ng-animate super-add"` |
+ * | 4. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation ng-animate super-add"` |
+ * | 5. the `.super` and `.super-add-active` classes are added (this triggers the CSS transition/animation) | `class="my-animation ng-animate super super-add super-add-active"` |
+ * | 6. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate super super-add super-add-active"` |
+ * | 7. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate super super-add super-add-active"` |
+ * | 8. The animation ends and all generated CSS classes are removed from the element | `class="my-animation super"` |
+ * | 9. The super class is kept on the element | `class="my-animation super"` |
+ * | 10. The returned promise is resolved. | `class="my-animation super"` |
*
* @param {DOMElement} element the element that will be animated
* @param {string} className the CSS class that will be added to the element and then animated
@@ -1096,17 +1098,17 @@ angular.module('ngAnimate', ['ng'])
*
* Below is a breakdown of each step that occurs during removeClass animation:
*
- * | Animation Step | What the element class attribute looks like |
- * |------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------|
- * | 1. $animate.removeClass(element, 'super') is called | class="my-animation super" |
- * | 2. $animate runs the JavaScript-defined animations detected on the element | class="my-animation super ng-animate" |
- * | 3. the .super-remove class is added to the element | class="my-animation super ng-animate super-remove" |
- * | 4. $animate waits for a single animation frame (this performs a reflow) | class="my-animation super ng-animate super-remove" |
- * | 5. the .super-remove-active classes are added and .super is removed (this triggers the CSS transition/animation) | class="my-animation ng-animate super-remove super-remove-active" |
- * | 6. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation super ng-animate super-remove" |
- * | 7. $animate waits for the animation to complete (via events and timeout) | class="my-animation ng-animate super-remove super-remove-active" |
- * | 8. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
- * | 9. The returned promise is resolved. | class="my-animation" |
+ * | Animation Step | What the element class attribute looks like |
+ * |----------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
+ * | 1. `$animate.removeClass(element, 'super')` is called | `class="my-animation super"` |
+ * | 2. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation super ng-animate"` |
+ * | 3. the `.super-remove` class is added to the element | `class="my-animation super ng-animate super-remove"` |
+ * | 4. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation super ng-animate super-remove"` |
+ * | 5. the `.super-remove-active` classes are added and `.super` is removed (this triggers the CSS transition/animation) | `class="my-animation ng-animate super-remove super-remove-active"` |
+ * | 6. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate super-remove super-remove-active"` |
+ * | 7. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate super-remove super-remove-active"` |
+ * | 8. The animation ends and all generated CSS classes are removed from the element | `class="my-animation"` |
+ * | 9. The returned promise is resolved. | `class="my-animation"` |
*
*
* @param {DOMElement} element the element that will be animated
@@ -1124,19 +1126,19 @@ angular.module('ngAnimate', ['ng'])
* @name $animate#setClass
*
* @description Adds and/or removes the given CSS classes to and from the element.
- * Once complete, the done() callback will be fired (if provided).
+ * Once complete, the `done()` callback will be fired (if provided).
*
- * | Animation Step | What the element class attribute looks like |
- * |--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|
- * | 1. $animate.removeClass(element, ‘on’, ‘off’) is called | class="my-animation super off” |
- * | 2. $animate runs the JavaScript-defined animations detected on the element | class="my-animation super ng-animate off” |
- * | 3. the .on-add and .off-remove classes are added to the element | class="my-animation ng-animate on-add off-remove off” |
- * | 4. $animate waits for a single animation frame (this performs a reflow) | class="my-animation ng-animate on-add off-remove off” |
- * | 5. the .on, .on-add-active and .off-remove-active classes are added and .off is removed (this triggers the CSS transition/animation) | class="my-animation ng-animate on on-add on-add-active off-remove off-remove-active” |
- * | 6. $animate scans the element styles to get the CSS transition/animation duration and delay | class="my-animation ng-animate on on-add on-add-active off-remove off-remove-active" |
- * | 7. $animate waits for the animation to complete (via events and timeout) | class="my-animation ng-animate on on-add on-add-active off-remove off-remove-active" |
- * | 8. The animation ends and all generated CSS classes are removed from the element | class="my-animation on" |
- * | 9. The returned promise is resolved. | class="my-animation on" |
+ * | Animation Step | What the element class attribute looks like |
+ * |----------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
+ * | 1. `$animate.setClass(element, 'on', 'off')` is called | `class="my-animation off"` |
+ * | 2. `$animate` runs the JavaScript-defined animations detected on the element | `class="my-animation ng-animate off"` |
+ * | 3. the `.on-add` and `.off-remove` classes are added to the element | `class="my-animation ng-animate on-add off-remove off"` |
+ * | 4. `$animate` waits for a single animation frame (this performs a reflow) | `class="my-animation ng-animate on-add off-remove off"` |
+ * | 5. the `.on`, `.on-add-active` and `.off-remove-active` classes are added and `.off` is removed (this triggers the CSS transition/animation) | `class="my-animation ng-animate on on-add on-add-active off-remove off-remove-active"` |
+ * | 6. `$animate` scans the element styles to get the CSS transition/animation duration and delay | `class="my-animation ng-animate on on-add on-add-active off-remove off-remove-active"` |
+ * | 7. `$animate` waits for the animation to complete (via events and timeout) | `class="my-animation ng-animate on on-add on-add-active off-remove off-remove-active"` |
+ * | 8. The animation ends and all generated CSS classes are removed from the element | `class="my-animation on"` |
+ * | 9. The returned promise is resolved. | `class="my-animation on"` |
*
* @param {DOMElement} element the element which will have its CSS classes changed
* removed from it
@@ -1274,7 +1276,7 @@ angular.module('ngAnimate', ['ng'])
all animations call this shared animation triggering function internally.
The animationEvent variable refers to the JavaScript animation event that will be triggered
and the className value is the name of the animation that will be applied within the
- CSS code. Element, parentElement and afterElement are provided DOM elements for the animation
+ CSS code. Element, `parentElement` and `afterElement` are provided DOM elements for the animation
and the onComplete callback will be fired once the animation is fully complete.
*/
function performAnimation(animationEvent, className, element, parentElement, afterElement, domOperation, options, doneCallback) {
@@ -1331,8 +1333,7 @@ angular.module('ngAnimate', ['ng'])
} else if (lastAnimation.event == 'setClass') {
animationsToCancel.push(lastAnimation);
cleanup(element, className);
- }
- else if (runningAnimations[className]) {
+ } else if (runningAnimations[className]) {
var current = runningAnimations[className];
if (current.event == animationEvent) {
skipAnimation = true;
@@ -1386,10 +1387,10 @@ angular.module('ngAnimate', ['ng'])
//the ng-animate class does nothing, but it's here to allow for
//parent animations to find and cancel child animations when needed
- element.addClass(NG_ANIMATE_CLASS_NAME);
+ $$jqLite.addClass(element, NG_ANIMATE_CLASS_NAME);
if (options && options.tempClasses) {
forEach(options.tempClasses, function(className) {
- element.addClass(className);
+ $$jqLite.addClass(element, className);
});
}
@@ -1467,7 +1468,7 @@ angular.module('ngAnimate', ['ng'])
closeAnimation.hasBeenRun = true;
if (options && options.tempClasses) {
forEach(options.tempClasses, function(className) {
- element.removeClass(className);
+ $$jqLite.removeClass(element, className);
});
}
@@ -1529,7 +1530,7 @@ angular.module('ngAnimate', ['ng'])
}
if (removeAnimations || !data.totalActive) {
- element.removeClass(NG_ANIMATE_CLASS_NAME);
+ $$jqLite.removeClass(element, NG_ANIMATE_CLASS_NAME);
element.removeData(NG_ANIMATE_STATE);
}
}
@@ -1770,14 +1771,14 @@ angular.module('ngAnimate', ['ng'])
var staggerCacheKey = cacheKey + ' ' + staggerClassName;
var applyClasses = !lookupCache[staggerCacheKey];
- applyClasses && element.addClass(staggerClassName);
+ applyClasses && $$jqLite.addClass(element, staggerClassName);
stagger = getElementAnimationDetails(element, staggerCacheKey);
- applyClasses && element.removeClass(staggerClassName);
+ applyClasses && $$jqLite.removeClass(element, staggerClassName);
}
- element.addClass(className);
+ $$jqLite.addClass(element, className);
var formerData = element.data(NG_ANIMATE_CSS_DATA_KEY) || {};
var timings = getElementAnimationDetails(element, eventCacheKey);
@@ -1785,7 +1786,7 @@ angular.module('ngAnimate', ['ng'])
var animationDuration = timings.animationDuration;
if (structural && transitionDuration === 0 && animationDuration === 0) {
- element.removeClass(className);
+ $$jqLite.removeClass(element, className);
return false;
}
@@ -1857,7 +1858,7 @@ angular.module('ngAnimate', ['ng'])
}
if (!staggerTime) {
- element.addClass(activeClassName);
+ $$jqLite.addClass(element, activeClassName);
if (elementData.blockTransition) {
blockTransitions(node, false);
}
@@ -1867,13 +1868,13 @@ angular.module('ngAnimate', ['ng'])
var timings = getElementAnimationDetails(element, eventCacheKey);
var maxDuration = Math.max(timings.transitionDuration, timings.animationDuration);
if (maxDuration === 0) {
- element.removeClass(activeClassName);
+ $$jqLite.removeClass(element, activeClassName);
animateClose(element, className);
activeAnimationComplete();
return;
}
- if (!staggerTime && styles) {
+ if (!staggerTime && styles && Object.keys(styles).length > 0) {
if (!timings.transitionDuration) {
element.css('transition', timings.animationDuration + 's linear all');
appliedStyles.push('transition');
@@ -1889,7 +1890,7 @@ angular.module('ngAnimate', ['ng'])
//the jqLite object, so we're safe to use a single variable to house
//the styles since there is always only one element being animated
var oldStyle = node.getAttribute('style') || '';
- if (oldStyle.charAt(oldStyle.length-1) !== ';') {
+ if (oldStyle.charAt(oldStyle.length - 1) !== ';') {
oldStyle += ';';
}
node.setAttribute('style', oldStyle + ' ' + style);
@@ -1902,7 +1903,7 @@ angular.module('ngAnimate', ['ng'])
var staggerTimeout;
if (staggerTime > 0) {
- element.addClass(pendingClassName);
+ $$jqLite.addClass(element, pendingClassName);
staggerTimeout = $timeout(function() {
staggerTimeout = null;
@@ -1913,8 +1914,8 @@ angular.module('ngAnimate', ['ng'])
blockAnimations(node, false);
}
- element.addClass(activeClassName);
- element.removeClass(pendingClassName);
+ $$jqLite.addClass(element, activeClassName);
+ $$jqLite.removeClass(element, pendingClassName);
if (styles) {
if (timings.transitionDuration === 0) {
@@ -1941,8 +1942,8 @@ angular.module('ngAnimate', ['ng'])
// timeout done method.
function onEnd() {
element.off(css3AnimationEvents, onAnimationProgress);
- element.removeClass(activeClassName);
- element.removeClass(pendingClassName);
+ $$jqLite.removeClass(element, activeClassName);
+ $$jqLite.removeClass(element, pendingClassName);
if (staggerTimeout) {
$timeout.cancel(staggerTimeout);
}
@@ -2030,7 +2031,7 @@ angular.module('ngAnimate', ['ng'])
}
function animateClose(element, className) {
- element.removeClass(className);
+ $$jqLite.removeClass(element, className);
var data = element.data(NG_ANIMATE_CSS_DATA_KEY);
if (data) {
if (data.running) {
diff --git a/public/app/bower_components/angular-animate/angular-animate.min.js b/public/app/bower_components/angular-animate/angular-animate.min.js
index 90b03a38..1cfef491 100644
--- a/public/app/bower_components/angular-animate/angular-animate.min.js
+++ b/public/app/bower_components/angular-animate/angular-animate.min.js
@@ -1,33 +1,33 @@
/*
- AngularJS v1.3.1
+ AngularJS v1.3.12
(c) 2010-2014 Google, Inc. http://angularjs.org
License: MIT
*/
-(function(M,f,S){'use strict';f.module("ngAnimate",["ng"]).directive("ngAnimateChildren",function(){return function(T,B,k){k=k.ngAnimateChildren;f.isString(k)&&0===k.length?B.data("$$ngAnimateChildren",!0):T.$watch(k,function(f){B.data("$$ngAnimateChildren",!!f)})}}).factory("$$animateReflow",["$$rAF","$document",function(f,B){return function(k){return f(function(){k()})}}]).config(["$provide","$animateProvider",function(T,B){function k(f){for(var g=0;g=A&&d>=x&&c()}var m=k(d);a=d.data("$$ngAnimateCSS3Data");if(-1!=m.getAttribute("class").indexOf(b)&&a){var q="",r="";g(b.split(" "),function(a,d){var b=(0=C&&b>=x&&c()}var m=g(e);a=e.data("$$ngAnimateCSS3Data");if(-1!=m.getAttribute("class").indexOf(b)&&a){var k="",t="";n(b.split(" "),function(a,
+b){var e=(0ARIA
- * attributes that convey state or semantic information about the application in order to allow assistive technologies
- * to convey appropriate information to persons with disabilities.
+ * The `ngAria` module provides support for common
+ * [ARIA](http://www.w3.org/TR/wai-aria/)
+ * attributes that convey state or semantic information about the application for users
+ * of assistive technologies, such as screen readers.
*
*
*
- * # Usage
- * To enable the addition of the ARIA tags, just require the module into your application and the tags will
- * hook into your ng-show/ng-hide, input, textarea, button, select and ng-required directives and adds the
- * appropriate ARIA attributes.
+ * ## Usage
*
- * Currently, the following ARIA attributes are implemented:
+ * For ngAria to do its magic, simply include the module as a dependency. The directives supported
+ * by ngAria are:
+ * `ngModel`, `ngDisabled`, `ngShow`, `ngHide`, `ngClick`, `ngDblClick`, and `ngMessages`.
*
- * + aria-hidden
- * + aria-checked
- * + aria-disabled
- * + aria-required
- * + aria-invalid
- * + aria-multiline
- * + aria-valuenow
- * + aria-valuemin
- * + aria-valuemax
- * + tabindex
+ * Below is a more detailed breakdown of the attributes handled by ngAria:
*
- * You can disable individual ARIA attributes by using the {@link ngAria.$ariaProvider#config config} method.
+ * | Directive | Supported Attributes |
+ * |---------------------------------------------|----------------------------------------------------------------------------------------|
+ * | {@link ng.directive:ngModel ngModel} | aria-checked, aria-valuemin, aria-valuemax, aria-valuenow, aria-invalid, aria-required |
+ * | {@link ng.directive:ngDisabled ngDisabled} | aria-disabled |
+ * | {@link ng.directive:ngShow ngShow} | aria-hidden |
+ * | {@link ng.directive:ngHide ngHide} | aria-hidden |
+ * | {@link ng.directive:ngClick ngClick} | tabindex, keypress event |
+ * | {@link ng.directive:ngDblclick ngDblclick} | tabindex |
+ * | {@link module:ngMessages ngMessages} | aria-live |
+ *
+ * Find out more information about each directive by reading the
+ * {@link guide/accessibility ngAria Developer Guide}.
+ *
+ * ##Example
+ * Using ngDisabled with ngAria:
+ * ```html
+ *
+ * ```
+ * Becomes:
+ * ```html
+ *
+ * ```
+ *
+ * ##Disabling Attributes
+ * It's possible to disable individual attributes added by ngAria with the
+ * {@link ngAria.$ariaProvider#config config} method. For more details, see the
+ * {@link guide/accessibility Developer Guide}.
*/
-
/* global -ngAriaModule */
var ngAriaModule = angular.module('ngAria', ['ng']).
provider('$aria', $AriaProvider);
@@ -47,10 +63,20 @@ var ngAriaModule = angular.module('ngAria', ['ng']).
*
* @description
*
- * Used for configuring ARIA attributes.
+ * Used for configuring the ARIA attributes injected and managed by ngAria.
+ *
+ * ```js
+ * angular.module('myApp', ['ngAria'], function config($ariaProvider) {
+ * $ariaProvider.config({
+ * ariaValue: true,
+ * tabindex: false
+ * });
+ * });
+ *```
*
* ## Dependencies
* Requires the {@link ngAria} module to be installed.
+ *
*/
function $AriaProvider() {
var config = {
@@ -61,7 +87,8 @@ function $AriaProvider() {
ariaInvalid: true,
ariaMultiline: true,
ariaValue: true,
- tabindex: true
+ tabindex: true,
+ bindKeypress: true
};
/**
@@ -78,6 +105,7 @@ function $AriaProvider() {
* - **ariaMultiline** – `{boolean}` – Enables/disables aria-multiline tags
* - **ariaValue** – `{boolean}` – Enables/disables aria-valuemin, aria-valuemax and aria-valuenow tags
* - **tabindex** – `{boolean}` – Enables/disables tabindex tags
+ * - **bindKeypress** – `{boolean}` – Enables/disables keypress event binding on ng-click
*
* @description
* Enables/disables various ARIA attributes
@@ -86,16 +114,9 @@ function $AriaProvider() {
config = angular.extend(config, newConfig);
};
- function camelCase(input) {
- return input.replace(/-./g, function(letter, pos) {
- return letter[1].toUpperCase();
- });
- }
-
-
function watchExpr(attrName, ariaAttr, negate) {
- var ariaCamelName = camelCase(ariaAttr);
return function(scope, elem, attr) {
+ var ariaCamelName = attr.$normalize(ariaAttr);
if (config[ariaCamelName] && !attr[ariaCamelName]) {
scope.$watch(attr[attrName], function(boolVal) {
if (negate) {
@@ -113,7 +134,41 @@ function $AriaProvider() {
*
* @description
*
- * Contains helper methods for applying ARIA attributes to HTML
+ * The $aria service contains helper methods for applying common
+ * [ARIA](http://www.w3.org/TR/wai-aria/) attributes to HTML directives.
+ *
+ * ngAria injects common accessibility attributes that tell assistive technologies when HTML
+ * elements are enabled, selected, hidden, and more. To see how this is performed with ngAria,
+ * let's review a code snippet from ngAria itself:
+ *
+ *```js
+ * ngAriaModule.directive('ngDisabled', ['$aria', function($aria) {
+ * return $aria.$$watchExpr('ngDisabled', 'aria-disabled');
+ * }])
+ *```
+ * Shown above, the ngAria module creates a directive with the same signature as the
+ * traditional `ng-disabled` directive. But this ngAria version is dedicated to
+ * solely managing accessibility attributes. The internal `$aria` service is used to watch the
+ * boolean attribute `ngDisabled`. If it has not been explicitly set by the developer,
+ * `aria-disabled` is injected as an attribute with its value synchronized to the value in
+ * `ngDisabled`.
+ *
+ * Because ngAria hooks into the `ng-disabled` directive, developers do not have to do
+ * anything to enable this feature. The `aria-disabled` attribute is automatically managed
+ * simply as a silent side-effect of using `ng-disabled` with the ngAria module.
+ *
+ * The full list of directives that interface with ngAria:
+ * * **ngModel**
+ * * **ngShow**
+ * * **ngHide**
+ * * **ngClick**
+ * * **ngDblclick**
+ * * **ngMessages**
+ * * **ngDisabled**
+ *
+ * Read the {@link guide/accessibility ngAria Developer Guide} for a thorough explanation of each
+ * directive.
+ *
*
* ## Dependencies
* Requires the {@link ngAria} module to be installed.
@@ -121,20 +176,13 @@ function $AriaProvider() {
this.$get = function() {
return {
config: function(key) {
- return config[camelCase(key)];
+ return config[key];
},
$$watchExpr: watchExpr
};
};
}
-var ngAriaTabindex = ['$aria', function($aria) {
- return function(scope, elem, attr) {
- if ($aria.config('tabindex') && !elem.attr('tabindex')) {
- elem.attr('tabindex', 0);
- }
- };
-}];
ngAriaModule.directive('ngShow', ['$aria', function($aria) {
return $aria.$$watchExpr('ngShow', 'aria-hidden', true);
@@ -144,8 +192,8 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
}])
.directive('ngModel', ['$aria', function($aria) {
- function shouldAttachAttr(attr, elem) {
- return $aria.config(attr) && !elem.attr(attr);
+ function shouldAttachAttr(attr, normalizedAttr, elem) {
+ return $aria.config(normalizedAttr) && !elem.attr(attr);
}
function getShape(attr, elem) {
@@ -163,7 +211,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
require: '?ngModel',
link: function(scope, elem, attr, ngModel) {
var shape = getShape(attr, elem);
- var needsTabIndex = shouldAttachAttr('tabindex', elem);
+ var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem);
function ngAriaWatchModelValue() {
return ngModel.$modelValue;
@@ -191,7 +239,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
switch (shape) {
case 'radio':
case 'checkbox':
- if (shouldAttachAttr('aria-checked', elem)) {
+ if (shouldAttachAttr('aria-checked', 'ariaChecked', elem)) {
scope.$watch(ngAriaWatchModelValue, shape === 'radio' ?
getRadioReaction() : ngAriaCheckboxReaction);
}
@@ -212,7 +260,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
}
break;
case 'multiline':
- if (shouldAttachAttr('aria-multiline', elem)) {
+ if (shouldAttachAttr('aria-multiline', 'ariaMultiline', elem)) {
elem.attr('aria-multiline', true);
}
break;
@@ -222,7 +270,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
elem.attr('tabindex', 0);
}
- if (ngModel.$validators.required && shouldAttachAttr('aria-required', elem)) {
+ if (ngModel.$validators.required && shouldAttachAttr('aria-required', 'ariaRequired', elem)) {
scope.$watch(function ngAriaRequiredWatch() {
return ngModel.$error.required;
}, function ngAriaRequiredReaction(newVal) {
@@ -230,7 +278,7 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
});
}
- if (shouldAttachAttr('aria-invalid', elem)) {
+ if (shouldAttachAttr('aria-invalid', 'ariaInvalid', elem)) {
scope.$watch(function ngAriaInvalidWatch() {
return ngModel.$invalid;
}, function ngAriaInvalidReaction(newVal) {
@@ -243,8 +291,49 @@ ngAriaModule.directive('ngShow', ['$aria', function($aria) {
.directive('ngDisabled', ['$aria', function($aria) {
return $aria.$$watchExpr('ngDisabled', 'aria-disabled');
}])
-.directive('ngClick', ngAriaTabindex)
-.directive('ngDblclick', ngAriaTabindex);
+.directive('ngMessages', function() {
+ return {
+ restrict: 'A',
+ require: '?ngMessages',
+ link: function(scope, elem, attr, ngMessages) {
+ if (!elem.attr('aria-live')) {
+ elem.attr('aria-live', 'assertive');
+ }
+ }
+ };
+})
+.directive('ngClick',['$aria', '$parse', function($aria, $parse) {
+ return {
+ restrict: 'A',
+ compile: function(elem, attr) {
+ var fn = $parse(attr.ngClick, /* interceptorFn */ null, /* expensiveChecks */ true);
+ return function(scope, elem, attr) {
+ if ($aria.config('tabindex') && !elem.attr('tabindex')) {
+ elem.attr('tabindex', 0);
+ }
+
+ if ($aria.config('bindKeypress') && !attr.ngKeypress) {
+ elem.on('keypress', function(event) {
+ if (event.keyCode === 32 || event.keyCode === 13) {
+ scope.$apply(callback);
+ }
+
+ function callback() {
+ fn(scope, { $event: event });
+ }
+ });
+ }
+ };
+ }
+ };
+}])
+.directive('ngDblclick', ['$aria', function($aria) {
+ return function(scope, elem, attr) {
+ if ($aria.config('tabindex') && !elem.attr('tabindex')) {
+ elem.attr('tabindex', 0);
+ }
+ };
+}]);
})(window, window.angular);
diff --git a/public/app/bower_components/angular-aria/angular-aria.min.js b/public/app/bower_components/angular-aria/angular-aria.min.js
index f5555ef7..f29a69a7 100644
--- a/public/app/bower_components/angular-aria/angular-aria.min.js
+++ b/public/app/bower_components/angular-aria/angular-aria.min.js
@@ -1,11 +1,12 @@
/*
- AngularJS v1.3.1
+ AngularJS v1.3.12
(c) 2010-2014 Google, Inc. http://angularjs.org
License: MIT
*/
-(function(h,k,p){'use strict';h=["$aria",function(c){return function(e,f,a){c.config("tabindex")&&!f.attr("tabindex")&&f.attr("tabindex",0)}}];k.module("ngAria",["ng"]).provider("$aria",function(){function c(a){return a.replace(/-./g,function(b,a){return b[1].toUpperCase()})}function e(a,b,g){var d=c(b);return function(c,e,l){f[d]&&!l[d]&&c.$watch(l[a],function(a){g&&(a=!a);e.attr(b,a)})}}var f={ariaHidden:!0,ariaChecked:!0,ariaDisabled:!0,ariaRequired:!0,ariaInvalid:!0,ariaMultiline:!0,ariaValue:!0,
-tabindex:!0};this.config=function(a){f=k.extend(f,a)};this.$get=function(){return{config:function(a){return f[c(a)]},$$watchExpr:e}}}).directive("ngShow",["$aria",function(c){return c.$$watchExpr("ngShow","aria-hidden",!0)}]).directive("ngHide",["$aria",function(c){return c.$$watchExpr("ngHide","aria-hidden",!1)}]).directive("ngModel",["$aria",function(c){function e(a,b){return c.config(a)&&!b.attr(a)}function f(a,b){var c=a.type,d=a.role;return"checkbox"===(c||d)||"menuitemcheckbox"===d?"checkbox":
-"radio"===(c||d)||"menuitemradio"===d?"radio":"range"===c||"progressbar"===d||"slider"===d?"range":"textbox"===(c||d)||"TEXTAREA"===b[0].nodeName?"multiline":""}return{restrict:"A",require:"?ngModel",link:function(a,b,g,d){function h(){return d.$modelValue}function k(){return m?(m=!1,function(a){a=a===g.value;b.attr("aria-checked",a);b.attr("tabindex",0-!a)}):function(a){b.attr("aria-checked",a===g.value)}}function l(a){b.attr("aria-checked",!!a)}var n=f(g,b),m=e("tabindex",b);switch(n){case "radio":case "checkbox":e("aria-checked",
-b)&&a.$watch(h,"radio"===n?k():l);break;case "range":c.config("ariaValue")&&(g.min&&!b.attr("aria-valuemin")&&b.attr("aria-valuemin",g.min),g.max&&!b.attr("aria-valuemax")&&b.attr("aria-valuemax",g.max),b.attr("aria-valuenow")||a.$watch(h,function(a){b.attr("aria-valuenow",a)}));break;case "multiline":e("aria-multiline",b)&&b.attr("aria-multiline",!0)}m&&b.attr("tabindex",0);d.$validators.required&&e("aria-required",b)&&a.$watch(function(){return d.$error.required},function(a){b.attr("aria-required",
-!!a)});e("aria-invalid",b)&&a.$watch(function(){return d.$invalid},function(a){b.attr("aria-invalid",!!a)})}}}]).directive("ngDisabled",["$aria",function(c){return c.$$watchExpr("ngDisabled","aria-disabled")}]).directive("ngClick",h).directive("ngDblclick",h)})(window,window.angular);
+(function(p,k,q){'use strict';k.module("ngAria",["ng"]).provider("$aria",function(){function b(b,e,c){return function(d,h,f){var l=f.$normalize(e);a[l]&&!f[l]&&d.$watch(f[b],function(d){c&&(d=!d);h.attr(e,d)})}}var a={ariaHidden:!0,ariaChecked:!0,ariaDisabled:!0,ariaRequired:!0,ariaInvalid:!0,ariaMultiline:!0,ariaValue:!0,tabindex:!0,bindKeypress:!0};this.config=function(b){a=k.extend(a,b)};this.$get=function(){return{config:function(b){return a[b]},$$watchExpr:b}}}).directive("ngShow",["$aria",function(b){return b.$$watchExpr("ngShow",
+"aria-hidden",!0)}]).directive("ngHide",["$aria",function(b){return b.$$watchExpr("ngHide","aria-hidden",!1)}]).directive("ngModel",["$aria",function(b){function a(a,c,d){return b.config(c)&&!d.attr(a)}function g(b,c){var d=b.type,a=b.role;return"checkbox"===(d||a)||"menuitemcheckbox"===a?"checkbox":"radio"===(d||a)||"menuitemradio"===a?"radio":"range"===d||"progressbar"===a||"slider"===a?"range":"textbox"===(d||a)||"TEXTAREA"===c[0].nodeName?"multiline":""}return{restrict:"A",require:"?ngModel",
+link:function(e,c,d,h){function f(){return h.$modelValue}function l(){return m?(m=!1,function(a){a=a===d.value;c.attr("aria-checked",a);c.attr("tabindex",0-!a)}):function(a){c.attr("aria-checked",a===d.value)}}function n(a){c.attr("aria-checked",!!a)}var k=g(d,c),m=a("tabindex","tabindex",c);switch(k){case "radio":case "checkbox":a("aria-checked","ariaChecked",c)&&e.$watch(f,"radio"===k?l():n);break;case "range":b.config("ariaValue")&&(d.min&&!c.attr("aria-valuemin")&&c.attr("aria-valuemin",d.min),
+d.max&&!c.attr("aria-valuemax")&&c.attr("aria-valuemax",d.max),c.attr("aria-valuenow")||e.$watch(f,function(a){c.attr("aria-valuenow",a)}));break;case "multiline":a("aria-multiline","ariaMultiline",c)&&c.attr("aria-multiline",!0)}m&&c.attr("tabindex",0);h.$validators.required&&a("aria-required","ariaRequired",c)&&e.$watch(function(){return h.$error.required},function(a){c.attr("aria-required",!!a)});a("aria-invalid","ariaInvalid",c)&&e.$watch(function(){return h.$invalid},function(a){c.attr("aria-invalid",
+!!a)})}}}]).directive("ngDisabled",["$aria",function(b){return b.$$watchExpr("ngDisabled","aria-disabled")}]).directive("ngMessages",function(){return{restrict:"A",require:"?ngMessages",link:function(b,a,g,e){a.attr("aria-live")||a.attr("aria-live","assertive")}}}).directive("ngClick",["$aria","$parse",function(b,a){return{restrict:"A",compile:function(g,e){var c=a(e.ngClick,null,!0);return function(a,e,f){b.config("tabindex")&&!e.attr("tabindex")&&e.attr("tabindex",0);if(b.config("bindKeypress")&&
+!f.ngKeypress)e.on("keypress",function(b){function e(){c(a,{$event:b})}32!==b.keyCode&&13!==b.keyCode||a.$apply(e)})}}}}]).directive("ngDblclick",["$aria",function(b){return function(a,g,e){b.config("tabindex")&&!g.attr("tabindex")&&g.attr("tabindex",0)}}])})(window,window.angular);
//# sourceMappingURL=angular-aria.min.js.map
diff --git a/public/app/bower_components/angular-aria/angular-aria.min.js.map b/public/app/bower_components/angular-aria/angular-aria.min.js.map
index 0df66432..a32afc5a 100644
--- a/public/app/bower_components/angular-aria/angular-aria.min.js.map
+++ b/public/app/bower_components/angular-aria/angular-aria.min.js.map
@@ -1,8 +1,8 @@
{
"version":3,
"file":"angular-aria.min.js",
-"lineCount":10,
-"mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CA6HlCC,CAAAA,CAAiB,CAAC,OAAD,CAAU,QAAQ,CAACC,CAAD,CAAQ,CAC7C,MAAO,SAAQ,CAACC,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoB,CAC7BH,CAAAI,OAAA,CAAa,UAAb,CAAJ,EAAiC,CAAAF,CAAAC,KAAA,CAAU,UAAV,CAAjC,EACED,CAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAF+B,CADU,CAA1B,CA1FFN,EAAAQ,OAAA,CAAe,QAAf,CAAyB,CAAC,IAAD,CAAzB,CAAAC,SAAAC,CACc,OADdA,CAcnBC,QAAsB,EAAG,CAkCvBC,QAASA,EAAS,CAACC,CAAD,CAAQ,CACxB,MAAOA,EAAAC,QAAA,CAAc,KAAd,CAAqB,QAAQ,CAACC,CAAD,CAASC,CAAT,CAAc,CAChD,MAAOD,EAAA,CAAO,CAAP,CAAAE,YAAA,EADyC,CAA3C,CADiB,CAO1BC,QAASA,EAAS,CAACC,CAAD,CAAWC,CAAX,CAAqBC,CAArB,CAA6B,CAC7C,IAAIC,EAAgBV,CAAA,CAAUQ,CAAV,CACpB,OAAO,SAAQ,CAAChB,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoB,CAC7BC,CAAA,CAAOe,CAAP,CAAJ,EAA8B,CAAAhB,CAAA,CAAKgB,CAAL,CAA9B,EACElB,CAAAmB,OAAA,CAAajB,CAAA,CAAKa,CAAL,CAAb,CAA6B,QAAQ,CAACK,CAAD,CAAU,CACzCH,CAAJ,GACEG,CADF,CACY,CAACA,CADb,CAGAnB,EAAAC,KAAA,CAAUc,CAAV,CAAoBI,CAApB,CAJ6C,CAA/C,CAF+B,CAFU,CAxC/C,IAAIjB,EAAS,CACXkB,WAAY,CAAA,CADD,CAEXC,YAAa,CAAA,CAFF,CAGXC,aAAc,CAAA,CAHH,CAIXC,aAAc,CAAA,CAJH,CAKXC,YAAa,CAAA,CALF,CAMXC,cAAe,CAAA,CANJ,CAOXC,UAAW,CAAA,CAPA;AAQXC,SAAU,CAAA,CARC,CA6Bb,KAAAzB,OAAA,CAAc0B,QAAQ,CAACC,CAAD,CAAY,CAChC3B,CAAA,CAASP,CAAAmC,OAAA,CAAe5B,CAAf,CAAuB2B,CAAvB,CADuB,CAoClC,KAAAE,KAAA,CAAYC,QAAQ,EAAG,CACrB,MAAO,CACL9B,OAAQA,QAAQ,CAAC+B,CAAD,CAAM,CACpB,MAAO/B,EAAA,CAAOK,CAAA,CAAU0B,CAAV,CAAP,CADa,CADjB,CAILC,YAAarB,CAJR,CADc,CAlEA,CAdNR,CAkGnB8B,UAAA,CAAuB,QAAvB,CAAiC,CAAC,OAAD,CAAU,QAAQ,CAACrC,CAAD,CAAQ,CACzD,MAAOA,EAAAoC,YAAA,CAAkB,QAAlB,CAA4B,aAA5B,CAA2C,CAAA,CAA3C,CADkD,CAA1B,CAAjC,CAAAC,UAAA,CAGW,QAHX,CAGqB,CAAC,OAAD,CAAU,QAAQ,CAACrC,CAAD,CAAQ,CAC7C,MAAOA,EAAAoC,YAAA,CAAkB,QAAlB,CAA4B,aAA5B,CAA2C,CAAA,CAA3C,CADsC,CAA1B,CAHrB,CAAAC,UAAA,CAMW,SANX,CAMsB,CAAC,OAAD,CAAU,QAAQ,CAACrC,CAAD,CAAQ,CAE9CsC,QAASA,EAAgB,CAACnC,CAAD,CAAOD,CAAP,CAAa,CACpC,MAAOF,EAAAI,OAAA,CAAaD,CAAb,CAAP,EAA6B,CAACD,CAAAC,KAAA,CAAUA,CAAV,CADM,CAItCoC,QAASA,EAAQ,CAACpC,CAAD,CAAOD,CAAP,CAAa,CAAA,IACxBsC,EAAOrC,CAAAqC,KADiB,CAExBC,EAAOtC,CAAAsC,KAEX,OAA2B,UAApB,IAAED,CAAF,EAAUC,CAAV,GAA2C,kBAA3C,GAAkCA,CAAlC,CAAiE,UAAjE;AACoB,OAApB,IAAED,CAAF,EAAUC,CAAV,GAA2C,eAA3C,GAAkCA,CAAlC,CAA8D,OAA9D,CACU,OAAV,GAACD,CAAD,EAA2C,aAA3C,GAAkCC,CAAlC,EAAqE,QAArE,GAA4DA,CAA5D,CAAiF,OAAjF,CACmB,SAAnB,IAACD,CAAD,EAASC,CAAT,GAAuD,UAAvD,GAAkCvC,CAAA,CAAK,CAAL,CAAAwC,SAAlC,CAAoE,WAApE,CAAkF,EAP7D,CAU9B,MAAO,CACLC,SAAU,GADL,CAELC,QAAS,UAFJ,CAGLC,KAAMA,QAAQ,CAAC5C,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoB2C,CAApB,CAA6B,CAIzCC,QAASA,EAAqB,EAAG,CAC/B,MAAOD,EAAAE,YADwB,CAIjCC,QAASA,EAAgB,EAAG,CAC1B,MAAIC,EAAJ,EACEA,CACOC,CADS,CAAA,CACTA,CAAAA,QAA4B,CAACC,CAAD,CAAS,CACtC/B,CAAAA,CAAU+B,CAAV/B,GAAqBlB,CAAAkD,MACzBnD,EAAAC,KAAA,CAAU,cAAV,CAA0BkB,CAA1B,CACAnB,EAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAA0B,CAACkB,CAA3B,CAH0C,CAF9C,EAQS8B,QAA4B,CAACC,CAAD,CAAS,CAC1ClD,CAAAC,KAAA,CAAU,cAAV,CAA0BiD,CAA1B,GAAqCjD,CAAAkD,MAArC,CAD0C,CATpB,CAe5BC,QAASA,EAAsB,CAACF,CAAD,CAAS,CACtClD,CAAAC,KAAA,CAAU,cAAV,CAA0B,CAAEiD,CAAAA,CAA5B,CADsC,CAtBxC,IAAIG,EAAQhB,CAAA,CAASpC,CAAT,CAAeD,CAAf,CAAZ,CACIgD,EAAgBZ,CAAA,CAAiB,UAAjB,CAA6BpC,CAA7B,CAyBpB,QAAQqD,CAAR,EACE,KAAK,OAAL,CACA,KAAK,UAAL,CACMjB,CAAA,CAAiB,cAAjB;AAAiCpC,CAAjC,CAAJ,EACED,CAAAmB,OAAA,CAAa2B,CAAb,CAA8C,OAAV,GAAAQ,CAAA,CAChCN,CAAA,EADgC,CACXK,CADzB,CAGF,MACF,MAAK,OAAL,CACMtD,CAAAI,OAAA,CAAa,WAAb,CAAJ,GACMD,CAAAqD,IAMJ,EANiB,CAAAtD,CAAAC,KAAA,CAAU,eAAV,CAMjB,EALED,CAAAC,KAAA,CAAU,eAAV,CAA2BA,CAAAqD,IAA3B,CAKF,CAHIrD,CAAAsD,IAGJ,EAHiB,CAAAvD,CAAAC,KAAA,CAAU,eAAV,CAGjB,EAFED,CAAAC,KAAA,CAAU,eAAV,CAA2BA,CAAAsD,IAA3B,CAEF,CAAKvD,CAAAC,KAAA,CAAU,eAAV,CAAL,EACEF,CAAAmB,OAAA,CAAa2B,CAAb,CAAoCW,QAA+B,CAACN,CAAD,CAAS,CAC1ElD,CAAAC,KAAA,CAAU,eAAV,CAA2BiD,CAA3B,CAD0E,CAA5E,CARJ,CAaA,MACF,MAAK,WAAL,CACMd,CAAA,CAAiB,gBAAjB,CAAmCpC,CAAnC,CAAJ,EACEA,CAAAC,KAAA,CAAU,gBAAV,CAA4B,CAAA,CAA5B,CAzBN,CA8BI+C,CAAJ,EACEhD,CAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAGE2C,EAAAa,YAAAC,SAAJ,EAAoCtB,CAAA,CAAiB,eAAjB,CAAkCpC,CAAlC,CAApC,EACED,CAAAmB,OAAA,CAAayC,QAA4B,EAAG,CAC1C,MAAOf,EAAAgB,OAAAF,SADmC,CAA5C,CAEGG,QAA+B,CAACX,CAAD,CAAS,CACzClD,CAAAC,KAAA,CAAU,eAAV;AAA2B,CAAEiD,CAAAA,CAA7B,CADyC,CAF3C,CAOEd,EAAA,CAAiB,cAAjB,CAAiCpC,CAAjC,CAAJ,EACED,CAAAmB,OAAA,CAAa4C,QAA2B,EAAG,CACzC,MAAOlB,EAAAmB,SADkC,CAA3C,CAEGC,QAA8B,CAACd,CAAD,CAAS,CACxClD,CAAAC,KAAA,CAAU,cAAV,CAA0B,CAAEiD,CAAAA,CAA5B,CADwC,CAF1C,CAtEuC,CAHtC,CAhBuC,CAA1B,CANtB,CAAAf,UAAA,CAwGW,YAxGX,CAwGyB,CAAC,OAAD,CAAU,QAAQ,CAACrC,CAAD,CAAQ,CACjD,MAAOA,EAAAoC,YAAA,CAAkB,YAAlB,CAAgC,eAAhC,CAD0C,CAA1B,CAxGzB,CAAAC,UAAA,CA2GW,SA3GX,CA2GsBtC,CA3GtB,CAAAsC,UAAA,CA4GW,YA5GX,CA4GyBtC,CA5GzB,CArIsC,CAArC,CAAD,CAoPGH,MApPH,CAoPWA,MAAAC,QApPX;",
+"lineCount":11,
+"mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CAmDnBD,CAAAE,OAAA,CAAe,QAAf,CAAyB,CAAC,IAAD,CAAzB,CAAAC,SAAAC,CACc,OADdA,CAwBnBC,QAAsB,EAAG,CAoCvBC,QAASA,EAAS,CAACC,CAAD,CAAWC,CAAX,CAAqBC,CAArB,CAA6B,CAC7C,MAAO,SAAQ,CAACC,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoB,CACjC,IAAIC,EAAgBD,CAAAE,WAAA,CAAgBN,CAAhB,CAChBO,EAAA,CAAOF,CAAP,CAAJ,EAA8B,CAAAD,CAAA,CAAKC,CAAL,CAA9B,EACEH,CAAAM,OAAA,CAAaJ,CAAA,CAAKL,CAAL,CAAb,CAA6B,QAAQ,CAACU,CAAD,CAAU,CACzCR,CAAJ,GACEQ,CADF,CACY,CAACA,CADb,CAGAN,EAAAC,KAAA,CAAUJ,CAAV,CAAoBS,CAApB,CAJ6C,CAA/C,CAH+B,CADU,CAnC/C,IAAIF,EAAS,CACXG,WAAY,CAAA,CADD,CAEXC,YAAa,CAAA,CAFF,CAGXC,aAAc,CAAA,CAHH,CAIXC,aAAc,CAAA,CAJH,CAKXC,YAAa,CAAA,CALF,CAMXC,cAAe,CAAA,CANJ,CAOXC,UAAW,CAAA,CAPA,CAQXC,SAAU,CAAA,CARC,CASXC,aAAc,CAAA,CATH,CA+Bb,KAAAX,OAAA,CAAcY,QAAQ,CAACC,CAAD,CAAY,CAChCb,CAAA,CAASf,CAAA6B,OAAA,CAAed,CAAf,CAAuBa,CAAvB,CADuB,CA+DlC,KAAAE,KAAA,CAAYC,QAAQ,EAAG,CACrB,MAAO,CACLhB,OAAQA,QAAQ,CAACiB,CAAD,CAAM,CACpB,MAAOjB,EAAA,CAAOiB,CAAP,CADa,CADjB,CAILC,YAAa3B,CAJR,CADc,CA/FA,CAxBNF,CAkInB8B,UAAA,CAAuB,QAAvB,CAAiC,CAAC,OAAD,CAAU,QAAQ,CAACC,CAAD,CAAQ,CACzD,MAAOA,EAAAF,YAAA,CAAkB,QAAlB;AAA4B,aAA5B,CAA2C,CAAA,CAA3C,CADkD,CAA1B,CAAjC,CAAAC,UAAA,CAGW,QAHX,CAGqB,CAAC,OAAD,CAAU,QAAQ,CAACC,CAAD,CAAQ,CAC7C,MAAOA,EAAAF,YAAA,CAAkB,QAAlB,CAA4B,aAA5B,CAA2C,CAAA,CAA3C,CADsC,CAA1B,CAHrB,CAAAC,UAAA,CAMW,SANX,CAMsB,CAAC,OAAD,CAAU,QAAQ,CAACC,CAAD,CAAQ,CAE9CC,QAASA,EAAgB,CAACxB,CAAD,CAAOyB,CAAP,CAAuB1B,CAAvB,CAA6B,CACpD,MAAOwB,EAAApB,OAAA,CAAasB,CAAb,CAAP,EAAuC,CAAC1B,CAAAC,KAAA,CAAUA,CAAV,CADY,CAItD0B,QAASA,EAAQ,CAAC1B,CAAD,CAAOD,CAAP,CAAa,CAAA,IACxB4B,EAAO3B,CAAA2B,KADiB,CAExBC,EAAO5B,CAAA4B,KAEX,OAA2B,UAApB,IAAED,CAAF,EAAUC,CAAV,GAA2C,kBAA3C,GAAkCA,CAAlC,CAAiE,UAAjE,CACoB,OAApB,IAAED,CAAF,EAAUC,CAAV,GAA2C,eAA3C,GAAkCA,CAAlC,CAA8D,OAA9D,CACU,OAAV,GAACD,CAAD,EAA2C,aAA3C,GAAkCC,CAAlC,EAAqE,QAArE,GAA4DA,CAA5D,CAAiF,OAAjF,CACmB,SAAnB,IAACD,CAAD,EAASC,CAAT,GAAuD,UAAvD,GAAkC7B,CAAA,CAAK,CAAL,CAAA8B,SAAlC,CAAoE,WAApE,CAAkF,EAP7D,CAU9B,MAAO,CACLC,SAAU,GADL,CAELC,QAAS,UAFJ;AAGLC,KAAMA,QAAQ,CAAClC,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoBiC,CAApB,CAA6B,CAIzCC,QAASA,EAAqB,EAAG,CAC/B,MAAOD,EAAAE,YADwB,CAIjCC,QAASA,EAAgB,EAAG,CAC1B,MAAIC,EAAJ,EACEA,CACOC,CADS,CAAA,CACTA,CAAAA,QAA4B,CAACC,CAAD,CAAS,CACtClC,CAAAA,CAAUkC,CAAVlC,GAAqBL,CAAAwC,MACzBzC,EAAAC,KAAA,CAAU,cAAV,CAA0BK,CAA1B,CACAN,EAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAA0B,CAACK,CAA3B,CAH0C,CAF9C,EAQSiC,QAA4B,CAACC,CAAD,CAAS,CAC1CxC,CAAAC,KAAA,CAAU,cAAV,CAA0BuC,CAA1B,GAAqCvC,CAAAwC,MAArC,CAD0C,CATpB,CAe5BC,QAASA,EAAsB,CAACF,CAAD,CAAS,CACtCxC,CAAAC,KAAA,CAAU,cAAV,CAA0B,CAAEuC,CAAAA,CAA5B,CADsC,CAtBxC,IAAIG,EAAQhB,CAAA,CAAS1B,CAAT,CAAeD,CAAf,CAAZ,CACIsC,EAAgBb,CAAA,CAAiB,UAAjB,CAA6B,UAA7B,CAAyCzB,CAAzC,CAyBpB,QAAQ2C,CAAR,EACE,KAAK,OAAL,CACA,KAAK,UAAL,CACMlB,CAAA,CAAiB,cAAjB,CAAiC,aAAjC,CAAgDzB,CAAhD,CAAJ,EACED,CAAAM,OAAA,CAAa8B,CAAb,CAA8C,OAAV,GAAAQ,CAAA,CAChCN,CAAA,EADgC,CACXK,CADzB,CAGF,MACF,MAAK,OAAL,CACMlB,CAAApB,OAAA,CAAa,WAAb,CAAJ,GACMH,CAAA2C,IAMJ,EANiB,CAAA5C,CAAAC,KAAA,CAAU,eAAV,CAMjB,EALED,CAAAC,KAAA,CAAU,eAAV,CAA2BA,CAAA2C,IAA3B,CAKF;AAHI3C,CAAA4C,IAGJ,EAHiB,CAAA7C,CAAAC,KAAA,CAAU,eAAV,CAGjB,EAFED,CAAAC,KAAA,CAAU,eAAV,CAA2BA,CAAA4C,IAA3B,CAEF,CAAK7C,CAAAC,KAAA,CAAU,eAAV,CAAL,EACEF,CAAAM,OAAA,CAAa8B,CAAb,CAAoCW,QAA+B,CAACN,CAAD,CAAS,CAC1ExC,CAAAC,KAAA,CAAU,eAAV,CAA2BuC,CAA3B,CAD0E,CAA5E,CARJ,CAaA,MACF,MAAK,WAAL,CACMf,CAAA,CAAiB,gBAAjB,CAAmC,eAAnC,CAAoDzB,CAApD,CAAJ,EACEA,CAAAC,KAAA,CAAU,gBAAV,CAA4B,CAAA,CAA5B,CAzBN,CA8BIqC,CAAJ,EACEtC,CAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAGEiC,EAAAa,YAAAC,SAAJ,EAAoCvB,CAAA,CAAiB,eAAjB,CAAkC,cAAlC,CAAkDzB,CAAlD,CAApC,EACED,CAAAM,OAAA,CAAa4C,QAA4B,EAAG,CAC1C,MAAOf,EAAAgB,OAAAF,SADmC,CAA5C,CAEGG,QAA+B,CAACX,CAAD,CAAS,CACzCxC,CAAAC,KAAA,CAAU,eAAV,CAA2B,CAAEuC,CAAAA,CAA7B,CADyC,CAF3C,CAOEf,EAAA,CAAiB,cAAjB,CAAiC,aAAjC,CAAgDzB,CAAhD,CAAJ,EACED,CAAAM,OAAA,CAAa+C,QAA2B,EAAG,CACzC,MAAOlB,EAAAmB,SADkC,CAA3C,CAEGC,QAA8B,CAACd,CAAD,CAAS,CACxCxC,CAAAC,KAAA,CAAU,cAAV;AAA0B,CAAEuC,CAAAA,CAA5B,CADwC,CAF1C,CAtEuC,CAHtC,CAhBuC,CAA1B,CANtB,CAAAjB,UAAA,CAwGW,YAxGX,CAwGyB,CAAC,OAAD,CAAU,QAAQ,CAACC,CAAD,CAAQ,CACjD,MAAOA,EAAAF,YAAA,CAAkB,YAAlB,CAAgC,eAAhC,CAD0C,CAA1B,CAxGzB,CAAAC,UAAA,CA2GW,YA3GX,CA2GyB,QAAQ,EAAG,CAClC,MAAO,CACLQ,SAAU,GADL,CAELC,QAAS,aAFJ,CAGLC,KAAMA,QAAQ,CAAClC,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoBsD,CAApB,CAAgC,CACvCvD,CAAAC,KAAA,CAAU,WAAV,CAAL,EACED,CAAAC,KAAA,CAAU,WAAV,CAAuB,WAAvB,CAF0C,CAHzC,CAD2B,CA3GpC,CAAAsB,UAAA,CAsHW,SAtHX,CAsHqB,CAAC,OAAD,CAAU,QAAV,CAAoB,QAAQ,CAACC,CAAD,CAAQgC,CAAR,CAAgB,CAC/D,MAAO,CACLzB,SAAU,GADL,CAEL0B,QAASA,QAAQ,CAACzD,CAAD,CAAOC,CAAP,CAAa,CAC5B,IAAIyD,EAAKF,CAAA,CAAOvD,CAAA0D,QAAP,CAAyC,IAAzC,CAAqE,CAAA,CAArE,CACT,OAAO,SAAQ,CAAC5D,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoB,CAC7BuB,CAAApB,OAAA,CAAa,UAAb,CAAJ,EAAiC,CAAAJ,CAAAC,KAAA,CAAU,UAAV,CAAjC,EACED,CAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAGF,IAAIuB,CAAApB,OAAA,CAAa,cAAb,CAAJ;AAAqCwD,CAAA3D,CAAA2D,WAArC,CACE5D,CAAA6D,GAAA,CAAQ,UAAR,CAAoB,QAAQ,CAACC,CAAD,CAAQ,CAKlCC,QAASA,EAAQ,EAAG,CAClBL,CAAA,CAAG3D,CAAH,CAAU,CAAEiE,OAAQF,CAAV,CAAV,CADkB,CAJE,EAAtB,GAAIA,CAAAG,QAAJ,EAA8C,EAA9C,GAA4BH,CAAAG,QAA5B,EACElE,CAAAmE,OAAA,CAAaH,CAAb,CAFgC,CAApC,CAN+B,CAFP,CAFzB,CADwD,CAA5C,CAtHrB,CAAAxC,UAAA,CA+IW,YA/IX,CA+IyB,CAAC,OAAD,CAAU,QAAQ,CAACC,CAAD,CAAQ,CACjD,MAAO,SAAQ,CAACzB,CAAD,CAAQC,CAAR,CAAcC,CAAd,CAAoB,CAC7BuB,CAAApB,OAAA,CAAa,UAAb,CAAJ,EAAiC,CAAAJ,CAAAC,KAAA,CAAU,UAAV,CAAjC,EACED,CAAAC,KAAA,CAAU,UAAV,CAAsB,CAAtB,CAF+B,CADc,CAA1B,CA/IzB,CArLsC,CAArC,CAAD,CA6UGb,MA7UH,CA6UWA,MAAAC,QA7UX;",
"sources":["angular-aria.js"],
-"names":["window","angular","undefined","ngAriaTabindex","$aria","scope","elem","attr","config","module","provider","ngAriaModule","$AriaProvider","camelCase","input","replace","letter","pos","toUpperCase","watchExpr","attrName","ariaAttr","negate","ariaCamelName","$watch","boolVal","ariaHidden","ariaChecked","ariaDisabled","ariaRequired","ariaInvalid","ariaMultiline","ariaValue","tabindex","this.config","newConfig","extend","$get","this.$get","key","$$watchExpr","directive","shouldAttachAttr","getShape","type","role","nodeName","restrict","require","link","ngModel","ngAriaWatchModelValue","$modelValue","getRadioReaction","needsTabIndex","ngAriaRadioReaction","newVal","value","ngAriaCheckboxReaction","shape","min","max","ngAriaValueNowReaction","$validators","required","ngAriaRequiredWatch","$error","ngAriaRequiredReaction","ngAriaInvalidWatch","$invalid","ngAriaInvalidReaction"]
+"names":["window","angular","undefined","module","provider","ngAriaModule","$AriaProvider","watchExpr","attrName","ariaAttr","negate","scope","elem","attr","ariaCamelName","$normalize","config","$watch","boolVal","ariaHidden","ariaChecked","ariaDisabled","ariaRequired","ariaInvalid","ariaMultiline","ariaValue","tabindex","bindKeypress","this.config","newConfig","extend","$get","this.$get","key","$$watchExpr","directive","$aria","shouldAttachAttr","normalizedAttr","getShape","type","role","nodeName","restrict","require","link","ngModel","ngAriaWatchModelValue","$modelValue","getRadioReaction","needsTabIndex","ngAriaRadioReaction","newVal","value","ngAriaCheckboxReaction","shape","min","max","ngAriaValueNowReaction","$validators","required","ngAriaRequiredWatch","$error","ngAriaRequiredReaction","ngAriaInvalidWatch","$invalid","ngAriaInvalidReaction","ngMessages","$parse","compile","fn","ngClick","ngKeypress","on","event","callback","$event","keyCode","$apply"]
}
diff --git a/public/app/bower_components/angular-aria/bower.json b/public/app/bower_components/angular-aria/bower.json
index d7e0441e..c0f0853b 100644
--- a/public/app/bower_components/angular-aria/bower.json
+++ b/public/app/bower_components/angular-aria/bower.json
@@ -1,9 +1,9 @@
{
"name": "angular-aria",
- "version": "1.3.1",
+ "version": "1.3.12",
"main": "./angular-aria.js",
"ignore": [],
"dependencies": {
- "angular": "1.3.1"
+ "angular": "1.3.12"
}
}
diff --git a/public/app/bower_components/angular-aria/package.json b/public/app/bower_components/angular-aria/package.json
index 1ad9650e..d1064297 100644
--- a/public/app/bower_components/angular-aria/package.json
+++ b/public/app/bower_components/angular-aria/package.json
@@ -1,6 +1,6 @@
{
"name": "angular-aria",
- "version": "1.3.1",
+ "version": "1.3.12",
"description": "AngularJS module for making accessibility easy",
"main": "angular-aria.js",
"scripts": {
diff --git a/public/app/bower_components/angular-i18n/.bower.json b/public/app/bower_components/angular-i18n/.bower.json
index 6e006d72..cddab009 100644
--- a/public/app/bower_components/angular-i18n/.bower.json
+++ b/public/app/bower_components/angular-i18n/.bower.json
@@ -1,17 +1,17 @@
{
"name": "angular-i18n",
- "version": "1.3.1",
+ "version": "1.3.12",
"ignore": [
"**/.*",
"node_modules",
"components"
],
"homepage": "https://github.com/angular/bower-angular-i18n",
- "_release": "1.3.1",
+ "_release": "1.3.12",
"_resolution": {
"type": "version",
- "tag": "v1.3.1",
- "commit": "805a118d8935a5ac3959106fce5d68162e1eb3ae"
+ "tag": "v1.3.12",
+ "commit": "296cd4fa9d232b1ec11631edff8f76f6b874a772"
},
"_source": "git://github.com/angular/bower-angular-i18n.git",
"_target": "~1.3.1",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_af-na.js b/public/app/bower_components/angular-i18n/angular-locale_af-na.js
index 84f77c9e..8d79b1f9 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_af-na.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_af-na.js
@@ -40,9 +40,9 @@ $provide.value("$locale", {
"Sa"
],
"SHORTMONTH": [
- "Jan",
- "Feb",
- "Mar",
+ "Jan.",
+ "Feb.",
+ "Mrt.",
"Apr",
"Mei",
"Jun",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_af-za.js b/public/app/bower_components/angular-i18n/angular-locale_af-za.js
index f3e01307..63964939 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_af-za.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_af-za.js
@@ -40,9 +40,9 @@ $provide.value("$locale", {
"Sa"
],
"SHORTMONTH": [
- "Jan",
- "Feb",
- "Mar",
+ "Jan.",
+ "Feb.",
+ "Mrt.",
"Apr",
"Mei",
"Jun",
@@ -53,7 +53,7 @@ $provide.value("$locale", {
"Nov",
"Des"
],
- "fullDate": "EEEE dd MMMM y",
+ "fullDate": "EEEE, dd MMMM y",
"longDate": "dd MMMM y",
"medium": "dd MMM y h:mm:ss a",
"mediumDate": "dd MMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_af.js b/public/app/bower_components/angular-i18n/angular-locale_af.js
index 5b948807..7a2d41d3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_af.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_af.js
@@ -40,9 +40,9 @@ $provide.value("$locale", {
"Sa"
],
"SHORTMONTH": [
- "Jan",
- "Feb",
- "Mar",
+ "Jan.",
+ "Feb.",
+ "Mrt.",
"Apr",
"Mei",
"Jun",
@@ -53,7 +53,7 @@ $provide.value("$locale", {
"Nov",
"Des"
],
- "fullDate": "EEEE dd MMMM y",
+ "fullDate": "EEEE, dd MMMM y",
"longDate": "dd MMMM y",
"medium": "dd MMM y h:mm:ss a",
"mediumDate": "dd MMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_am-et.js b/public/app/bower_components/angular-i18n/angular-locale_am-et.js
index 71bbd98e..64641978 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_am-et.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_am-et.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"\u1301\u120b\u12ed",
"\u12a6\u1308\u1235\u1275",
"\u1234\u1355\u1274\u121d\u1260\u122d",
- "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
+ "\u12a6\u12ad\u1276\u1260\u122d",
"\u1296\u126c\u121d\u1260\u122d",
"\u12f2\u1234\u121d\u1260\u122d"
],
@@ -49,7 +49,7 @@ $provide.value("$locale", {
"\u1301\u120b\u12ed",
"\u12a6\u1308\u1235",
"\u1234\u1355\u1274",
- "\u12a6\u12ad\u1270",
+ "\u12a6\u12ad\u1276",
"\u1296\u126c\u121d",
"\u12f2\u1234\u121d"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_am.js b/public/app/bower_components/angular-i18n/angular-locale_am.js
index 82a07452..f52737bf 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_am.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_am.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"\u1301\u120b\u12ed",
"\u12a6\u1308\u1235\u1275",
"\u1234\u1355\u1274\u121d\u1260\u122d",
- "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
+ "\u12a6\u12ad\u1276\u1260\u122d",
"\u1296\u126c\u121d\u1260\u122d",
"\u12f2\u1234\u121d\u1260\u122d"
],
@@ -49,7 +49,7 @@ $provide.value("$locale", {
"\u1301\u120b\u12ed",
"\u12a6\u1308\u1235",
"\u1234\u1355\u1274",
- "\u12a6\u12ad\u1270",
+ "\u12a6\u12ad\u1276",
"\u1296\u126c\u121d",
"\u12f2\u1234\u121d"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ast-es.js b/public/app/bower_components/angular-i18n/angular-locale_ast-es.js
index 71002f88..5dffeda5 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ast-es.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ast-es.js
@@ -38,15 +38,15 @@ $provide.value("$locale", {
"de xineru",
"de febreru",
"de marzu",
- "d'abril",
+ "d\u2019abril",
"de mayu",
"de xunu",
"de xunetu",
- "d'agostu",
+ "d\u2019agostu",
"de setiembre",
- "d'ochobre",
+ "d\u2019ochobre",
"de payares",
- "d'avientu"
+ "d\u2019avientu"
],
"SHORTDAY": [
"dom",
@@ -71,7 +71,7 @@ $provide.value("$locale", {
"pay",
"avi"
],
- "fullDate": "EEEE, dd MMMM 'de' y",
+ "fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ast.js b/public/app/bower_components/angular-i18n/angular-locale_ast.js
index 7d39738b..4b07ddd0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ast.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ast.js
@@ -38,15 +38,15 @@ $provide.value("$locale", {
"de xineru",
"de febreru",
"de marzu",
- "d'abril",
+ "d\u2019abril",
"de mayu",
"de xunu",
"de xunetu",
- "d'agostu",
+ "d\u2019agostu",
"de setiembre",
- "d'ochobre",
+ "d\u2019ochobre",
"de payares",
- "d'avientu"
+ "d\u2019avientu"
],
"SHORTDAY": [
"dom",
@@ -71,7 +71,7 @@ $provide.value("$locale", {
"pay",
"avi"
],
- "fullDate": "EEEE, dd MMMM 'de' y",
+ "fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_az-cyrl-az.js b/public/app/bower_components/angular-i18n/angular-locale_az-cyrl-az.js
index f904656b..52b4ed17 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_az-cyrl-az.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_az-cyrl-az.js
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u0434\u0435\u043a\u0430\u0431\u0440"
],
"SHORTDAY": [
- "B.",
- "B.E.",
- "\u00c7.A.",
- "\u00c7.",
- "C.A.",
- "C",
- "\u015e."
+ "\u0431\u0430\u0437\u0430\u0440",
+ "\u0431\u0430\u0437\u0430\u0440 \u0435\u0440\u0442\u04d9\u0441\u0438",
+ "\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
+ "\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9",
+ "\u04b9\u04af\u043c\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
+ "\u04b9\u04af\u043c\u04d9",
+ "\u0448\u04d9\u043d\u0431\u04d9"
],
"SHORTMONTH": [
- "yan",
- "fev",
- "mar",
- "apr",
- "may",
- "iyn",
- "iyl",
- "avq",
- "sen",
- "okt",
- "noy",
- "dek"
+ "\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"
],
"fullDate": "EEEE, d, MMMM, y",
"longDate": "d MMMM, y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_az-cyrl.js b/public/app/bower_components/angular-i18n/angular-locale_az-cyrl.js
index d18ed470..40dfe742 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_az-cyrl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_az-cyrl.js
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u0434\u0435\u043a\u0430\u0431\u0440"
],
"SHORTDAY": [
- "B.",
- "B.E.",
- "\u00c7.A.",
- "\u00c7.",
- "C.A.",
- "C",
- "\u015e."
+ "\u0431\u0430\u0437\u0430\u0440",
+ "\u0431\u0430\u0437\u0430\u0440 \u0435\u0440\u0442\u04d9\u0441\u0438",
+ "\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
+ "\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9",
+ "\u04b9\u04af\u043c\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
+ "\u04b9\u04af\u043c\u04d9",
+ "\u0448\u04d9\u043d\u0431\u04d9"
],
"SHORTMONTH": [
- "yan",
- "fev",
- "mar",
- "apr",
- "may",
- "iyn",
- "iyl",
- "avq",
- "sen",
- "okt",
- "noy",
- "dek"
+ "\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"
],
"fullDate": "EEEE, d, MMMM, y",
"longDate": "d MMMM, y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_az-latn-az.js b/public/app/bower_components/angular-i18n/angular-locale_az-latn-az.js
index 80cec56b..d805ea58 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_az-latn-az.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_az-latn-az.js
@@ -36,7 +36,7 @@ $provide.value("$locale", {
"\u00c7.A.",
"\u00c7.",
"C.A.",
- "C",
+ "C.",
"\u015e."
],
"SHORTMONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_az-latn.js b/public/app/bower_components/angular-i18n/angular-locale_az-latn.js
index ac82a0a5..b5bbc4c0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_az-latn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_az-latn.js
@@ -36,7 +36,7 @@ $provide.value("$locale", {
"\u00c7.A.",
"\u00c7.",
"C.A.",
- "C",
+ "C.",
"\u015e."
],
"SHORTMONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_az.js b/public/app/bower_components/angular-i18n/angular-locale_az.js
index f00497b7..7b296d54 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_az.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_az.js
@@ -36,7 +36,7 @@ $provide.value("$locale", {
"\u00c7.A.",
"\u00c7.",
"C.A.",
- "C",
+ "C.",
"\u015e."
],
"SHORTMONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bg-bg.js b/public/app/bower_components/angular-i18n/angular-locale_bg-bg.js
index 6da9f5b0..20b7b26e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bg-bg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bg-bg.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d.MM.y '\u0433'. H:mm:ss",
"mediumDate": "d.MM.y '\u0433'.",
"mediumTime": "H:mm:ss",
- "short": "d.MM.yy H:mm",
- "shortDate": "d.MM.yy",
+ "short": "d.MM.yy '\u0433'. H:mm",
+ "shortDate": "d.MM.yy '\u0433'.",
"shortTime": "H:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bg.js b/public/app/bower_components/angular-i18n/angular-locale_bg.js
index ea9884ea..25983651 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bg.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d.MM.y '\u0433'. H:mm:ss",
"mediumDate": "d.MM.y '\u0433'.",
"mediumTime": "H:mm:ss",
- "short": "d.MM.yy H:mm",
- "shortDate": "d.MM.yy",
+ "short": "d.MM.yy '\u0433'. H:mm",
+ "shortDate": "d.MM.yy '\u0433'.",
"shortTime": "H:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bm-latn-ml.js b/public/app/bower_components/angular-i18n/angular-locale_bm-latn-ml.js
new file mode 100644
index 00000000..e8214c5f
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_bm-latn-ml.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "AM",
+ "PM"
+ ],
+ "DAY": [
+ "kari",
+ "nt\u025bn\u025b",
+ "tarata",
+ "araba",
+ "alamisa",
+ "juma",
+ "sibiri"
+ ],
+ "MONTH": [
+ "zanwuye",
+ "feburuye",
+ "marisi",
+ "awirili",
+ "m\u025b",
+ "zuw\u025bn",
+ "zuluye",
+ "uti",
+ "s\u025btanburu",
+ "\u0254kut\u0254buru",
+ "nowanburu",
+ "desanburu"
+ ],
+ "SHORTDAY": [
+ "kar",
+ "nt\u025b",
+ "tar",
+ "ara",
+ "ala",
+ "jum",
+ "sib"
+ ],
+ "SHORTMONTH": [
+ "zan",
+ "feb",
+ "mar",
+ "awi",
+ "m\u025b",
+ "zuw",
+ "zul",
+ "uti",
+ "s\u025bt",
+ "\u0254ku",
+ "now",
+ "des"
+ ],
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM, y HH:mm:ss",
+ "mediumDate": "d MMM, y",
+ "mediumTime": "HH:mm:ss",
+ "short": "d/M/y HH:mm",
+ "shortDate": "d/M/y",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "CFA",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "bm-latn-ml",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bm-latn.js b/public/app/bower_components/angular-i18n/angular-locale_bm-latn.js
new file mode 100644
index 00000000..cc90ba44
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_bm-latn.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "AM",
+ "PM"
+ ],
+ "DAY": [
+ "kari",
+ "nt\u025bn\u025b",
+ "tarata",
+ "araba",
+ "alamisa",
+ "juma",
+ "sibiri"
+ ],
+ "MONTH": [
+ "zanwuye",
+ "feburuye",
+ "marisi",
+ "awirili",
+ "m\u025b",
+ "zuw\u025bn",
+ "zuluye",
+ "uti",
+ "s\u025btanburu",
+ "\u0254kut\u0254buru",
+ "nowanburu",
+ "desanburu"
+ ],
+ "SHORTDAY": [
+ "kar",
+ "nt\u025b",
+ "tar",
+ "ara",
+ "ala",
+ "jum",
+ "sib"
+ ],
+ "SHORTMONTH": [
+ "zan",
+ "feb",
+ "mar",
+ "awi",
+ "m\u025b",
+ "zuw",
+ "zul",
+ "uti",
+ "s\u025bt",
+ "\u0254ku",
+ "now",
+ "des"
+ ],
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM, y HH:mm:ss",
+ "mediumDate": "d MMM, y",
+ "mediumTime": "HH:mm:ss",
+ "short": "d/M/y HH:mm",
+ "shortDate": "d/M/y",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "bm-latn",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bn-bd.js b/public/app/bower_components/angular-i18n/angular-locale_bn-bd.js
index df9cd7d1..2443e9b5 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bn-bd.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bn-bd.js
@@ -12,7 +12,7 @@ $provide.value("$locale", {
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
- "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
+ "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bn-in.js b/public/app/bower_components/angular-i18n/angular-locale_bn-in.js
index 73f43294..2183318e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bn-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bn-in.js
@@ -12,7 +12,7 @@ $provide.value("$locale", {
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
- "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
+ "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bn.js b/public/app/bower_components/angular-i18n/angular-locale_bn.js
index 118cf63c..4d6730dd 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bn.js
@@ -12,7 +12,7 @@ $provide.value("$locale", {
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
- "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
+ "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bo-cn.js b/public/app/bower_components/angular-i18n/angular-locale_bo-cn.js
index fffa99ae..79e1087c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bo-cn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bo-cn.js
@@ -29,9 +29,9 @@ $provide.value("$locale", {
"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
- "\u0f42\u0f5f\u0f60\u0f0b\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f42\u0f5f\u0f60\u0f0b\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
- "\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0f44\u0f66\u0f0b",
+ "\u0f42\u0f5f\u0f60\u0f0b\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b"
],
"MONTH": [
@@ -52,9 +52,9 @@ $provide.value("$locale", {
"\u0f49\u0f72\u0f0b\u0f58\u0f0b",
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
"\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
- "\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b",
"\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
- "\u0f66\u0f44\u0f66\u0f0b",
+ "\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b",
"\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b"
],
"SHORTMONTH": [
@@ -72,7 +72,7 @@ $provide.value("$locale", {
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22"
],
"fullDate": "y MMMM d, EEEE",
- "longDate": "\u0f66\u0fa6\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
+ "longDate": "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
"medium": "y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd HH:mm:ss",
"mediumDate": "y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bo-in.js b/public/app/bower_components/angular-i18n/angular-locale_bo-in.js
index 54de930b..64b482c8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bo-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bo-in.js
@@ -29,9 +29,9 @@ $provide.value("$locale", {
"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
- "\u0f42\u0f5f\u0f60\u0f0b\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f42\u0f5f\u0f60\u0f0b\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
- "\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0f44\u0f66\u0f0b",
+ "\u0f42\u0f5f\u0f60\u0f0b\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b"
],
"MONTH": [
@@ -52,9 +52,9 @@ $provide.value("$locale", {
"\u0f49\u0f72\u0f0b\u0f58\u0f0b",
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
"\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
- "\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b",
"\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
- "\u0f66\u0f44\u0f66\u0f0b",
+ "\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b",
"\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b"
],
"SHORTMONTH": [
@@ -72,7 +72,7 @@ $provide.value("$locale", {
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22"
],
"fullDate": "y MMMM d, EEEE",
- "longDate": "\u0f66\u0fa6\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
+ "longDate": "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
"medium": "y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd HH:mm:ss",
"mediumDate": "y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bo.js b/public/app/bower_components/angular-i18n/angular-locale_bo.js
index 881b1b31..c97bc68f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bo.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bo.js
@@ -29,9 +29,9 @@ $provide.value("$locale", {
"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
- "\u0f42\u0f5f\u0f60\u0f0b\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f42\u0f5f\u0f60\u0f0b\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
- "\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0f44\u0f66\u0f0b",
+ "\u0f42\u0f5f\u0f60\u0f0b\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b",
"\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b"
],
"MONTH": [
@@ -52,9 +52,9 @@ $provide.value("$locale", {
"\u0f49\u0f72\u0f0b\u0f58\u0f0b",
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
"\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
- "\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
+ "\u0f63\u0fb7\u0f42\u0f0b\u0f54\u0f0b",
"\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
- "\u0f66\u0f44\u0f66\u0f0b",
+ "\u0f54\u0f0b\u0f66\u0f44\u0f66\u0f0b",
"\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b"
],
"SHORTMONTH": [
@@ -72,7 +72,7 @@ $provide.value("$locale", {
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22"
],
"fullDate": "y MMMM d, EEEE",
- "longDate": "\u0f66\u0fa6\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
+ "longDate": "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
"medium": "y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd HH:mm:ss",
"mediumDate": "y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_br-fr.js b/public/app/bower_components/angular-i18n/angular-locale_br-fr.js
index ae40e7d1..c63e558a 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_br-fr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_br-fr.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "A.M.",
+ "G.M."
],
"DAY": [
"Sul",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"Kerzu"
],
"SHORTDAY": [
- "sul",
- "lun",
- "meu.",
- "mer.",
- "yaou",
- "gwe.",
- "sad."
+ "Sul",
+ "Lun",
+ "Meu.",
+ "Mer.",
+ "Yaou",
+ "Gwe.",
+ "Sad."
],
"SHORTMONTH": [
"Gen",
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4\u00a0-",
- "negSuf": "",
- "posPre": "\u00a4\u00a0",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_br.js b/public/app/bower_components/angular-i18n/angular-locale_br.js
index c93fc74e..08114a67 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_br.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_br.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "A.M.",
+ "G.M."
],
"DAY": [
"Sul",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"Kerzu"
],
"SHORTDAY": [
- "sul",
- "lun",
- "meu.",
- "mer.",
- "yaou",
- "gwe.",
- "sad."
+ "Sul",
+ "Lun",
+ "Meu.",
+ "Mer.",
+ "Yaou",
+ "Gwe.",
+ "Sad."
],
"SHORTMONTH": [
"Gen",
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4\u00a0-",
- "negSuf": "",
- "posPre": "\u00a4\u00a0",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bs-latn-ba.js b/public/app/bower_components/angular-i18n/angular-locale_bs-latn-ba.js
index 9e8c87ad..978b4519 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bs-latn-ba.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bs-latn-ba.js
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "pre podne",
+ "prije podne",
"popodne"
],
"DAY": [
@@ -42,7 +42,7 @@ $provide.value("$locale", {
"maj",
"juni",
"juli",
- "avgust",
+ "august",
"septembar",
"oktobar",
"novembar",
@@ -65,7 +65,7 @@ $provide.value("$locale", {
"maj",
"jun",
"jul",
- "avg",
+ "aug",
"sep",
"okt",
"nov",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, dd. MMMM y.",
"longDate": "dd. MMMM y.",
- "medium": "dd.MM.y. HH:mm:ss",
- "mediumDate": "dd.MM.y.",
+ "medium": "dd. MMM. y. HH:mm:ss",
+ "mediumDate": "dd. MMM. y.",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy. HH:mm",
"shortDate": "dd.MM.yy.",
@@ -102,10 +102,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4\u00a0-",
- "negSuf": "",
- "posPre": "\u00a4\u00a0",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bs-latn.js b/public/app/bower_components/angular-i18n/angular-locale_bs-latn.js
index 3250375a..ae0a3ba3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bs-latn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bs-latn.js
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "pre podne",
+ "prije podne",
"popodne"
],
"DAY": [
@@ -42,7 +42,7 @@ $provide.value("$locale", {
"maj",
"juni",
"juli",
- "avgust",
+ "august",
"septembar",
"oktobar",
"novembar",
@@ -65,7 +65,7 @@ $provide.value("$locale", {
"maj",
"jun",
"jul",
- "avg",
+ "aug",
"sep",
"okt",
"nov",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, dd. MMMM y.",
"longDate": "dd. MMMM y.",
- "medium": "dd.MM.y. HH:mm:ss",
- "mediumDate": "dd.MM.y.",
+ "medium": "dd. MMM. y. HH:mm:ss",
+ "mediumDate": "dd. MMM. y.",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy. HH:mm",
"shortDate": "dd.MM.yy.",
@@ -102,10 +102,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4\u00a0-",
- "negSuf": "",
- "posPre": "\u00a4\u00a0",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_bs.js b/public/app/bower_components/angular-i18n/angular-locale_bs.js
index 298ea431..11edf78b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_bs.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_bs.js
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "pre podne",
+ "prije podne",
"popodne"
],
"DAY": [
@@ -42,7 +42,7 @@ $provide.value("$locale", {
"maj",
"juni",
"juli",
- "avgust",
+ "august",
"septembar",
"oktobar",
"novembar",
@@ -65,7 +65,7 @@ $provide.value("$locale", {
"maj",
"jun",
"jul",
- "avg",
+ "aug",
"sep",
"okt",
"nov",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, dd. MMMM y.",
"longDate": "dd. MMMM y.",
- "medium": "dd.MM.y. HH:mm:ss",
- "mediumDate": "dd.MM.y.",
+ "medium": "dd. MMM. y. HH:mm:ss",
+ "mediumDate": "dd. MMM. y.",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy. HH:mm",
"shortDate": "dd.MM.yy.",
@@ -102,10 +102,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4\u00a0-",
- "negSuf": "",
- "posPre": "\u00a4\u00a0",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ca-ad.js b/public/app/bower_components/angular-i18n/angular-locale_ca-ad.js
index 92ee60f9..988c3c1c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ca-ad.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ca-ad.js
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"gen.",
- "feb.",
+ "febr.",
"mar\u00e7",
"abr.",
"maig",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
- "medium": "dd/MM/y H:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ca-es-valencia.js b/public/app/bower_components/angular-i18n/angular-locale_ca-es-valencia.js
index 781bf6ca..4a1e28a6 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ca-es-valencia.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ca-es-valencia.js
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"gen.",
- "feb.",
+ "febr.",
"mar\u00e7",
"abr.",
"maig",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
- "medium": "dd/MM/y H:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ca-es.js b/public/app/bower_components/angular-i18n/angular-locale_ca-es.js
index 37dcf763..f83aacf2 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ca-es.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ca-es.js
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"gen.",
- "feb.",
+ "febr.",
"mar\u00e7",
"abr.",
"maig",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
- "medium": "dd/MM/y H:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ca-fr.js b/public/app/bower_components/angular-i18n/angular-locale_ca-fr.js
index e6c94d3a..232bb242 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ca-fr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ca-fr.js
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"gen.",
- "feb.",
+ "febr.",
"mar\u00e7",
"abr.",
"maig",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
- "medium": "dd/MM/y H:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ca-it.js b/public/app/bower_components/angular-i18n/angular-locale_ca-it.js
index fa5fb74b..ef4c3f57 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ca-it.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ca-it.js
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"gen.",
- "feb.",
+ "febr.",
"mar\u00e7",
"abr.",
"maig",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
- "medium": "dd/MM/y H:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ca.js b/public/app/bower_components/angular-i18n/angular-locale_ca.js
index 486f7771..845f1e31 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ca.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ca.js
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"gen.",
- "feb.",
+ "febr.",
"mar\u00e7",
"abr.",
"maig",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM 'de' y",
"longDate": "d MMMM 'de' y",
- "medium": "dd/MM/y H:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_cy-gb.js b/public/app/bower_components/angular-i18n/angular-locale_cy-gb.js
index 5b090542..6c96f5c6 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_cy-gb.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_cy-gb.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/y HH:mm",
- "shortDate": "dd/MM/y",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_cy.js b/public/app/bower_components/angular-i18n/angular-locale_cy.js
index 87aadb94..18708b52 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_cy.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_cy.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/y HH:mm",
- "shortDate": "dd/MM/y",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_da-dk.js b/public/app/bower_components/angular-i18n/angular-locale_da-dk.js
index 92f549f9..ddce855c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_da-dk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_da-dk.js
@@ -85,7 +85,7 @@ $provide.value("$locale", {
"dec."
],
"fullDate": "EEEE 'den' d. MMMM y",
- "longDate": "d. MMM y",
+ "longDate": "d. MMMM y",
"medium": "dd/MM/y HH.mm.ss",
"mediumDate": "dd/MM/y",
"mediumTime": "HH.mm.ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_da-gl.js b/public/app/bower_components/angular-i18n/angular-locale_da-gl.js
index 179f0e47..bd713366 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_da-gl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_da-gl.js
@@ -85,7 +85,7 @@ $provide.value("$locale", {
"dec."
],
"fullDate": "EEEE 'den' d. MMMM y",
- "longDate": "d. MMM y",
+ "longDate": "d. MMMM y",
"medium": "dd/MM/y HH.mm.ss",
"mediumDate": "dd/MM/y",
"mediumTime": "HH.mm.ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_da.js b/public/app/bower_components/angular-i18n/angular-locale_da.js
index 9d4a5d32..ca257cc3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_da.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_da.js
@@ -85,7 +85,7 @@ $provide.value("$locale", {
"dec."
],
"fullDate": "EEEE 'den' d. MMMM y",
- "longDate": "d. MMM y",
+ "longDate": "d. MMMM y",
"medium": "dd/MM/y HH.mm.ss",
"mediumDate": "dd/MM/y",
"mediumTime": "HH.mm.ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_de-at.js b/public/app/bower_components/angular-i18n/angular-locale_de-at.js
index 75a4e3cb..53c651bf 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_de-at.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_de-at.js
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, dd. MMMM y",
"longDate": "dd. MMMM y",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "medium": "dd. MMM y HH:mm:ss",
+ "mediumDate": "dd. MMM y",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy HH:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_dsb-de.js b/public/app/bower_components/angular-i18n/angular-locale_dsb-de.js
new file mode 100644
index 00000000..5601383c
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_dsb-de.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "dopo\u0142dnja",
+ "w\u00f3tpo\u0142dnja"
+ ],
+ "DAY": [
+ "nje\u017aela",
+ "p\u00f3nje\u017aele",
+ "wa\u0142tora",
+ "srjoda",
+ "stw\u00f3rtk",
+ "p\u011btk",
+ "sobota"
+ ],
+ "MONTH": [
+ "januara",
+ "februara",
+ "m\u011brca",
+ "apryla",
+ "maja",
+ "junija",
+ "julija",
+ "awgusta",
+ "septembra",
+ "oktobra",
+ "nowembra",
+ "decembra"
+ ],
+ "SHORTDAY": [
+ "nje",
+ "p\u00f3n",
+ "wa\u0142",
+ "srj",
+ "stw",
+ "p\u011bt",
+ "sob"
+ ],
+ "SHORTMONTH": [
+ "jan.",
+ "feb.",
+ "m\u011br.",
+ "apr.",
+ "maj.",
+ "jun.",
+ "jul.",
+ "awg.",
+ "sep.",
+ "okt.",
+ "now.",
+ "dec."
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.y H:mm:ss",
+ "mediumDate": "d.M.y",
+ "mediumTime": "H:mm:ss",
+ "short": "d.M.yy H:mm",
+ "shortDate": "d.M.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "dsb-de",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_dsb.js b/public/app/bower_components/angular-i18n/angular-locale_dsb.js
new file mode 100644
index 00000000..4cde28f2
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_dsb.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "dopo\u0142dnja",
+ "w\u00f3tpo\u0142dnja"
+ ],
+ "DAY": [
+ "nje\u017aela",
+ "p\u00f3nje\u017aele",
+ "wa\u0142tora",
+ "srjoda",
+ "stw\u00f3rtk",
+ "p\u011btk",
+ "sobota"
+ ],
+ "MONTH": [
+ "januara",
+ "februara",
+ "m\u011brca",
+ "apryla",
+ "maja",
+ "junija",
+ "julija",
+ "awgusta",
+ "septembra",
+ "oktobra",
+ "nowembra",
+ "decembra"
+ ],
+ "SHORTDAY": [
+ "nje",
+ "p\u00f3n",
+ "wa\u0142",
+ "srj",
+ "stw",
+ "p\u011bt",
+ "sob"
+ ],
+ "SHORTMONTH": [
+ "jan.",
+ "feb.",
+ "m\u011br.",
+ "apr.",
+ "maj.",
+ "jun.",
+ "jul.",
+ "awg.",
+ "sep.",
+ "okt.",
+ "now.",
+ "dec."
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.y H:mm:ss",
+ "mediumDate": "d.M.y",
+ "mediumTime": "H:mm:ss",
+ "short": "d.M.yy H:mm",
+ "shortDate": "d.M.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "dsb",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-150.js b/public/app/bower_components/angular-i18n/angular-locale_en-150.js
index 1eaa820b..bb362029 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-150.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-150.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-au.js b/public/app/bower_components/angular-i18n/angular-locale_en-au.js
index 03f5fd7b..0cd27dbd 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-au.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-au.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-be.js b/public/app/bower_components/angular-i18n/angular-locale_en-be.js
index 0ffec93b..8fc40941 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-be.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-be.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-dg.js b/public/app/bower_components/angular-i18n/angular-locale_en-dg.js
index 98a1c800..56dacaae 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-dg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-dg.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-fk.js b/public/app/bower_components/angular-i18n/angular-locale_en-fk.js
index b8f2ce17..4a9af0d1 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-fk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-fk.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u00a3",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-gg.js b/public/app/bower_components/angular-i18n/angular-locale_en-gg.js
index 3f502d97..a7dbbe05 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-gg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-gg.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u00a3",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-gi.js b/public/app/bower_components/angular-i18n/angular-locale_en-gi.js
index 5dbe1b62..cef1470b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-gi.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-gi.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u00a3",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-hk.js b/public/app/bower_components/angular-i18n/angular-locale_en-hk.js
index 117c7695..d754ed05 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-hk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-hk.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,13 +71,13 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, d MMMM, y",
- "longDate": "d MMMM, y",
- "medium": "d MMM, y h:mm:ss a",
- "mediumDate": "d MMM, y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y h:mm:ss a",
+ "mediumDate": "d MMM y",
"mediumTime": "h:mm:ss a",
- "short": "d/M/yy h:mm a",
- "shortDate": "d/M/yy",
+ "short": "d/M/y h:mm a",
+ "shortDate": "d/M/y",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-ie.js b/public/app/bower_components/angular-i18n/angular-locale_en-ie.js
index a4a40f8e..16caaa63 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-ie.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-ie.js
@@ -72,13 +72,13 @@ $provide.value("$locale", {
"Dec"
],
"fullDate": "EEEE d MMMM y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u20ac",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-im.js b/public/app/bower_components/angular-i18n/angular-locale_en-im.js
index 49857629..a5cf5bb7 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-im.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-im.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u00a3",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-in.js b/public/app/bower_components/angular-i18n/angular-locale_en-in.js
index 23cdd9db..302a941c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-in.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-io.js b/public/app/bower_components/angular-i18n/angular-locale_en-io.js
index 9c6a8be1..c58f045c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-io.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-io.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-je.js b/public/app/bower_components/angular-i18n/angular-locale_en-je.js
index 60291ff4..3a8c79c8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-je.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-je.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u00a3",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-mo.js b/public/app/bower_components/angular-i18n/angular-locale_en-mo.js
index 52eac37a..816edf00 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-mo.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-mo.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "MOP",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-mt.js b/public/app/bower_components/angular-i18n/angular-locale_en-mt.js
index 27eb3692..0b8eb3ef 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-mt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-mt.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -73,12 +73,12 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM y",
"longDate": "dd MMMM y",
- "medium": "dd MMM y h:mm:ss a",
+ "medium": "dd MMM y HH:mm:ss",
"mediumDate": "dd MMM y",
- "mediumTime": "h:mm:ss a",
- "short": "dd/MM/y h:mm a",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
"shortDate": "dd/MM/y",
- "shortTime": "h:mm a"
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u20ac",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-my.js b/public/app/bower_components/angular-i18n/angular-locale_en-my.js
new file mode 100644
index 00000000..083838c0
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-my.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "AM",
+ "PM"
+ ],
+ "DAY": [
+ "Sunday",
+ "Monday",
+ "Tuesday",
+ "Wednesday",
+ "Thursday",
+ "Friday",
+ "Saturday"
+ ],
+ "MONTH": [
+ "January",
+ "February",
+ "March",
+ "April",
+ "May",
+ "June",
+ "July",
+ "August",
+ "September",
+ "October",
+ "November",
+ "December"
+ ],
+ "SHORTDAY": [
+ "Sun",
+ "Mon",
+ "Tue",
+ "Wed",
+ "Thu",
+ "Fri",
+ "Sat"
+ ],
+ "SHORTMONTH": [
+ "Jan",
+ "Feb",
+ "Mar",
+ "Apr",
+ "May",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Oct",
+ "Nov",
+ "Dec"
+ ],
+ "fullDate": "EEEE, MMMM d, y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y h:mm:ss a",
+ "mediumDate": "MMM d, y",
+ "mediumTime": "h:mm:ss a",
+ "short": "M/d/yy h:mm a",
+ "shortDate": "M/d/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RM",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "en-my",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-nz.js b/public/app/bower_components/angular-i18n/angular-locale_en-nz.js
index a025b2c0..1b38701f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-nz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-nz.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-pk.js b/public/app/bower_components/angular-i18n/angular-locale_en-pk.js
index ad20eb10..92b25676 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-pk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-pk.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-sg.js b/public/app/bower_components/angular-i18n/angular-locale_en-sg.js
index 3a819c3f..fa0ba784 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-sg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-sg.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-sh.js b/public/app/bower_components/angular-i18n/angular-locale_en-sh.js
index fe89591c..2e858730 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-sh.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-sh.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u00a3",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_en-vg.js b/public/app/bower_components/angular-i18n/angular-locale_en-vg.js
index a814d0f9..547a0c7f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_en-vg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_en-vg.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "am",
+ "pm"
],
"DAY": [
"Sunday",
@@ -71,14 +71,14 @@ $provide.value("$locale", {
"Nov",
"Dec"
],
- "fullDate": "EEEE, MMMM d, y",
- "longDate": "MMMM d, y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
- "mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
- "shortTime": "h:mm a"
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/y HH:mm",
+ "shortDate": "dd/MM/y",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-419.js b/public/app/bower_components/angular-i18n/angular-locale_es-419.js
index 9c23e94c..fe3022f3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-419.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-419.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ar.js b/public/app/bower_components/angular-i18n/angular-locale_es-ar.js
index aa9d0166..29a20887 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ar.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ar.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-bo.js b/public/app/bower_components/angular-i18n/angular-locale_es-bo.js
index 26828bca..ead66e4e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-bo.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-bo.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Bs",
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-cl.js b/public/app/bower_components/angular-i18n/angular-locale_es-cl.js
index fc84ae29..461ac29e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-cl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-cl.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "dd-MM-y H:mm:ss",
+ "medium": "dd-MM-y h:mm:ss a",
"mediumDate": "dd-MM-y",
- "mediumTime": "H:mm:ss",
- "short": "dd-MM-yy H:mm",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd-MM-yy h:mm a",
"shortDate": "dd-MM-yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-co.js b/public/app/bower_components/angular-i18n/angular-locale_es-co.js
index 7a929adc..cf447547 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-co.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-co.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,7 +48,7 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-cr.js b/public/app/bower_components/angular-i18n/angular-locale_es-cr.js
index 3dc01eea..5682e9b0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-cr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-cr.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u20a1",
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-cu.js b/public/app/bower_components/angular-i18n/angular-locale_es-cu.js
index a2c8695e..cd49522a 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-cu.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-cu.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-do.js b/public/app/bower_components/angular-i18n/angular-locale_es-do.js
index 833b8291..ddb4b41d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-do.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-do.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ea.js b/public/app/bower_components/angular-i18n/angular-locale_es-ea.js
index 2233f375..cc1684c0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ea.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ea.js
@@ -55,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
+ "medium": "d 'de' MMM 'de' y H:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ec.js b/public/app/bower_components/angular-i18n/angular-locale_es-ec.js
index 15f46c8f..27b09388 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ec.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ec.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-es.js b/public/app/bower_components/angular-i18n/angular-locale_es-es.js
index 81967539..2d689335 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-es.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-es.js
@@ -55,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
+ "medium": "d 'de' MMM 'de' y H:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-gq.js b/public/app/bower_components/angular-i18n/angular-locale_es-gq.js
index 2f92c53c..b274cbff 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-gq.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-gq.js
@@ -55,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
+ "medium": "d 'de' MMM 'de' y H:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-gt.js b/public/app/bower_components/angular-i18n/angular-locale_es-gt.js
index 62685ee6..0e9b86f0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-gt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-gt.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/MM/y H:mm:ss",
+ "medium": "d/MM/y h:mm:ss a",
"mediumDate": "d/MM/y",
- "mediumTime": "H:mm:ss",
- "short": "d/MM/yy H:mm",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
"shortDate": "d/MM/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Q",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-hn.js b/public/app/bower_components/angular-i18n/angular-locale_es-hn.js
index 80aa6acc..dff7efd4 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-hn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-hn.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE dd 'de' MMMM 'de' y",
"longDate": "dd 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "L",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ic.js b/public/app/bower_components/angular-i18n/angular-locale_es-ic.js
index f280db63..468afbe4 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ic.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ic.js
@@ -55,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
+ "medium": "d 'de' MMM 'de' y H:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-mx.js b/public/app/bower_components/angular-i18n/angular-locale_es-mx.js
index 9a64d0a0..a3d99aa0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-mx.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-mx.js
@@ -31,36 +31,36 @@ $provide.value("$locale", {
"diciembre"
],
"SHORTDAY": [
- "dom.",
- "lun.",
- "mar.",
- "mi\u00e9r.",
- "jue.",
- "vier.",
+ "dom",
+ "lun",
+ "mar",
+ "mi\u00e9",
+ "jue",
+ "vie",
"s\u00e1b"
],
"SHORTMONTH": [
- "ene.",
- "febr.",
- "mzo.",
- "abr.",
- "my.",
- "jun.",
- "jul.",
- "ag.",
- "set.",
- "oct.",
- "nov.",
- "dic."
+ "ene",
+ "feb",
+ "mar",
+ "abr",
+ "may",
+ "jun",
+ "jul",
+ "ago",
+ "sep",
+ "oct",
+ "nov",
+ "dic"
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "dd/MM/y HH:mm:ss",
+ "medium": "dd/MM/y H:mm:ss",
"mediumDate": "dd/MM/y",
- "mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
+ "mediumTime": "H:mm:ss",
+ "short": "dd/MM/yy H:mm",
"shortDate": "dd/MM/yy",
- "shortTime": "HH:mm"
+ "shortTime": "H:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ni.js b/public/app/bower_components/angular-i18n/angular-locale_es-ni.js
index 21ffe12f..5f5f5966 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ni.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ni.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "C$",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-pa.js b/public/app/bower_components/angular-i18n/angular-locale_es-pa.js
index 7a2beb96..543aab19 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-pa.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-pa.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "MM/dd/y H:mm:ss",
+ "medium": "MM/dd/y h:mm:ss a",
"mediumDate": "MM/dd/y",
- "mediumTime": "H:mm:ss",
- "short": "MM/dd/yy H:mm",
+ "mediumTime": "h:mm:ss a",
+ "short": "MM/dd/yy h:mm a",
"shortDate": "MM/dd/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "B/.",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-pe.js b/public/app/bower_components/angular-i18n/angular-locale_es-pe.js
index b18343a6..39297d94 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-pe.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-pe.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/MM/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
"shortDate": "d/MM/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "S/.",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ph.js b/public/app/bower_components/angular-i18n/angular-locale_es-ph.js
index fbf78cf0..a51444bd 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ph.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ph.js
@@ -55,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
+ "medium": "d 'de' MMM 'de' y H:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-pr.js b/public/app/bower_components/angular-i18n/angular-locale_es-pr.js
index d1b32788..8b7d7b7c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-pr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-pr.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,7 +48,7 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
@@ -64,8 +64,8 @@ $provide.value("$locale", {
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-py.js b/public/app/bower_components/angular-i18n/angular-locale_es-py.js
index 55e3db0c..59cf9814 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-py.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-py.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Gs",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-sv.js b/public/app/bower_components/angular-i18n/angular-locale_es-sv.js
index 05621f7c..9f3182a6 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-sv.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-sv.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-us.js b/public/app/bower_components/angular-i18n/angular-locale_es-us.js
index 7e6d5088..915c7373 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-us.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-us.js
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,24 +48,24 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "MMM d, y h:mm:ss a",
- "mediumDate": "MMM d, y",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "h:mm:ss a",
- "short": "M/d/yy h:mm a",
- "shortDate": "M/d/yy",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
- "DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
"PATTERNS": [
{
"gSize": 3,
@@ -84,10 +84,10 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a0\u00a4",
- "posPre": "",
- "posSuf": "\u00a0\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-uy.js b/public/app/bower_components/angular-i18n/angular-locale_es-uy.js
index c3330494..856cd07f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-uy.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-uy.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es-ve.js b/public/app/bower_components/angular-i18n/angular-locale_es-ve.js
index 65a667c3..5af81067 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es-ve.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es-ve.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "a. m.",
- "p. m."
+ "a.\u00a0m.",
+ "p.\u00a0m."
],
"DAY": [
"domingo",
@@ -25,7 +25,7 @@ $provide.value("$locale", {
"junio",
"julio",
"agosto",
- "septiembre",
+ "setiembre",
"octubre",
"noviembre",
"diciembre"
@@ -48,19 +48,19 @@ $provide.value("$locale", {
"jun.",
"jul.",
"ago.",
- "sept.",
+ "set.",
"oct.",
"nov.",
"dic."
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
- "mediumTime": "H:mm:ss",
- "short": "d/M/yy H:mm",
+ "medium": "d 'de' MMM 'de' y h:mm:ss a",
+ "mediumDate": "d 'de' MMM 'de' y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
"shortDate": "d/M/yy",
- "shortTime": "H:mm"
+ "shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Bs",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_es.js b/public/app/bower_components/angular-i18n/angular-locale_es.js
index 647890bf..cce1c131 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_es.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_es.js
@@ -55,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "d/M/y H:mm:ss",
- "mediumDate": "d/M/y",
+ "medium": "d 'de' MMM 'de' y H:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "H:mm:ss",
"short": "d/M/yy H:mm",
"shortDate": "d/M/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_et-ee.js b/public/app/bower_components/angular-i18n/angular-locale_et-ee.js
index f1456fea..5a4d6593 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_et-ee.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_et-ee.js
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d. MMMM y",
"longDate": "d. MMMM y",
- "medium": "dd.MM.y H:mm.ss",
- "mediumDate": "dd.MM.y",
+ "medium": "d. MMM y H:mm.ss",
+ "mediumDate": "d. MMM y",
"mediumTime": "H:mm.ss",
"short": "dd.MM.yy H:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_et.js b/public/app/bower_components/angular-i18n/angular-locale_et.js
index e1d6093e..bade0a01 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_et.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_et.js
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d. MMMM y",
"longDate": "d. MMMM y",
- "medium": "dd.MM.y H:mm.ss",
- "mediumDate": "dd.MM.y",
+ "medium": "d. MMM y H:mm.ss",
+ "mediumDate": "d. MMM y",
"mediumTime": "H:mm.ss",
"short": "dd.MM.yy H:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_eu-es.js b/public/app/bower_components/angular-i18n/angular-locale_eu-es.js
index a6d6d23d..2734ba09 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_eu-es.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_eu-es.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "y MMM d HH:mm:ss",
"mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
- "short": "y-MM-dd HH:mm",
- "shortDate": "y-MM-dd",
+ "short": "y/MM/dd HH:mm",
+ "shortDate": "y/MM/dd",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_eu.js b/public/app/bower_components/angular-i18n/angular-locale_eu.js
index 8a55b138..53714803 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_eu.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_eu.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "y MMM d HH:mm:ss",
"mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
- "short": "y-MM-dd HH:mm",
- "shortDate": "y-MM-dd",
+ "short": "y/MM/dd HH:mm",
+ "shortDate": "y/MM/dd",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_fr-ch.js b/public/app/bower_components/angular-i18n/angular-locale_fr-ch.js
index be55e9f3..bb51a7da 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_fr-ch.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_fr-ch.js
@@ -65,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "CHF",
"DECIMAL_SEP": ".",
- "GROUP_SEP": "'",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_gd-gb.js b/public/app/bower_components/angular-i18n/angular-locale_gd-gb.js
index 39b47a0d..c9b2db6f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_gd-gb.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_gd-gb.js
@@ -30,23 +30,23 @@ $provide.value("$locale", {
"DiLuain",
"DiM\u00e0irt",
"DiCiadain",
- "Diardaoin",
+ "DiarDaoin",
"DihAoine",
"DiSathairne"
],
"MONTH": [
- "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"
+ "dhen Fhaoilleach",
+ "dhen Ghearran",
+ "dhen Mh\u00e0rt",
+ "dhen Ghiblean",
+ "dhen Ch\u00e8itean",
+ "dhen \u00d2gmhios",
+ "dhen Iuchar",
+ "dhen L\u00f9nastal",
+ "dhen t-Sultain",
+ "dhen D\u00e0mhair",
+ "dhen t-Samhain",
+ "dhen D\u00f9bhlachd"
],
"SHORTDAY": [
"DiD",
@@ -71,8 +71,8 @@ $provide.value("$locale", {
"Samh",
"D\u00f9bh"
],
- "fullDate": "EEEE, d MMMM y",
- "longDate": "d MMMM y",
+ "fullDate": "EEEE, d'mh' MMMM y",
+ "longDate": "d'mh' MMMM y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_gd.js b/public/app/bower_components/angular-i18n/angular-locale_gd.js
index 5d8d68da..f45d324d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_gd.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_gd.js
@@ -30,23 +30,23 @@ $provide.value("$locale", {
"DiLuain",
"DiM\u00e0irt",
"DiCiadain",
- "Diardaoin",
+ "DiarDaoin",
"DihAoine",
"DiSathairne"
],
"MONTH": [
- "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"
+ "dhen Fhaoilleach",
+ "dhen Ghearran",
+ "dhen Mh\u00e0rt",
+ "dhen Ghiblean",
+ "dhen Ch\u00e8itean",
+ "dhen \u00d2gmhios",
+ "dhen Iuchar",
+ "dhen L\u00f9nastal",
+ "dhen t-Sultain",
+ "dhen D\u00e0mhair",
+ "dhen t-Samhain",
+ "dhen D\u00f9bhlachd"
],
"SHORTDAY": [
"DiD",
@@ -71,8 +71,8 @@ $provide.value("$locale", {
"Samh",
"D\u00f9bh"
],
- "fullDate": "EEEE, d MMMM y",
- "longDate": "d MMMM y",
+ "fullDate": "EEEE, d'mh' MMMM y",
+ "longDate": "d'mh' MMMM y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_gsw-fr.js b/public/app/bower_components/angular-i18n/angular-locale_gsw-fr.js
new file mode 100644
index 00000000..7bf4b584
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_gsw-fr.js
@@ -0,0 +1,97 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "vorm.",
+ "nam."
+ ],
+ "DAY": [
+ "Sunntig",
+ "M\u00e4\u00e4ntig",
+ "Ziischtig",
+ "Mittwuch",
+ "Dunschtig",
+ "Friitig",
+ "Samschtig"
+ ],
+ "MONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4rz",
+ "April",
+ "Mai",
+ "Juni",
+ "Juli",
+ "Auguscht",
+ "Sept\u00e4mber",
+ "Oktoober",
+ "Nov\u00e4mber",
+ "Dez\u00e4mber"
+ ],
+ "SHORTDAY": [
+ "Su.",
+ "M\u00e4.",
+ "Zi.",
+ "Mi.",
+ "Du.",
+ "Fr.",
+ "Sa."
+ ],
+ "SHORTMONTH": [
+ "Jan",
+ "Feb",
+ "M\u00e4r",
+ "Apr",
+ "Mai",
+ "Jun",
+ "Jul",
+ "Aug",
+ "Sep",
+ "Okt",
+ "Nov",
+ "Dez"
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.y HH:mm:ss",
+ "mediumDate": "dd.MM.y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": "\u2019",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "gsw-fr",
+ "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_gu-in.js b/public/app/bower_components/angular-i18n/angular-locale_gu-in.js
index 9065f454..e9059a97 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_gu-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_gu-in.js
@@ -47,7 +47,7 @@ $provide.value("$locale", {
"\u0aae\u0ac7",
"\u0a9c\u0ac2\u0aa8",
"\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
- "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "\u0a91\u0a97",
"\u0ab8\u0aaa\u0acd\u0a9f\u0ac7",
"\u0a91\u0a95\u0acd\u0a9f\u0acb",
"\u0aa8\u0ab5\u0ac7",
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d MMM, y hh:mm:ss a",
"mediumDate": "d MMM, y",
"mediumTime": "hh:mm:ss a",
- "short": "d-MM-yy hh:mm a",
- "shortDate": "d-MM-yy",
+ "short": "d/M/yy hh:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "hh:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_gu.js b/public/app/bower_components/angular-i18n/angular-locale_gu.js
index 0e20f7c5..2f8e7e1a 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_gu.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_gu.js
@@ -47,7 +47,7 @@ $provide.value("$locale", {
"\u0aae\u0ac7",
"\u0a9c\u0ac2\u0aa8",
"\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
- "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "\u0a91\u0a97",
"\u0ab8\u0aaa\u0acd\u0a9f\u0ac7",
"\u0a91\u0a95\u0acd\u0a9f\u0acb",
"\u0aa8\u0ab5\u0ac7",
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d MMM, y hh:mm:ss a",
"mediumDate": "d MMM, y",
"mediumTime": "hh:mm:ss a",
- "short": "d-MM-yy hh:mm a",
- "shortDate": "d-MM-yy",
+ "short": "d/M/yy hh:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "hh:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ha-latn-gh.js b/public/app/bower_components/angular-i18n/angular-locale_ha-latn-gh.js
index e168e449..b7ee3177 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ha-latn-gh.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ha-latn-gh.js
@@ -31,7 +31,7 @@ $provide.value("$locale", {
"Talata",
"Laraba",
"Alhamis",
- "Jumma'a",
+ "Jumma\u02bca",
"Asabar"
],
"MONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ne.js b/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ne.js
index 6b34c92c..53ee55d7 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ne.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ne.js
@@ -31,7 +31,7 @@ $provide.value("$locale", {
"Talata",
"Laraba",
"Alhamis",
- "Jumma'a",
+ "Jumma\u02bca",
"Asabar"
],
"MONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ng.js b/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ng.js
index 262338f3..141a32a6 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ng.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ha-latn-ng.js
@@ -31,7 +31,7 @@ $provide.value("$locale", {
"Talata",
"Laraba",
"Alhamis",
- "Jumma'a",
+ "Jumma\u02bca",
"Asabar"
],
"MONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ha-latn.js b/public/app/bower_components/angular-i18n/angular-locale_ha-latn.js
index 7fdd7a2d..5f392435 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ha-latn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ha-latn.js
@@ -31,7 +31,7 @@ $provide.value("$locale", {
"Talata",
"Laraba",
"Alhamis",
- "Jumma'a",
+ "Jumma\u02bca",
"Asabar"
],
"MONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ha.js b/public/app/bower_components/angular-i18n/angular-locale_ha.js
index 7fd74208..30146d32 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ha.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ha.js
@@ -31,7 +31,7 @@ $provide.value("$locale", {
"Talata",
"Laraba",
"Alhamis",
- "Jumma'a",
+ "Jumma\u02bca",
"Asabar"
],
"MONTH": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_he-il.js b/public/app/bower_components/angular-i18n/angular-locale_he-il.js
index cdf66c3b..804e25bd 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_he-il.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_he-il.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d \u05d1MMM y HH:mm:ss",
"mediumDate": "d \u05d1MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.y HH:mm",
+ "shortDate": "d.M.y",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_he.js b/public/app/bower_components/angular-i18n/angular-locale_he.js
index 1c7d62b0..6b525ca7 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_he.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_he.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d \u05d1MMM y HH:mm:ss",
"mediumDate": "d \u05d1MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.y HH:mm",
+ "shortDate": "d.M.y",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hi-in.js b/public/app/bower_components/angular-i18n/angular-locale_hi-in.js
index 7420d14b..e1b0b8b2 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hi-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hi-in.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"\u091c\u0941\u0932\u093e\u0908",
"\u0905\u0917\u0938\u094d\u0924",
"\u0938\u093f\u0924\u0902\u092c\u0930",
- "\u0905\u0915\u094d\u091f\u0942\u092c\u0930",
+ "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
"\u0928\u0935\u0902\u092c\u0930",
"\u0926\u093f\u0938\u0902\u092c\u0930"
],
@@ -40,26 +40,26 @@ $provide.value("$locale", {
"\u0936\u0928\u093f"
],
"SHORTMONTH": [
- "\u091c\u0928",
- "\u092b\u093c\u0930",
+ "\u091c\u0928\u0970",
+ "\u092b\u093c\u0930\u0970",
"\u092e\u093e\u0930\u094d\u091a",
- "\u0905\u092a\u094d\u0930\u0948",
+ "\u0905\u092a\u094d\u0930\u0948\u0932",
"\u092e\u0908",
"\u091c\u0942\u0928",
- "\u091c\u0941\u0932\u093e",
- "\u0905\u0917",
- "\u0938\u093f\u0924\u0902",
- "\u0905\u0915\u094d\u091f\u0942",
- "\u0928\u0935\u0902",
- "\u0926\u093f\u0938\u0902"
+ "\u091c\u0941\u0932\u0970",
+ "\u0905\u0917\u0970",
+ "\u0938\u093f\u0924\u0970",
+ "\u0905\u0915\u094d\u0924\u0942\u0970",
+ "\u0928\u0935\u0970",
+ "\u0926\u093f\u0938\u0970"
],
"fullDate": "EEEE, d MMMM y",
"longDate": "d MMMM y",
- "medium": "dd-MM-y h:mm:ss a",
- "mediumDate": "dd-MM-y",
+ "medium": "dd/MM/y h:mm:ss a",
+ "mediumDate": "dd/MM/y",
"mediumTime": "h:mm:ss a",
- "short": "d-M-yy h:mm a",
- "shortDate": "d-M-yy",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hi.js b/public/app/bower_components/angular-i18n/angular-locale_hi.js
index b3385905..d800a286 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hi.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hi.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"\u091c\u0941\u0932\u093e\u0908",
"\u0905\u0917\u0938\u094d\u0924",
"\u0938\u093f\u0924\u0902\u092c\u0930",
- "\u0905\u0915\u094d\u091f\u0942\u092c\u0930",
+ "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
"\u0928\u0935\u0902\u092c\u0930",
"\u0926\u093f\u0938\u0902\u092c\u0930"
],
@@ -40,26 +40,26 @@ $provide.value("$locale", {
"\u0936\u0928\u093f"
],
"SHORTMONTH": [
- "\u091c\u0928",
- "\u092b\u093c\u0930",
+ "\u091c\u0928\u0970",
+ "\u092b\u093c\u0930\u0970",
"\u092e\u093e\u0930\u094d\u091a",
- "\u0905\u092a\u094d\u0930\u0948",
+ "\u0905\u092a\u094d\u0930\u0948\u0932",
"\u092e\u0908",
"\u091c\u0942\u0928",
- "\u091c\u0941\u0932\u093e",
- "\u0905\u0917",
- "\u0938\u093f\u0924\u0902",
- "\u0905\u0915\u094d\u091f\u0942",
- "\u0928\u0935\u0902",
- "\u0926\u093f\u0938\u0902"
+ "\u091c\u0941\u0932\u0970",
+ "\u0905\u0917\u0970",
+ "\u0938\u093f\u0924\u0970",
+ "\u0905\u0915\u094d\u0924\u0942\u0970",
+ "\u0928\u0935\u0970",
+ "\u0926\u093f\u0938\u0970"
],
"fullDate": "EEEE, d MMMM y",
"longDate": "d MMMM y",
- "medium": "dd-MM-y h:mm:ss a",
- "mediumDate": "dd-MM-y",
+ "medium": "dd/MM/y h:mm:ss a",
+ "mediumDate": "dd/MM/y",
"mediumTime": "h:mm:ss a",
- "short": "d-M-yy h:mm a",
- "shortDate": "d-M-yy",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hr-ba.js b/public/app/bower_components/angular-i18n/angular-locale_hr-ba.js
index 64fe0ebd..03a7a43b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hr-ba.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hr-ba.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d. MMM y. HH:mm:ss",
"mediumDate": "d. MMM y.",
"mediumTime": "HH:mm:ss",
- "short": "d.M.yy. HH:mm",
- "shortDate": "d.M.yy.",
+ "short": "dd.MM.y. HH:mm",
+ "shortDate": "dd.MM.y.",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hr-hr.js b/public/app/bower_components/angular-i18n/angular-locale_hr-hr.js
index b23a2f06..492d82d7 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hr-hr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hr-hr.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d. MMM y. HH:mm:ss",
"mediumDate": "d. MMM y.",
"mediumTime": "HH:mm:ss",
- "short": "d.M.yy. HH:mm",
- "shortDate": "d.M.yy.",
+ "short": "dd.MM.y. HH:mm",
+ "shortDate": "dd.MM.y.",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hr.js b/public/app/bower_components/angular-i18n/angular-locale_hr.js
index 583ac952..baf75300 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hr.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d. MMM y. HH:mm:ss",
"mediumDate": "d. MMM y.",
"mediumTime": "HH:mm:ss",
- "short": "d.M.yy. HH:mm",
- "shortDate": "d.M.yy.",
+ "short": "dd.MM.y. HH:mm",
+ "shortDate": "dd.MM.y.",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hsb-de.js b/public/app/bower_components/angular-i18n/angular-locale_hsb-de.js
new file mode 100644
index 00000000..4c27db87
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_hsb-de.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "dopo\u0142dnja",
+ "popo\u0142dnju"
+ ],
+ "DAY": [
+ "njed\u017aela",
+ "p\u00f3nd\u017aela",
+ "wutora",
+ "srjeda",
+ "\u0161tw\u00f3rtk",
+ "pjatk",
+ "sobota"
+ ],
+ "MONTH": [
+ "januara",
+ "februara",
+ "m\u011brca",
+ "apryla",
+ "meje",
+ "junija",
+ "julija",
+ "awgusta",
+ "septembra",
+ "oktobra",
+ "nowembra",
+ "decembra"
+ ],
+ "SHORTDAY": [
+ "nje",
+ "p\u00f3n",
+ "wut",
+ "srj",
+ "\u0161tw",
+ "pja",
+ "sob"
+ ],
+ "SHORTMONTH": [
+ "jan.",
+ "feb.",
+ "m\u011br.",
+ "apr.",
+ "mej.",
+ "jun.",
+ "jul.",
+ "awg.",
+ "sep.",
+ "okt.",
+ "now.",
+ "dec."
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.y H:mm:ss",
+ "mediumDate": "d.M.y",
+ "mediumTime": "H:mm:ss",
+ "short": "d.M.yy H:mm 'hod\u017a'.",
+ "shortDate": "d.M.yy",
+ "shortTime": "H:mm 'hod\u017a'."
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "hsb-de",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hsb.js b/public/app/bower_components/angular-i18n/angular-locale_hsb.js
new file mode 100644
index 00000000..fbe9e8f7
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_hsb.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "dopo\u0142dnja",
+ "popo\u0142dnju"
+ ],
+ "DAY": [
+ "njed\u017aela",
+ "p\u00f3nd\u017aela",
+ "wutora",
+ "srjeda",
+ "\u0161tw\u00f3rtk",
+ "pjatk",
+ "sobota"
+ ],
+ "MONTH": [
+ "januara",
+ "februara",
+ "m\u011brca",
+ "apryla",
+ "meje",
+ "junija",
+ "julija",
+ "awgusta",
+ "septembra",
+ "oktobra",
+ "nowembra",
+ "decembra"
+ ],
+ "SHORTDAY": [
+ "nje",
+ "p\u00f3n",
+ "wut",
+ "srj",
+ "\u0161tw",
+ "pja",
+ "sob"
+ ],
+ "SHORTMONTH": [
+ "jan.",
+ "feb.",
+ "m\u011br.",
+ "apr.",
+ "mej.",
+ "jun.",
+ "jul.",
+ "awg.",
+ "sep.",
+ "okt.",
+ "now.",
+ "dec."
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.y H:mm:ss",
+ "mediumDate": "d.M.y",
+ "mediumTime": "H:mm:ss",
+ "short": "d.M.yy H:mm 'hod\u017a'.",
+ "shortDate": "d.M.yy",
+ "shortTime": "H:mm 'hod\u017a'."
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "hsb",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hy-am.js b/public/app/bower_components/angular-i18n/angular-locale_hy-am.js
index 92d2d52e..111ce69a 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hy-am.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hy-am.js
@@ -48,15 +48,15 @@ $provide.value("$locale", {
"\u0570\u0576\u057d",
"\u0570\u056c\u057d",
"\u0585\u0563\u057d",
- "\u057d\u057a\u057f",
- "\u0570\u056f\u057f",
- "\u0576\u0575\u0574",
- "\u0564\u056f\u057f"
+ "\u057d\u0565\u057a",
+ "\u0570\u0578\u056f",
+ "\u0576\u0578\u0575",
+ "\u0564\u0565\u056f"
],
"fullDate": "y\u0569. MMMM d, EEEE",
"longDate": "dd MMMM, y\u0569.",
- "medium": "dd MMM, y \u0569. H:mm:ss",
- "mediumDate": "dd MMM, y \u0569.",
+ "medium": "dd MMM, y\u0569. H:mm:ss",
+ "mediumDate": "dd MMM, y\u0569.",
"mediumTime": "H:mm:ss",
"short": "dd.MM.yy H:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_hy.js b/public/app/bower_components/angular-i18n/angular-locale_hy.js
index 8a9fb3f1..d13fbd6b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_hy.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_hy.js
@@ -48,15 +48,15 @@ $provide.value("$locale", {
"\u0570\u0576\u057d",
"\u0570\u056c\u057d",
"\u0585\u0563\u057d",
- "\u057d\u057a\u057f",
- "\u0570\u056f\u057f",
- "\u0576\u0575\u0574",
- "\u0564\u056f\u057f"
+ "\u057d\u0565\u057a",
+ "\u0570\u0578\u056f",
+ "\u0576\u0578\u0575",
+ "\u0564\u0565\u056f"
],
"fullDate": "y\u0569. MMMM d, EEEE",
"longDate": "dd MMMM, y\u0569.",
- "medium": "dd MMM, y \u0569. H:mm:ss",
- "mediumDate": "dd MMM, y \u0569.",
+ "medium": "dd MMM, y\u0569. H:mm:ss",
+ "mediumDate": "dd MMM, y\u0569.",
"mediumTime": "H:mm:ss",
"short": "dd.MM.yy H:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_it-it.js b/public/app/bower_components/angular-i18n/angular-locale_it-it.js
index d56ebc2f..148ec8a5 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_it-it.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_it-it.js
@@ -72,9 +72,9 @@ $provide.value("$locale", {
"dic"
],
"fullDate": "EEEE d MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MMM/y HH:mm:ss",
- "mediumDate": "dd/MMM/y",
+ "longDate": "d MMMM y",
+ "medium": "dd MMM y HH:mm:ss",
+ "mediumDate": "dd MMM y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_it-sm.js b/public/app/bower_components/angular-i18n/angular-locale_it-sm.js
index 2d8eb250..6fe34b01 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_it-sm.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_it-sm.js
@@ -72,9 +72,9 @@ $provide.value("$locale", {
"dic"
],
"fullDate": "EEEE d MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MMM/y HH:mm:ss",
- "mediumDate": "dd/MMM/y",
+ "longDate": "d MMMM y",
+ "medium": "dd MMM y HH:mm:ss",
+ "mediumDate": "dd MMM y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_it.js b/public/app/bower_components/angular-i18n/angular-locale_it.js
index 01874854..14389ca3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_it.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_it.js
@@ -72,9 +72,9 @@ $provide.value("$locale", {
"dic"
],
"fullDate": "EEEE d MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MMM/y HH:mm:ss",
- "mediumDate": "dd/MMM/y",
+ "longDate": "d MMMM y",
+ "medium": "dd MMM y HH:mm:ss",
+ "mediumDate": "dd MMM y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_iw.js b/public/app/bower_components/angular-i18n/angular-locale_iw.js
index 2f1e0fc6..5c7ef23d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_iw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_iw.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d \u05d1MMM y HH:mm:ss",
"mediumDate": "d \u05d1MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.y HH:mm",
+ "shortDate": "d.M.y",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ka-ge.js b/public/app/bower_components/angular-i18n/angular-locale_ka-ge.js
index b29decc3..d234e777 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ka-ge.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ka-ge.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u10d3\u10d8\u10da\u10d8\u10e1",
- "\u10e1\u10d0\u10e6\u10d0\u10db\u10dd\u10e1"
+ "AM",
+ "PM"
],
"DAY": [
"\u10d9\u10d5\u10d8\u10e0\u10d0",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ka.js b/public/app/bower_components/angular-i18n/angular-locale_ka.js
index 4478fc63..cd4a0b78 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ka.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ka.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u10d3\u10d8\u10da\u10d8\u10e1",
- "\u10e1\u10d0\u10e6\u10d0\u10db\u10dd\u10e1"
+ "AM",
+ "PM"
],
"DAY": [
"\u10d9\u10d5\u10d8\u10e0\u10d0",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kea-cv.js b/public/app/bower_components/angular-i18n/angular-locale_kea-cv.js
index c224648d..6850856c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kea-cv.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kea-cv.js
@@ -36,7 +36,7 @@ $provide.value("$locale", {
],
"MONTH": [
"Janeru",
- "Fevereru",
+ "Febreru",
"Marsu",
"Abril",
"Maiu",
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"Jan",
- "Fev",
+ "Feb",
"Mar",
"Abr",
"Mai",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'di' MMMM 'di' y",
"longDate": "d 'di' MMMM 'di' y",
- "medium": "d 'di' MMM 'di' y HH:mm:ss",
- "mediumDate": "d 'di' MMM 'di' y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
"short": "d/M/y HH:mm",
"shortDate": "d/M/y",
@@ -83,7 +83,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "CVE",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -103,9 +103,9 @@ $provide.value("$locale", {
"minFrac": 2,
"minInt": 1,
"negPre": "-",
- "negSuf": "\u00a4",
+ "negSuf": "\u00a0\u00a4",
"posPre": "",
- "posSuf": "\u00a4"
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kea.js b/public/app/bower_components/angular-i18n/angular-locale_kea.js
index 71cb5d2b..30f40f37 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kea.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kea.js
@@ -36,7 +36,7 @@ $provide.value("$locale", {
],
"MONTH": [
"Janeru",
- "Fevereru",
+ "Febreru",
"Marsu",
"Abril",
"Maiu",
@@ -59,7 +59,7 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"Jan",
- "Fev",
+ "Feb",
"Mar",
"Abr",
"Mai",
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'di' MMMM 'di' y",
"longDate": "d 'di' MMMM 'di' y",
- "medium": "d 'di' MMM 'di' y HH:mm:ss",
- "mediumDate": "d 'di' MMM 'di' y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
"short": "d/M/y HH:mm",
"shortDate": "d/M/y",
@@ -83,7 +83,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "CVE",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -103,9 +103,9 @@ $provide.value("$locale", {
"minFrac": 2,
"minInt": 1,
"negPre": "-",
- "negSuf": "\u00a4",
+ "negSuf": "\u00a0\u00a4",
"posPre": "",
- "posSuf": "\u00a4"
+ "posSuf": "\u00a0\u00a4"
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl-kz.js b/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl-kz.js
index 38007bc5..367b96f1 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl-kz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl-kz.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d",
- "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"
+ "\u0442\u0430\u04a3\u0435\u0440\u0442\u0435\u04a3\u0433\u0456",
+ "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d\u0433\u0456"
],
"DAY": [
"\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
],
"SHORTDAY": [
- "\u0436\u0441.",
- "\u0434\u0441.",
- "\u0441\u0441.",
- "\u0441\u0440.",
- "\u0431\u0441.",
- "\u0436\u043c.",
- "\u0441\u0431."
+ "\u0436\u0435\u043a",
+ "\u0434\u04af\u0439",
+ "\u0441\u0435\u0439",
+ "\u0441\u04d9\u0440",
+ "\u0431\u0435\u0439",
+ "\u0436\u04b1\u043c\u0430",
+ "\u0441\u0435\u043d"
],
"SHORTMONTH": [
"\u049b\u0430\u04a3.",
@@ -53,10 +53,10 @@ $provide.value("$locale", {
"\u049b\u0430\u0440.",
"\u0436\u0435\u043b\u0442."
],
- "fullDate": "EEEE, d MMMM y '\u0436'.",
- "longDate": "d MMMM y '\u0436'.",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "y, dd-MMM HH:mm:ss",
+ "mediumDate": "y, dd-MMM",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl.js b/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl.js
index 3529839b..a427fa6e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kk-cyrl.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d",
- "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"
+ "\u0442\u0430\u04a3\u0435\u0440\u0442\u0435\u04a3\u0433\u0456",
+ "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d\u0433\u0456"
],
"DAY": [
"\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
],
"SHORTDAY": [
- "\u0436\u0441.",
- "\u0434\u0441.",
- "\u0441\u0441.",
- "\u0441\u0440.",
- "\u0431\u0441.",
- "\u0436\u043c.",
- "\u0441\u0431."
+ "\u0436\u0435\u043a",
+ "\u0434\u04af\u0439",
+ "\u0441\u0435\u0439",
+ "\u0441\u04d9\u0440",
+ "\u0431\u0435\u0439",
+ "\u0436\u04b1\u043c\u0430",
+ "\u0441\u0435\u043d"
],
"SHORTMONTH": [
"\u049b\u0430\u04a3.",
@@ -53,10 +53,10 @@ $provide.value("$locale", {
"\u049b\u0430\u0440.",
"\u0436\u0435\u043b\u0442."
],
- "fullDate": "EEEE, d MMMM y '\u0436'.",
- "longDate": "d MMMM y '\u0436'.",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "y, dd-MMM HH:mm:ss",
+ "mediumDate": "y, dd-MMM",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kk.js b/public/app/bower_components/angular-i18n/angular-locale_kk.js
index 57e0f311..9de60877 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kk.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d",
- "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d"
+ "\u0442\u0430\u04a3\u0435\u0440\u0442\u0435\u04a3\u0433\u0456",
+ "\u0442\u04af\u0441\u0442\u0435\u043d \u043a\u0435\u0439\u0456\u043d\u0433\u0456"
],
"DAY": [
"\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"
],
"SHORTDAY": [
- "\u0436\u0441.",
- "\u0434\u0441.",
- "\u0441\u0441.",
- "\u0441\u0440.",
- "\u0431\u0441.",
- "\u0436\u043c.",
- "\u0441\u0431."
+ "\u0436\u0435\u043a",
+ "\u0434\u04af\u0439",
+ "\u0441\u0435\u0439",
+ "\u0441\u04d9\u0440",
+ "\u0431\u0435\u0439",
+ "\u0436\u04b1\u043c\u0430",
+ "\u0441\u0435\u043d"
],
"SHORTMONTH": [
"\u049b\u0430\u04a3.",
@@ -53,10 +53,10 @@ $provide.value("$locale", {
"\u049b\u0430\u0440.",
"\u0436\u0435\u043b\u0442."
],
- "fullDate": "EEEE, d MMMM y '\u0436'.",
- "longDate": "d MMMM y '\u0436'.",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "y, dd-MMM HH:mm:ss",
+ "mediumDate": "y, dd-MMM",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kln-ke.js b/public/app/bower_components/angular-i18n/angular-locale_kln-ke.js
index e792cfae..dd6b1fc2 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kln-ke.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kln-ke.js
@@ -28,18 +28,18 @@ $provide.value("$locale", {
"DAY": [
"Betutab tisap",
"Betut netai",
- "Betutab aeng'",
+ "Betutab aeng\u2019",
"Betutab somok",
- "Betutab ang'wan",
+ "Betutab ang\u2019wan",
"Betutab mut",
"Betutab lo"
],
"MONTH": [
"Mulgul",
- "Ng'atyato",
+ "Ng\u2019atyato",
"Kiptamo",
"Iwat kut",
- "Ng'eiyet",
+ "Ng\u2019eiyet",
"Waki",
"Roptui",
"Kipkogaga",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kln.js b/public/app/bower_components/angular-i18n/angular-locale_kln.js
index 9e53d306..c14ba19d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kln.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kln.js
@@ -28,18 +28,18 @@ $provide.value("$locale", {
"DAY": [
"Betutab tisap",
"Betut netai",
- "Betutab aeng'",
+ "Betutab aeng\u2019",
"Betutab somok",
- "Betutab ang'wan",
+ "Betutab ang\u2019wan",
"Betutab mut",
"Betutab lo"
],
"MONTH": [
"Mulgul",
- "Ng'atyato",
+ "Ng\u2019atyato",
"Kiptamo",
"Iwat kut",
- "Ng'eiyet",
+ "Ng\u2019eiyet",
"Waki",
"Roptui",
"Kipkogaga",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_km-kh.js b/public/app/bower_components/angular-i18n/angular-locale_km-kh.js
index 21aca9cc..9e1eb22f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_km-kh.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_km-kh.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d MMM y h:mm:ss a",
"mediumDate": "d MMM y",
"mediumTime": "h:mm:ss a",
- "short": "d/M/y h:mm a",
- "shortDate": "d/M/y",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_km.js b/public/app/bower_components/angular-i18n/angular-locale_km.js
index 8a094eed..879247bc 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_km.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_km.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d MMM y h:mm:ss a",
"mediumDate": "d MMM y",
"mediumTime": "h:mm:ss a",
- "short": "d/M/y h:mm a",
- "shortDate": "d/M/y",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kn-in.js b/public/app/bower_components/angular-i18n/angular-locale_kn-in.js
index 53862d0e..e61f6cf0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kn-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kn-in.js
@@ -4,11 +4,11 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8",
+ "\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"
],
"DAY": [
- "\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
+ "\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0",
"\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
"\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
"\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
@@ -25,41 +25,41 @@ $provide.value("$locale", {
"\u0c9c\u0cc2\u0ca8\u0ccd",
"\u0c9c\u0cc1\u0cb2\u0cc8",
"\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
- "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\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"
],
"SHORTDAY": [
- "\u0cb0.",
- "\u0cb8\u0ccb.",
- "\u0cae\u0c82.",
- "\u0cac\u0cc1.",
- "\u0c97\u0cc1.",
- "\u0cb6\u0cc1.",
- "\u0cb6\u0ca8\u0cbf."
+ "\u0cad\u0cbe\u0ca8\u0cc1",
+ "\u0cb8\u0ccb\u0cae",
+ "\u0cae\u0c82\u0c97\u0cb3",
+ "\u0cac\u0cc1\u0ca7",
+ "\u0c97\u0cc1\u0cb0\u0cc1",
+ "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0",
+ "\u0cb6\u0ca8\u0cbf"
],
"SHORTMONTH": [
- "\u0c9c\u0ca8.",
- "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cc1.",
- "\u0cae\u0cbe",
- "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf.",
+ "\u0c9c\u0ca8",
+ "\u0cab\u0cc6\u0cac\u0ccd\u0cb0",
+ "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf",
"\u0cae\u0cc7",
- "\u0c9c\u0cc2",
- "\u0c9c\u0cc1.",
- "\u0c86\u0c97.",
- "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82.",
- "\u0c85\u0c95\u0ccd\u0c9f\u0ccb.",
- "\u0ca8\u0cb5\u0cc6\u0c82.",
- "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82."
+ "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "\u0c86\u0c97",
+ "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82",
+ "\u0c85\u0c95\u0ccd\u0c9f\u0ccb",
+ "\u0ca8\u0cb5\u0cc6\u0c82",
+ "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"
],
- "fullDate": "d MMMM y, EEEE",
- "longDate": "d MMMM y",
- "medium": "d MMM y hh:mm:ss a",
- "mediumDate": "d MMM y",
+ "fullDate": "EEEE, MMMM d, y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y hh:mm:ss a",
+ "mediumDate": "MMM d, y",
"mediumTime": "hh:mm:ss a",
- "short": "d-M-yy hh:mm a",
- "shortDate": "d-M-yy",
+ "short": "M/d/yy hh:mm a",
+ "shortDate": "M/d/yy",
"shortTime": "hh:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_kn.js b/public/app/bower_components/angular-i18n/angular-locale_kn.js
index bf2cf50b..6d9cdd12 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_kn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_kn.js
@@ -4,11 +4,11 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8",
+ "\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"
],
"DAY": [
- "\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
+ "\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0",
"\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
"\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
"\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
@@ -25,41 +25,41 @@ $provide.value("$locale", {
"\u0c9c\u0cc2\u0ca8\u0ccd",
"\u0c9c\u0cc1\u0cb2\u0cc8",
"\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
- "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\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"
],
"SHORTDAY": [
- "\u0cb0.",
- "\u0cb8\u0ccb.",
- "\u0cae\u0c82.",
- "\u0cac\u0cc1.",
- "\u0c97\u0cc1.",
- "\u0cb6\u0cc1.",
- "\u0cb6\u0ca8\u0cbf."
+ "\u0cad\u0cbe\u0ca8\u0cc1",
+ "\u0cb8\u0ccb\u0cae",
+ "\u0cae\u0c82\u0c97\u0cb3",
+ "\u0cac\u0cc1\u0ca7",
+ "\u0c97\u0cc1\u0cb0\u0cc1",
+ "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0",
+ "\u0cb6\u0ca8\u0cbf"
],
"SHORTMONTH": [
- "\u0c9c\u0ca8.",
- "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cc1.",
- "\u0cae\u0cbe",
- "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf.",
+ "\u0c9c\u0ca8",
+ "\u0cab\u0cc6\u0cac\u0ccd\u0cb0",
+ "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf",
"\u0cae\u0cc7",
- "\u0c9c\u0cc2",
- "\u0c9c\u0cc1.",
- "\u0c86\u0c97.",
- "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82.",
- "\u0c85\u0c95\u0ccd\u0c9f\u0ccb.",
- "\u0ca8\u0cb5\u0cc6\u0c82.",
- "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82."
+ "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "\u0c86\u0c97",
+ "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82",
+ "\u0c85\u0c95\u0ccd\u0c9f\u0ccb",
+ "\u0ca8\u0cb5\u0cc6\u0c82",
+ "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"
],
- "fullDate": "d MMMM y, EEEE",
- "longDate": "d MMMM y",
- "medium": "d MMM y hh:mm:ss a",
- "mediumDate": "d MMM y",
+ "fullDate": "EEEE, MMMM d, y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y hh:mm:ss a",
+ "mediumDate": "MMM d, y",
"mediumTime": "hh:mm:ss a",
- "short": "d-M-yy hh:mm a",
- "shortDate": "d-M-yy",
+ "short": "M/d/yy hh:mm a",
+ "shortDate": "M/d/yy",
"shortTime": "hh:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl-kg.js b/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl-kg.js
index 9d926161..fcfc0149 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl-kg.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl-kg.js
@@ -4,17 +4,17 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u0442\u04af\u0448\u043a\u04e9 \u0447\u0435\u0439\u0438\u043d\u043a\u0438",
- "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d\u043a\u0438"
+ "\u0442\u0430\u04a3\u043a\u044b",
+ "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d"
],
"DAY": [
- "\u0416\u0435\u043a",
- "\u0414\u04af\u0439",
- "\u0428\u0435\u0439",
- "\u0428\u0430\u0440",
- "\u0411\u0435\u0439",
- "\u0416\u0443\u043c",
- "\u0418\u0448\u043c"
+ "\u0436\u0435\u043a\u0448\u0435\u043c\u0431\u0438",
+ "\u0434\u04af\u0439\u0448\u04e9\u043c\u0431\u04af",
+ "\u0448\u0435\u0439\u0448\u0435\u043c\u0431\u0438",
+ "\u0448\u0430\u0440\u0448\u0435\u043c\u0431\u0438",
+ "\u0431\u0435\u0439\u0448\u0435\u043c\u0431\u0438",
+ "\u0436\u0443\u043c\u0430",
+ "\u0438\u0448\u0435\u043c\u0431\u0438"
],
"MONTH": [
"\u044f\u043d\u0432\u0430\u0440\u044c",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
],
"SHORTDAY": [
- "\u0416\u043a",
- "\u0414\u0448",
- "\u0428\u0435",
- "\u0428\u0430",
- "\u0411\u0448",
- "\u0416\u043c",
- "\u0418\u0448"
+ "\u0436\u0435\u043a.",
+ "\u0434\u04af\u0439.",
+ "\u0448\u0435\u0439\u0448.",
+ "\u0448\u0430\u0440\u0448.",
+ "\u0431\u0435\u0439\u0448.",
+ "\u0436\u0443\u043c\u0430",
+ "\u0438\u0448\u043c."
],
"SHORTMONTH": [
"\u044f\u043d\u0432.",
@@ -54,9 +54,9 @@ $provide.value("$locale", {
"\u0434\u0435\u043a."
],
"fullDate": "EEEE, d-MMMM, y-'\u0436'.",
- "longDate": "d-MMMM, y-'\u0436'.",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy HH:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl.js b/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl.js
index c4e8066b..dd41ca36 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ky-cyrl.js
@@ -4,17 +4,17 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u0442\u04af\u0448\u043a\u04e9 \u0447\u0435\u0439\u0438\u043d\u043a\u0438",
- "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d\u043a\u0438"
+ "\u0442\u0430\u04a3\u043a\u044b",
+ "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d"
],
"DAY": [
- "\u0416\u0435\u043a",
- "\u0414\u04af\u0439",
- "\u0428\u0435\u0439",
- "\u0428\u0430\u0440",
- "\u0411\u0435\u0439",
- "\u0416\u0443\u043c",
- "\u0418\u0448\u043c"
+ "\u0436\u0435\u043a\u0448\u0435\u043c\u0431\u0438",
+ "\u0434\u04af\u0439\u0448\u04e9\u043c\u0431\u04af",
+ "\u0448\u0435\u0439\u0448\u0435\u043c\u0431\u0438",
+ "\u0448\u0430\u0440\u0448\u0435\u043c\u0431\u0438",
+ "\u0431\u0435\u0439\u0448\u0435\u043c\u0431\u0438",
+ "\u0436\u0443\u043c\u0430",
+ "\u0438\u0448\u0435\u043c\u0431\u0438"
],
"MONTH": [
"\u044f\u043d\u0432\u0430\u0440\u044c",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
],
"SHORTDAY": [
- "\u0416\u043a",
- "\u0414\u0448",
- "\u0428\u0435",
- "\u0428\u0430",
- "\u0411\u0448",
- "\u0416\u043c",
- "\u0418\u0448"
+ "\u0436\u0435\u043a.",
+ "\u0434\u04af\u0439.",
+ "\u0448\u0435\u0439\u0448.",
+ "\u0448\u0430\u0440\u0448.",
+ "\u0431\u0435\u0439\u0448.",
+ "\u0436\u0443\u043c\u0430",
+ "\u0438\u0448\u043c."
],
"SHORTMONTH": [
"\u044f\u043d\u0432.",
@@ -54,9 +54,9 @@ $provide.value("$locale", {
"\u0434\u0435\u043a."
],
"fullDate": "EEEE, d-MMMM, y-'\u0436'.",
- "longDate": "d-MMMM, y-'\u0436'.",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy HH:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ky.js b/public/app/bower_components/angular-i18n/angular-locale_ky.js
index 26e823cc..9db5b3c5 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ky.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ky.js
@@ -4,17 +4,17 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "\u0442\u04af\u0448\u043a\u04e9 \u0447\u0435\u0439\u0438\u043d\u043a\u0438",
- "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d\u043a\u0438"
+ "\u0442\u0430\u04a3\u043a\u044b",
+ "\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d"
],
"DAY": [
- "\u0416\u0435\u043a",
- "\u0414\u04af\u0439",
- "\u0428\u0435\u0439",
- "\u0428\u0430\u0440",
- "\u0411\u0435\u0439",
- "\u0416\u0443\u043c",
- "\u0418\u0448\u043c"
+ "\u0436\u0435\u043a\u0448\u0435\u043c\u0431\u0438",
+ "\u0434\u04af\u0439\u0448\u04e9\u043c\u0431\u04af",
+ "\u0448\u0435\u0439\u0448\u0435\u043c\u0431\u0438",
+ "\u0448\u0430\u0440\u0448\u0435\u043c\u0431\u0438",
+ "\u0431\u0435\u0439\u0448\u0435\u043c\u0431\u0438",
+ "\u0436\u0443\u043c\u0430",
+ "\u0438\u0448\u0435\u043c\u0431\u0438"
],
"MONTH": [
"\u044f\u043d\u0432\u0430\u0440\u044c",
@@ -31,13 +31,13 @@ $provide.value("$locale", {
"\u0434\u0435\u043a\u0430\u0431\u0440\u044c"
],
"SHORTDAY": [
- "\u0416\u043a",
- "\u0414\u0448",
- "\u0428\u0435",
- "\u0428\u0430",
- "\u0411\u0448",
- "\u0416\u043c",
- "\u0418\u0448"
+ "\u0436\u0435\u043a.",
+ "\u0434\u04af\u0439.",
+ "\u0448\u0435\u0439\u0448.",
+ "\u0448\u0430\u0440\u0448.",
+ "\u0431\u0435\u0439\u0448.",
+ "\u0436\u0443\u043c\u0430",
+ "\u0438\u0448\u043c."
],
"SHORTMONTH": [
"\u044f\u043d\u0432.",
@@ -54,9 +54,9 @@ $provide.value("$locale", {
"\u0434\u0435\u043a."
],
"fullDate": "EEEE, d-MMMM, y-'\u0436'.",
- "longDate": "d-MMMM, y-'\u0436'.",
- "medium": "dd.MM.y HH:mm:ss",
- "mediumDate": "dd.MM.y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy HH:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_lb-lu.js b/public/app/bower_components/angular-i18n/angular-locale_lb-lu.js
new file mode 100644
index 00000000..4acd71d3
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_lb-lu.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "moies",
+ "nom\u00ebttes"
+ ],
+ "DAY": [
+ "Sonndeg",
+ "M\u00e9indeg",
+ "D\u00ebnschdeg",
+ "M\u00ebttwoch",
+ "Donneschdeg",
+ "Freideg",
+ "Samschdeg"
+ ],
+ "MONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4erz",
+ "Abr\u00ebll",
+ "Mee",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
+ "SHORTDAY": [
+ "Son.",
+ "M\u00e9i.",
+ "D\u00ebn.",
+ "M\u00ebt.",
+ "Don.",
+ "Fre.",
+ "Sam."
+ ],
+ "SHORTMONTH": [
+ "Jan.",
+ "Feb.",
+ "M\u00e4e.",
+ "Abr.",
+ "Mee",
+ "Juni",
+ "Juli",
+ "Aug.",
+ "Sep.",
+ "Okt.",
+ "Nov.",
+ "Dez."
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d. MMM y HH:mm:ss",
+ "mediumDate": "d. MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "lb-lu",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_lb.js b/public/app/bower_components/angular-i18n/angular-locale_lb.js
new file mode 100644
index 00000000..71fec48d
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_lb.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "moies",
+ "nom\u00ebttes"
+ ],
+ "DAY": [
+ "Sonndeg",
+ "M\u00e9indeg",
+ "D\u00ebnschdeg",
+ "M\u00ebttwoch",
+ "Donneschdeg",
+ "Freideg",
+ "Samschdeg"
+ ],
+ "MONTH": [
+ "Januar",
+ "Februar",
+ "M\u00e4erz",
+ "Abr\u00ebll",
+ "Mee",
+ "Juni",
+ "Juli",
+ "August",
+ "September",
+ "Oktober",
+ "November",
+ "Dezember"
+ ],
+ "SHORTDAY": [
+ "Son.",
+ "M\u00e9i.",
+ "D\u00ebn.",
+ "M\u00ebt.",
+ "Don.",
+ "Fre.",
+ "Sam."
+ ],
+ "SHORTMONTH": [
+ "Jan.",
+ "Feb.",
+ "M\u00e4e.",
+ "Abr.",
+ "Mee",
+ "Juni",
+ "Juli",
+ "Aug.",
+ "Sep.",
+ "Okt.",
+ "Nov.",
+ "Dez."
+ ],
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d. MMM y HH:mm:ss",
+ "mediumDate": "d. MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "lb",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_lt-lt.js b/public/app/bower_components/angular-i18n/angular-locale_lt-lt.js
index 2775c1f3..e19343b2 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_lt-lt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_lt-lt.js
@@ -35,18 +35,18 @@ $provide.value("$locale", {
"\u0161e\u0161tadienis"
],
"MONTH": [
- "sausis",
- "vasaris",
- "kovas",
- "balandis",
- "gegu\u017e\u0117",
- "bir\u017eelis",
- "liepa",
- "rugpj\u016btis",
- "rugs\u0117jis",
- "spalis",
- "lapkritis",
- "gruodis"
+ "sausio",
+ "vasario",
+ "kovo",
+ "baland\u017eio",
+ "gegu\u017e\u0117s",
+ "bir\u017eelio",
+ "liepos",
+ "rugpj\u016b\u010dio",
+ "rugs\u0117jo",
+ "spalio",
+ "lapkri\u010dio",
+ "gruod\u017eio"
],
"SHORTDAY": [
"sk",
@@ -73,15 +73,15 @@ $provide.value("$locale", {
],
"fullDate": "y 'm'. MMMM d 'd'., EEEE",
"longDate": "y 'm'. MMMM d 'd'.",
- "medium": "y MMM d HH:mm:ss",
- "mediumDate": "y MMM d",
+ "medium": "y-MM-dd HH:mm:ss",
+ "mediumDate": "y-MM-dd",
"mediumTime": "HH:mm:ss",
"short": "y-MM-dd HH:mm",
"shortDate": "y-MM-dd",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
- "CURRENCY_SYM": "Lt",
+ "CURRENCY_SYM": "\u20ac",
"DECIMAL_SEP": ",",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_lt.js b/public/app/bower_components/angular-i18n/angular-locale_lt.js
index 02f8921d..aea8cdd2 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_lt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_lt.js
@@ -35,18 +35,18 @@ $provide.value("$locale", {
"\u0161e\u0161tadienis"
],
"MONTH": [
- "sausis",
- "vasaris",
- "kovas",
- "balandis",
- "gegu\u017e\u0117",
- "bir\u017eelis",
- "liepa",
- "rugpj\u016btis",
- "rugs\u0117jis",
- "spalis",
- "lapkritis",
- "gruodis"
+ "sausio",
+ "vasario",
+ "kovo",
+ "baland\u017eio",
+ "gegu\u017e\u0117s",
+ "bir\u017eelio",
+ "liepos",
+ "rugpj\u016b\u010dio",
+ "rugs\u0117jo",
+ "spalio",
+ "lapkri\u010dio",
+ "gruod\u017eio"
],
"SHORTDAY": [
"sk",
@@ -73,15 +73,15 @@ $provide.value("$locale", {
],
"fullDate": "y 'm'. MMMM d 'd'., EEEE",
"longDate": "y 'm'. MMMM d 'd'.",
- "medium": "y MMM d HH:mm:ss",
- "mediumDate": "y MMM d",
+ "medium": "y-MM-dd HH:mm:ss",
+ "mediumDate": "y-MM-dd",
"mediumTime": "HH:mm:ss",
"short": "y-MM-dd HH:mm",
"shortDate": "y-MM-dd",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
- "CURRENCY_SYM": "Lt",
+ "CURRENCY_SYM": "\u20ac",
"DECIMAL_SEP": ",",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_luo-ke.js b/public/app/bower_components/angular-i18n/angular-locale_luo-ke.js
index 3f7ce262..f9087dc8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_luo-ke.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_luo-ke.js
@@ -30,7 +30,7 @@ $provide.value("$locale", {
"Wuok Tich",
"Tich Ariyo",
"Tich Adek",
- "Tich Ang'wen",
+ "Tich Ang\u2019wen",
"Tich Abich",
"Ngeso"
],
@@ -38,7 +38,7 @@ $provide.value("$locale", {
"Dwe mar Achiel",
"Dwe mar Ariyo",
"Dwe mar Adek",
- "Dwe mar Ang'wen",
+ "Dwe mar Ang\u2019wen",
"Dwe mar Abich",
"Dwe mar Auchiel",
"Dwe mar Abiriyo",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_luo.js b/public/app/bower_components/angular-i18n/angular-locale_luo.js
index 99b12d1b..11e51ea2 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_luo.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_luo.js
@@ -30,7 +30,7 @@ $provide.value("$locale", {
"Wuok Tich",
"Tich Ariyo",
"Tich Adek",
- "Tich Ang'wen",
+ "Tich Ang\u2019wen",
"Tich Abich",
"Ngeso"
],
@@ -38,7 +38,7 @@ $provide.value("$locale", {
"Dwe mar Achiel",
"Dwe mar Ariyo",
"Dwe mar Adek",
- "Dwe mar Ang'wen",
+ "Dwe mar Ang\u2019wen",
"Dwe mar Abich",
"Dwe mar Auchiel",
"Dwe mar Abiriyo",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_lv-lv.js b/public/app/bower_components/angular-i18n/angular-locale_lv-lv.js
index f9356fa6..343b8b9a 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_lv-lv.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_lv-lv.js
@@ -97,8 +97,8 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 3,
- "lgSize": 3,
+ "gSize": 0,
+ "lgSize": 0,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_lv.js b/public/app/bower_components/angular-i18n/angular-locale_lv.js
index aa31eda5..8cdceb63 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_lv.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_lv.js
@@ -97,8 +97,8 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 3,
- "lgSize": 3,
+ "gSize": 0,
+ "lgSize": 0,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mgh-mz.js b/public/app/bower_components/angular-i18n/angular-locale_mgh-mz.js
index e60a2459..41860482 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mgh-mz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mgh-mz.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"wichishu",
- "mchochil'l"
+ "mchochil\u2019l"
],
"DAY": [
"Sabato",
@@ -46,7 +46,7 @@ $provide.value("$locale", {
"Mweri wo tisa",
"Mweri wo kumi",
"Mweri wo kumi na moja",
- "Mweri wo kumi na yel'li"
+ "Mweri wo kumi na yel\u2019li"
],
"SHORTDAY": [
"Sab",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mgh.js b/public/app/bower_components/angular-i18n/angular-locale_mgh.js
index e5c14b90..ee4fedcf 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mgh.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mgh.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"wichishu",
- "mchochil'l"
+ "mchochil\u2019l"
],
"DAY": [
"Sabato",
@@ -46,7 +46,7 @@ $provide.value("$locale", {
"Mweri wo tisa",
"Mweri wo kumi",
"Mweri wo kumi na moja",
- "Mweri wo kumi na yel'li"
+ "Mweri wo kumi na yel\u2019li"
],
"SHORTDAY": [
"Sab",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mk-mk.js b/public/app/bower_components/angular-i18n/angular-locale_mk-mk.js
index 30b8e34f..e7a3d04b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mk-mk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mk-mk.js
@@ -71,8 +71,8 @@ $provide.value("$locale", {
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a."
],
- "fullDate": "EEEE, dd MMMM y '\u0433'.",
- "longDate": "dd MMMM y '\u0433'.",
+ "fullDate": "EEEE, dd MMMM y",
+ "longDate": "dd MMMM y",
"medium": "dd.M.y HH:mm:ss",
"mediumDate": "dd.M.y",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mk.js b/public/app/bower_components/angular-i18n/angular-locale_mk.js
index 027cca29..94618a5d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mk.js
@@ -71,8 +71,8 @@ $provide.value("$locale", {
"\u043d\u043e\u0435\u043c.",
"\u0434\u0435\u043a."
],
- "fullDate": "EEEE, dd MMMM y '\u0433'.",
- "longDate": "dd MMMM y '\u0433'.",
+ "fullDate": "EEEE, dd MMMM y",
+ "longDate": "dd MMMM y",
"medium": "dd.M.y HH:mm:ss",
"mediumDate": "dd.M.y",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ml-in.js b/public/app/bower_components/angular-i18n/angular-locale_ml-in.js
index f58fb8e0..64ec7282 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ml-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ml-in.js
@@ -79,15 +79,15 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 2,
+ "gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a4",
- "posPre": "",
- "posSuf": "\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ml.js b/public/app/bower_components/angular-i18n/angular-locale_ml.js
index 80990e2f..7a880ce1 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ml.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ml.js
@@ -79,15 +79,15 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 2,
+ "gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "-",
- "negSuf": "\u00a4",
- "posPre": "",
- "posSuf": "\u00a4"
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl-mn.js b/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl-mn.js
index 36c40a00..0d91c7eb 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl-mn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl-mn.js
@@ -53,8 +53,8 @@ $provide.value("$locale", {
"11-\u0440 \u0441\u0430\u0440",
"12-\u0440 \u0441\u0430\u0440"
],
- "fullDate": "EEEE, y '\u043e\u043d\u044b' MMMM '\u0441\u0430\u0440\u044b\u043d' dd",
- "longDate": "y '\u043e\u043d\u044b' MMMM '\u0441\u0430\u0440\u044b\u043d' d",
+ "fullDate": "EEEE, y '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d",
+ "longDate": "y '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d",
"medium": "y MMM d HH:mm:ss",
"mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl.js b/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl.js
index 02d1520e..7b9fe6fb 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mn-cyrl.js
@@ -53,8 +53,8 @@ $provide.value("$locale", {
"11-\u0440 \u0441\u0430\u0440",
"12-\u0440 \u0441\u0430\u0440"
],
- "fullDate": "EEEE, y '\u043e\u043d\u044b' MMMM '\u0441\u0430\u0440\u044b\u043d' dd",
- "longDate": "y '\u043e\u043d\u044b' MMMM '\u0441\u0430\u0440\u044b\u043d' d",
+ "fullDate": "EEEE, y '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d",
+ "longDate": "y '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d",
"medium": "y MMM d HH:mm:ss",
"mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mn.js b/public/app/bower_components/angular-i18n/angular-locale_mn.js
index 4ac32a41..7c284c20 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mn.js
@@ -53,8 +53,8 @@ $provide.value("$locale", {
"11-\u0440 \u0441\u0430\u0440",
"12-\u0440 \u0441\u0430\u0440"
],
- "fullDate": "EEEE, y '\u043e\u043d\u044b' MMMM '\u0441\u0430\u0440\u044b\u043d' dd",
- "longDate": "y '\u043e\u043d\u044b' MMMM '\u0441\u0430\u0440\u044b\u043d' d",
+ "fullDate": "EEEE, y '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d",
+ "longDate": "y '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d",
"medium": "y MMM d HH:mm:ss",
"mediumDate": "y MMM d",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mr-in.js b/public/app/bower_components/angular-i18n/angular-locale_mr-in.js
index bf8c79ee..fc608100 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mr-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mr-in.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "[AM]",
- "[PM]"
+ "\u092e.\u092a\u0942.",
+ "\u092e.\u0909."
],
"DAY": [
"\u0930\u0935\u093f\u0935\u093e\u0930",
@@ -68,7 +68,7 @@ $provide.value("$locale", {
"GROUP_SEP": ",",
"PATTERNS": [
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mr.js b/public/app/bower_components/angular-i18n/angular-locale_mr.js
index 1546413f..bf441203 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mr.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "[AM]",
- "[PM]"
+ "\u092e.\u092a\u0942.",
+ "\u092e.\u0909."
],
"DAY": [
"\u0930\u0935\u093f\u0935\u093e\u0930",
@@ -68,7 +68,7 @@ $provide.value("$locale", {
"GROUP_SEP": ",",
"PATTERNS": [
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mt-mt.js b/public/app/bower_components/angular-i18n/angular-locale_mt-mt.js
index 957b69eb..b0b41c9b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mt-mt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mt-mt.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "QN",
- "WN"
+ "AM",
+ "PM"
],
"DAY": [
"Il-\u0126add",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mt.js b/public/app/bower_components/angular-i18n/angular-locale_mt.js
index 7907b678..2d0b1c4e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mt.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "QN",
- "WN"
+ "AM",
+ "PM"
],
"DAY": [
"Il-\u0126add",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mua-cm.js b/public/app/bower_components/angular-i18n/angular-locale_mua-cm.js
index a1ff1153..9496099e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mua-cm.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mua-cm.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"lilli"
],
"DAY": [
- "Com'yakke",
+ "Com\u2019yakke",
"Comlaa\u0257ii",
"Comzyii\u0257ii",
"Comkolle",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_mua.js b/public/app/bower_components/angular-i18n/angular-locale_mua.js
index c7b4a2f3..4f0e180f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_mua.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_mua.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"lilli"
],
"DAY": [
- "Com'yakke",
+ "Com\u2019yakke",
"Comlaa\u0257ii",
"Comzyii\u0257ii",
"Comkolle",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_my-mm.js b/public/app/bower_components/angular-i18n/angular-locale_my-mm.js
index 3b98a889..cf3691c3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_my-mm.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_my-mm.js
@@ -40,26 +40,26 @@ $provide.value("$locale", {
"\u1005\u1014\u1031"
],
"SHORTMONTH": [
- "\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e",
- "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e",
+ "\u1007\u1014\u103a",
+ "\u1016\u1031",
"\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"
+ "\u1007\u1030",
+ "\u1029",
+ "\u1005\u1000\u103a",
+ "\u1021\u1031\u102c\u1000\u103a",
+ "\u1014\u102d\u102f",
+ "\u1012\u102e"
],
- "fullDate": "EEEE, y MMMM dd",
- "longDate": "y MMMM d",
- "medium": "y MMM d HH:mm:ss",
- "mediumDate": "y MMM d",
+ "fullDate": "EEEE, dd MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "yy/MM/dd HH:mm",
- "shortDate": "yy/MM/dd",
+ "short": "dd-MM-yy HH:mm",
+ "shortDate": "dd-MM-yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_my.js b/public/app/bower_components/angular-i18n/angular-locale_my.js
index 6e7edd51..01c098fd 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_my.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_my.js
@@ -40,26 +40,26 @@ $provide.value("$locale", {
"\u1005\u1014\u1031"
],
"SHORTMONTH": [
- "\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e",
- "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e",
+ "\u1007\u1014\u103a",
+ "\u1016\u1031",
"\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"
+ "\u1007\u1030",
+ "\u1029",
+ "\u1005\u1000\u103a",
+ "\u1021\u1031\u102c\u1000\u103a",
+ "\u1014\u102d\u102f",
+ "\u1012\u102e"
],
- "fullDate": "EEEE, y MMMM dd",
- "longDate": "y MMMM d",
- "medium": "y MMM d HH:mm:ss",
- "mediumDate": "y MMM d",
+ "fullDate": "EEEE, dd MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "yy/MM/dd HH:mm",
- "shortDate": "yy/MM/dd",
+ "short": "dd-MM-yy HH:mm",
+ "shortDate": "dd-MM-yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nb-no.js b/public/app/bower_components/angular-i18n/angular-locale_nb-no.js
index 1cf952ea..227cc208 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nb-no.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nb-no.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH.mm.ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH.mm.ss",
- "short": "dd.MM.yy HH.mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH.mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH.mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nb-sj.js b/public/app/bower_components/angular-i18n/angular-locale_nb-sj.js
index 463b1867..3626313e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nb-sj.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nb-sj.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH.mm.ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH.mm.ss",
- "short": "dd.MM.yy HH.mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH.mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH.mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nb.js b/public/app/bower_components/angular-i18n/angular-locale_nb.js
index 47982afd..fc54f158 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nb.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nb.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH.mm.ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH.mm.ss",
- "short": "dd.MM.yy HH.mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH.mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH.mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ne-in.js b/public/app/bower_components/angular-i18n/angular-locale_ne-in.js
index 95c34643..7aac84ed 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ne-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ne-in.js
@@ -84,9 +84,9 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
+ "negPre": "\u00a4\u00a0-",
"negSuf": "",
- "posPre": "\u00a4",
+ "posPre": "\u00a4\u00a0",
"posSuf": ""
}
]
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ne-np.js b/public/app/bower_components/angular-i18n/angular-locale_ne-np.js
index 5987d4d6..ad00bc49 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ne-np.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ne-np.js
@@ -84,9 +84,9 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
+ "negPre": "\u00a4\u00a0-",
"negSuf": "",
- "posPre": "\u00a4",
+ "posPre": "\u00a4\u00a0",
"posSuf": ""
}
]
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ne.js b/public/app/bower_components/angular-i18n/angular-locale_ne.js
index de55d962..d278adae 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ne.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ne.js
@@ -84,9 +84,9 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
+ "negPre": "\u00a4\u00a0-",
"negSuf": "",
- "posPre": "\u00a4",
+ "posPre": "\u00a4\u00a0",
"posSuf": ""
}
]
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-aw.js b/public/app/bower_components/angular-i18n/angular-locale_nl-aw.js
index 8a9d640d..52ae309f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-aw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-aw.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-be.js b/public/app/bower_components/angular-i18n/angular-locale_nl-be.js
index 9031ff5e..bd8a569f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-be.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-be.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-bq.js b/public/app/bower_components/angular-i18n/angular-locale_nl-bq.js
index 61e60bed..5bf5d851 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-bq.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-bq.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-cw.js b/public/app/bower_components/angular-i18n/angular-locale_nl-cw.js
index c2197595..ec766ee6 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-cw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-cw.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-nl.js b/public/app/bower_components/angular-i18n/angular-locale_nl-nl.js
index 764245c1..9a4a5213 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-nl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-nl.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-sr.js b/public/app/bower_components/angular-i18n/angular-locale_nl-sr.js
index ee428caf..0586aca7 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-sr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-sr.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl-sx.js b/public/app/bower_components/angular-i18n/angular-locale_nl-sx.js
index b3be861f..aa2b37e8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl-sx.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl-sx.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nl.js b/public/app/bower_components/angular-i18n/angular-locale_nl.js
index ac19d54c..bee9598d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nl.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "a.m.",
+ "p.m."
],
"DAY": [
"zondag",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nn-no.js b/public/app/bower_components/angular-i18n/angular-locale_nn-no.js
index 7e1408ff..cb16b292 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nn-no.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nn-no.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH:mm:ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd.MM.yy HH:mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH:mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nn.js b/public/app/bower_components/angular-i18n/angular-locale_nn.js
index f786e739..5d25b37c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nn.js
@@ -76,8 +76,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH:mm:ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd.MM.yy HH:mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH:mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_no-no.js b/public/app/bower_components/angular-i18n/angular-locale_no-no.js
index 74211791..94232f40 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_no-no.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_no-no.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH.mm.ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH.mm.ss",
- "short": "dd.MM.yy HH.mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH.mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH.mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_no.js b/public/app/bower_components/angular-i18n/angular-locale_no.js
index d63d8855..222d64d4 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_no.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_no.js
@@ -58,8 +58,8 @@ $provide.value("$locale", {
"medium": "d. MMM y HH.mm.ss",
"mediumDate": "d. MMM y",
"mediumTime": "HH.mm.ss",
- "short": "dd.MM.yy HH.mm",
- "shortDate": "dd.MM.yy",
+ "short": "dd.MM.y HH.mm",
+ "shortDate": "dd.MM.y",
"shortTime": "HH.mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nso-za.js b/public/app/bower_components/angular-i18n/angular-locale_nso-za.js
index f586e09a..35e4532b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nso-za.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nso-za.js
@@ -82,7 +82,7 @@ $provide.value("$locale", {
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "R",
- "DECIMAL_SEP": ",",
+ "DECIMAL_SEP": ".",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
{
diff --git a/public/app/bower_components/angular-i18n/angular-locale_nso.js b/public/app/bower_components/angular-i18n/angular-locale_nso.js
index 399e9150..d24ff6c5 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_nso.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_nso.js
@@ -82,7 +82,7 @@ $provide.value("$locale", {
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "R",
- "DECIMAL_SEP": ",",
+ "DECIMAL_SEP": ".",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
{
diff --git a/public/app/bower_components/angular-i18n/angular-locale_or-in.js b/public/app/bower_components/angular-i18n/angular-locale_or-in.js
index 54b3004d..ecfbcb43 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_or-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_or-in.js
@@ -18,10 +18,10 @@ $provide.value("$locale", {
],
"MONTH": [
"\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
- "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40",
"\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
"\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
- "\u0b2e\u0b47",
+ "\u0b2e\u0b07",
"\u0b1c\u0b41\u0b28",
"\u0b1c\u0b41\u0b32\u0b3e\u0b07",
"\u0b05\u0b17\u0b37\u0b4d\u0b1f",
@@ -41,10 +41,10 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
- "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40",
"\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
"\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
- "\u0b2e\u0b47",
+ "\u0b2e\u0b07",
"\u0b1c\u0b41\u0b28",
"\u0b1c\u0b41\u0b32\u0b3e\u0b07",
"\u0b05\u0b17\u0b37\u0b4d\u0b1f",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_or.js b/public/app/bower_components/angular-i18n/angular-locale_or.js
index e355aa84..b53ab02c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_or.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_or.js
@@ -18,10 +18,10 @@ $provide.value("$locale", {
],
"MONTH": [
"\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
- "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40",
"\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
"\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
- "\u0b2e\u0b47",
+ "\u0b2e\u0b07",
"\u0b1c\u0b41\u0b28",
"\u0b1c\u0b41\u0b32\u0b3e\u0b07",
"\u0b05\u0b17\u0b37\u0b4d\u0b1f",
@@ -41,10 +41,10 @@ $provide.value("$locale", {
],
"SHORTMONTH": [
"\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
- "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40",
"\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
"\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
- "\u0b2e\u0b47",
+ "\u0b2e\u0b07",
"\u0b1c\u0b41\u0b28",
"\u0b1c\u0b41\u0b32\u0b3e\u0b07",
"\u0b05\u0b17\u0b37\u0b4d\u0b1f",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pa-arab-pk.js b/public/app/bower_components/angular-i18n/angular-locale_pa-arab-pk.js
index 35da6037..66f1d7ca 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pa-arab-pk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pa-arab-pk.js
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u062f\u0633\u0645\u0628\u0631"
],
"SHORTDAY": [
- "\u0a10\u0a24.",
- "\u0a38\u0a4b\u0a2e.",
- "\u0a2e\u0a70\u0a17\u0a32.",
- "\u0a2c\u0a41\u0a27.",
- "\u0a35\u0a40\u0a30.",
- "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30.",
- "\u0a38\u0a3c\u0a28\u0a40."
+ "\u0627\u062a\u0648\u0627\u0631",
+ "\u067e\u06cc\u0631",
+ "\u0645\u0646\u06af\u0644",
+ "\u0628\u064f\u062f\u06be",
+ "\u062c\u0645\u0639\u0631\u0627\u062a",
+ "\u062c\u0645\u0639\u06c1",
+ "\u06c1\u0641\u062a\u06c1"
],
"SHORTMONTH": [
- "\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"
+ "\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"
],
"fullDate": "EEEE, dd MMMM y",
"longDate": "d MMMM y",
@@ -65,10 +65,10 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Rs",
"DECIMAL_SEP": "\u066b",
- "GROUP_SEP": ",",
+ "GROUP_SEP": "\u066c",
"PATTERNS": [
{
- "gSize": 2,
+ "gSize": 3,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
@@ -79,14 +79,14 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 2,
+ "gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
+ "negPre": "\u00a4\u00a0-",
"negSuf": "",
- "posPre": "\u00a4",
+ "posPre": "\u00a4\u00a0",
"posSuf": ""
}
]
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pa-arab.js b/public/app/bower_components/angular-i18n/angular-locale_pa-arab.js
index c67d8d23..ffd6df41 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pa-arab.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pa-arab.js
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u062f\u0633\u0645\u0628\u0631"
],
"SHORTDAY": [
- "\u0a10\u0a24.",
- "\u0a38\u0a4b\u0a2e.",
- "\u0a2e\u0a70\u0a17\u0a32.",
- "\u0a2c\u0a41\u0a27.",
- "\u0a35\u0a40\u0a30.",
- "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30.",
- "\u0a38\u0a3c\u0a28\u0a40."
+ "\u0627\u062a\u0648\u0627\u0631",
+ "\u067e\u06cc\u0631",
+ "\u0645\u0646\u06af\u0644",
+ "\u0628\u064f\u062f\u06be",
+ "\u062c\u0645\u0639\u0631\u0627\u062a",
+ "\u062c\u0645\u0639\u06c1",
+ "\u06c1\u0641\u062a\u06c1"
],
"SHORTMONTH": [
- "\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"
+ "\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"
],
"fullDate": "EEEE, dd MMMM y",
"longDate": "d MMMM y",
@@ -65,10 +65,10 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Rs",
"DECIMAL_SEP": "\u066b",
- "GROUP_SEP": ",",
+ "GROUP_SEP": "\u066c",
"PATTERNS": [
{
- "gSize": 2,
+ "gSize": 3,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
@@ -79,14 +79,14 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 2,
+ "gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
+ "negPre": "\u00a4\u00a0-",
"negSuf": "",
- "posPre": "\u00a4",
+ "posPre": "\u00a4\u00a0",
"posSuf": ""
}
]
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pa-guru-in.js b/public/app/bower_components/angular-i18n/angular-locale_pa-guru-in.js
index 467f35db..7f014b69 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pa-guru-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pa-guru-in.js
@@ -4,17 +4,17 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "\u0a2a\u0a42.\u0a26\u0a41.",
+ "\u0a2c\u0a3e.\u0a26\u0a41."
],
"DAY": [
"\u0a10\u0a24\u0a35\u0a3e\u0a30",
"\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30",
"\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30",
- "\u0a2c\u0a41\u0a27\u0a35\u0a3e\u0a30",
+ "\u0a2c\u0a41\u0a71\u0a27\u0a35\u0a3e\u0a30",
"\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30",
"\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30",
- "\u0a38\u0a3c\u0a28\u0a40\u0a35\u0a3e\u0a30"
+ "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30\u0a35\u0a3e\u0a30"
],
"MONTH": [
"\u0a1c\u0a28\u0a35\u0a30\u0a40",
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u0a26\u0a38\u0a70\u0a2c\u0a30"
],
"SHORTDAY": [
- "\u0a10\u0a24.",
- "\u0a38\u0a4b\u0a2e.",
- "\u0a2e\u0a70\u0a17\u0a32.",
- "\u0a2c\u0a41\u0a27.",
- "\u0a35\u0a40\u0a30.",
- "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30.",
- "\u0a38\u0a3c\u0a28\u0a40."
+ "\u0a10\u0a24",
+ "\u0a38\u0a4b\u0a2e",
+ "\u0a2e\u0a70\u0a17\u0a32",
+ "\u0a2c\u0a41\u0a71\u0a27",
+ "\u0a35\u0a40\u0a30",
+ "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30",
+ "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30"
],
"SHORTMONTH": [
- "\u0a1c\u0a28\u0a35\u0a30\u0a40",
- "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40",
+ "\u0a1c\u0a28",
+ "\u0a2b\u0a3c\u0a30",
"\u0a2e\u0a3e\u0a30\u0a1a",
- "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32",
+ "\u0a05\u0a2a\u0a4d\u0a30\u0a48",
"\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"
+ "\u0a1c\u0a41\u0a32\u0a3e",
+ "\u0a05\u0a17",
+ "\u0a38\u0a24\u0a70",
+ "\u0a05\u0a15\u0a24\u0a42",
+ "\u0a28\u0a35\u0a70",
+ "\u0a26\u0a38\u0a70"
],
"fullDate": "EEEE, d MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pa-guru.js b/public/app/bower_components/angular-i18n/angular-locale_pa-guru.js
index 021980f7..f15ce9d8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pa-guru.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pa-guru.js
@@ -4,17 +4,17 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "\u0a2a\u0a42.\u0a26\u0a41.",
+ "\u0a2c\u0a3e.\u0a26\u0a41."
],
"DAY": [
"\u0a10\u0a24\u0a35\u0a3e\u0a30",
"\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30",
"\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30",
- "\u0a2c\u0a41\u0a27\u0a35\u0a3e\u0a30",
+ "\u0a2c\u0a41\u0a71\u0a27\u0a35\u0a3e\u0a30",
"\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30",
"\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30",
- "\u0a38\u0a3c\u0a28\u0a40\u0a35\u0a3e\u0a30"
+ "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30\u0a35\u0a3e\u0a30"
],
"MONTH": [
"\u0a1c\u0a28\u0a35\u0a30\u0a40",
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u0a26\u0a38\u0a70\u0a2c\u0a30"
],
"SHORTDAY": [
- "\u0a10\u0a24.",
- "\u0a38\u0a4b\u0a2e.",
- "\u0a2e\u0a70\u0a17\u0a32.",
- "\u0a2c\u0a41\u0a27.",
- "\u0a35\u0a40\u0a30.",
- "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30.",
- "\u0a38\u0a3c\u0a28\u0a40."
+ "\u0a10\u0a24",
+ "\u0a38\u0a4b\u0a2e",
+ "\u0a2e\u0a70\u0a17\u0a32",
+ "\u0a2c\u0a41\u0a71\u0a27",
+ "\u0a35\u0a40\u0a30",
+ "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30",
+ "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30"
],
"SHORTMONTH": [
- "\u0a1c\u0a28\u0a35\u0a30\u0a40",
- "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40",
+ "\u0a1c\u0a28",
+ "\u0a2b\u0a3c\u0a30",
"\u0a2e\u0a3e\u0a30\u0a1a",
- "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32",
+ "\u0a05\u0a2a\u0a4d\u0a30\u0a48",
"\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"
+ "\u0a1c\u0a41\u0a32\u0a3e",
+ "\u0a05\u0a17",
+ "\u0a38\u0a24\u0a70",
+ "\u0a05\u0a15\u0a24\u0a42",
+ "\u0a28\u0a35\u0a70",
+ "\u0a26\u0a38\u0a70"
],
"fullDate": "EEEE, d MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pa.js b/public/app/bower_components/angular-i18n/angular-locale_pa.js
index 6b2a8021..61963dcf 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pa.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pa.js
@@ -4,17 +4,17 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "\u0a2a\u0a42.\u0a26\u0a41.",
+ "\u0a2c\u0a3e.\u0a26\u0a41."
],
"DAY": [
"\u0a10\u0a24\u0a35\u0a3e\u0a30",
"\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30",
"\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30",
- "\u0a2c\u0a41\u0a27\u0a35\u0a3e\u0a30",
+ "\u0a2c\u0a41\u0a71\u0a27\u0a35\u0a3e\u0a30",
"\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30",
"\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30",
- "\u0a38\u0a3c\u0a28\u0a40\u0a35\u0a3e\u0a30"
+ "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30\u0a35\u0a3e\u0a30"
],
"MONTH": [
"\u0a1c\u0a28\u0a35\u0a30\u0a40",
@@ -31,27 +31,27 @@ $provide.value("$locale", {
"\u0a26\u0a38\u0a70\u0a2c\u0a30"
],
"SHORTDAY": [
- "\u0a10\u0a24.",
- "\u0a38\u0a4b\u0a2e.",
- "\u0a2e\u0a70\u0a17\u0a32.",
- "\u0a2c\u0a41\u0a27.",
- "\u0a35\u0a40\u0a30.",
- "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30.",
- "\u0a38\u0a3c\u0a28\u0a40."
+ "\u0a10\u0a24",
+ "\u0a38\u0a4b\u0a2e",
+ "\u0a2e\u0a70\u0a17\u0a32",
+ "\u0a2c\u0a41\u0a71\u0a27",
+ "\u0a35\u0a40\u0a30",
+ "\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30",
+ "\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30"
],
"SHORTMONTH": [
- "\u0a1c\u0a28\u0a35\u0a30\u0a40",
- "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40",
+ "\u0a1c\u0a28",
+ "\u0a2b\u0a3c\u0a30",
"\u0a2e\u0a3e\u0a30\u0a1a",
- "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32",
+ "\u0a05\u0a2a\u0a4d\u0a30\u0a48",
"\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"
+ "\u0a1c\u0a41\u0a32\u0a3e",
+ "\u0a05\u0a17",
+ "\u0a38\u0a24\u0a70",
+ "\u0a05\u0a15\u0a24\u0a42",
+ "\u0a28\u0a35\u0a70",
+ "\u0a26\u0a38\u0a70"
],
"fullDate": "EEEE, d MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-ao.js b/public/app/bower_components/angular-i18n/angular-locale_pt-ao.js
index 8e8007bf..cf7dbe71 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-ao.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-ao.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Kz",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-ao",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-br.js b/public/app/bower_components/angular-i18n/angular-locale_pt-br.js
index 737c3442..1872e7a9 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-br.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-br.js
@@ -1,37 +1,6 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
@@ -86,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "dd/MM/y HH:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d 'de' MMM 'de' y HH:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
@@ -123,6 +92,6 @@ $provide.value("$locale", {
]
},
"id": "pt-br",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-cv.js b/public/app/bower_components/angular-i18n/angular-locale_pt-cv.js
index db1452c2..45846c81 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-cv.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-cv.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "CVE",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-cv",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-gw.js b/public/app/bower_components/angular-i18n/angular-locale_pt-gw.js
index d9d1b519..8aee8662 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-gw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-gw.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "CFA",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-gw",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-mo.js b/public/app/bower_components/angular-i18n/angular-locale_pt-mo.js
index 46e900d8..e5a1520f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-mo.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-mo.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "MOP",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-mo",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-mz.js b/public/app/bower_components/angular-i18n/angular-locale_pt-mz.js
index 1333b32f..524e3595 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-mz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-mz.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "MTn",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-mz",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-pt.js b/public/app/bower_components/angular-i18n/angular-locale_pt-pt.js
index 3d7f998e..2ad53e6b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-pt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-pt.js
@@ -1,37 +1,6 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
@@ -48,18 +17,18 @@ $provide.value("$locale", {
"s\u00e1bado"
],
"MONTH": [
- "Janeiro",
- "Fevereiro",
- "Mar\u00e7o",
- "Abril",
- "Maio",
- "Junho",
- "Julho",
- "Agosto",
- "Setembro",
- "Outubro",
- "Novembro",
- "Dezembro"
+ "janeiro",
+ "fevereiro",
+ "mar\u00e7o",
+ "abril",
+ "maio",
+ "junho",
+ "julho",
+ "agosto",
+ "setembro",
+ "outubro",
+ "novembro",
+ "dezembro"
],
"SHORTDAY": [
"dom",
@@ -71,18 +40,18 @@ $provide.value("$locale", {
"s\u00e1b"
],
"SHORTMONTH": [
- "Jan",
- "Fev",
- "Mar",
- "Abr",
- "Mai",
- "Jun",
- "Jul",
- "Ago",
- "Set",
- "Out",
- "Nov",
- "Dez"
+ "jan",
+ "fev",
+ "mar",
+ "abr",
+ "mai",
+ "jun",
+ "jul",
+ "ago",
+ "set",
+ "out",
+ "nov",
+ "dez"
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
@@ -123,6 +92,6 @@ $provide.value("$locale", {
]
},
"id": "pt-pt",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-st.js b/public/app/bower_components/angular-i18n/angular-locale_pt-st.js
index e1736c30..d6e02715 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-st.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-st.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "Db",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-st",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt-tl.js b/public/app/bower_components/angular-i18n/angular-locale_pt-tl.js
index 92924f61..517773ee 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt-tl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt-tl.js
@@ -1,42 +1,11 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "da manh\u00e3",
+ "da tarde"
],
"DAY": [
"domingo",
@@ -96,7 +65,7 @@ $provide.value("$locale", {
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
"DECIMAL_SEP": ",",
- "GROUP_SEP": ".",
+ "GROUP_SEP": "\u00a0",
"PATTERNS": [
{
"gSize": 3,
@@ -115,14 +84,14 @@ $provide.value("$locale", {
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "",
- "posPre": "\u00a4",
- "posSuf": ""
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
}
]
},
"id": "pt-tl",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_pt.js b/public/app/bower_components/angular-i18n/angular-locale_pt.js
index 8aa48b80..9fc521b8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_pt.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_pt.js
@@ -1,37 +1,6 @@
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-function getDecimals(n) {
- n = n + '';
- var i = n.indexOf('.');
- return (i == -1) ? 0 : n.length - i - 1;
-}
-
-function getVF(n, opt_precision) {
- var v = opt_precision;
-
- if (undefined === v) {
- v = Math.min(getDecimals(n), 3);
- }
-
- var base = Math.pow(10, v);
- var f = ((n * base) | 0) % base;
- return {v: v, f: f};
-}
-
-function getWT(v, f) {
- if (f === 0) {
- return {w: 0, t: 0};
- }
-
- while ((f % 10) === 0) {
- f /= 10;
- v--;
- }
-
- return {w: v, t: f};
-}
-
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
@@ -86,8 +55,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
- "medium": "dd/MM/y HH:mm:ss",
- "mediumDate": "dd/MM/y",
+ "medium": "d 'de' MMM 'de' y HH:mm:ss",
+ "mediumDate": "d 'de' MMM 'de' y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yy HH:mm",
"shortDate": "dd/MM/yy",
@@ -123,6 +92,6 @@ $provide.value("$locale", {
]
},
"id": "pt",
- "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (i == 1 && vf.v == 0 || i == 0 && wt.t == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+ "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_qu-bo.js b/public/app/bower_components/angular-i18n/angular-locale_qu-bo.js
new file mode 100644
index 00000000..e394c4bc
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_qu-bo.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "a.m.",
+ "p.m."
+ ],
+ "DAY": [
+ "Domingo",
+ "Lunes",
+ "Martes",
+ "Mi\u00e9rcoles",
+ "Jueves",
+ "Viernes",
+ "S\u00e1bado"
+ ],
+ "MONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
+ "SHORTDAY": [
+ "Dom",
+ "Lun",
+ "Mar",
+ "Mi\u00e9",
+ "Jue",
+ "Vie",
+ "Sab"
+ ],
+ "SHORTMONTH": [
+ "Qul",
+ "Hat",
+ "Pau",
+ "Ayr",
+ "Aym",
+ "Int",
+ "Ant",
+ "Qha",
+ "Uma",
+ "Kan",
+ "Aya",
+ "Kap"
+ ],
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d hh:mm:ss a",
+ "mediumDate": "y MMM d",
+ "mediumTime": "hh:mm:ss a",
+ "short": "dd/MM/y hh:mm a",
+ "shortDate": "dd/MM/y",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Bs",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "qu-bo",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_qu-ec.js b/public/app/bower_components/angular-i18n/angular-locale_qu-ec.js
new file mode 100644
index 00000000..afb3073e
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_qu-ec.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "a.m.",
+ "p.m."
+ ],
+ "DAY": [
+ "Domingo",
+ "Lunes",
+ "Martes",
+ "Mi\u00e9rcoles",
+ "Jueves",
+ "Viernes",
+ "S\u00e1bado"
+ ],
+ "MONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
+ "SHORTDAY": [
+ "Dom",
+ "Lun",
+ "Mar",
+ "Mi\u00e9",
+ "Jue",
+ "Vie",
+ "Sab"
+ ],
+ "SHORTMONTH": [
+ "Qul",
+ "Hat",
+ "Pau",
+ "Ayr",
+ "Aym",
+ "Int",
+ "Ant",
+ "Qha",
+ "Uma",
+ "Kan",
+ "Aya",
+ "Kap"
+ ],
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d hh:mm:ss a",
+ "mediumDate": "y MMM d",
+ "mediumTime": "hh:mm:ss a",
+ "short": "dd/MM/y hh:mm a",
+ "shortDate": "dd/MM/y",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "qu-ec",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_qu-pe.js b/public/app/bower_components/angular-i18n/angular-locale_qu-pe.js
new file mode 100644
index 00000000..c8c11d35
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_qu-pe.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "a.m.",
+ "p.m."
+ ],
+ "DAY": [
+ "Domingo",
+ "Lunes",
+ "Martes",
+ "Mi\u00e9rcoles",
+ "Jueves",
+ "Viernes",
+ "S\u00e1bado"
+ ],
+ "MONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
+ "SHORTDAY": [
+ "Dom",
+ "Lun",
+ "Mar",
+ "Mi\u00e9",
+ "Jue",
+ "Vie",
+ "Sab"
+ ],
+ "SHORTMONTH": [
+ "Qul",
+ "Hat",
+ "Pau",
+ "Ayr",
+ "Aym",
+ "Int",
+ "Ant",
+ "Qha",
+ "Uma",
+ "Kan",
+ "Aya",
+ "Kap"
+ ],
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d hh:mm:ss a",
+ "mediumDate": "y MMM d",
+ "mediumTime": "hh:mm:ss a",
+ "short": "dd/MM/y hh:mm a",
+ "shortDate": "dd/MM/y",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "S/.",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "qu-pe",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_qu.js b/public/app/bower_components/angular-i18n/angular-locale_qu.js
new file mode 100644
index 00000000..53166755
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_qu.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "a.m.",
+ "p.m."
+ ],
+ "DAY": [
+ "Domingo",
+ "Lunes",
+ "Martes",
+ "Mi\u00e9rcoles",
+ "Jueves",
+ "Viernes",
+ "S\u00e1bado"
+ ],
+ "MONTH": [
+ "Qulla puquy",
+ "Hatun puquy",
+ "Pauqar waray",
+ "Ayriwa",
+ "Aymuray",
+ "Inti raymi",
+ "Anta Sitwa",
+ "Qhapaq Sitwa",
+ "Uma raymi",
+ "Kantaray",
+ "Ayamarq\u02bca",
+ "Kapaq Raymi"
+ ],
+ "SHORTDAY": [
+ "Dom",
+ "Lun",
+ "Mar",
+ "Mi\u00e9",
+ "Jue",
+ "Vie",
+ "Sab"
+ ],
+ "SHORTMONTH": [
+ "Qul",
+ "Hat",
+ "Pau",
+ "Ayr",
+ "Aym",
+ "Int",
+ "Ant",
+ "Qha",
+ "Uma",
+ "Kan",
+ "Aya",
+ "Kap"
+ ],
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d hh:mm:ss a",
+ "mediumDate": "y MMM d",
+ "mediumTime": "hh:mm:ss a",
+ "short": "dd/MM/y hh:mm a",
+ "shortDate": "dd/MM/y",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "S/.",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "qu",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_rn-bi.js b/public/app/bower_components/angular-i18n/angular-locale_rn-bi.js
index f3c629b2..31d822fb 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_rn-bi.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_rn-bi.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"Z.MW."
],
"DAY": [
- "Ku w'indwi",
+ "Ku w\u2019indwi",
"Ku wa mbere",
"Ku wa kabiri",
"Ku wa gatatu",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_rn.js b/public/app/bower_components/angular-i18n/angular-locale_rn.js
index 703f3813..2d7ac5e9 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_rn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_rn.js
@@ -26,7 +26,7 @@ $provide.value("$locale", {
"Z.MW."
],
"DAY": [
- "Ku w'indwi",
+ "Ku w\u2019indwi",
"Ku wa mbere",
"Ku wa kabiri",
"Ku wa gatatu",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_rof-tz.js b/public/app/bower_components/angular-i18n/angular-locale_rof-tz.js
index 9eb177c8..b2d5c1ce 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_rof-tz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_rof-tz.js
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "kang'ama",
+ "kang\u2019ama",
"kingoto"
],
"DAY": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_rof.js b/public/app/bower_components/angular-i18n/angular-locale_rof.js
index 9db1b0ce..21114d5e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_rof.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_rof.js
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "kang'ama",
+ "kang\u2019ama",
"kingoto"
],
"DAY": [
diff --git a/public/app/bower_components/angular-i18n/angular-locale_saq-ke.js b/public/app/bower_components/angular-i18n/angular-locale_saq-ke.js
index 1152411b..7b8fb714 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_saq-ke.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_saq-ke.js
@@ -28,7 +28,7 @@ $provide.value("$locale", {
"DAY": [
"Mderot ee are",
"Mderot ee kuni",
- "Mderot ee ong'wan",
+ "Mderot ee ong\u2019wan",
"Mderot ee inet",
"Mderot ee ile",
"Mderot ee sapa",
@@ -38,7 +38,7 @@ $provide.value("$locale", {
"Lapa le obo",
"Lapa le waare",
"Lapa le okuni",
- "Lapa le ong'wan",
+ "Lapa le ong\u2019wan",
"Lapa le imet",
"Lapa le ile",
"Lapa le sapa",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_saq.js b/public/app/bower_components/angular-i18n/angular-locale_saq.js
index dd789f2e..7556ece6 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_saq.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_saq.js
@@ -28,7 +28,7 @@ $provide.value("$locale", {
"DAY": [
"Mderot ee are",
"Mderot ee kuni",
- "Mderot ee ong'wan",
+ "Mderot ee ong\u2019wan",
"Mderot ee inet",
"Mderot ee ile",
"Mderot ee sapa",
@@ -38,7 +38,7 @@ $provide.value("$locale", {
"Lapa le obo",
"Lapa le waare",
"Lapa le okuni",
- "Lapa le ong'wan",
+ "Lapa le ong\u2019wan",
"Lapa le imet",
"Lapa le ile",
"Lapa le sapa",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_se-se.js b/public/app/bower_components/angular-i18n/angular-locale_se-se.js
new file mode 100644
index 00000000..1a5192e8
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_se-se.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "i\u0111itbeaivet",
+ "eahketbeaivet"
+ ],
+ "DAY": [
+ "sotnabeaivi",
+ "vuoss\u00e1rga",
+ "ma\u014b\u014beb\u00e1rga",
+ "gaskavahkku",
+ "duorasdat",
+ "bearjadat",
+ "l\u00e1vvardat"
+ ],
+ "MONTH": [
+ "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"
+ ],
+ "SHORTDAY": [
+ "sotn",
+ "vuos",
+ "ma\u014b",
+ "gask",
+ "duor",
+ "bear",
+ "l\u00e1v"
+ ],
+ "SHORTMONTH": [
+ "o\u0111\u0111j",
+ "guov",
+ "njuk",
+ "cuo",
+ "mies",
+ "geas",
+ "suoi",
+ "borg",
+ "\u010dak\u010d",
+ "golg",
+ "sk\u00e1b",
+ "juov"
+ ],
+ "fullDate": "y MMMM d, EEEE",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "y-MM-dd HH:mm",
+ "shortDate": "y-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ ]
+ },
+ "id": "se-se",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sk-sk.js b/public/app/bower_components/angular-i18n/angular-locale_sk-sk.js
index 3aff3537..d5a561f4 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sk-sk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sk-sk.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "dopoludnia",
+ "odpoludnia"
],
"DAY": [
"nede\u013ea",
@@ -73,11 +73,11 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d. MMMM y",
"longDate": "d. MMMM y",
- "medium": "d.M.y H:mm:ss",
- "mediumDate": "d.M.y",
+ "medium": "d. M. y H:mm:ss",
+ "mediumDate": "d. M. y",
"mediumTime": "H:mm:ss",
- "short": "d.M.y H:mm",
- "shortDate": "d.M.y",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
"shortTime": "H:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sk.js b/public/app/bower_components/angular-i18n/angular-locale_sk.js
index 914cec1b..3e8fcea8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sk.js
@@ -22,8 +22,8 @@ function getVF(n, opt_precision) {
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "dopoludnia",
+ "odpoludnia"
],
"DAY": [
"nede\u013ea",
@@ -73,11 +73,11 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d. MMMM y",
"longDate": "d. MMMM y",
- "medium": "d.M.y H:mm:ss",
- "mediumDate": "d.M.y",
+ "medium": "d. M. y H:mm:ss",
+ "mediumDate": "d. M. y",
"mediumTime": "H:mm:ss",
- "short": "d.M.y H:mm",
- "shortDate": "d.M.y",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
"shortTime": "H:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_smn-fi.js b/public/app/bower_components/angular-i18n/angular-locale_smn-fi.js
new file mode 100644
index 00000000..ad729bfd
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_smn-fi.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "AM",
+ "PM"
+ ],
+ "DAY": [
+ "pasepeeivi",
+ "vuossaarg\u00e2",
+ "majebaarg\u00e2",
+ "koskoho",
+ "tuor\u00e2stuv",
+ "v\u00e1stuppeeivi",
+ "l\u00e1vurduv"
+ ],
+ "MONTH": [
+ "M01",
+ "M02",
+ "M03",
+ "M04",
+ "M05",
+ "M06",
+ "M07",
+ "M08",
+ "M09",
+ "M10",
+ "M11",
+ "M12"
+ ],
+ "SHORTDAY": [
+ "pa",
+ "vu",
+ "ma",
+ "ko",
+ "tu",
+ "v\u00e1",
+ "l\u00e1"
+ ],
+ "SHORTMONTH": [
+ "M01",
+ "M02",
+ "M03",
+ "M04",
+ "M05",
+ "M06",
+ "M07",
+ "M08",
+ "M09",
+ "M10",
+ "M11",
+ "M12"
+ ],
+ "fullDate": "y MMMM d, EEEE",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "y-MM-dd HH:mm",
+ "shortDate": "y-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "smn-fi",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_smn.js b/public/app/bower_components/angular-i18n/angular-locale_smn.js
new file mode 100644
index 00000000..4c5a8b6a
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_smn.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "AM",
+ "PM"
+ ],
+ "DAY": [
+ "pasepeeivi",
+ "vuossaarg\u00e2",
+ "majebaarg\u00e2",
+ "koskoho",
+ "tuor\u00e2stuv",
+ "v\u00e1stuppeeivi",
+ "l\u00e1vurduv"
+ ],
+ "MONTH": [
+ "M01",
+ "M02",
+ "M03",
+ "M04",
+ "M05",
+ "M06",
+ "M07",
+ "M08",
+ "M09",
+ "M10",
+ "M11",
+ "M12"
+ ],
+ "SHORTDAY": [
+ "pa",
+ "vu",
+ "ma",
+ "ko",
+ "tu",
+ "v\u00e1",
+ "l\u00e1"
+ ],
+ "SHORTMONTH": [
+ "M01",
+ "M02",
+ "M03",
+ "M04",
+ "M05",
+ "M06",
+ "M07",
+ "M08",
+ "M09",
+ "M10",
+ "M11",
+ "M12"
+ ],
+ "fullDate": "y MMMM d, EEEE",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "y-MM-dd HH:mm",
+ "shortDate": "y-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "smn",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sq-al.js b/public/app/bower_components/angular-i18n/angular-locale_sq-al.js
index 80a9aa86..bf9f9269 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sq-al.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sq-al.js
@@ -53,13 +53,13 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
- "fullDate": "EEEE, dd MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MM/y HH:mm:ss",
- "mediumDate": "dd/MM/y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.yy HH:mm",
+ "shortDate": "d.M.yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sq-mk.js b/public/app/bower_components/angular-i18n/angular-locale_sq-mk.js
index cbb35081..c7fcbf9a 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sq-mk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sq-mk.js
@@ -53,13 +53,13 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
- "fullDate": "EEEE, dd MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MM/y HH:mm:ss",
- "mediumDate": "dd/MM/y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.yy HH:mm",
+ "shortDate": "d.M.yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sq-xk.js b/public/app/bower_components/angular-i18n/angular-locale_sq-xk.js
index 94c225a8..8ffa642b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sq-xk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sq-xk.js
@@ -53,13 +53,13 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
- "fullDate": "EEEE, dd MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MM/y HH:mm:ss",
- "mediumDate": "dd/MM/y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.yy HH:mm",
+ "shortDate": "d.M.yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sq.js b/public/app/bower_components/angular-i18n/angular-locale_sq.js
index 6b2289d9..6b458cd4 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sq.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sq.js
@@ -53,13 +53,13 @@ $provide.value("$locale", {
"N\u00ebn",
"Dhj"
],
- "fullDate": "EEEE, dd MMMM y",
- "longDate": "dd MMMM y",
- "medium": "dd/MM/y HH:mm:ss",
- "mediumDate": "dd/MM/y",
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
- "short": "dd/MM/yy HH:mm",
- "shortDate": "dd/MM/yy",
+ "short": "d.M.yy HH:mm",
+ "shortDate": "d.M.yy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-ba.js b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-ba.js
index 5e4b3839..d9f3e6b9 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-ba.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-ba.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
- "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"
],
"DAY": [
"\u043d\u0435\u0434\u0435\u0459\u0430",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-me.js b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-me.js
index 1aa82b41..dcdf4610 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-me.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-me.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
- "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"
],
"DAY": [
"\u043d\u0435\u0434\u0435\u0459\u0430",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-rs.js b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-rs.js
index eea3ce78..72437869 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-rs.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-rs.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
- "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"
],
"DAY": [
"\u043d\u0435\u0434\u0435\u0459\u0430",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-xk.js b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-xk.js
index 4ac313b4..c05b1d27 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-xk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl-xk.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
- "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"
],
"DAY": [
"\u043d\u0435\u0434\u0435\u0459\u0430",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl.js b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl.js
index da4598bb..c20e3cdb 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-cyrl.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
- "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"
],
"DAY": [
"\u043d\u0435\u0434\u0435\u0459\u0430",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-ba.js b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-ba.js
index 187875c4..81c67a55 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-ba.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-ba.js
@@ -23,13 +23,13 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"pre podne",
- "popodne"
+ "po podne"
],
"DAY": [
"nedelja",
"ponedeljak",
"utorak",
- "sreda",
+ "srijeda",
"\u010detvrtak",
"petak",
"subota"
@@ -40,8 +40,8 @@ $provide.value("$locale", {
"mart",
"april",
"maj",
- "jun",
- "jul",
+ "juni",
+ "juli",
"avgust",
"septembar",
"oktobar",
@@ -52,7 +52,7 @@ $provide.value("$locale", {
"ned",
"pon",
"uto",
- "sre",
+ "sri",
"\u010det",
"pet",
"sub"
@@ -73,12 +73,12 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, dd. MMMM y.",
"longDate": "dd. MMMM y.",
- "medium": "dd.MM.y. HH.mm.ss",
- "mediumDate": "dd.MM.y.",
- "mediumTime": "HH.mm.ss",
- "short": "d.M.yy. HH.mm",
- "shortDate": "d.M.yy.",
- "shortTime": "HH.mm"
+ "medium": "y-MM-dd HH:mm:ss",
+ "mediumDate": "y-MM-dd",
+ "mediumTime": "HH:mm:ss",
+ "short": "yy-MM-dd HH:mm",
+ "shortDate": "yy-MM-dd",
+ "shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "KM",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-me.js b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-me.js
index ee687b5e..ab5e884f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-me.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-me.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"pre podne",
- "popodne"
+ "po podne"
],
"DAY": [
"nedelja",
@@ -72,7 +72,7 @@ $provide.value("$locale", {
"dec"
],
"fullDate": "EEEE, dd. MMMM y.",
- "longDate": "d.MM.y.",
+ "longDate": "dd. MMMM y.",
"medium": "dd.MM.y. HH.mm.ss",
"mediumDate": "dd.MM.y.",
"mediumTime": "HH.mm.ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-rs.js b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-rs.js
index c43501a8..578782f1 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-rs.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-rs.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"pre podne",
- "popodne"
+ "po podne"
],
"DAY": [
"nedelja",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-xk.js b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-xk.js
index 1815c87a..ca7ae8e4 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-latn-xk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-latn-xk.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"pre podne",
- "popodne"
+ "po podne"
],
"DAY": [
"nedelja",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr-latn.js b/public/app/bower_components/angular-i18n/angular-locale_sr-latn.js
index affadb13..8de1f715 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr-latn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr-latn.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"pre podne",
- "popodne"
+ "po podne"
],
"DAY": [
"nedelja",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sr.js b/public/app/bower_components/angular-i18n/angular-locale_sr.js
index b68a366c..6e4f5e5f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sr.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sr.js
@@ -23,7 +23,7 @@ $provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
- "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ "\u043f\u043e \u043f\u043e\u0434\u043d\u0435"
],
"DAY": [
"\u043d\u0435\u0434\u0435\u0459\u0430",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sv-ax.js b/public/app/bower_components/angular-i18n/angular-locale_sv-ax.js
index 26eeb5e4..1296a304 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sv-ax.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sv-ax.js
@@ -58,18 +58,18 @@ $provide.value("$locale", {
"l\u00f6r"
],
"SHORTMONTH": [
- "jan",
- "feb",
- "mar",
- "apr",
+ "jan.",
+ "feb.",
+ "mars",
+ "apr.",
"maj",
- "jun",
- "jul",
- "aug",
- "sep",
- "okt",
- "nov",
- "dec"
+ "juni",
+ "juli",
+ "aug.",
+ "sep.",
+ "okt.",
+ "nov.",
+ "dec."
],
"fullDate": "EEEE d MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sv-fi.js b/public/app/bower_components/angular-i18n/angular-locale_sv-fi.js
index a21ca31b..7ccf4d6d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sv-fi.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sv-fi.js
@@ -58,18 +58,18 @@ $provide.value("$locale", {
"l\u00f6r"
],
"SHORTMONTH": [
- "jan",
- "feb",
- "mar",
- "apr",
+ "jan.",
+ "feb.",
+ "mars",
+ "apr.",
"maj",
- "jun",
- "jul",
- "aug",
- "sep",
- "okt",
- "nov",
- "dec"
+ "juni",
+ "juli",
+ "aug.",
+ "sep.",
+ "okt.",
+ "nov.",
+ "dec."
],
"fullDate": "EEEE'en' 'den' d:'e' MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sv-se.js b/public/app/bower_components/angular-i18n/angular-locale_sv-se.js
index 7cc24fb9..52ef0d52 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sv-se.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sv-se.js
@@ -58,18 +58,18 @@ $provide.value("$locale", {
"l\u00f6r"
],
"SHORTMONTH": [
- "jan",
- "feb",
- "mar",
- "apr",
+ "jan.",
+ "feb.",
+ "mars",
+ "apr.",
"maj",
- "jun",
- "jul",
- "aug",
- "sep",
- "okt",
- "nov",
- "dec"
+ "juni",
+ "juli",
+ "aug.",
+ "sep.",
+ "okt.",
+ "nov.",
+ "dec."
],
"fullDate": "EEEE d MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_sv.js b/public/app/bower_components/angular-i18n/angular-locale_sv.js
index f49263c8..2943207f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_sv.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_sv.js
@@ -58,18 +58,18 @@ $provide.value("$locale", {
"l\u00f6r"
],
"SHORTMONTH": [
- "jan",
- "feb",
- "mar",
- "apr",
+ "jan.",
+ "feb.",
+ "mars",
+ "apr.",
"maj",
- "jun",
- "jul",
- "aug",
- "sep",
- "okt",
- "nov",
- "dec"
+ "juni",
+ "juli",
+ "aug.",
+ "sep.",
+ "okt.",
+ "nov.",
+ "dec."
],
"fullDate": "EEEE d MMMM y",
"longDate": "d MMMM y",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_te-in.js b/public/app/bower_components/angular-i18n/angular-locale_te-in.js
index e730e9cd..eedaa20d 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_te-in.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_te-in.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "[AM]",
+ "[PM]"
],
"DAY": [
"\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
@@ -20,7 +20,7 @@ $provide.value("$locale", {
"\u0c1c\u0c28\u0c35\u0c30\u0c3f",
"\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
"\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
- "\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
+ "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
"\u0c2e\u0c47",
"\u0c1c\u0c42\u0c28\u0c4d",
"\u0c1c\u0c41\u0c32\u0c48",
@@ -53,10 +53,10 @@ $provide.value("$locale", {
"\u0c28\u0c35\u0c02",
"\u0c21\u0c3f\u0c38\u0c46\u0c02"
],
- "fullDate": "d MMMM y EEEE",
- "longDate": "d MMMM y",
- "medium": "d MMM y h:mm:ss a",
- "mediumDate": "d MMM y",
+ "fullDate": "d, MMMM y, EEEE",
+ "longDate": "d MMMM, y",
+ "medium": "d MMM, y h:mm:ss a",
+ "mediumDate": "d MMM, y",
"mediumTime": "h:mm:ss a",
"short": "dd-MM-yy h:mm a",
"shortDate": "dd-MM-yy",
@@ -68,7 +68,7 @@ $provide.value("$locale", {
"GROUP_SEP": ",",
"PATTERNS": [
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
@@ -79,7 +79,7 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_te.js b/public/app/bower_components/angular-i18n/angular-locale_te.js
index 33ae47e7..5eb8ffd0 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_te.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_te.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "[AM]",
+ "[PM]"
],
"DAY": [
"\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
@@ -20,7 +20,7 @@ $provide.value("$locale", {
"\u0c1c\u0c28\u0c35\u0c30\u0c3f",
"\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
"\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
- "\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
+ "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
"\u0c2e\u0c47",
"\u0c1c\u0c42\u0c28\u0c4d",
"\u0c1c\u0c41\u0c32\u0c48",
@@ -53,10 +53,10 @@ $provide.value("$locale", {
"\u0c28\u0c35\u0c02",
"\u0c21\u0c3f\u0c38\u0c46\u0c02"
],
- "fullDate": "d MMMM y EEEE",
- "longDate": "d MMMM y",
- "medium": "d MMM y h:mm:ss a",
- "mediumDate": "d MMM y",
+ "fullDate": "d, MMMM y, EEEE",
+ "longDate": "d MMMM, y",
+ "medium": "d MMM, y h:mm:ss a",
+ "mediumDate": "d MMM, y",
"mediumTime": "h:mm:ss a",
"short": "dd-MM-yy h:mm a",
"shortDate": "dd-MM-yy",
@@ -68,7 +68,7 @@ $provide.value("$locale", {
"GROUP_SEP": ",",
"PATTERNS": [
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
@@ -79,7 +79,7 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
diff --git a/public/app/bower_components/angular-i18n/angular-locale_teo-ke.js b/public/app/bower_components/angular-i18n/angular-locale_teo-ke.js
index 4dd4a5c4..155d0080 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_teo-ke.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_teo-ke.js
@@ -30,17 +30,17 @@ $provide.value("$locale", {
"Nakaebarasa",
"Nakaare",
"Nakauni",
- "Nakaung'on",
+ "Nakaung\u2019on",
"Nakakany",
"Nakasabiti"
],
"MONTH": [
"Orara",
"Omuk",
- "Okwamg'",
- "Odung'el",
+ "Okwamg\u2019",
+ "Odung\u2019el",
"Omaruk",
- "Omodok'king'ol",
+ "Omodok\u2019king\u2019ol",
"Ojola",
"Opedel",
"Osokosokoma",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_teo-ug.js b/public/app/bower_components/angular-i18n/angular-locale_teo-ug.js
index b8ddd48d..665601eb 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_teo-ug.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_teo-ug.js
@@ -30,17 +30,17 @@ $provide.value("$locale", {
"Nakaebarasa",
"Nakaare",
"Nakauni",
- "Nakaung'on",
+ "Nakaung\u2019on",
"Nakakany",
"Nakasabiti"
],
"MONTH": [
"Orara",
"Omuk",
- "Okwamg'",
- "Odung'el",
+ "Okwamg\u2019",
+ "Odung\u2019el",
"Omaruk",
- "Omodok'king'ol",
+ "Omodok\u2019king\u2019ol",
"Ojola",
"Opedel",
"Osokosokoma",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_teo.js b/public/app/bower_components/angular-i18n/angular-locale_teo.js
index b3c5c997..9ebbf245 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_teo.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_teo.js
@@ -30,17 +30,17 @@ $provide.value("$locale", {
"Nakaebarasa",
"Nakaare",
"Nakauni",
- "Nakaung'on",
+ "Nakaung\u2019on",
"Nakakany",
"Nakasabiti"
],
"MONTH": [
"Orara",
"Omuk",
- "Okwamg'",
- "Odung'el",
+ "Okwamg\u2019",
+ "Odung\u2019el",
"Omaruk",
- "Omodok'king'ol",
+ "Omodok\u2019king\u2019ol",
"Ojola",
"Opedel",
"Osokosokoma",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_th-th.js b/public/app/bower_components/angular-i18n/angular-locale_th-th.js
index 3df817a4..7ff104e3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_th-th.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_th-th.js
@@ -54,7 +54,7 @@ $provide.value("$locale", {
"\u0e18.\u0e04."
],
"fullDate": "EEEE\u0e17\u0e35\u0e48 d MMMM G y",
- "longDate": "d MMMM y",
+ "longDate": "d MMMM G y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_th.js b/public/app/bower_components/angular-i18n/angular-locale_th.js
index 34acd0a9..aa9e4f5e 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_th.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_th.js
@@ -54,7 +54,7 @@ $provide.value("$locale", {
"\u0e18.\u0e04."
],
"fullDate": "EEEE\u0e17\u0e35\u0e48 d MMMM G y",
- "longDate": "d MMMM y",
+ "longDate": "d MMMM G y",
"medium": "d MMM y HH:mm:ss",
"mediumDate": "d MMM y",
"mediumTime": "HH:mm:ss",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_tn-bw.js b/public/app/bower_components/angular-i18n/angular-locale_tn-bw.js
index e14e794b..1146f725 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_tn-bw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_tn-bw.js
@@ -82,7 +82,7 @@ $provide.value("$locale", {
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "P",
- "DECIMAL_SEP": ",",
+ "DECIMAL_SEP": ".",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
{
diff --git a/public/app/bower_components/angular-i18n/angular-locale_tn-za.js b/public/app/bower_components/angular-i18n/angular-locale_tn-za.js
index 5fdeefd4..01b931ba 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_tn-za.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_tn-za.js
@@ -82,7 +82,7 @@ $provide.value("$locale", {
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "R",
- "DECIMAL_SEP": ",",
+ "DECIMAL_SEP": ".",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
{
diff --git a/public/app/bower_components/angular-i18n/angular-locale_tn.js b/public/app/bower_components/angular-i18n/angular-locale_tn.js
index b6c8c761..6b6161d3 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_tn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_tn.js
@@ -82,7 +82,7 @@ $provide.value("$locale", {
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "R",
- "DECIMAL_SEP": ",",
+ "DECIMAL_SEP": ".",
"GROUP_SEP": "\u00a0",
"PATTERNS": [
{
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ts-za.js b/public/app/bower_components/angular-i18n/angular-locale_ts-za.js
index cafec73b..403e9540 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ts-za.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ts-za.js
@@ -46,7 +46,7 @@ $provide.value("$locale", {
"Ndzhati",
"Nhlangula",
"Hukuri",
- "N'wendzamhala"
+ "N\u2019wendzamhala"
],
"SHORTDAY": [
"Son",
@@ -69,7 +69,7 @@ $provide.value("$locale", {
"Ndz",
"Nhl",
"Huk",
- "N'w"
+ "N\u2019w"
],
"fullDate": "y MMMM d, EEEE",
"longDate": "y MMMM d",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ts.js b/public/app/bower_components/angular-i18n/angular-locale_ts.js
index 38bb944f..8f3004d7 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ts.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ts.js
@@ -46,7 +46,7 @@ $provide.value("$locale", {
"Ndzhati",
"Nhlangula",
"Hukuri",
- "N'wendzamhala"
+ "N\u2019wendzamhala"
],
"SHORTDAY": [
"Son",
@@ -69,7 +69,7 @@ $provide.value("$locale", {
"Ndz",
"Nhl",
"Huk",
- "N'w"
+ "N\u2019w"
],
"fullDate": "y MMMM d, EEEE",
"longDate": "y MMMM d",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_uk-ua.js b/public/app/bower_components/angular-i18n/angular-locale_uk-ua.js
index a75ae089..8e7d535b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_uk-ua.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_uk-ua.js
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM y '\u0440'.",
"longDate": "d MMMM y '\u0440'.",
- "medium": "d MMM y HH:mm:ss",
- "mediumDate": "d MMM y",
+ "medium": "d MMM y '\u0440'. HH:mm:ss",
+ "mediumDate": "d MMM y '\u0440'.",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy HH:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_uk.js b/public/app/bower_components/angular-i18n/angular-locale_uk.js
index f8f9b55a..28d5496f 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_uk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_uk.js
@@ -73,8 +73,8 @@ $provide.value("$locale", {
],
"fullDate": "EEEE, d MMMM y '\u0440'.",
"longDate": "d MMMM y '\u0440'.",
- "medium": "d MMM y HH:mm:ss",
- "mediumDate": "d MMM y",
+ "medium": "d MMM y '\u0440'. HH:mm:ss",
+ "mediumDate": "d MMM y '\u0440'.",
"mediumTime": "HH:mm:ss",
"short": "dd.MM.yy HH:mm",
"shortDate": "dd.MM.yy",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ur-pk.js b/public/app/bower_components/angular-i18n/angular-locale_ur-pk.js
index 3bdebc5a..cd5fe199 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ur-pk.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ur-pk.js
@@ -97,15 +97,15 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "\u200e",
- "posPre": "\u00a4",
- "posSuf": "\u200e"
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_ur.js b/public/app/bower_components/angular-i18n/angular-locale_ur.js
index 17039157..f578c953 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_ur.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_ur.js
@@ -97,15 +97,15 @@ $provide.value("$locale", {
"posSuf": ""
},
{
- "gSize": 3,
+ "gSize": 2,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
- "negPre": "\u00a4-",
- "negSuf": "\u200e",
- "posPre": "\u00a4",
- "posSuf": "\u200e"
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
}
]
},
diff --git a/public/app/bower_components/angular-i18n/angular-locale_uz-latn-uz.js b/public/app/bower_components/angular-i18n/angular-locale_uz-latn-uz.js
index b71c7cd0..28fef942 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_uz-latn-uz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_uz-latn-uz.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "TO",
+ "TK"
],
"DAY": [
"yakshanba",
@@ -25,8 +25,8 @@ $provide.value("$locale", {
"Iyun",
"Iyul",
"Avgust",
- "Sentyabr",
- "Oktyabr",
+ "Sentabr",
+ "Oktabr",
"Noyabr",
"Dekabr"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_uz-latn.js b/public/app/bower_components/angular-i18n/angular-locale_uz-latn.js
index 43572cbf..bc73e92b 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_uz-latn.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_uz-latn.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "TO",
+ "TK"
],
"DAY": [
"yakshanba",
@@ -25,8 +25,8 @@ $provide.value("$locale", {
"Iyun",
"Iyul",
"Avgust",
- "Sentyabr",
- "Oktyabr",
+ "Sentabr",
+ "Oktabr",
"Noyabr",
"Dekabr"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_uz.js b/public/app/bower_components/angular-i18n/angular-locale_uz.js
index c2bd79d8..2e57664c 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_uz.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_uz.js
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
- "AM",
- "PM"
+ "TO",
+ "TK"
],
"DAY": [
"yakshanba",
@@ -25,8 +25,8 @@ $provide.value("$locale", {
"Iyun",
"Iyul",
"Avgust",
- "Sentyabr",
- "Oktyabr",
+ "Sentabr",
+ "Oktabr",
"Noyabr",
"Dekabr"
],
diff --git a/public/app/bower_components/angular-i18n/angular-locale_yi-001.js b/public/app/bower_components/angular-i18n/angular-locale_yi-001.js
new file mode 100644
index 00000000..22e8df73
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_yi-001.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "\u05e4\u05d0\u05e8\u05de\u05d9\u05d8\u05d0\u05d2",
+ "\u05e0\u05d0\u05db\u05de\u05d9\u05d8\u05d0\u05d2"
+ ],
+ "DAY": [
+ "\u05d6\u05d5\u05e0\u05d8\u05d9\u05e7",
+ "\u05de\u05d0\u05b8\u05e0\u05d8\u05d9\u05e7",
+ "\u05d3\u05d9\u05e0\u05e1\u05d8\u05d9\u05e7",
+ "\u05de\u05d9\u05d8\u05d5\u05d5\u05d0\u05da",
+ "\u05d3\u05d0\u05e0\u05e2\u05e8\u05e9\u05d8\u05d9\u05e7",
+ "\u05e4\u05bf\u05e8\u05f2\u05b7\u05d8\u05d9\u05e7",
+ "\u05e9\u05d1\u05ea"
+ ],
+ "MONTH": [
+ "\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"
+ ],
+ "SHORTDAY": [
+ "\u05d6\u05d5\u05e0\u05d8\u05d9\u05e7",
+ "\u05de\u05d0\u05b8\u05e0\u05d8\u05d9\u05e7",
+ "\u05d3\u05d9\u05e0\u05e1\u05d8\u05d9\u05e7",
+ "\u05de\u05d9\u05d8\u05d5\u05d5\u05d0\u05da",
+ "\u05d3\u05d0\u05e0\u05e2\u05e8\u05e9\u05d8\u05d9\u05e7",
+ "\u05e4\u05bf\u05e8\u05f2\u05b7\u05d8\u05d9\u05e7",
+ "\u05e9\u05d1\u05ea"
+ ],
+ "SHORTMONTH": [
+ "\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"
+ ],
+ "fullDate": "EEEE, d\u05d8\u05df MMMM y",
+ "longDate": "d\u05d8\u05df MMMM y",
+ "medium": "d\u05d8\u05df MMM y HH:mm:ss",
+ "mediumDate": "d\u05d8\u05df MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "yi-001",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_yi.js b/public/app/bower_components/angular-i18n/angular-locale_yi.js
new file mode 100644
index 00000000..6598e95b
--- /dev/null
+++ b/public/app/bower_components/angular-i18n/angular-locale_yi.js
@@ -0,0 +1,115 @@
+'use strict';
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+function getDecimals(n) {
+ n = n + '';
+ var i = n.indexOf('.');
+ return (i == -1) ? 0 : n.length - i - 1;
+}
+
+function getVF(n, opt_precision) {
+ var v = opt_precision;
+
+ if (undefined === v) {
+ v = Math.min(getDecimals(n), 3);
+ }
+
+ var base = Math.pow(10, v);
+ var f = ((n * base) | 0) % base;
+ return {v: v, f: f};
+}
+
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": [
+ "\u05e4\u05d0\u05e8\u05de\u05d9\u05d8\u05d0\u05d2",
+ "\u05e0\u05d0\u05db\u05de\u05d9\u05d8\u05d0\u05d2"
+ ],
+ "DAY": [
+ "\u05d6\u05d5\u05e0\u05d8\u05d9\u05e7",
+ "\u05de\u05d0\u05b8\u05e0\u05d8\u05d9\u05e7",
+ "\u05d3\u05d9\u05e0\u05e1\u05d8\u05d9\u05e7",
+ "\u05de\u05d9\u05d8\u05d5\u05d5\u05d0\u05da",
+ "\u05d3\u05d0\u05e0\u05e2\u05e8\u05e9\u05d8\u05d9\u05e7",
+ "\u05e4\u05bf\u05e8\u05f2\u05b7\u05d8\u05d9\u05e7",
+ "\u05e9\u05d1\u05ea"
+ ],
+ "MONTH": [
+ "\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"
+ ],
+ "SHORTDAY": [
+ "\u05d6\u05d5\u05e0\u05d8\u05d9\u05e7",
+ "\u05de\u05d0\u05b8\u05e0\u05d8\u05d9\u05e7",
+ "\u05d3\u05d9\u05e0\u05e1\u05d8\u05d9\u05e7",
+ "\u05de\u05d9\u05d8\u05d5\u05d5\u05d0\u05da",
+ "\u05d3\u05d0\u05e0\u05e2\u05e8\u05e9\u05d8\u05d9\u05e7",
+ "\u05e4\u05bf\u05e8\u05f2\u05b7\u05d8\u05d9\u05e7",
+ "\u05e9\u05d1\u05ea"
+ ],
+ "SHORTMONTH": [
+ "\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"
+ ],
+ "fullDate": "EEEE, d\u05d8\u05df MMMM y",
+ "longDate": "d\u05d8\u05df MMMM y",
+ "medium": "d\u05d8\u05df MMM y HH:mm:ss",
+ "mediumDate": "d\u05d8\u05df MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": [
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ {
+ "gSize": 3,
+ "lgSize": 3,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ ]
+ },
+ "id": "yi",
+ "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
diff --git a/public/app/bower_components/angular-i18n/angular-locale_zh-hant-tw.js b/public/app/bower_components/angular-i18n/angular-locale_zh-hant-tw.js
index c1582ec7..f64f1d00 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_zh-hant-tw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_zh-hant-tw.js
@@ -53,7 +53,7 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
- "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "fullDate": "y\u5e74M\u6708d\u65e5 EEEE",
"longDate": "y\u5e74M\u6708d\u65e5",
"medium": "y\u5e74M\u6708d\u65e5 ah:mm:ss",
"mediumDate": "y\u5e74M\u6708d\u65e5",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_zh-hant.js b/public/app/bower_components/angular-i18n/angular-locale_zh-hant.js
index 31db6747..cf8957c8 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_zh-hant.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_zh-hant.js
@@ -53,7 +53,7 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
- "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "fullDate": "y\u5e74M\u6708d\u65e5 EEEE",
"longDate": "y\u5e74M\u6708d\u65e5",
"medium": "y\u5e74M\u6708d\u65e5 ah:mm:ss",
"mediumDate": "y\u5e74M\u6708d\u65e5",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_zh-tw.js b/public/app/bower_components/angular-i18n/angular-locale_zh-tw.js
index d9ba29be..d9eb9e12 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_zh-tw.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_zh-tw.js
@@ -53,7 +53,7 @@ $provide.value("$locale", {
"11\u6708",
"12\u6708"
],
- "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "fullDate": "y\u5e74M\u6708d\u65e5 EEEE",
"longDate": "y\u5e74M\u6708d\u65e5",
"medium": "y\u5e74M\u6708d\u65e5 ah:mm:ss",
"mediumDate": "y\u5e74M\u6708d\u65e5",
diff --git a/public/app/bower_components/angular-i18n/angular-locale_zu-za.js b/public/app/bower_components/angular-i18n/angular-locale_zu-za.js
index 36f2d58b..6d76b395 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_zu-za.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_zu-za.js
@@ -53,13 +53,13 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
- "fullDate": "EEEE dd MMMM y",
- "longDate": "d MMMM y",
- "medium": "d MMM y h:mm:ss a",
- "mediumDate": "d MMM y",
+ "fullDate": "EEEE, MMMM d, y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y h:mm:ss a",
+ "mediumDate": "MMM d, y",
"mediumTime": "h:mm:ss a",
- "short": "y-MM-dd h:mm a",
- "shortDate": "y-MM-dd",
+ "short": "M/d/yy h:mm a",
+ "shortDate": "M/d/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/angular-locale_zu.js b/public/app/bower_components/angular-i18n/angular-locale_zu.js
index 0938a02a..1ad6b029 100644
--- a/public/app/bower_components/angular-i18n/angular-locale_zu.js
+++ b/public/app/bower_components/angular-i18n/angular-locale_zu.js
@@ -53,13 +53,13 @@ $provide.value("$locale", {
"Nov",
"Dis"
],
- "fullDate": "EEEE dd MMMM y",
- "longDate": "d MMMM y",
- "medium": "d MMM y h:mm:ss a",
- "mediumDate": "d MMM y",
+ "fullDate": "EEEE, MMMM d, y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y h:mm:ss a",
+ "mediumDate": "MMM d, y",
"mediumTime": "h:mm:ss a",
- "short": "y-MM-dd h:mm a",
- "shortDate": "y-MM-dd",
+ "short": "M/d/yy h:mm a",
+ "shortDate": "M/d/yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
diff --git a/public/app/bower_components/angular-i18n/bower.json b/public/app/bower_components/angular-i18n/bower.json
index 8fec9129..e054c3fb 100644
--- a/public/app/bower_components/angular-i18n/bower.json
+++ b/public/app/bower_components/angular-i18n/bower.json
@@ -1,6 +1,6 @@
{
"name": "angular-i18n",
- "version": "1.3.1",
+ "version": "1.3.12",
"ignore": [
"**/.*",
"node_modules",
diff --git a/public/app/bower_components/angular-i18n/package.json b/public/app/bower_components/angular-i18n/package.json
index e57d0d32..20807f0b 100644
--- a/public/app/bower_components/angular-i18n/package.json
+++ b/public/app/bower_components/angular-i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "angular-i18n",
- "version": "1.3.1",
+ "version": "1.3.12",
"description": "AngularJS module for internationalization",
"main": "angular-i18n.js",
"scripts": {
diff --git a/public/app/bower_components/angular-loader/.bower.json b/public/app/bower_components/angular-loader/.bower.json
index aff09fae..53cce376 100644
--- a/public/app/bower_components/angular-loader/.bower.json
+++ b/public/app/bower_components/angular-loader/.bower.json
@@ -1,17 +1,17 @@
{
"name": "angular-loader",
- "version": "1.3.1",
+ "version": "1.3.12",
"main": "./angular-loader.js",
"ignore": [],
"dependencies": {
- "angular": "1.3.1"
+ "angular": "1.3.12"
},
"homepage": "https://github.com/angular/bower-angular-loader",
- "_release": "1.3.1",
+ "_release": "1.3.12",
"_resolution": {
"type": "version",
- "tag": "v1.3.1",
- "commit": "0e6defd9cd018dae882a33bd9b9a2c0e8c94719d"
+ "tag": "v1.3.12",
+ "commit": "447168dec97596a75e65146ccf46189f1fcb337a"
},
"_source": "git://github.com/angular/bower-angular-loader.git",
"_target": "~1.3.1",
diff --git a/public/app/bower_components/angular-loader/angular-loader.js b/public/app/bower_components/angular-loader/angular-loader.js
index 7fddeaeb..602ff10e 100644
--- a/public/app/bower_components/angular-loader/angular-loader.js
+++ b/public/app/bower_components/angular-loader/angular-loader.js
@@ -1,5 +1,5 @@
/**
- * @license AngularJS v1.3.1
+ * @license AngularJS v1.3.12
* (c) 2010-2014 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -43,40 +43,23 @@ function minErr(module, ErrorConstructor) {
prefix = '[' + (module ? module + ':' : '') + code + '] ',
template = arguments[1],
templateArgs = arguments,
- stringify = function(obj) {
- if (typeof obj === 'function') {
- return obj.toString().replace(/ \{[\s\S]*$/, '');
- } else if (typeof obj === 'undefined') {
- return 'undefined';
- } else if (typeof obj !== 'string') {
- return JSON.stringify(obj);
- }
- return obj;
- },
+
message, i;
message = prefix + template.replace(/\{\d+\}/g, function(match) {
var index = +match.slice(1, -1), arg;
if (index + 2 < templateArgs.length) {
- arg = templateArgs[index + 2];
- if (typeof arg === 'function') {
- return arg.toString().replace(/ ?\{[\s\S]*$/, '');
- } else if (typeof arg === 'undefined') {
- return 'undefined';
- } else if (typeof arg !== 'string') {
- return toJson(arg);
- }
- return arg;
+ return toDebugString(templateArgs[index + 2]);
}
return match;
});
- message = message + '\nhttp://errors.angularjs.org/1.3.1/' +
+ message = message + '\nhttp://errors.angularjs.org/1.3.12/' +
(module ? module + '/' : '') + code;
for (i = 2; i < arguments.length; i++) {
- message = message + (i == 2 ? '?' : '&') + 'p' + (i-2) + '=' +
- encodeURIComponent(stringify(arguments[i]));
+ message = message + (i == 2 ? '?' : '&') + 'p' + (i - 2) + '=' +
+ encodeURIComponent(toDebugString(arguments[i]));
}
return new ErrorConstructor(message);
};
diff --git a/public/app/bower_components/angular-loader/angular-loader.min.js b/public/app/bower_components/angular-loader/angular-loader.min.js
index 9c2248e8..c0478de4 100644
--- a/public/app/bower_components/angular-loader/angular-loader.min.js
+++ b/public/app/bower_components/angular-loader/angular-loader.min.js
@@ -1,9 +1,9 @@
/*
- AngularJS v1.3.1
+ AngularJS v1.3.12
(c) 2010-2014 Google, Inc. http://angularjs.org
License: MIT
*/
-(function(){'use strict';function d(b){return function(){var c=arguments[0],e;e="["+(b?b+":":"")+c+"] http://errors.angularjs.org/1.3.1/"+(b?b+"/":"")+c;for(c=1;c Please note that using Angular Material requires **Angular 1.3.x** or higher.
-
-Below is a sample set of commands:
+To install and use the Angular Material distribution files, change to your project's root directory.
```bash
-cd yourProjectDir
+# To get the latest stable version, use Bower from the command line.
+bower install angular-material
+
+# To get the most recent, last committed-to-master version use:
+bower install angular-material#master
+
+# To save the bower settings for future use:
bower install angular-material --save
+
+# Later, you can use easily update with:
+bower update
```
-### Usage
+> Please note that using Angular Material requires **Angular 1.3.x** or higher.
+
+
+### Using the Bower-Material Library
Now that you have installed [locally] the Angular libraries, simply include the scripts and stylesheet in your main HTML file:
@@ -23,7 +33,6 @@ Now that you have installed [locally] the Angular libraries, simply include the
-
@@ -48,3 +57,60 @@ Now that you have installed [locally] the Angular libraries, simply include the