Improve this doc
+A great way to get introduced to AngularJS is to work through this tutorial, which walks you through
+the construction of an AngularJS web app. The app you will build is a catalog that displays a list
+of Android devices, lets you filter the list to see only devices that interest you, and then view
+details for any device.
+
+
+
+Work through the tutorial to see how Angular makes browsers smarter — without the use of extensions
+or plug-ins. As you work through the tutorial, you will:
+
+* See examples of how to use client-side data binding and dependency injection to build dynamic
+views of data that change immediately in response to user actions.
+* See how Angular creates listeners on your data without the need for DOM manipulation.
+* Learn a better, easier way to test your web apps.
+* Learn how to use Angular services to make common web tasks, such as getting data into your app,
+easier.
+
+And all of this works in any browser without modification to the browser!
+
+When you finish the tutorial you will be able to:
+
+* Create a dynamic application that works in any browser.
+* Define the differences between Angular and common JavaScript frameworks.
+* Understand how data binding works in AngularJS.
+* Use the angular-seed project to quickly boot-strap your own projects.
+* Create and run tests.
+* Identify resources for learning more about AngularJS.
+
+The tutorial guides you through the entire process of building a simple application, including
+writing and running unit and end-to-end tests. Experiments at the end of each step provide
+suggestions for you to learn more about AngularJS and the application you are building.
+
+You can go through the whole tutorial in a couple of hours or you may want to spend a pleasant day
+really digging into it. If you're looking for a shorter introduction to AngularJS, check out the
+
Getting Started document.
+
+
+
+
+
+
+
+# Working with the code
+
+You can follow this tutorial and hack on the code in either the Mac/Linux or the Windows
+environment. The tutorial relies on the use of Git versioning system for source code management.
+You don't need to know anything about Git to follow the tutorial. Select one of the tabs below
+and follow the instructions for setting up your computer.
+
+
+
+
+ You will need Node.js and Karma to run unit tests, so please verify that you have
+ Node.js v0.8 or better installed
+ and that the node
executable is on your PATH
by running the following
+ command in a terminal window:
+ node --version
+ Additionally install Karma if you
+ don't have it already:
+ npm install -g karma
+ You'll also need Git, which you can get from
+ the Git site.
+ Clone the angular-phonecat repository located at Github by running the following command:
+ git clone git://github.com/angular/angular-phonecat.git
+ This command creates the angular-phonecat
directory in your current
+directory.
+ Change your current directory to angular-phonecat
:
+ cd angular-phonecat
+ The tutorial instructions assume you are running all commands from the angular-phonecat
+directory.
+ You will need an http server running on your system. Mac and Linux machines typically
+have Apache pre-installed, but If you don't already have one installed, you can use node
+to run scripts/web-server.js
, a simple bundled http server.
+
+
+
+
+
+ You will need Node.js and Karma to run unit tests, so please verify that you have
+ Node.js v0.8 or better installed
+ and that the node
executable is on your PATH
by running the following
+ command in a terminal window:
+ node --version
+ Additionally install Karma if you
+ don't have it already:
+ npm install -g karma
+
+ You'll also need Git, which you can get from
+ the Git site.
+ Clone the angular-phonecat repository located at Github by running the following command:
+ git clone git://github.com/angular/angular-phonecat.git
+ This command creates the angular-phonecat directory in your current directory.
+ Change your current directory to angular-phonecat.
+ cd angular-phonecat
+ The tutorial instructions assume you are running all commands from the angular-phonecat
+directory.
+ You should run all git
commands from Git bash.
+ Other commands like test.bat
or e2e-test.bat
should be
+executed from the Windows command line.
+ You need an http server running on your system, but if you don't already have one
+already installed, you can use node
to run scripts\web-server.js
, a simple
+bundled http server.
+
+
+
+The last thing to do is to make sure your computer has a web browser and a good text editor
+installed. Now, let's get some cool stuff done!
+
+
Get Started!
+
diff --git a/1.1.5/docs/partials/tutorial/step_00.html b/1.1.5/docs/partials/tutorial/step_00.html
new file mode 100644
index 0000000000..ba7e3f5e55
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_00.html
@@ -0,0 +1,206 @@
+
+
+
+
Improve this doc
+
+
You are now ready to build the AngularJS phonecat app. In this step, you will become familiar
+with the most important source code files, learn how to start the development servers bundled with
+angular-seed, and run the application in the browser.
+
+
+
+
+ In angular-phonecat directory, run this command:
+ git checkout -f step-0
+ This resets your workspace to step 0 of the tutorial app.
+ You must repeat this for every future step in the tutorial and change the number to
+ the number of the step you are on. This will cause any changes you made within
+ your working directory to be lost.
+
+ - To see the app running in a browser, do one of the following:
+
+ - For node.js users:
+
+ - In a separate terminal tab or window, run
+
./scripts/web-server.js
to start the web server.
+ - Open a browser window for the app and navigate to http://localhost:8000/app/index.html
+
+
+ - For other http servers:
+
+ - Configure the server to serve the files in the
angular-phonecat
+directory.
+ - Navigate in your browser to
+
http://localhost:[port-number]/[context-path]/app/index.html
.
+
+
+
+
+
+
+
+
+
+
+ Open Git bash and run this command (in angular-phonecat directory):
+ git checkout -f step-0
+ This resets your workspace to step 0 of the tutorial app.
+ You must repeat this for every future step in the tutorial and change the number to
+ the number of the step you are on. This will cause any changes you made within
+ your working directory to be lost.
+ - To see the app running in a browser, do one of the following:
+
+ - For node.js users:
+
+ - In a separate terminal tab or window, run
node
+scripts\web-server.js
to start the web server.
+ - Open a browser window for the app and navigate to http://localhost:8000/app/index.html
+
+
+ - For other http servers:
+
+ - Configure the server to serve the files in the
angular-phonecat
+directory.
+ - Navigate in your browser to
+
http://localhost:[port-number]/[context-path]/app/index.html
.
+
+
+
+
+
+
+
+
+
You can now see the page in your browser. It's not very exciting, but that's OK.
+
+
The HTML page that displays "Nothing here yet!" was constructed with the HTML code shown below.
+The code contains some key Angular elements that we will need going forward.
+
+
app/index.html
:
+
+<!doctype html>
+<html lang="en" ng-app>
+<head>
+ <meta charset="utf-8">
+ <title>My HTML File</title>
+ <link rel="stylesheet" href="css/app.css">
+ <link rel="stylesheet" href="css/bootstrap.css">
+ <script src="lib/angular/angular.js"></script>
+</head>
+<body>
+
+ <p>Nothing here {{'yet' + '!'}}</p>
+
+</body>
+</html>
+
+
+
What is the code doing?
+
+
+ng-app
directive:
+
+ <html ng-app>
+
+
+The ng-app
attribute represents an Angular directive (named ngApp
; Angular uses
+name-with-dashes
for attribute names and camelCase
for the corresponding directive name)
+used to flag an element which Angular should consider to be the root element of our application.
+This gives application developers the freedom to tell Angular if the entire html page or only a
+portion of it should be treated as the Angular application.
+AngularJS script tag:
+
+ <script src="lib/angular/angular.js">
+
+
+This code downloads the angular.js
script and registers a callback that will be executed by the
+browser when the containing HTML page is fully downloaded. When the callback is executed, Angular
+looks for the ngApp
directive. If
+Angular finds the directive, it will bootstrap the application with the root of the application DOM
+being the element on which the ngApp
directive was defined.
+Double-curly binding with an expression:
+
+ Nothing here {{'yet' + '!'}}
+
+
+This line demonstrates the core feature of Angular's templating capabilities – a binding, denoted
+by double-curlies {{ }}
as well as a simple expression 'yet' + '!'
used in this binding.
+
+The binding tells Angular that it should evaluate an expression and insert the result into the
+DOM in place of the binding. Rather than a one-time insert, as we'll see in the next steps, a
+binding will result in efficient continuous updates whenever the result of the expression
+evaluation changes.
+
+Angular expression is a JavaScript-like code snippet that is
+evaluated by Angular in the context of the current model scope, rather than within the scope of
+the global context (window
).
+
+As expected, once this template is processed by Angular, the html page contains the text:
+"Nothing here yet!".
+
+
+Bootstrapping AngularJS apps
+
+
Bootstrapping AngularJS apps automatically using the ngApp
directive is very easy and suitable
+for most cases. In advanced cases, such as when using script loaders, you can use
+imperative / manual way to bootstrap the app.
+
+
There are 3 important things that happen during the app bootstrap:
+
+
+The injector
that will be used for dependency injection
+within this app is created.
+The injector will then create the root scope
that will
+become the context for the model of our application.
+Angular will then "compile" the DOM starting at the ngApp
root element, processing any
+directives and bindings found along the way.
+
+
+
Once an application is bootstrapped, it will then wait for incoming browser events (such as mouse
+click, key press or incoming HTTP response) that might change the model. Once such an event occurs,
+Angular detects if it caused any model changes and if changes are found, Angular will reflect them
+in the view by updating all of the affected bindings.
+
+
The structure of our application is currently very simple. The template contains just one directive
+and one static binding, and our model is empty. That will soon change!
+
+
+
+
What are all these files in my working directory?
+
+
Most of the files in your working directory come from the angular-seed project which is typically used to bootstrap
+new Angular projects. The seed project includes the latest Angular libraries, test libraries,
+scripts and a simple example app, all pre-configured for developing a typical web app.
+
+
For the purposes of this tutorial, we modified the angular-seed with the following changes:
+
+
+- Removed the example app
+- Added phone images to
app/img/phones/
+- Added phone data files (JSON) to
app/phones/
+- Added Bootstrap files to
app/css/
and app/img/
+
+
+
Experiments
+
+
+
+Summary
+
+
Now let's go to step 1 and add some content to the web app.
+
+
+
+
+Note: During the bootstrap the injector and the root scope will then be associated with the
+ element on which the `ngApp` directive was declared, so when debugging the app you can retrieve
+ them from browser console via `angular.element(rootElement).scope()` and
+ `angular.element(rootElement).injector()`.
+
diff --git a/1.1.5/docs/partials/tutorial/step_01.html b/1.1.5/docs/partials/tutorial/step_01.html
new file mode 100644
index 0000000000..bd6ba1df33
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_01.html
@@ -0,0 +1,50 @@
+
+
+
+
Improve this doc
+
+
In order to illustrate how Angular enhances standard HTML, you will create a purely static HTML
+page and then examine how we can turn this HTML code into a template that Angular will use to
+dynamically display the same result with any set of data.
+
+
In this step you will add some basic information about two cell phones to an HTML page.
+
+
+
+
+
The page now contains a list with information about two phones.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
app/index.html
:
+
+ <ul>
+ <li>
+ <span>Nexus S</span>
+ <p>
+ Fast just got faster with Nexus S.
+ </p>
+ </li>
+ <li>
+ <span>Motorola XOOM™ with Wi-Fi</span>
+ <p>
+ The Next, Next Generation tablet.
+ </p>
+ </li>
+ </ul>
+
+
+
Experiments
+
+
+
+Summary
+
+
This addition to your app uses static HTML to display the list. Now, let's go to step 2 to learn how to use AngularJS to dynamically generate the same list.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_02.html b/1.1.5/docs/partials/tutorial/step_02.html
new file mode 100644
index 0000000000..abdb060750
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_02.html
@@ -0,0 +1,195 @@
+
+
+
+
Improve this doc
+
+
Now it's time to make the web page dynamic — with AngularJS. We'll also add a test that verifies the
+code for the controller we are going to add.
+
+
There are many ways to structure the code for an application. For Angular apps, we encourage the
+use of the Model-View-Controller (MVC) design pattern to decouple the code and to separate concerns. With that in mind, let's use a
+little Angular and JavaScript to add model, view, and controller components to our app.
+
+
+
+
+
The app now contains a list with three phones.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
View and Template
+
+
In Angular, the view is a projection of the model through the HTML template. This means that
+whenever the model changes, Angular refreshes the appropriate binding points, which updates the
+view.
+
+
The view component is constructed by Angular from this template:
+
+
app/index.html
:
+
+<html ng-app>
+<head>
+ ...
+ <script src="lib/angular/angular.js"></script>
+ <script src="js/controllers.js"></script>
+</head>
+<body ng-controller="PhoneListCtrl">
+
+ <ul>
+ <li ng-repeat="phone in phones">
+ {{phone.name}}
+ <p>{{phone.snippet}}</p>
+ </li>
+ </ul>
+</body>
+</html>
+
+
+
We replaced the hard-coded phone list with the
+ngRepeat directive
and two
+Angular expressions enclosed in curly braces:
+{{phone.name}}
and {{phone.snippet}}
:
+
+
+The ng-repeat="phone in phones"
statement in the <li>
tag is an Angular repeater. The
+repeater tells Angular to create a <li>
element for each phone in the list using the first <li>
+tag as the template.
+As we've learned in step 0, the curly braces around phone.name
and phone.snippet
denote
+bindings. As opposed to evaluating constants, these expressions are referring to our application
+model, which was set up in our PhoneListCtrl
controller.
+
+
+
+
+
Model and Controller
+
+
The data model (a simple array of phones in object literal notation) is instantiated within
+the PhoneListCtrl
controller:
+
+
app/js/controllers.js
:
+
+function PhoneListCtrl($scope) {
+ $scope.phones = [
+ {"name": "Nexus S",
+ "snippet": "Fast just got faster with Nexus S."},
+ {"name": "Motorola XOOM™ with Wi-Fi",
+ "snippet": "The Next, Next Generation tablet."},
+ {"name": "MOTOROLA XOOM™",
+ "snippet": "The Next, Next Generation tablet."}
+ ];
+}
+
+
+
Although the controller is not yet doing very much controlling, it is playing a crucial role. By
+providing context for our data model, the controller allows us to establish data-binding between
+the model and the view. We connected the dots between the presentation, data, and logic components
+as follows:
+
+
+PhoneListCtrl
— the name of our controller function (located in the JavaScript file
+controllers.js
), matches the value of the
+ngController
directive located
+on the <body>
tag.
+The phone data is then attached to the scope ($scope
) that was injected into our controller
+function. The controller scope is a prototypical descendant of the root scope that was created
+when the application bootstrapped. This controller scope is available to all bindings located within
+the <body ng-controller="PhoneListCtrl">
tag.
+
+The concept of a scope in Angular is crucial; a scope can be seen as the glue which allows the
+template, model and controller to work together. Angular uses scopes, along with the information
+contained in the template, data model, and controller, to keep models and views separate, but in
+sync. Any changes made to the model are reflected in the view; any changes that occur in the view
+are reflected in the model.
+
+To learn more about Angular scopes, see the angular scope documentation
.
+
+
+
Tests
+
+
The "Angular way" makes it easy to test code as it is being developed. Take a look at the following
+unit test for your newly created controller:
+
+
test/unit/controllersSpec.js
:
+
+describe('PhoneCat controllers', function() {
+
+ describe('PhoneListCtrl', function(){
+
+ it('should create "phones" model with 3 phones', function() {
+ var scope = {},
+ ctrl = new PhoneListCtrl(scope);
+
+ expect(scope.phones.length).toBe(3);
+ });
+ });
+});
+
+
+
The test verifies that we have three records in the phones array and the example demonstrates how
+easy it is to create a unit test for code in Angular. Since testing is such a critical part of
+software development, we make it easy to create tests in Angular so that developers are encouraged
+to write them.
+
+
Angular developers prefer the syntax of Jasmine's Behavior-driven Development (BDD) framework when
+writing tests. Although Angular does not require you to use Jasmine, we wrote all of the tests in
+this tutorial in Jasmine. You can learn about Jasmine on the Jasmine home page and on the Jasmine wiki.
+
+
The angular-seed project is pre-configured to run all unit tests using Karma. To run the test, do the following:
+
+
+In a separate terminal window or tab, go to the angular-phonecat
directory and run
+./scripts/test.sh
to start the Karma server (the config file necessary to start the server
+is located at ./config/karma.conf.js
).
+Karma will start a new instance of Chrome browser automatically. Just ignore it and let it run in
+the background. Karma will use this browser for test execution.
+You should see the following or similar output in the terminal:
+
+ info: Karma server started at http://localhost:9876/
+ info (launcher): Starting browser "Chrome"
+ info (Chrome 22.0): Connected on socket id tPUm9DXcLHtZTKbAEO-n
+ Chrome 22.0: Executed 1 of 1 SUCCESS (0.093 secs / 0.004 secs)
+
+
+Yay! The test passed! Or not...
+To rerun the tests, just change any of the source or test files. Karma will notice the change
+and will rerun the tests for you. Now isn't that sweet?
+
+
+
Experiments
+
+
+Add another binding to index.html
. For example:
+
+ <p>Total number of phones: {{phones.length}}</p>
+
+Create a new model property in the controller and bind to it from the template. For example:
+
+ $scope.hello = "Hello, World!"
+
+
+Refresh your browser to make sure it says, "Hello, World!"
+Create a repeater that constructs a simple table:
+
+ <table>
+ <tr><th>row number</th></tr>
+ <tr ng-repeat="i in [0, 1, 2, 3, 4, 5, 6, 7]"><td>{{i}}</td></tr>
+ </table>
+
+
+Now, make the list 1-based by incrementing i
by one in the binding:
+
+ <table>
+ <tr><th>row number</th></tr>
+ <tr ng-repeat="i in [0, 1, 2, 3, 4, 5, 6, 7]"><td>{{i+1}}</td></tr>
+ </table>
+
+Make the unit test fail by changing the toBe(3)
statement to toBe(4)
.
+
+
+Summary
+
+
You now have a dynamic app that features separate model, view, and controller components, and you
+are testing as you go. Now, let's go to step 3 to learn how to add full text search
+to the app.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_03.html b/1.1.5/docs/partials/tutorial/step_03.html
new file mode 100644
index 0000000000..efceee9247
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_03.html
@@ -0,0 +1,196 @@
+
+
+
+
Improve this doc
+
+
We did a lot of work in laying a foundation for the app in the last step, so now we'll do something
+simple; we will add full text search (yes, it will be simple!). We will also write an end-to-end
+test, because a good end-to-end test is a good friend. It stays with your app, keeps an eye on it,
+and quickly detects regressions.
+
+
+
+
+
The app now has a search box. Notice that the phone list on the page changes depending on what a
+user types into the search box.
+
+
The most important differences between Steps 2 and 3 are listed below. You can see the full diff on
+GitHub:
+
+
Controller
+
+
We made no changes to the controller.
+
+
Template
+
+
app/index.html
:
+
+ <div class="container-fluid">
+ <div class="row-fluid">
+ <div class="span2">
+ <!--Sidebar content-->
+
+ Search: <input ng-model="query">
+
+ </div>
+ <div class="span10">
+ <!--Body content-->
+
+ <ul class="phones">
+ <li ng-repeat="phone in phones | filter:query">
+ {{phone.name}}
+ <p>{{phone.snippet}}</p>
+ </li>
+ </ul>
+
+ </div>
+ </div>
+ </div>
+
+
+
We added a standard HTML <input>
tag and used Angular's
+$filter
function to process the input for the
+ngRepeat
directive.
+
+
This lets a user enter search criteria and immediately see the effects of their search on the phone
+list. This new code demonstrates the following:
+
+
+Data-binding: This is one of the core features in Angular. When the page loads, Angular binds the
+name of the input box to a variable of the same name in the data model and keeps the two in sync.
+
+In this code, the data that a user types into the input box (named query
) is immediately
+available as a filter input in the list repeater (phone in phones | filter:
query
). When
+changes to the data model cause the repeater's input to change, the repeater efficiently updates
+the DOM to reflect the current state of the model.
+
+
+Use of the filter
filter: The filter
function uses the
+query
value to create a new array that contains only those records that match the query
.
+
+ngRepeat
automatically updates the view in response to the changing number of phones returned
+by the filter
filter. The process is completely transparent to the developer.
+
+
+
Test
+
+
In Step 2, we learned how to write and run unit tests. Unit tests are perfect for testing
+controllers and other components of our application written in JavaScript, but they can't easily
+test DOM manipulation or the wiring of our application. For these, an end-to-end test is a much
+better choice.
+
+
The search feature was fully implemented via templates and data-binding, so we'll write our first
+end-to-end test, to verify that the feature works.
+
+
test/e2e/scenarios.js
:
+
+describe('PhoneCat App', function() {
+
+ describe('Phone list view', function() {
+
+ beforeEach(function() {
+ browser().navigateTo('../../app/index.html');
+ });
+
+
+ it('should filter the phone list as user types into the search box', function() {
+ expect(repeater('.phones li').count()).toBe(3);
+
+ input('query').enter('nexus');
+ expect(repeater('.phones li').count()).toBe(1);
+
+ input('query').enter('motorola');
+ expect(repeater('.phones li').count()).toBe(2);
+ });
+ });
+});
+
+
+
Even though the syntax of this test looks very much like our controller unit test written with
+Jasmine, the end-to-end test uses APIs of Angular's end-to-end test runner.
+
+
To run the end-to-end test, open one of the following in a new browser tab:
+
+
+
+
Previously we've seen how Karma can be used to execute unit tests. Well, it can also run the
+end-to-end tests! Use ./scripts/e2e-test.sh
script for that. End-to-end tests are slow, so unlike
+with unit tests, Karma will exit after the test run and will not automatically rerun the test
+suite on every file change. To rerun the test suite, execute the e2e-test.sh
script again.
+
+
This test verifies that the search box and the repeater are correctly wired together. Notice how
+easy it is to write end-to-end tests in Angular. Although this example is for a simple test, it
+really is that easy to set up any functional, readable, end-to-end test.
+
+
Experiments
+
+
+Display the current value of the query
model by adding a {{query}}
binding into the
+index.html
template, and see how it changes when you type in the input box.
+Let's see how we can get the current value of the query
model to appear in the HTML page title.
+
+You might think you could just add the {{query}} to the title tag element as follows:
+
+ <title>Google Phone Gallery: {{query}}</title>
+
+
+However, when you reload the page, you won't see the expected result. This is because the "query"
+model lives in the scope defined by the body element:
+
+ <body ng-controller="PhoneListCtrl">
+
+
+If you want to bind to the query model from the <title>
element, you must move the
+ngController
declaration to the HTML element because it is the common parent of both the body
+and title elements:
+
+ <html ng-app ng-controller="PhoneListCtrl">
+
+
+Be sure to remove the ng-controller
declaration from the body element.
+
+While using double curlies works fine within the title element, you might have noticed that
+for a split second they are actually displayed to the user while the page is loading. A better
+solution would be to use the ngBind
or ngBindTemplate
directives, which are invisible to the user while the page is loading:
+
+ <title ng-bind-template="Google Phone Gallery: {{query}}">Google Phone Gallery</title>
+
+Add the following end-to-end test into the describe
block within test/e2e/scenarios.js
:
+
+
+ it('should display the current filter value within an element with id "status"',
+ function() {
+ expect(element('#status').text()).toMatch(/Current filter: \s*$/);
+
+ input('query').enter('nexus');
+
+ expect(element('#status').text()).toMatch(/Current filter: nexus\s*$/);
+
+ //alternative version of the last assertion that tests just the value of the binding
+ using('#status').expect(binding('query')).toBe('nexus');
+ });
+
+
+Refresh the browser tab with the end-to-end test runner to see the test fail. To make the test
+pass, edit the index.html
template to add a div
or p
element with id
"status"
and content
+with the query
binding, prefixed by "Current filter:". For instance:
+
+ <div id="status">Current filter: {{query}}</div>
+
+Add a pause()
statement inside of an end-to-end test and rerun it. You'll see the runner pause;
+this gives you the opportunity to explore the state of your application while it is displayed in
+the browser. The app is live! You can change the search query to prove it. Notice how useful this
+is for troubleshooting end-to-end tests.
+
+
+Summary
+
+
We have now added full text search and included a test to verify that search works! Now let's go on
+to step 4 to learn how to add sorting capability to the phone app.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_04.html b/1.1.5/docs/partials/tutorial/step_04.html
new file mode 100644
index 0000000000..d91520079a
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_04.html
@@ -0,0 +1,178 @@
+
+
+
+
Improve this doc
+
+
In this step, you will add a feature to let your users control the order of the items in the phone
+list. The dynamic ordering is implemented by creating a new model property, wiring it together with
+the repeater, and letting the data binding magic do the rest of the work.
+
+
+
+
+
You should see that in addition to the search box, the app displays a drop down menu that allows
+users to control the order in which the phones are listed.
+
+
The most important differences between Steps 3 and 4 are listed below. You can see the full diff on
+GitHub:
+
+
Template
+
+
app/index.html
:
+
+ Search: <input ng-model="query">
+ Sort by:
+ <select ng-model="orderProp">
+ <option value="name">Alphabetical</option>
+ <option value="age">Newest</option>
+ </select>
+
+
+ <ul class="phones">
+ <li ng-repeat="phone in phones | filter:query | orderBy:orderProp">
+ {{phone.name}}
+ <p>{{phone.snippet}}</p>
+ </li>
+ </ul>
+
+
+
We made the following changes to the index.html
template:
+
+
+First, we added a <select>
html element named orderProp
, so that our users can pick from the
+two provided sorting options.
+
+
+We then chained the filter
filter with orderBy
+filter to further process the input into the repeater. orderBy
is a filter that takes an input
+array, copies it and reorders the copy which is then returned.
+
+
+
Angular creates a two way data-binding between the select element and the orderProp
model.
+orderProp
is then used as the input for the orderBy
filter.
+
+
As we discussed in the section about data-binding and the repeater in step 3, whenever the model
+changes (for example because a user changes the order with the select drop down menu), Angular's
+data-binding will cause the view to automatically update. No bloated DOM manipulation code is
+necessary!
+
+
Controller
+
+
app/js/controllers.js
:
+
+function PhoneListCtrl($scope) {
+ $scope.phones = [
+ {"name": "Nexus S",
+ "snippet": "Fast just got faster with Nexus S.",
+ "age": 0},
+ {"name": "Motorola XOOM™ with Wi-Fi",
+ "snippet": "The Next, Next Generation tablet.",
+ "age": 1},
+ {"name": "MOTOROLA XOOM™",
+ "snippet": "The Next, Next Generation tablet.",
+ "age": 2}
+ ];
+
+ $scope.orderProp = 'age';
+}
+
+
+
+We modified the phones
model - the array of phones - and added an age
property to each phone
+record. This property is used to order phones by age.
+We added a line to the controller that sets the default value of orderProp
to age
. If we had
+not set the default value here, the model would stay uninitialized until our user would pick an
+option from the drop down menu.
+
+This is a good time to talk about two-way data-binding. Notice that when the app is loaded in the
+browser, "Newest" is selected in the drop down menu. This is because we set orderProp
to 'age'
+in the controller. So the binding works in the direction from our model to the UI. Now if you
+select "Alphabetically" in the drop down menu, the model will be updated as well and the phones
+will be reordered. That is the data-binding doing its job in the opposite direction — from the UI
+to the model.
+
+
+
Test
+
+
The changes we made should be verified with both a unit test and an end-to-end test. Let's look at
+the unit test first.
+
+
test/unit/controllersSpec.js
:
+
+describe('PhoneCat controllers', function() {
+
+ describe('PhoneListCtrl', function(){
+ var scope, ctrl;
+
+ beforeEach(function() {
+ scope = {},
+ ctrl = new PhoneListCtrl(scope);
+ });
+
+
+ it('should create "phones" model with 3 phones', function() {
+ expect(scope.phones.length).toBe(3);
+ });
+
+
+ it('should set the default value of orderProp model', function() {
+ expect(scope.orderProp).toBe('age');
+ });
+ });
+});
+
+
+
The unit test now verifies that the default ordering property is set.
+
+
We used Jasmine's API to extract the controller construction into a beforeEach
block, which is
+shared by all tests in the parent describe
block.
+
+
You should now see the following output in the Karma tab:
+
+
Chrome 22.0: Executed 2 of 2 SUCCESS (0.021 secs / 0.001 secs)
+
+
+
Let's turn our attention to the end-to-end test.
+
+
test/e2e/scenarios.js
:
+
+...
+ it('should be possible to control phone order via the drop down select box',
+ function() {
+ //let's narrow the dataset to make the test assertions shorter
+ input('query').enter('tablet');
+
+ expect(repeater('.phones li', 'Phone List').column('phone.name')).
+ toEqual(["Motorola XOOM\u2122 with Wi-Fi",
+ "MOTOROLA XOOM\u2122"]);
+
+ select('orderProp').option('Alphabetical');
+
+ expect(repeater('.phones li', 'Phone List').column('phone.name')).
+ toEqual(["MOTOROLA XOOM\u2122",
+ "Motorola XOOM\u2122 with Wi-Fi"]);
+ });
+...
+
+
+
The end-to-end test verifies that the ordering mechanism of the select box is working correctly.
+
+
You can now rerun ./scripts/e2e-test.sh
or refresh the browser tab with the end-to-end test
+runner.html
to see the tests run, or you can see them running on Angular's server.
+
+
Experiments
+
+
+In the PhoneListCtrl
controller, remove the statement that sets the orderProp
value and
+you'll see that Angular will temporarily add a new "unknown" option to the drop-down list and the
+ordering will default to unordered/natural order.
+Add an {{orderProp}}
binding into the index.html
template to display its current value as
+text.
+
+
+Summary
+
+
Now that you have added list sorting and tested the app, go to step 5 to learn
+about Angular services and how Angular uses dependency injection.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_05.html b/1.1.5/docs/partials/tutorial/step_05.html
new file mode 100644
index 0000000000..79b1d07457
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_05.html
@@ -0,0 +1,230 @@
+
+
+
+
Improve this doc
+
+
Enough of building an app with three phones in a hard-coded dataset! Let's fetch a larger dataset
+from our server using one of angular's built-in services called $http
. We will use angular's dependency injection (DI) to provide the service to the PhoneListCtrl
controller.
+
+
+
+
+
You should now see a list of 20 phones.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
Data
+
+
The app/phones/phones.json
file in your project is a dataset that contains a larger list of phones
+stored in the JSON format.
+
+
Following is a sample of the file:
+
+[
+ {
+ "age": 13,
+ "id": "motorola-defy-with-motoblur",
+ "name": "Motorola DEFY\u2122 with MOTOBLUR\u2122",
+ "snippet": "Are you ready for everything life throws your way?"
+ ...
+ },
+...
+]
+
+
+
Controller
+
+
We'll use angular's $http
service in our controller to make an HTTP
+request to your web server to fetch the data in the app/phones/phones.json
file. $http
is just
+one of several built-in angular services that handle common operations
+in web apps. Angular injects these services for you where you need them.
+
+
Services are managed by angular's DI subsystem. Dependency injection
+helps to make your web apps both well-structured (e.g., separate components for presentation, data,
+and control) and loosely coupled (dependencies between components are not resolved by the
+components themselves, but by the DI subsystem).
+
+
app/js/controllers.js:
+
+function PhoneListCtrl($scope, $http) {
+ $http.get('phones/phones.json').success(function(data) {
+ $scope.phones = data;
+ });
+
+ $scope.orderProp = 'age';
+}
+
+//PhoneListCtrl.$inject = ['$scope', '$http'];
+
+
+
$http
makes an HTTP GET request to our web server, asking for phone/phones.json
(the url is
+relative to our index.html
file). The server responds by providing the data in the json file.
+(The response might just as well have been dynamically generated by a backend server. To the
+browser and our app they both look the same. For the sake of simplicity we used a json file in this
+tutorial.)
+
+
The $http
service returns a promise object
with a success
+method. We call this method to handle the asynchronous response and assign the phone data to the
+scope controlled by this controller, as a model called phones
. Notice that angular detected the
+json response and parsed it for us!
+
+
To use a service in angular, you simply declare the names of the dependencies you need as arguments
+to the controller's constructor function, as follows:
+
+
function PhoneListCtrl($scope, $http) {...}
+
+
+
Angular's dependency injector provides services to your controller when the controller is being
+constructed. The dependency injector also takes care of creating any transitive dependencies the
+service may have (services often depend upon other services).
+
+
Note that the names of arguments are significant, because the injector uses these to look up the
+dependencies.
+
+
+
+
'$' Prefix Naming Convention
+
+
You can create your own services, and in fact we will do exactly that in step 11. As a naming
+convention, angular's built-in services, Scope methods and a few other angular APIs have a '$'
+prefix in front of the name. Don't use a '$' prefix when naming your services and models, in order
+to avoid any possible naming collisions.
+
+
A Note on Minification
+
+
Since angular infers the controller's dependencies from the names of arguments to the controller's
+constructor function, if you were to minify the JavaScript code for PhoneListCtrl
controller, all of its function arguments would be
+minified as well, and the dependency injector would not be able to identify services correctly.
+
+
To overcome issues caused by minification, just assign an array with service identifier strings
+into the $inject
property of the controller function, just like the last line in the snippet
+(commented out) suggests:
+
+
PhoneListCtrl.$inject = ['$scope', '$http'];
+
+
+
There is also one more way to specify this dependency list and avoid minification issues — using the
+bracket notation which wraps the function to be injected into an array of strings (representing the
+dependency names) followed by the function to be injected:
+
+
var PhoneListCtrl = ['$scope', '$http', function($scope, $http) { /* constructor body */ }];
+
+
+
Both of these methods work with any function that can be injected by Angular, so it's up to your
+project's style guide to decide which one you use.
+
+
Test
+
+
test/unit/controllersSpec.js
:
+
+
Because we started using dependency injection and our controller has dependencies, constructing the
+controller in our tests is a bit more complicated. We could use the new
operator and provide the
+constructor with some kind of fake $http
implementation. However, the recommended (and easier) way
+is to create a controller in the test environment in the same way that angular does it in the
+production code behind the scenes, as follows:
+
+
+describe('PhoneCat controllers', function() {
+
+ describe('PhoneListCtrl', function(){
+ var scope, ctrl, $httpBackend;
+
+ // The injector ignores leading and trailing underscores here (i.e. _$httpBackend_).
+ // This allows us to inject a service but then attach it to a variable
+ // with the same name as the service.
+ beforeEach(inject(function(_$httpBackend_, $rootScope, $controller) {
+ $httpBackend = _$httpBackend_;
+ $httpBackend.expectGET('phones/phones.json').
+ respond([{name: 'Nexus S'}, {name: 'Motorola DROID'}]);
+
+ scope = $rootScope.$new();
+ ctrl = $controller(PhoneListCtrl, {$scope: scope});
+ }));
+
+
+
Note: Because we loaded Jasmine and angular-mocks.js
in our test environment, we got two helper
+methods module
and inject
that we'll
+use to access and configure the injector.
+
+
We created the controller in the test environment, as follows:
+
+
+We used the inject
helper method to inject instances of
+$rootScope
,
+$controller
and
+$httpBackend
services into the Jasmine's beforeEach
+function. These instances come from an injector which is recreated from scratch for every single
+test. This guarantees that each test starts from a well known starting point and each test is
+isolated from the work done in other tests.
+We created a new scope for our controller by calling $rootScope.$new()
+We called the injected $controller
function passing the PhoneListCtrl
function and the created
+scope as parameters.
+
+
+
Because our code now uses the $http
service to fetch the phone list data in our controller, before
+we create the PhoneListCtrl
child scope, we need to tell the testing harness to expect an
+incoming request from the controller. To do this we:
+
+
+Request $httpBackend
service to be injected into our beforeEach
function. This is a mock
+version of the service that in a production environment facilitates all XHR and JSONP requests.
+The mock version of this service allows you to write tests without having to deal with
+native APIs and the global state associated with them — both of which make testing a nightmare.
+Use the $httpBackend.expectGET
method to train the $httpBackend
service to expect an incoming
+HTTP request and tell it what to respond with. Note that the responses are not returned until we call
+the $httpBackend.flush
method.
+
+
+
Now, we will make assertions to verify that the phones
model doesn't exist on scope
before
+the response is received:
+
+
+ it('should create "phones" model with 2 phones fetched from xhr', function() {
+ expect(scope.phones).toBeUndefined();
+ $httpBackend.flush();
+
+ expect(scope.phones).toEqual([{name: 'Nexus S'},
+ {name: 'Motorola DROID'}]);
+ });
+
+
+
+We flush the request queue in the browser by calling $httpBackend.flush()
. This causes the
+promise returned by the $http
service to be resolved with the trained response.
+We make the assertions, verifying that the phone model now exists on the scope.
+
+
+
Finally, we verify that the default value of orderProp
is set correctly:
+
+
+ it('should set the default value of orderProp model', function() {
+ expect(scope.orderProp).toBe('age');
+ });
+ });
+});
+
+
+
You should now see the following output in the Karma tab:
+
+
Chrome 22.0: Executed 2 of 2 SUCCESS (0.028 secs / 0.007 secs)
+
+
+
Experiments
+
+
+At the bottom of index.html
, add a {{phones | json}}
binding to see the list of phones
+displayed in json format.
+In the PhoneListCtrl
controller, pre-process the http response by limiting the number of phones
+to the first 5 in the list. Use the following code in the $http callback:
+
+ $scope.phones = data.splice(0, 5);
+
+
+
+Summary
+
+
Now that you have learned how easy it is to use angular services (thanks to Angular's dependency
+injection), go to step 6, where you will add some
+thumbnail images of phones and some links.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_06.html b/1.1.5/docs/partials/tutorial/step_06.html
new file mode 100644
index 0000000000..dd367b1d1d
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_06.html
@@ -0,0 +1,99 @@
+
+
+
+
Improve this doc
+
+
In this step, you will add thumbnail images for the phones in the phone list, and links that, for
+now, will go nowhere. In subsequent steps you will use the links to display additional information
+about the phones in the catalog.
+
+
+
+
+
You should now see links and images of the phones in the list.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
Data
+
+
Note that the phones.json
file contains unique ids and image urls for each of the phones. The
+urls point to the app/img/phones/
directory.
+
+
app/phones/phones.json
(sample snippet):
+
+ [
+ {
+ ...
+ "id": "motorola-defy-with-motoblur",
+ "imageUrl": "img/phones/motorola-defy-with-motoblur.0.jpg",
+ "name": "Motorola DEFY\u2122 with MOTOBLUR\u2122",
+ ...
+ },
+ ...
+ ]
+
+
+
Template
+
+
app/index.html
:
+
+...
+ <ul class="phones">
+ <li ng-repeat="phone in phones | filter:query | orderBy:orderProp" class="thumbnail">
+ <a href="#/phones/{{phone.id}}" class="thumb"><img ng-src="{{phone.imageUrl}}"></a>
+ <a href="#/phones/{{phone.id}}">{{phone.name}}</a>
+ <p>{{phone.snippet}}</p>
+ </li>
+ </ul>
+...
+
+
+
To dynamically generate links that will in the future lead to phone detail pages, we used the
+now-familiar double-curly brace binding in the href
attribute values. In step 2, we added the
+{{phone.name}}
binding as the element content. In this step the {{phone.id}}
binding is used in
+the element attribute.
+
+
We also added phone images next to each record using an image tag with the ngSrc
directive. That directive prevents the
+browser from treating the angular {{ expression }}
markup literally, and initiating a request to
+invalid url http://localhost:8000/app/{{phone.imageUrl}}
, which it would have done if we had only
+specified an attribute binding in a regular src
attribute (<img class="diagram" src="{{phone.imageUrl}}">
).
+Using the ngSrc
directive prevents the browser from making an http request to an invalid location.
+
+
Test
+
+
test/e2e/scenarios.js
:
+
+...
+ it('should render phone specific links', function() {
+ input('query').enter('nexus');
+ element('.phones li a').click();
+ expect(browser().location().url()).toBe('/phones/nexus-s');
+ });
+...
+
+
+
We added a new end-to-end test to verify that the app is generating correct links to the phone
+views that we will implement in the upcoming steps.
+
+
You can now rerun ./scripts/e2e-test.sh
or refresh the browser tab with the end-to-end test
+runner to see the tests run, or you can see them running on Angular's server.
+
+
Experiments
+
+
+Replace the ng-src
directive with a plain old src
attribute. Using tools such as Firebug,
+or Chrome's Web Inspector, or inspecting the webserver access logs, confirm that the app is indeed
+making an extraneous request to /app/%7B%7Bphone.imageUrl%7D%7D
(or
+/app/{{phone.imageUrl}}
).
+
+The issue here is that the browser will fire a request for that invalid image address as soon as
+it hits the img
tag, which is before Angular has a chance to evaluate the expression and inject
+the valid address.
+
+
+Summary
+
+
Now that you have added phone images and links, go to step 7 to learn about Angular
+layout templates and how Angular makes it easy to create applications that have multiple views.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_07.html b/1.1.5/docs/partials/tutorial/step_07.html
new file mode 100644
index 0000000000..1da9da155c
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_07.html
@@ -0,0 +1,245 @@
+
+
+
+
Improve this doc
+
+
In this step, you will learn how to create a layout template and how to build an app that has
+multiple views by adding routing.
+
+
+
+
+
Note that when you now navigate to app/index.html
, you are redirected to app/index.html#/phones
+and the same phone list appears in the browser. When you click on a phone link the stub of a phone
+detail page is displayed.
+
+
The most important changes are listed below. You can see the full diff on GitHub.
+
+
Multiple Views, Routing and Layout Template
+
+
Our app is slowly growing and becoming more complex. Before step 7, the app provided our users with
+a single view (the list of all phones), and all of the template code was located in the
+index.html
file. The next step in building the app is to add a view that will show detailed
+information about each of the devices in our list.
+
+
To add the detailed view, we could expand the index.html
file to contain template code for both
+views, but that would get messy very quickly. Instead, we are going to turn the index.html
+template into what we call a "layout template". This is a template that is common for all views in
+our application. Other "partial templates" are then included into this layout template depending on
+the current "route" — the view that is currently displayed to the user.
+
+
Application routes in Angular are declared via the
+$routeProvider
, which is the provider of the
+$route service
. This service makes it easy to wire together
+controllers, view templates, and the current
+URL location in the browser. Using this feature we can implement deep linking, which lets us utilize the browser's
+history (back and forward navigation) and bookmarks.
+
+
A Note About DI, Injector and Providers
+
+
As you noticed, dependency injection (DI) is the core feature of
+AngularJS, so it's important for you to understand a thing or two about how it works.
+
+
When the application bootstraps, Angular creates an injector that will be used for all DI stuff in
+this app. The injector itself doesn't know anything about what $http
or $route
services do, in
+fact it doesn't even know about the existence of these services unless it is configured with proper
+module definitions. The sole responsibilities of the injector are to load specified module
+definition(s), register all service providers defined in these modules and when asked inject
+a specified function with dependencies (services) that it lazily instantiates via their providers.
+
+
Providers are objects that provide (create) instances of services and expose configuration APIs
+that can be used to control the creation and runtime behavior of a service. In case of the $route
+service, the $routeProvider
exposes APIs that allow you to define routes for your application.
+
+
Angular modules solve the problem of removing global state from the application and provide a way
+of configuring the injector. As opposed to AMD or require.js modules, Angular modules don't try to
+solve the problem of script load ordering or lazy script fetching. These goals are orthogonal and
+both module systems can live side by side and fulfil their goals.
+
+
The App Module
+
+
app/js/app.js
:
+
+angular.module('phonecat', []).
+ config(['$routeProvider', function($routeProvider) {
+ $routeProvider.
+ when('/phones', {templateUrl: 'partials/phone-list.html', controller: PhoneListCtrl}).
+ when('/phones/:phoneId', {templateUrl: 'partials/phone-detail.html', controller: PhoneDetailCtrl}).
+ otherwise({redirectTo: '/phones'});
+}]);
+
+
+
In order to configure our application with routes, we need to create a module for our application.
+We call this module phonecat
and using the config
API we request the $routeProvider
to be
+injected into our config function and use $routeProvider.when
API to define our routes.
+
+
Note that during the injector configuration phase, the providers can be injected as well, but they
+will not be available for injection once the injector is created and starts creating service
+instances.
+
+
Our application routes were defined as follows:
+
+
+The phone list view will be shown when the URL hash fragment is /phones
. To construct this
+view, Angular will use the phone-list.html
template and the PhoneListCtrl
controller.
+The phone details view will be shown when the URL hash fragment matches '/phone/:phoneId', where
+:phoneId
is a variable part of the URL. To construct the phone details view, angular will use the
+phone-detail.html
template and the PhoneDetailCtrl
controller.
+
+
+
We reused the PhoneListCtrl
controller that we constructed in previous steps and we added a new,
+empty PhoneDetailCtrl
controller to the app/js/controllers.js
file for the phone details view.
+
+
The statement $route.otherwise({redirectTo: '/phones'})
triggers a redirection to /phones
when
+the browser address doesn't match either of our routes.
+
+
Note the use of the :phoneId
parameter in the second route declaration. The $route
service uses
+the route declaration — '/phones/:phoneId'
— as a template that is matched against the current
+URL. All variables defined with the :
notation are extracted into the
+$routeParams
object.
+
+
In order for our application to bootstrap with our newly created module we'll also need to specify
+the module name as the value of the ngApp
+directive:
+
+
app/index.html
:
+
+<!doctype html>
+<html lang="en" ng-app="phonecat">
+...
+
+
+
Controllers
+
+
app/js/controllers.js
:
+
+...
+function PhoneDetailCtrl($scope, $routeParams) {
+ $scope.phoneId = $routeParams.phoneId;
+}
+
+//PhoneDetailCtrl.$inject = ['$scope', '$routeParams'];
+
+
+
Template
+
+
The $route
service is usually used in conjunction with the ngView
directive. The role of the ngView
directive is to include the view template for the current
+route into the layout template, which makes it a perfect fit for our index.html
template.
+
+
app/index.html
:
+
+<html lang="en" ng-app="phonecat">
+<head>
+...
+ <script src="lib/angular/angular.js"></script>
+ <script src="js/app.js"></script>
+ <script src="js/controllers.js"></script>
+</head>
+<body>
+
+ <div ng-view></div>
+
+</body>
+</html>
+
+
+
Note that we removed most of the code in the index.html
template and replaced it with a single
+line containing a div with the ng-view
attribute. The code that we removed was placed into the
+phone-list.html
template:
+
+
app/partials/phone-list.html
:
+
+<div class="container-fluid">
+ <div class="row-fluid">
+ <div class="span2">
+ <!--Sidebar content-->
+
+ Search: <input ng-model="query">
+ Sort by:
+ <select ng-model="orderProp">
+ <option value="name">Alphabetical</option>
+ <option value="age">Newest</option>
+ </select>
+
+ </div>
+ <div class="span10">
+ <!--Body content-->
+
+ <ul class="phones">
+ <li ng-repeat="phone in phones | filter:query | orderBy:orderProp" class="thumbnail">
+ <a href="#/phones/{{phone.id}}" class="thumb"><img ng-src="{{phone.imageUrl}}"></a>
+ <a href="#/phones/{{phone.id}}">{{phone.name}}</a>
+ <p>{{phone.snippet}}</p>
+ </li>
+ </ul>
+
+ </div>
+ </div>
+</div>
+
+
+
+TODO!
+
+
+
+
We also added a placeholder template for the phone details view:
+
+
app/partials/phone-detail.html
:
+
+TBD: detail view for {{phoneId}}
+
+
+
Note how we are using phoneId
model defined in the PhoneDetailCtrl
controller.
+
+
Test
+
+
To automatically verify that everything is wired properly, we wrote end-to-end tests that navigate
+to various URLs and verify that the correct view was rendered.
+
+
+...
+ it('should redirect index.html to index.html#/phones', function() {
+ browser().navigateTo('../../app/index.html');
+ expect(browser().location().url()).toBe('/phones');
+ });
+...
+
+ describe('Phone detail view', function() {
+
+ beforeEach(function() {
+ browser().navigateTo('../../app/index.html#/phones/nexus-s');
+ });
+
+
+ it('should display placeholder page with phoneId', function() {
+ expect(binding('phoneId')).toBe('nexus-s');
+ });
+ });
+
+
+
You can now rerun ./scripts/e2e-test.sh
or refresh the browser tab with the end-to-end test
+runner to see the tests run, or you can see them running on Angular's server.
+
+
Experiments
+
+
+- Try to add an
{{orderProp}}
binding to index.html
, and you'll see that nothing happens even
+when you are in the phone list view. This is because the orderProp
model is visible only in the
+scope managed by PhoneListCtrl
, which is associated with the <div ng-view>
element. If you add
+the same binding into the phone-list.html
template, the binding will work as expected.
+
+
+
+* In `PhoneCatCtrl`, create a new model called "`hero`" with `this.hero = 'Zoro'`. In
+`PhoneListCtrl` let's shadow it with `this.hero = 'Batman'`, and in `PhoneDetailCtrl` we'll use
+`this.hero = "Captain Proton"`. Then add the `
hero = {{hero}}
` to all three of our templates
+(`index.html`, `phone-list.html`, and `phone-detail.html`). Open the app and you'll see scope
+inheritance and model property shadowing do some wonders.
+
+
+Summary
+
+
With the routing set up and the phone list view implemented, we're ready to go to step 8 to implement the phone details view.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_08.html b/1.1.5/docs/partials/tutorial/step_08.html
new file mode 100644
index 0000000000..c1670cc256
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_08.html
@@ -0,0 +1,181 @@
+
+
+
+
Improve this doc
+
+
In this step, you will implement the phone details view, which is displayed when a user clicks on a
+phone in the phone list.
+
+
+
+
+
Now when you click on a phone on the list, the phone details page with phone-specific information
+is displayed.
+
+
To implement the phone details view we will use $http
to fetch
+our data, and we'll flesh out the phone-detail.html
view template.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
Data
+
+
In addition to phones.json
, the app/phones/
directory also contains one json file for each
+phone:
+
+
app/phones/nexus-s.json
: (sample snippet)
+
+{
+ "additionalFeatures": "Contour Display, Near Field Communications (NFC),...",
+ "android": {
+ "os": "Android 2.3",
+ "ui": "Android"
+ },
+ ...
+ "images": [
+ "img/phones/nexus-s.0.jpg",
+ "img/phones/nexus-s.1.jpg",
+ "img/phones/nexus-s.2.jpg",
+ "img/phones/nexus-s.3.jpg"
+ ],
+ "storage": {
+ "flash": "16384MB",
+ "ram": "512MB"
+ }
+}
+
+
+
Each of these files describes various properties of the phone using the same data structure. We'll
+show this data in the phone detail view.
+
+
Controller
+
+
We'll expand the PhoneDetailCtrl
by using the $http
service to fetch the json files. This works
+the same way as the phone list controller.
+
+
app/js/controllers.js
:
+
+function PhoneDetailCtrl($scope, $routeParams, $http) {
+ $http.get('phones/' + $routeParams.phoneId + '.json').success(function(data) {
+ $scope.phone = data;
+ });
+}
+
+//PhoneDetailCtrl.$inject = ['$scope', '$routeParams', '$http'];
+
+
+
To construct the URL for the HTTP request, we use $routeParams.phoneId
extracted from the current
+route by the $route
service.
+
+
Template
+
+
The TBD placeholder line has been replaced with lists and bindings that comprise the phone details.
+Note where we use the angular {{expression}}
markup and ngRepeat
to project phone data from
+our model into the view.
+
+
app/partials/phone-detail.html
:
+
+<img ng-src="{{phone.images[0]}}" class="phone">
+
+<h1>{{phone.name}}</h1>
+
+<p>{{phone.description}}</p>
+
+<ul class="phone-thumbs">
+ <li ng-repeat="img in phone.images">
+ <img ng-src="{{img}}">
+ </li>
+</ul>
+
+<ul class="specs">
+ <li>
+ <span>Availability and Networks</span>
+ <dl>
+ <dt>Availability</dt>
+ <dd ng-repeat="availability in phone.availability">{{availability}}</dd>
+ </dl>
+ </li>
+ ...
+ </li>
+ <span>Additional Features</span>
+ <dd>{{phone.additionalFeatures}}</dd>
+ </li>
+</ul>
+
+
+
+TODO!
+
+
+
+
Test
+
+
We wrote a new unit test that is similar to the one we wrote for the PhoneListCtrl
controller in
+step 5.
+
+
test/unit/controllersSpec.js
:
+
+...
+ describe('PhoneDetailCtrl', function(){
+ var scope, $httpBackend, ctrl;
+
+ beforeEach(inject(function(_$httpBackend_, $rootScope, $routeParams, $controller) {
+ $httpBackend = _$httpBackend_;
+ $httpBackend.expectGET('phones/xyz.json').respond({name:'phone xyz'});
+
+ $routeParams.phoneId = 'xyz';
+ scope = $rootScope.$new();
+ ctrl = $controller(PhoneDetailCtrl, {$scope: scope});
+ }));
+
+
+ it('should fetch phone detail', function() {
+ expect(scope.phone).toBeUndefined();
+ $httpBackend.flush();
+
+ expect(scope.phone).toEqual({name:'phone xyz'});
+ });
+ });
+...
+
+
+
You should now see the following output in the Karma tab:
+
+
Chrome 22.0: Executed 3 of 3 SUCCESS (0.039 secs / 0.012 secs)
+
+
+
We also added a new end-to-end test that navigates to the Nexus S detail page and verifies that the
+heading on the page is "Nexus S".
+
+
test/e2e/scenarios.js
:
+
+...
+ describe('Phone detail view', function() {
+
+ beforeEach(function() {
+ browser().navigateTo('../../app/index.html#/phones/nexus-s');
+ });
+
+
+ it('should display nexus-s page', function() {
+ expect(binding('phone.name')).toBe('Nexus S');
+ });
+ });
+...
+
+
+
You can now rerun ./scripts/e2e-test.sh
or refresh the browser tab with the end-to-end test
+runner to see the tests run, or you can see them running on Angular's server.
+
+
Experiments
+
+
+
+Summary
+
+
Now that the phone details view is in place, proceed to step 9 to learn how to
+write your own custom display filter.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_09.html b/1.1.5/docs/partials/tutorial/step_09.html
new file mode 100644
index 0000000000..a0c85e4460
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_09.html
@@ -0,0 +1,131 @@
+
+
+
+
Improve this doc
+
+
In this step you will learn how to create your own custom display filter.
+
+
+
+
+
Navigate to one of the detail pages.
+
+
In the previous step, the details page displayed either "true" or "false" to indicate whether
+certain phone features were present or not. We have used a custom filter to convert those text
+strings into glyphs: ✓ for "true", and ✘ for "false". Let's see what the filter code looks like.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
Custom Filter
+
+
In order to create a new filter, you are going to create a phonecatFilters
module and register
+your custom filter with this module:
+
+
app/js/filters.js
:
+
+angular.module('phonecatFilters', []).filter('checkmark', function() {
+ return function(input) {
+ return input ? '\u2713' : '\u2718';
+ };
+});
+
+
+
The name of our filter is "checkmark". The input
evaluates to either true
or false
, and we
+return one of two unicode characters we have chosen to represent true or false (\u2713
and
+\u2718
).
+
+
Now that our filter is ready, we need to register the phonecatFilters
module as a dependency for
+our main phonecat
module.
+
+
app/js/app.js
:
+
+...
+angular.module('phonecat', ['phonecatFilters']).
+...
+
+
+
Template
+
+
Since the filter code lives in the app/js/filters.js
file, we need to include this file in our
+layout template.
+
+
app/index.html
:
+
+...
+ <script src="js/controllers.js"></script>
+ <script src="js/filters.js"></script>
+...
+
+
+
The syntax for using filters in Angular templates is as follows:
+
+
{{ expression | filter }}
+
+
+
Let's employ the filter in the phone details template:
+
+
app/partials/phone-detail.html
:
+
+...
+ <dl>
+ <dt>Infrared</dt>
+ <dd>{{phone.connectivity.infrared | checkmark}}</dd>
+ <dt>GPS</dt>
+ <dd>{{phone.connectivity.gps | checkmark}}</dd>
+ </dl>
+...
+
+
+
Test
+
+
Filters, like any other component, should be tested and these tests are very easy to write.
+
+
test/unit/filtersSpec.js
:
+
+describe('filter', function() {
+
+ beforeEach(module('phonecatFilters'));
+
+
+ describe('checkmark', function() {
+
+ it('should convert boolean values to unicode checkmark or cross',
+ inject(function(checkmarkFilter) {
+ expect(checkmarkFilter(true)).toBe('\u2713');
+ expect(checkmarkFilter(false)).toBe('\u2718');
+ }));
+ });
+});
+
+
+
Note that you need to configure our test injector with the phonecatFilters
module before any of
+our filter tests execute.
+
+
You should now see the following output in the Karma tab:
+
+
Chrome 22.0: Executed 4 of 4 SUCCESS (0.034 secs / 0.012 secs)
+
+
+
Experiments
+
+
+Let's experiment with some of the built-in Angular filters
and add the
+following bindings to index.html
:
+
+{{ "lower cap string" | uppercase }}
+{{ {foo: "bar", baz: 23} | json }}
+{{ 1304375948024 | date }}
+{{ 1304375948024 | date:"MM/dd/yyyy @ h:mma" }}
+We can also create a model with an input element, and combine it with a filtered binding. Add
+the following to index.html:
+
+<input ng-model="userInput"> Uppercased: {{ userInput | uppercase }}
+
+
+
+Summary
+
+
Now that you have learned how to write and test a custom filter, go to step 10 to
+learn how we can use Angular to enhance the phone details page further.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_10.html b/1.1.5/docs/partials/tutorial/step_10.html
new file mode 100644
index 0000000000..5e681ee254
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_10.html
@@ -0,0 +1,134 @@
+
+
+
+
Improve this doc
+
+
In this step, you will add a clickable phone image swapper to the phone details page.
+
+
+
+
+
The phone details view displays one large image of the current phone and several smaller thumbnail
+images. It would be great if we could replace the large image with any of the thumbnails just by
+clicking on the desired thumbnail image. Let's have a look at how we can do this with Angular.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
Controller
+
+
app/js/controllers.js
:
+
+...
+function PhoneDetailCtrl($scope, $routeParams, $http) {
+ $http.get('phones/' + $routeParams.phoneId + '.json').success(function(data) {
+ $scope.phone = data;
+ $scope.mainImageUrl = data.images[0];
+ });
+
+ $scope.setImage = function(imageUrl) {
+ $scope.mainImageUrl = imageUrl;
+ }
+}
+
+//PhoneDetailCtrl.$inject = ['$scope', '$routeParams', '$http'];
+
+
+
In the PhoneDetailCtrl
controller, we created the mainImageUrl
model property and set its
+default value to the first phone image URL.
+
+
We also created a setImage
event handler function that will change the value of mainImageUrl
.
+
+
Template
+
+
app/partials/phone-detail.html
:
+
+<img ng-src="{{mainImageUrl}}" class="phone">
+
+...
+
+<ul class="phone-thumbs">
+ <li ng-repeat="img in phone.images">
+ <img ng-src="{{img}}" ng-click="setImage(img)">
+ </li>
+</ul>
+...
+
+
+
We bound the ngSrc
directive of the large image to the mainImageUrl
property.
+
+
We also registered an ngClick
+handler with thumbnail images. When a user clicks on one of the thumbnail images, the handler will
+use the setImage
event handler function to change the value of the mainImageUrl
property to the
+URL of the thumbnail image.
+
+
+TODO!
+
+
+
+
Test
+
+
To verify this new feature, we added two end-to-end tests. One verifies that the main image is set
+to the first phone image by default. The second test clicks on several thumbnail images and
+verifies that the main image changed appropriately.
+
+
test/e2e/scenarios.js
:
+
+...
+ describe('Phone detail view', function() {
+
+...
+
+ it('should display the first phone image as the main phone image', function() {
+ expect(element('img.phone').attr('src')).toBe('img/phones/nexus-s.0.jpg');
+ });
+
+
+ it('should swap main image if a thumbnail image is clicked on', function() {
+ element('.phone-thumbs li:nth-child(3) img').click();
+ expect(element('img.phone').attr('src')).toBe('img/phones/nexus-s.2.jpg');
+
+ element('.phone-thumbs li:nth-child(1) img').click();
+ expect(element('img.phone').attr('src')).toBe('img/phones/nexus-s.0.jpg');
+ });
+ });
+});
+
+
+
You can now rerun ./scripts/e2e-test.sh
or refresh the browser tab with the end-to-end test
+runner to see the tests run, or you can see them running on Angular's server.
+
+
Experiments
+
+
+Let's add a new controller method to PhoneDetailCtrl
:
+
+ $scope.hello = function(name) {
+ alert('Hello ' + (name || 'world') + '!');
+ }
+
+
+and add:
+
+ <button ng-click="hello('Elmo')">Hello</button>
+
+
+to the phone-details.html
template.
+
+
+
+TODO!
+ The controller methods are inherited between controllers/scopes, so you can use the same snippet
+in the `phone-list.html` template as well.
+
+* Move the `hello` method from `PhoneCatCtrl` to `PhoneListCtrl` and you'll see that the button
+declared in `index.html` will stop working, while the one declared in the `phone-list.html`
+template remains operational.
+
+
+Summary
+
+
With the phone image swapper in place, we're ready for step 11 (the last step!) to
+learn an even better way to fetch data.
+
+
diff --git a/1.1.5/docs/partials/tutorial/step_11.html b/1.1.5/docs/partials/tutorial/step_11.html
new file mode 100644
index 0000000000..0b37c3e721
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/step_11.html
@@ -0,0 +1,215 @@
+
+
+
+
Improve this doc
+
+
In this step, you will improve the way our app fetches data.
+
+
+
+
+
The last improvement we will make to our app is to define a custom service that represents a RESTful client. Using this client we
+can make XHR requests for data in an easier way, without having to deal with the lower-level $http
API, HTTP methods and URLs.
+
+
The most important changes are listed below. You can see the full diff on GitHub:
+
+
Template
+
+
The custom service is defined in app/js/services.js
so we need to include this file in our layout
+template. Additionally, we also need to load the angular-resource.js
file, which contains the
+ngResource
module and in it the $resource
service, that we'll soon use:
+
+
app/index.html
.
+
+...
+ <script src="js/services.js"></script>
+ <script src="lib/angular/angular-resource.js"></script>
+...
+
+
+
Service
+
+
app/js/services.js
.
+
+angular.module('phonecatServices', ['ngResource']).
+ factory('Phone', function($resource){
+ return $resource('phones/:phoneId.json', {}, {
+ query: {method:'GET', params:{phoneId:'phones'}, isArray:true}
+ });
+});
+
+
+
We used the module API to register a custom service using a factory function. We passed in the name
+of the service - 'Phone' - and the factory function. The factory function is similar to a
+controller's constructor in that both can declare dependencies via function arguments. The Phone
+service declared a dependency on the $resource
service.
+
+
The $resource
service makes it easy to create a
+RESTful client with just a few
+lines of code. This client can then be used in our application, instead of the lower-level $http
service.
+
+
app/js/app.js
.
+
+...
+angular.module('phonecat', ['phonecatFilters', 'phonecatServices']).
+...
+
+
+
We need to add 'phonecatServices' to 'phonecat' application's requires array.
+
+
Controller
+
+
We simplified our sub-controllers (PhoneListCtrl
and PhoneDetailCtrl
) by factoring out the
+lower-level $http
service, replacing it with a new service called
+Phone
. Angular's $resource
service is easier to
+use than $http
for interacting with data sources exposed as RESTful resources. It is also easier
+now to understand what the code in our controllers is doing.
+
+
app/js/controllers.js
.
+
+...
+
+function PhoneListCtrl($scope, Phone) {
+ $scope.phones = Phone.query();
+ $scope.orderProp = 'age';
+}
+
+//PhoneListCtrl.$inject = ['$scope', 'Phone'];
+
+
+
+function PhoneDetailCtrl($scope, $routeParams, Phone) {
+ $scope.phone = Phone.get({phoneId: $routeParams.phoneId}, function(phone) {
+ $scope.mainImageUrl = phone.images[0];
+ });
+
+ $scope.setImage = function(imageUrl) {
+ $scope.mainImageUrl = imageUrl;
+ }
+}
+
+//PhoneDetailCtrl.$inject = ['$scope', '$routeParams', 'Phone'];
+
+
+
Notice how in PhoneListCtrl
we replaced:
+
+
$http.get('phones/phones.json').success(function(data) {
+ $scope.phones = data;
+});
+
+
+
with:
+
+
$scope.phones = Phone.query();
+
+
+
This is a simple statement that we want to query for all phones.
+
+
An important thing to notice in the code above is that we don't pass any callback functions when
+invoking methods of our Phone service. Although it looks as if the result were returned
+synchronously, that is not the case at all. What is returned synchronously is a "future" — an
+object, which will be filled with data when the XHR response returns. Because of the data-binding
+in Angular, we can use this future and bind it to our template. Then, when the data arrives, the
+view will automatically update.
+
+
Sometimes, relying on the future object and data-binding alone is not sufficient to do everything
+we require, so in these cases, we can add a callback to process the server response. The
+PhoneDetailCtrl
controller illustrates this by setting the mainImageUrl
in a callback.
+
+
Test
+
+
We have modified our unit tests to verify that our new service is issuing HTTP requests and
+processing them as expected. The tests also check that our controllers are interacting with the
+service correctly.
+
+
The $resource service augments the response object
+with methods for updating and deleting the resource. If we were to use the standard toEqual
+matcher, our tests would fail because the test values would not match the responses exactly. To
+solve the problem, we use a newly-defined toEqualData
Jasmine matcher. When the
+toEqualData
matcher compares two objects, it takes only object properties into account and
+ignores methods.
+
+
test/unit/controllersSpec.js
:
+
+describe('PhoneCat controllers', function() {
+
+ beforeEach(function(){
+ this.addMatchers({
+ toEqualData: function(expected) {
+ return angular.equals(this.actual, expected);
+ }
+ });
+ });
+
+
+ beforeEach(module('phonecatServices'));
+
+
+ describe('PhoneListCtrl', function(){
+ var scope, ctrl, $httpBackend;
+
+ beforeEach(inject(function(_$httpBackend_, $rootScope, $controller) {
+ $httpBackend = _$httpBackend_;
+ $httpBackend.expectGET('phones/phones.json').
+ respond([{name: 'Nexus S'}, {name: 'Motorola DROID'}]);
+
+ scope = $rootScope.$new();
+ ctrl = $controller(PhoneListCtrl, {$scope: scope});
+ }));
+
+
+ it('should create "phones" model with 2 phones fetched from xhr', function() {
+ expect(scope.phones).toEqual([]);
+ $httpBackend.flush();
+
+ expect(scope.phones).toEqualData(
+ [{name: 'Nexus S'}, {name: 'Motorola DROID'}]);
+ });
+
+
+ it('should set the default value of orderProp model', function() {
+ expect(scope.orderProp).toBe('age');
+ });
+ });
+
+
+ describe('PhoneDetailCtrl', function(){
+ var scope, $httpBackend, ctrl,
+ xyzPhoneData = function() {
+ return {
+ name: 'phone xyz',
+ images: ['image/url1.png', 'image/url2.png']
+ }
+ };
+
+
+ beforeEach(inject(function(_$httpBackend_, $rootScope, $routeParams, $controller) {
+ $httpBackend = _$httpBackend_;
+ $httpBackend.expectGET('phones/xyz.json').respond(xyzPhoneData());
+
+ $routeParams.phoneId = 'xyz';
+ scope = $rootScope.$new();
+ ctrl = $controller(PhoneDetailCtrl, {$scope: scope});
+ }));
+
+
+ it('should fetch phone detail', function() {
+ expect(scope.phone).toEqualData({});
+ $httpBackend.flush();
+
+ expect(scope.phone).toEqualData(xyzPhoneData());
+ });
+ });
+});
+
+
+
You should now see the following output in the Karma tab:
+
+
Chrome 22.0: Executed 4 of 4 SUCCESS (0.038 secs / 0.01 secs)
+
+
+
Summary
+
+
There you have it! We have created a web app in a relatively short amount of time. In the closing notes we'll cover where to go from here.
+
+
diff --git a/1.1.5/docs/partials/tutorial/the_end.html b/1.1.5/docs/partials/tutorial/the_end.html
new file mode 100644
index 0000000000..0e849b7ad7
--- /dev/null
+++ b/1.1.5/docs/partials/tutorial/the_end.html
@@ -0,0 +1,21 @@
+
+
+
+
Improve this doc
+Our application is now complete. Feel free to experiment with the code further, and jump back to
+previous steps using the `git checkout` command.
+
+For more details and examples of the Angular concepts we touched on in this tutorial, see the
+
Developer Guide.
+
+For several more examples of code, see the
Cookbook.
+
+When you are ready to start developing a project using Angular, we recommend that you bootstrap
+your development with the
angular-seed project.
+
+We hope this tutorial was useful to you and that you learned enough about Angular to make you want
+to learn more. We especially hope you are inspired to go out and develop Angular web apps of your
+own, and that you might be interested in
contributing to Angular.
+
+If you have questions or feedback or just want to say "hi", please post a message at
https://groups.google.com/forum/#!forum/angular.
+
diff --git a/1.1.5/docs/robots.txt b/1.1.5/docs/robots.txt
new file mode 100644
index 0000000000..f93b7c0634
--- /dev/null
+++ b/1.1.5/docs/robots.txt
@@ -0,0 +1 @@
+Sitemap: http://docs.angularjs.org/sitemap.xml
diff --git a/1.1.5/docs/sitemap.xml b/1.1.5/docs/sitemap.xml
new file mode 100644
index 0000000000..2149429962
--- /dev/null
+++ b/1.1.5/docs/sitemap.xml
@@ -0,0 +1,226 @@
+
+
+ http://docs.angularjs.org/api/indexweekly
+ http://docs.angularjs.org/api/ngweekly
+ http://docs.angularjs.org/cookbook/buzzweekly
+ http://docs.angularjs.org/cookbook/advancedformweekly
+ http://docs.angularjs.org/cookbook/deeplinkingweekly
+ http://docs.angularjs.org/cookbook/mvcweekly
+ http://docs.angularjs.org/guide/bootstrapweekly
+ http://docs.angularjs.org/guide/compilerweekly
+ http://docs.angularjs.org/cookbook/formweekly
+ http://docs.angularjs.org/cookbook/helloworldweekly
+ http://docs.angularjs.org/guide/conceptsweekly
+ http://docs.angularjs.org/guide/dev_guide.e2e-testingweekly
+ http://docs.angularjs.org/guide/dev_guide.mvc.understanding_controllerweekly
+ http://docs.angularjs.org/guide/dev_guide.mvc.understanding_modelweekly
+ http://docs.angularjs.org/guide/dev_guide.services.$locationweekly
+ http://docs.angularjs.org/cookbook/indexweekly
+ http://docs.angularjs.org/guide/dev_guide.mvcweekly
+ http://docs.angularjs.org/guide/dev_guide.mvc.understanding_viewweekly
+ http://docs.angularjs.org/guide/dev_guide.services.creating_servicesweekly
+ http://docs.angularjs.org/guide/dev_guide.services.injecting_controllersweekly
+ http://docs.angularjs.org/guide/dev_guide.services.managing_dependenciesweekly
+ http://docs.angularjs.org/guide/dev_guide.servicesweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.databindingweekly
+ http://docs.angularjs.org/guide/dev_guide.services.testing_servicesweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.css-stylingweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.filters.using_filtersweekly
+ http://docs.angularjs.org/guide/dev_guide.services.understanding_servicesweekly
+ http://docs.angularjs.org/guide/dev_guide.unit-testingweekly
+ http://docs.angularjs.org/guide/diweekly
+ http://docs.angularjs.org/guide/directiveweekly
+ http://docs.angularjs.org/guide/expressionweekly
+ http://docs.angularjs.org/guide/formsweekly
+ http://docs.angularjs.org/guide/i18nweekly
+ http://docs.angularjs.org/guide/ieweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.filters.creating_filtersweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.filtersweekly
+ http://docs.angularjs.org/guide/dev_guide.templatesweekly
+ http://docs.angularjs.org/guide/moduleweekly
+ http://docs.angularjs.org/guide/overviewweekly
+ http://docs.angularjs.org/guide/scopeweekly
+ http://docs.angularjs.org/misc/contributeweekly
+ http://docs.angularjs.org/misc/downloadingweekly
+ http://docs.angularjs.org/misc/faqweekly
+ http://docs.angularjs.org/tutorial/indexweekly
+ http://docs.angularjs.org/guide/indexweekly
+ http://docs.angularjs.org/guide/introductionweekly
+ http://docs.angularjs.org/tutorial/step_02weekly
+ http://docs.angularjs.org/tutorial/step_03weekly
+ http://docs.angularjs.org/tutorial/step_04weekly
+ http://docs.angularjs.org/tutorial/step_05weekly
+ http://docs.angularjs.org/misc/startedweekly
+ http://docs.angularjs.org/tutorial/step_00weekly
+ http://docs.angularjs.org/tutorial/step_08weekly
+ http://docs.angularjs.org/tutorial/step_09weekly
+ http://docs.angularjs.org/tutorial/step_01weekly
+ http://docs.angularjs.org/tutorial/step_11weekly
+ http://docs.angularjs.org/tutorial/the_endweekly
+ http://docs.angularjs.org/tutorial/step_06weekly
+ http://docs.angularjs.org/tutorial/step_07weekly
+ http://docs.angularjs.org/tutorial/step_10weekly
+ http://docs.angularjs.org/api/angular.lowercaseweekly
+ http://docs.angularjs.org/api/angular.uppercaseweekly
+ http://docs.angularjs.org/api/angular.noConflictweekly
+ http://docs.angularjs.org/api/angular.forEachweekly
+ http://docs.angularjs.org/api/angular.extendweekly
+ http://docs.angularjs.org/api/angular.noopweekly
+ http://docs.angularjs.org/api/angular.identityweekly
+ http://docs.angularjs.org/api/angular.isUndefinedweekly
+ http://docs.angularjs.org/api/angular.isDefinedweekly
+ http://docs.angularjs.org/api/angular.isObjectweekly
+ http://docs.angularjs.org/api/angular.isStringweekly
+ http://docs.angularjs.org/api/angular.isNumberweekly
+ http://docs.angularjs.org/api/angular.isDateweekly
+ http://docs.angularjs.org/api/angular.isArrayweekly
+ http://docs.angularjs.org/api/angular.isFunctionweekly
+ http://docs.angularjs.org/api/angular.isElementweekly
+ http://docs.angularjs.org/api/angular.copyweekly
+ http://docs.angularjs.org/api/angular.equalsweekly
+ http://docs.angularjs.org/api/angular.bindweekly
+ http://docs.angularjs.org/api/angular.toJsonweekly
+ http://docs.angularjs.org/api/angular.fromJsonweekly
+ http://docs.angularjs.org/api/ng.directive:ngAppweekly
+ http://docs.angularjs.org/api/angular.bootstrapweekly
+ http://docs.angularjs.org/api/angular.versionweekly
+ http://docs.angularjs.org/api/angular.injectorweekly
+ http://docs.angularjs.org/api/AUTOweekly
+ http://docs.angularjs.org/api/AUTO.$injectorweekly
+ http://docs.angularjs.org/api/AUTO.$provideweekly
+ http://docs.angularjs.org/api/angular.elementweekly
+ http://docs.angularjs.org/api/ng.$anchorScrollweekly
+ http://docs.angularjs.org/api/angular.Moduleweekly
+ http://docs.angularjs.org/api/angular.moduleweekly
+ http://docs.angularjs.org/api/ng.$animationProviderweekly
+ http://docs.angularjs.org/api/ng.$animationweekly
+ http://docs.angularjs.org/api/ng.directive:ngAnimateweekly
+ http://docs.angularjs.org/api/ng.$animatorweekly
+ http://docs.angularjs.org/api/ng.$cacheFactoryweekly
+ http://docs.angularjs.org/api/ng.$templateCacheweekly
+ http://docs.angularjs.org/api/ng.$compileweekly
+ http://docs.angularjs.org/api/ng.$compileProviderweekly
+ http://docs.angularjs.org/api/ng.$compile.directive.Attributesweekly
+ http://docs.angularjs.org/api/ng.$controllerProviderweekly
+ http://docs.angularjs.org/api/ng.$controllerweekly
+ http://docs.angularjs.org/api/ng.directive:aweekly
+ http://docs.angularjs.org/api/ng.directive:ngHrefweekly
+ http://docs.angularjs.org/api/ng.directive:ngSrcweekly
+ http://docs.angularjs.org/api/ng.directive:ngSrcsetweekly
+ http://docs.angularjs.org/api/ng.directive:ngDisabledweekly
+ http://docs.angularjs.org/api/ng.directive:ngCheckedweekly
+ http://docs.angularjs.org/api/ng.directive:ngMultipleweekly
+ http://docs.angularjs.org/api/ng.directive:ngReadonlyweekly
+ http://docs.angularjs.org/api/ng.directive:ngSelectedweekly
+ http://docs.angularjs.org/api/ng.directive:ngOpenweekly
+ http://docs.angularjs.org/api/ng.directive:form.FormControllerweekly
+ http://docs.angularjs.org/api/ng.directive:ngFormweekly
+ http://docs.angularjs.org/api/ng.directive:formweekly
+ http://docs.angularjs.org/api/ng.directive:input.textweekly
+ http://docs.angularjs.org/api/ng.directive:input.numberweekly
+ http://docs.angularjs.org/api/ng.directive:input.urlweekly
+ http://docs.angularjs.org/api/ng.directive:input.emailweekly
+ http://docs.angularjs.org/api/ng.directive:input.radioweekly
+ http://docs.angularjs.org/api/ng.directive:input.checkboxweekly
+ http://docs.angularjs.org/api/ng.directive:textareaweekly
+ http://docs.angularjs.org/api/ng.directive:inputweekly
+ http://docs.angularjs.org/api/ng.directive:ngModel.NgModelControllerweekly
+ http://docs.angularjs.org/api/ng.directive:ngModelweekly
+ http://docs.angularjs.org/api/ng.directive:ngChangeweekly
+ http://docs.angularjs.org/api/ng.directive:ngListweekly
+ http://docs.angularjs.org/api/ng.directive:ngBindweekly
+ http://docs.angularjs.org/api/ng.directive:ngBindTemplateweekly
+ http://docs.angularjs.org/api/ng.directive:ngBindHtmlUnsafeweekly
+ http://docs.angularjs.org/api/ng.directive:ngClassweekly
+ http://docs.angularjs.org/api/ng.directive:ngClassOddweekly
+ http://docs.angularjs.org/api/ng.directive:ngClassEvenweekly
+ http://docs.angularjs.org/api/ng.directive:ngCloakweekly
+ http://docs.angularjs.org/api/ng.directive:ngControllerweekly
+ http://docs.angularjs.org/api/ng.directive:ngCspweekly
+ http://docs.angularjs.org/api/ng.directive:ngClickweekly
+ http://docs.angularjs.org/api/ng.directive:ngDblclickweekly
+ http://docs.angularjs.org/api/ng.directive:ngMousedownweekly
+ http://docs.angularjs.org/api/ng.directive:ngMouseupweekly
+ http://docs.angularjs.org/api/ng.directive:ngMouseoverweekly
+ http://docs.angularjs.org/api/ng.directive:ngMouseenterweekly
+ http://docs.angularjs.org/api/ng.directive:ngMouseleaveweekly
+ http://docs.angularjs.org/api/ng.directive:ngMousemoveweekly
+ http://docs.angularjs.org/api/ng.directive:ngKeydownweekly
+ http://docs.angularjs.org/api/ng.directive:ngKeyupweekly
+ http://docs.angularjs.org/api/ng.directive:ngKeypressweekly
+ http://docs.angularjs.org/api/ng.directive:ngSubmitweekly
+ http://docs.angularjs.org/api/ng.directive:ngIfweekly
+ http://docs.angularjs.org/api/ng.directive:ngIncludeweekly
+ http://docs.angularjs.org/api/ng.directive:ngInitweekly
+ http://docs.angularjs.org/api/ng.directive:ngNonBindableweekly
+ http://docs.angularjs.org/api/ng.directive:ngPluralizeweekly
+ http://docs.angularjs.org/api/ng.directive:ngRepeatweekly
+ http://docs.angularjs.org/api/ng.directive:ngShowweekly
+ http://docs.angularjs.org/api/ng.directive:ngHideweekly
+ http://docs.angularjs.org/api/ng.directive:ngStyleweekly
+ http://docs.angularjs.org/api/ng.directive:ngSwitchweekly
+ http://docs.angularjs.org/api/ng.directive:ngTranscludeweekly
+ http://docs.angularjs.org/api/ng.directive:ngViewweekly
+ http://docs.angularjs.org/api/ng.directive:scriptweekly
+ http://docs.angularjs.org/api/ng.directive:selectweekly
+ http://docs.angularjs.org/api/ng.$documentweekly
+ http://docs.angularjs.org/api/ng.$exceptionHandlerweekly
+ http://docs.angularjs.org/api/ng.filter:filterweekly
+ http://docs.angularjs.org/api/ng.filter:currencyweekly
+ http://docs.angularjs.org/api/ng.filter:numberweekly
+ http://docs.angularjs.org/api/ng.filter:dateweekly
+ http://docs.angularjs.org/api/ng.filter:jsonweekly
+ http://docs.angularjs.org/api/ng.filter:lowercaseweekly
+ http://docs.angularjs.org/api/ng.filter:uppercaseweekly
+ http://docs.angularjs.org/api/ng.filter:limitToweekly
+ http://docs.angularjs.org/api/ng.filter:orderByweekly
+ http://docs.angularjs.org/api/ng.$filterProviderweekly
+ http://docs.angularjs.org/api/ng.$filterweekly
+ http://docs.angularjs.org/api/ng.$httpBackendweekly
+ http://docs.angularjs.org/api/ng.$httpweekly
+ http://docs.angularjs.org/api/ng.$interpolateProviderweekly
+ http://docs.angularjs.org/api/ng.$interpolateweekly
+ http://docs.angularjs.org/api/ng.$localeweekly
+ http://docs.angularjs.org/api/ng.$locationweekly
+ http://docs.angularjs.org/api/ng.$locationProviderweekly
+ http://docs.angularjs.org/api/ng.$logweekly
+ http://docs.angularjs.org/api/ng.$logProviderweekly
+ http://docs.angularjs.org/api/ng.$parseweekly
+ http://docs.angularjs.org/api/ng.$qweekly
+ http://docs.angularjs.org/api/ng.$rootScopeProviderweekly
+ http://docs.angularjs.org/api/ng.$rootScopeweekly
+ http://docs.angularjs.org/api/ng.$rootScope.Scopeweekly
+ http://docs.angularjs.org/api/ng.$routeProviderweekly
+ http://docs.angularjs.org/api/ng.$routeweekly
+ http://docs.angularjs.org/api/ng.$routeParamsweekly
+ http://docs.angularjs.org/api/ng.$timeoutweekly
+ http://docs.angularjs.org/api/ng.$windowweekly
+ http://docs.angularjs.org/api/ngCookiesweekly
+ http://docs.angularjs.org/api/ngCookies.$cookiesweekly
+ http://docs.angularjs.org/api/ngCookies.$cookieStoreweekly
+ http://docs.angularjs.org/api/ng.$rootElementweekly
+ http://docs.angularjs.org/api/ngMobile.directive:ngClickweekly
+ http://docs.angularjs.org/api/ngMobileweekly
+ http://docs.angularjs.org/api/ngMobile.directive:ngSwipeLeftweekly
+ http://docs.angularjs.org/api/ngMobile.directive:ngSwipeRightweekly
+ http://docs.angularjs.org/api/ngSanitize.directive:ngBindHtmlweekly
+ http://docs.angularjs.org/api/ngResourceweekly
+ http://docs.angularjs.org/api/ngResource.$resourceweekly
+ http://docs.angularjs.org/api/ngSanitize.filter:linkyweekly
+ http://docs.angularjs.org/api/angular.mockweekly
+ http://docs.angularjs.org/api/ngMock.$exceptionHandlerProviderweekly
+ http://docs.angularjs.org/api/ngMock.$exceptionHandlerweekly
+ http://docs.angularjs.org/api/ngMock.$logweekly
+ http://docs.angularjs.org/api/angular.mock.TzDateweekly
+ http://docs.angularjs.org/api/angular.mock.createMockWindowweekly
+ http://docs.angularjs.org/api/angular.mock.dumpweekly
+ http://docs.angularjs.org/api/ngMock.$httpBackendweekly
+ http://docs.angularjs.org/api/ngMock.$timeoutweekly
+ http://docs.angularjs.org/api/ngMockweekly
+ http://docs.angularjs.org/api/ngMockE2Eweekly
+ http://docs.angularjs.org/api/ngMockE2E.$httpBackendweekly
+ http://docs.angularjs.org/api/angular.mock.moduleweekly
+ http://docs.angularjs.org/api/angular.mock.injectweekly
+ http://docs.angularjs.org/api/ngSanitizeweekly
+ http://docs.angularjs.org/api/ngSanitize.$sanitizeweekly
+
diff --git a/1.1.5/i18n/angular-locale_af-na.js b/1.1.5/i18n/angular-locale_af-na.js
new file mode 100644
index 0000000000..78b0f7d1b6
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_af-na.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vm.",
+ "1": "nm."
+ },
+ "DAY": {
+ "0": "Sondag",
+ "1": "Maandag",
+ "2": "Dinsdag",
+ "3": "Woensdag",
+ "4": "Donderdag",
+ "5": "Vrydag",
+ "6": "Saterdag"
+ },
+ "MONTH": {
+ "0": "Januarie",
+ "1": "Februarie",
+ "2": "Maart",
+ "3": "April",
+ "4": "Mei",
+ "5": "Junie",
+ "6": "Julie",
+ "7": "Augustus",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Desember"
+ },
+ "SHORTDAY": {
+ "0": "So",
+ "1": "Ma",
+ "2": "Di",
+ "3": "Wo",
+ "4": "Do",
+ "5": "Vr",
+ "6": "Sa"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "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": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "af-na",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_af-za.js b/1.1.5/i18n/angular-locale_af-za.js
new file mode 100644
index 0000000000..8dbd8b1d6e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_af-za.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vm.",
+ "1": "nm."
+ },
+ "DAY": {
+ "0": "Sondag",
+ "1": "Maandag",
+ "2": "Dinsdag",
+ "3": "Woensdag",
+ "4": "Donderdag",
+ "5": "Vrydag",
+ "6": "Saterdag"
+ },
+ "MONTH": {
+ "0": "Januarie",
+ "1": "Februarie",
+ "2": "Maart",
+ "3": "April",
+ "4": "Mei",
+ "5": "Junie",
+ "6": "Julie",
+ "7": "Augustus",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Desember"
+ },
+ "SHORTDAY": {
+ "0": "So",
+ "1": "Ma",
+ "2": "Di",
+ "3": "Wo",
+ "4": "Do",
+ "5": "Vr",
+ "6": "Sa"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "dd MMM y h:mm:ss a",
+ "mediumDate": "dd MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy-MM-dd h:mm a",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "af-za",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_af.js b/1.1.5/i18n/angular-locale_af.js
new file mode 100644
index 0000000000..e53837cad2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_af.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vm.",
+ "1": "nm."
+ },
+ "DAY": {
+ "0": "Sondag",
+ "1": "Maandag",
+ "2": "Dinsdag",
+ "3": "Woensdag",
+ "4": "Donderdag",
+ "5": "Vrydag",
+ "6": "Saterdag"
+ },
+ "MONTH": {
+ "0": "Januarie",
+ "1": "Februarie",
+ "2": "Maart",
+ "3": "April",
+ "4": "Mei",
+ "5": "Junie",
+ "6": "Julie",
+ "7": "Augustus",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Desember"
+ },
+ "SHORTDAY": {
+ "0": "So",
+ "1": "Ma",
+ "2": "Di",
+ "3": "Wo",
+ "4": "Do",
+ "5": "Vr",
+ "6": "Sa"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "dd MMM y h:mm:ss a",
+ "mediumDate": "dd MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy-MM-dd h:mm a",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "af",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_am-et.js b/1.1.5/i18n/angular-locale_am-et.js
new file mode 100644
index 0000000000..f3110d5ffc
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_am-et.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u1321\u12cb\u1275",
+ "1": "\u12a8\u1233\u12d3\u1275"
+ },
+ "DAY": {
+ "0": "\u12a5\u1211\u12f5",
+ "1": "\u1230\u129e",
+ "2": "\u121b\u12ad\u1230\u129e",
+ "3": "\u1228\u1261\u12d5",
+ "4": "\u1210\u1219\u1235",
+ "5": "\u12d3\u122d\u1265",
+ "6": "\u1245\u12f3\u121c"
+ },
+ "MONTH": {
+ "0": "\u1303\u1295\u12e9\u12c8\u122a",
+ "1": "\u134c\u1265\u1229\u12c8\u122a",
+ "2": "\u121b\u122d\u127d",
+ "3": "\u12a4\u1355\u1228\u120d",
+ "4": "\u121c\u12ed",
+ "5": "\u1301\u1295",
+ "6": "\u1301\u120b\u12ed",
+ "7": "\u12a6\u1308\u1235\u1275",
+ "8": "\u1234\u1355\u1274\u121d\u1260\u122d",
+ "9": "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
+ "10": "\u1296\u126c\u121d\u1260\u122d",
+ "11": "\u12f2\u1234\u121d\u1260\u122d"
+ },
+ "SHORTDAY": {
+ "0": "\u12a5\u1211\u12f5",
+ "1": "\u1230\u129e",
+ "2": "\u121b\u12ad\u1230",
+ "3": "\u1228\u1261\u12d5",
+ "4": "\u1210\u1219\u1235",
+ "5": "\u12d3\u122d\u1265",
+ "6": "\u1245\u12f3\u121c"
+ },
+ "SHORTMONTH": {
+ "0": "\u1303\u1295\u12e9",
+ "1": "\u134c\u1265\u1229",
+ "2": "\u121b\u122d\u127d",
+ "3": "\u12a4\u1355\u1228",
+ "4": "\u121c\u12ed",
+ "5": "\u1301\u1295",
+ "6": "\u1301\u120b\u12ed",
+ "7": "\u12a6\u1308\u1235",
+ "8": "\u1234\u1355\u1274",
+ "9": "\u12a6\u12ad\u1270",
+ "10": "\u1296\u126c\u121d",
+ "11": "\u12f2\u1234\u121d"
+ },
+ "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": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Birr",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "am-et",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_am.js b/1.1.5/i18n/angular-locale_am.js
new file mode 100644
index 0000000000..4bd69182a4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_am.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u1321\u12cb\u1275",
+ "1": "\u12a8\u1233\u12d3\u1275"
+ },
+ "DAY": {
+ "0": "\u12a5\u1211\u12f5",
+ "1": "\u1230\u129e",
+ "2": "\u121b\u12ad\u1230\u129e",
+ "3": "\u1228\u1261\u12d5",
+ "4": "\u1210\u1219\u1235",
+ "5": "\u12d3\u122d\u1265",
+ "6": "\u1245\u12f3\u121c"
+ },
+ "MONTH": {
+ "0": "\u1303\u1295\u12e9\u12c8\u122a",
+ "1": "\u134c\u1265\u1229\u12c8\u122a",
+ "2": "\u121b\u122d\u127d",
+ "3": "\u12a4\u1355\u1228\u120d",
+ "4": "\u121c\u12ed",
+ "5": "\u1301\u1295",
+ "6": "\u1301\u120b\u12ed",
+ "7": "\u12a6\u1308\u1235\u1275",
+ "8": "\u1234\u1355\u1274\u121d\u1260\u122d",
+ "9": "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
+ "10": "\u1296\u126c\u121d\u1260\u122d",
+ "11": "\u12f2\u1234\u121d\u1260\u122d"
+ },
+ "SHORTDAY": {
+ "0": "\u12a5\u1211\u12f5",
+ "1": "\u1230\u129e",
+ "2": "\u121b\u12ad\u1230",
+ "3": "\u1228\u1261\u12d5",
+ "4": "\u1210\u1219\u1235",
+ "5": "\u12d3\u122d\u1265",
+ "6": "\u1245\u12f3\u121c"
+ },
+ "SHORTMONTH": {
+ "0": "\u1303\u1295\u12e9",
+ "1": "\u134c\u1265\u1229",
+ "2": "\u121b\u122d\u127d",
+ "3": "\u12a4\u1355\u1228",
+ "4": "\u121c\u12ed",
+ "5": "\u1301\u1295",
+ "6": "\u1301\u120b\u12ed",
+ "7": "\u12a6\u1308\u1235",
+ "8": "\u1234\u1355\u1274",
+ "9": "\u12a6\u12ad\u1270",
+ "10": "\u1296\u126c\u121d",
+ "11": "\u12f2\u1234\u121d"
+ },
+ "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": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Birr",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "am",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-001.js b/1.1.5/i18n/angular-locale_ar-001.js
new file mode 100644
index 0000000000..acd1294b49
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-001.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-001",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-ae.js b/1.1.5/i18n/angular-locale_ar-ae.js
new file mode 100644
index 0000000000..caec6e434c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-ae.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-ae",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-bh.js b/1.1.5/i18n/angular-locale_ar-bh.js
new file mode 100644
index 0000000000..8ceef671f1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-bh.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-bh",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-dz.js b/1.1.5/i18n/angular-locale_ar-dz.js
new file mode 100644
index 0000000000..8ccebc53ea
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-dz.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "yyyy/MM/dd h:mm:ss a",
+ "mediumDate": "yyyy/MM/dd",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy/M/d h:mm a",
+ "shortDate": "yyyy/M/d",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-dz",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-eg.js b/1.1.5/i18n/angular-locale_ar-eg.js
new file mode 100644
index 0000000000..980d3bcead
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-eg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-eg",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-iq.js b/1.1.5/i18n/angular-locale_ar-iq.js
new file mode 100644
index 0000000000..cd845dfe8b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-iq.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-iq",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-jo.js b/1.1.5/i18n/angular-locale_ar-jo.js
new file mode 100644
index 0000000000..3bf3a9bfdf
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-jo.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "1": "\u0634\u0628\u0627\u0637",
+ "2": "\u0622\u0630\u0627\u0631",
+ "3": "\u0646\u064a\u0633\u0627\u0646",
+ "4": "\u0623\u064a\u0627\u0631",
+ "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "6": "\u062a\u0645\u0648\u0632",
+ "7": "\u0622\u0628",
+ "8": "\u0623\u064a\u0644\u0648\u0644",
+ "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "1": "\u0634\u0628\u0627\u0637",
+ "2": "\u0622\u0630\u0627\u0631",
+ "3": "\u0646\u064a\u0633\u0627\u0646",
+ "4": "\u0623\u064a\u0627\u0631",
+ "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "6": "\u062a\u0645\u0648\u0632",
+ "7": "\u0622\u0628",
+ "8": "\u0623\u064a\u0644\u0648\u0644",
+ "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-jo",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-kw.js b/1.1.5/i18n/angular-locale_ar-kw.js
new file mode 100644
index 0000000000..f0947340d6
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-kw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-kw",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-lb.js b/1.1.5/i18n/angular-locale_ar-lb.js
new file mode 100644
index 0000000000..c963b11b95
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-lb.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "1": "\u0634\u0628\u0627\u0637",
+ "2": "\u0622\u0630\u0627\u0631",
+ "3": "\u0646\u064a\u0633\u0627\u0646",
+ "4": "\u0623\u064a\u0627\u0631",
+ "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "6": "\u062a\u0645\u0648\u0632",
+ "7": "\u0622\u0628",
+ "8": "\u0623\u064a\u0644\u0648\u0644",
+ "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "1": "\u0634\u0628\u0627\u0637",
+ "2": "\u0622\u0630\u0627\u0631",
+ "3": "\u0646\u064a\u0633\u0627\u0646",
+ "4": "\u0623\u064a\u0627\u0631",
+ "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "6": "\u062a\u0645\u0648\u0632",
+ "7": "\u0622\u0628",
+ "8": "\u0623\u064a\u0644\u0648\u0644",
+ "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-lb",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-ly.js b/1.1.5/i18n/angular-locale_ar-ly.js
new file mode 100644
index 0000000000..82bd9a6ac9
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-ly.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-ly",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-ma.js b/1.1.5/i18n/angular-locale_ar-ma.js
new file mode 100644
index 0000000000..e22c918ced
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-ma.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "yyyy/MM/dd h:mm:ss a",
+ "mediumDate": "yyyy/MM/dd",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy/M/d h:mm a",
+ "shortDate": "yyyy/M/d",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-ma",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-om.js b/1.1.5/i18n/angular-locale_ar-om.js
new file mode 100644
index 0000000000..d14fba43f1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-om.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-om",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-qa.js b/1.1.5/i18n/angular-locale_ar-qa.js
new file mode 100644
index 0000000000..02b21cea02
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-qa.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-qa",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-sa.js b/1.1.5/i18n/angular-locale_ar-sa.js
new file mode 100644
index 0000000000..1c946c5c31
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-sa.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-sa",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-sd.js b/1.1.5/i18n/angular-locale_ar-sd.js
new file mode 100644
index 0000000000..2918e2649a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-sd.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-sd",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-sy.js b/1.1.5/i18n/angular-locale_ar-sy.js
new file mode 100644
index 0000000000..b880168ad4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-sy.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "1": "\u0634\u0628\u0627\u0637",
+ "2": "\u0622\u0630\u0627\u0631",
+ "3": "\u0646\u064a\u0633\u0627\u0646",
+ "4": "\u0623\u064a\u0627\u0631",
+ "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "6": "\u062a\u0645\u0648\u0632",
+ "7": "\u0622\u0628",
+ "8": "\u0623\u064a\u0644\u0648\u0644",
+ "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "1": "\u0634\u0628\u0627\u0637",
+ "2": "\u0622\u0630\u0627\u0631",
+ "3": "\u0646\u064a\u0633\u0627\u0646",
+ "4": "\u0623\u064a\u0627\u0631",
+ "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
+ "6": "\u062a\u0645\u0648\u0632",
+ "7": "\u0622\u0628",
+ "8": "\u0623\u064a\u0644\u0648\u0644",
+ "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
+ "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
+ "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-sy",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-tn.js b/1.1.5/i18n/angular-locale_ar-tn.js
new file mode 100644
index 0000000000..731bc0f54c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-tn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "yyyy/MM/dd h:mm:ss a",
+ "mediumDate": "yyyy/MM/dd",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy/M/d h:mm a",
+ "shortDate": "yyyy/M/d",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-tn",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar-ye.js b/1.1.5/i18n/angular-locale_ar-ye.js
new file mode 100644
index 0000000000..f389098928
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar-ye.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar-ye",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ar.js b/1.1.5/i18n/angular-locale_ar.js
new file mode 100644
index 0000000000..a1aa05e96d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ar.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0635",
+ "1": "\u0645"
+ },
+ "DAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "MONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u0644\u0623\u062d\u062f",
+ "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
+ "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
+ "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
+ "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
+ "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
+ "6": "\u0627\u0644\u0633\u0628\u062a"
+ },
+ "SHORTMONTH": {
+ "0": "\u064a\u0646\u0627\u064a\u0631",
+ "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0623\u0628\u0631\u064a\u0644",
+ "4": "\u0645\u0627\u064a\u0648",
+ "5": "\u064a\u0648\u0646\u064a\u0648",
+ "6": "\u064a\u0648\u0644\u064a\u0648",
+ "7": "\u0623\u063a\u0633\u0637\u0633",
+ "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
+ "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
+ "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060c d MMMM\u060c y",
+ "longDate": "d MMMM\u060c y",
+ "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
+ "mediumDate": "dd\u200f/MM\u200f/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d\u200f/M\u200f/yyyy h:mm a",
+ "shortDate": "d\u200f/M\u200f/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "",
+ "negSuf": "-",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ar",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == (n | 0) && n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_bg-bg.js b/1.1.5/i18n/angular-locale_bg-bg.js
new file mode 100644
index 0000000000..ada5fb98be
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_bg-bg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u043f\u0440. \u043e\u0431.",
+ "1": "\u0441\u043b. \u043e\u0431."
+ },
+ "DAY": {
+ "0": "\u043d\u0435\u0434\u0435\u043b\u044f",
+ "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
+ "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
+ "3": "\u0441\u0440\u044f\u0434\u0430",
+ "4": "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
+ "5": "\u043f\u0435\u0442\u044a\u043a",
+ "6": "\u0441\u044a\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u044f\u043d\u0443\u0430\u0440\u0438",
+ "1": "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
+ "2": "\u043c\u0430\u0440\u0442",
+ "3": "\u0430\u043f\u0440\u0438\u043b",
+ "4": "\u043c\u0430\u0439",
+ "5": "\u044e\u043d\u0438",
+ "6": "\u044e\u043b\u0438",
+ "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
+ "9": "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
+ "10": "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
+ "11": "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
+ },
+ "SHORTDAY": {
+ "0": "\u043d\u0434",
+ "1": "\u043f\u043d",
+ "2": "\u0432\u0442",
+ "3": "\u0441\u0440",
+ "4": "\u0447\u0442",
+ "5": "\u043f\u0442",
+ "6": "\u0441\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u044f\u043d.",
+ "1": "\u0444\u0435\u0432\u0440.",
+ "2": "\u043c\u0430\u0440\u0442",
+ "3": "\u0430\u043f\u0440.",
+ "4": "\u043c\u0430\u0439",
+ "5": "\u044e\u043d\u0438",
+ "6": "\u044e\u043b\u0438",
+ "7": "\u0430\u0432\u0433.",
+ "8": "\u0441\u0435\u043f\u0442.",
+ "9": "\u043e\u043a\u0442.",
+ "10": "\u043d\u043e\u0435\u043c.",
+ "11": "\u0434\u0435\u043a."
+ },
+ "fullDate": "dd MMMM y, EEEE",
+ "longDate": "dd MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "lev",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "bg-bg",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_bg.js b/1.1.5/i18n/angular-locale_bg.js
new file mode 100644
index 0000000000..047a2dde6f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_bg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u043f\u0440. \u043e\u0431.",
+ "1": "\u0441\u043b. \u043e\u0431."
+ },
+ "DAY": {
+ "0": "\u043d\u0435\u0434\u0435\u043b\u044f",
+ "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
+ "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
+ "3": "\u0441\u0440\u044f\u0434\u0430",
+ "4": "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
+ "5": "\u043f\u0435\u0442\u044a\u043a",
+ "6": "\u0441\u044a\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u044f\u043d\u0443\u0430\u0440\u0438",
+ "1": "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
+ "2": "\u043c\u0430\u0440\u0442",
+ "3": "\u0430\u043f\u0440\u0438\u043b",
+ "4": "\u043c\u0430\u0439",
+ "5": "\u044e\u043d\u0438",
+ "6": "\u044e\u043b\u0438",
+ "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
+ "9": "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
+ "10": "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
+ "11": "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
+ },
+ "SHORTDAY": {
+ "0": "\u043d\u0434",
+ "1": "\u043f\u043d",
+ "2": "\u0432\u0442",
+ "3": "\u0441\u0440",
+ "4": "\u0447\u0442",
+ "5": "\u043f\u0442",
+ "6": "\u0441\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u044f\u043d.",
+ "1": "\u0444\u0435\u0432\u0440.",
+ "2": "\u043c\u0430\u0440\u0442",
+ "3": "\u0430\u043f\u0440.",
+ "4": "\u043c\u0430\u0439",
+ "5": "\u044e\u043d\u0438",
+ "6": "\u044e\u043b\u0438",
+ "7": "\u0430\u0432\u0433.",
+ "8": "\u0441\u0435\u043f\u0442.",
+ "9": "\u043e\u043a\u0442.",
+ "10": "\u043d\u043e\u0435\u043c.",
+ "11": "\u0434\u0435\u043a."
+ },
+ "fullDate": "dd MMMM y, EEEE",
+ "longDate": "dd MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "lev",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "bg",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_bn-bd.js b/1.1.5/i18n/angular-locale_bn-bd.js
new file mode 100644
index 0000000000..81565de38c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_bn-bd.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
+ "1": "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
+ "2": "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
+ "3": "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
+ "4": "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
+ "5": "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
+ "6": "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
+ },
+ "MONTH": {
+ "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "2": "\u09ae\u09be\u09b0\u09cd\u099a",
+ "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "4": "\u09ae\u09c7",
+ "5": "\u099c\u09c1\u09a8",
+ "6": "\u099c\u09c1\u09b2\u09be\u0987",
+ "7": "\u0986\u0997\u09b8\u09cd\u099f",
+ "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ },
+ "SHORTDAY": {
+ "0": "\u09b0\u09ac\u09bf",
+ "1": "\u09b8\u09cb\u09ae",
+ "2": "\u09ae\u0999\u09cd\u0997\u09b2",
+ "3": "\u09ac\u09c1\u09a7",
+ "4": "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
+ "5": "\u09b6\u09c1\u0995\u09cd\u09b0",
+ "6": "\u09b6\u09a8\u09bf"
+ },
+ "SHORTMONTH": {
+ "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "2": "\u09ae\u09be\u09b0\u09cd\u099a",
+ "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "4": "\u09ae\u09c7",
+ "5": "\u099c\u09c1\u09a8",
+ "6": "\u099c\u09c1\u09b2\u09be\u0987",
+ "7": "\u0986\u0997\u09b8\u09cd\u099f",
+ "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u09f3",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "bn-bd",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_bn-in.js b/1.1.5/i18n/angular-locale_bn-in.js
new file mode 100644
index 0000000000..3ed6ce2946
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_bn-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
+ "1": "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
+ "2": "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
+ "3": "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
+ "4": "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
+ "5": "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
+ "6": "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
+ },
+ "MONTH": {
+ "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "2": "\u09ae\u09be\u09b0\u09cd\u099a",
+ "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "4": "\u09ae\u09c7",
+ "5": "\u099c\u09c1\u09a8",
+ "6": "\u099c\u09c1\u09b2\u09be\u0987",
+ "7": "\u0986\u0997\u09b8\u09cd\u099f",
+ "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ },
+ "SHORTDAY": {
+ "0": "\u09b0\u09ac\u09bf",
+ "1": "\u09b8\u09cb\u09ae",
+ "2": "\u09ae\u0999\u09cd\u0997\u09b2",
+ "3": "\u09ac\u09c1\u09a7",
+ "4": "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
+ "5": "\u09b6\u09c1\u0995\u09cd\u09b0",
+ "6": "\u09b6\u09a8\u09bf"
+ },
+ "SHORTMONTH": {
+ "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "2": "\u09ae\u09be\u09b0\u09cd\u099a",
+ "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "4": "\u09ae\u09c7",
+ "5": "\u099c\u09c1\u09a8",
+ "6": "\u099c\u09c1\u09b2\u09be\u0987",
+ "7": "\u0986\u0997\u09b8\u09cd\u099f",
+ "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u09f3",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "bn-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_bn.js b/1.1.5/i18n/angular-locale_bn.js
new file mode 100644
index 0000000000..14dd165410
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_bn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
+ "1": "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
+ "2": "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
+ "3": "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
+ "4": "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
+ "5": "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
+ "6": "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
+ },
+ "MONTH": {
+ "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "2": "\u09ae\u09be\u09b0\u09cd\u099a",
+ "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "4": "\u09ae\u09c7",
+ "5": "\u099c\u09c1\u09a8",
+ "6": "\u099c\u09c1\u09b2\u09be\u0987",
+ "7": "\u0986\u0997\u09b8\u09cd\u099f",
+ "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ },
+ "SHORTDAY": {
+ "0": "\u09b0\u09ac\u09bf",
+ "1": "\u09b8\u09cb\u09ae",
+ "2": "\u09ae\u0999\u09cd\u0997\u09b2",
+ "3": "\u09ac\u09c1\u09a7",
+ "4": "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
+ "5": "\u09b6\u09c1\u0995\u09cd\u09b0",
+ "6": "\u09b6\u09a8\u09bf"
+ },
+ "SHORTMONTH": {
+ "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
+ "2": "\u09ae\u09be\u09b0\u09cd\u099a",
+ "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
+ "4": "\u09ae\u09c7",
+ "5": "\u099c\u09c1\u09a8",
+ "6": "\u099c\u09c1\u09b2\u09be\u0987",
+ "7": "\u0986\u0997\u09b8\u09cd\u099f",
+ "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
+ "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
+ "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u09f3",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "bn",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ca-ad.js b/1.1.5/i18n/angular-locale_ca-ad.js
new file mode 100644
index 0000000000..1619738e7c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ca-ad.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "diumenge",
+ "1": "dilluns",
+ "2": "dimarts",
+ "3": "dimecres",
+ "4": "dijous",
+ "5": "divendres",
+ "6": "dissabte"
+ },
+ "MONTH": {
+ "0": "de gener",
+ "1": "de febrer",
+ "2": "de mar\u00e7",
+ "3": "d\u2019abril",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de juliol",
+ "7": "d\u2019agost",
+ "8": "de setembre",
+ "9": "d\u2019octubre",
+ "10": "de novembre",
+ "11": "de desembre"
+ },
+ "SHORTDAY": {
+ "0": "dg.",
+ "1": "dl.",
+ "2": "dt.",
+ "3": "dc.",
+ "4": "dj.",
+ "5": "dv.",
+ "6": "ds."
+ },
+ "SHORTMONTH": {
+ "0": "de gen.",
+ "1": "de febr.",
+ "2": "de mar\u00e7",
+ "3": "d\u2019abr.",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de jul.",
+ "7": "d\u2019ag.",
+ "8": "de set.",
+ "9": "d\u2019oct.",
+ "10": "de nov.",
+ "11": "de des."
+ },
+ "fullDate": "EEEE d MMMM 'de' y",
+ "longDate": "d MMMM 'de' y",
+ "medium": "dd/MM/yyyy H:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd/MM/yy H:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ca-ad",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ca-es.js b/1.1.5/i18n/angular-locale_ca-es.js
new file mode 100644
index 0000000000..5acc5bb7c1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ca-es.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "diumenge",
+ "1": "dilluns",
+ "2": "dimarts",
+ "3": "dimecres",
+ "4": "dijous",
+ "5": "divendres",
+ "6": "dissabte"
+ },
+ "MONTH": {
+ "0": "de gener",
+ "1": "de febrer",
+ "2": "de mar\u00e7",
+ "3": "d\u2019abril",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de juliol",
+ "7": "d\u2019agost",
+ "8": "de setembre",
+ "9": "d\u2019octubre",
+ "10": "de novembre",
+ "11": "de desembre"
+ },
+ "SHORTDAY": {
+ "0": "dg.",
+ "1": "dl.",
+ "2": "dt.",
+ "3": "dc.",
+ "4": "dj.",
+ "5": "dv.",
+ "6": "ds."
+ },
+ "SHORTMONTH": {
+ "0": "de gen.",
+ "1": "de febr.",
+ "2": "de mar\u00e7",
+ "3": "d\u2019abr.",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de jul.",
+ "7": "d\u2019ag.",
+ "8": "de set.",
+ "9": "d\u2019oct.",
+ "10": "de nov.",
+ "11": "de des."
+ },
+ "fullDate": "EEEE d MMMM 'de' y",
+ "longDate": "d MMMM 'de' y",
+ "medium": "dd/MM/yyyy H:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd/MM/yy H:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ca-es",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ca.js b/1.1.5/i18n/angular-locale_ca.js
new file mode 100644
index 0000000000..196189de62
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ca.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "diumenge",
+ "1": "dilluns",
+ "2": "dimarts",
+ "3": "dimecres",
+ "4": "dijous",
+ "5": "divendres",
+ "6": "dissabte"
+ },
+ "MONTH": {
+ "0": "de gener",
+ "1": "de febrer",
+ "2": "de mar\u00e7",
+ "3": "d\u2019abril",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de juliol",
+ "7": "d\u2019agost",
+ "8": "de setembre",
+ "9": "d\u2019octubre",
+ "10": "de novembre",
+ "11": "de desembre"
+ },
+ "SHORTDAY": {
+ "0": "dg.",
+ "1": "dl.",
+ "2": "dt.",
+ "3": "dc.",
+ "4": "dj.",
+ "5": "dv.",
+ "6": "ds."
+ },
+ "SHORTMONTH": {
+ "0": "de gen.",
+ "1": "de febr.",
+ "2": "de mar\u00e7",
+ "3": "d\u2019abr.",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de jul.",
+ "7": "d\u2019ag.",
+ "8": "de set.",
+ "9": "d\u2019oct.",
+ "10": "de nov.",
+ "11": "de des."
+ },
+ "fullDate": "EEEE d MMMM 'de' y",
+ "longDate": "d MMMM 'de' y",
+ "medium": "dd/MM/yyyy H:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd/MM/yy H:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ca",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_chr.js b/1.1.5/i18n/angular-locale_chr.js
new file mode 100644
index 0000000000..8866af3f5f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_chr.js
@@ -0,0 +1,4 @@
+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":{"MONTH":["ᎤᏃᎸᏔᏅ","ᎧᎦᎵ","ᎠᏅᏱ","ᎧᏬᏂ","ᎠᏂᏍᎬᏘ","ᏕᎭᎷᏱ","ᎫᏰᏉᏂ","ᎦᎶᏂ","ᏚᎵᏍᏗ","ᏚᏂᏅᏗ","ᏅᏓᏕᏆ","ᎤᏍᎩᏱ"],"SHORTMONTH":["ᎤᏃ","ᎧᎦ","ᎠᏅ","ᎧᏬ","ᎠᏂ","ᏕᎭ","ᎫᏰ","ᎦᎶ","ᏚᎵ","ᏚᏂ","ᏅᏓ","ᎤᏍ"],"DAY":["ᎤᎾᏙᏓᏆᏍᎬ","ᎤᎾᏙᏓᏉᏅᎯ","ᏔᎵᏁᎢᎦ","ᏦᎢᏁᎢᎦ","ᏅᎩᏁᎢᎦ","ᏧᎾᎩᎶᏍᏗ","ᎤᎾᏙᏓᏈᏕᎾ"],"SHORTDAY":["ᏆᏍᎬ","ᏉᏅᎯ","ᏔᎵᏁ","ᏦᎢᏁ","ᏅᎩᏁ","ᏧᎾᎩ","ᏈᏕᎾ"],"AMPMS":["ᏌᎾᎴ","ᏒᎯᏱᎢᏗᏢ"],"medium":"MMM d, y h:mm:ss a","short":"M/d/yy h:mm a","fullDate":"EEEE, MMMM d, y","longDate":"MMMM d, y","mediumDate":"MMM d, y","shortDate":"M/d/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"id":"chr"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_cs-cz.js b/1.1.5/i18n/angular-locale_cs-cz.js
new file mode 100644
index 0000000000..37c0348b91
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_cs-cz.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "dop.",
+ "1": "odp."
+ },
+ "DAY": {
+ "0": "ned\u011ble",
+ "1": "pond\u011bl\u00ed",
+ "2": "\u00fater\u00fd",
+ "3": "st\u0159eda",
+ "4": "\u010dtvrtek",
+ "5": "p\u00e1tek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "ledna",
+ "1": "\u00fanora",
+ "2": "b\u0159ezna",
+ "3": "dubna",
+ "4": "kv\u011btna",
+ "5": "\u010dervna",
+ "6": "\u010dervence",
+ "7": "srpna",
+ "8": "z\u00e1\u0159\u00ed",
+ "9": "\u0159\u00edjna",
+ "10": "listopadu",
+ "11": "prosince"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "\u00fat",
+ "3": "st",
+ "4": "\u010dt",
+ "5": "p\u00e1",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "Led",
+ "1": "\u00dano",
+ "2": "B\u0159e",
+ "3": "Dub",
+ "4": "Kv\u011b",
+ "5": "\u010cer",
+ "6": "\u010cvc",
+ "7": "Srp",
+ "8": "Z\u00e1\u0159",
+ "9": "\u0158\u00edj",
+ "10": "Lis",
+ "11": "Pro"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d. M. yyyy H:mm:ss",
+ "mediumDate": "d. M. yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "K\u010d",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "cs-cz",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n >= 2 && n <= 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_cs.js b/1.1.5/i18n/angular-locale_cs.js
new file mode 100644
index 0000000000..2545a2f29a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_cs.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "dop.",
+ "1": "odp."
+ },
+ "DAY": {
+ "0": "ned\u011ble",
+ "1": "pond\u011bl\u00ed",
+ "2": "\u00fater\u00fd",
+ "3": "st\u0159eda",
+ "4": "\u010dtvrtek",
+ "5": "p\u00e1tek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "ledna",
+ "1": "\u00fanora",
+ "2": "b\u0159ezna",
+ "3": "dubna",
+ "4": "kv\u011btna",
+ "5": "\u010dervna",
+ "6": "\u010dervence",
+ "7": "srpna",
+ "8": "z\u00e1\u0159\u00ed",
+ "9": "\u0159\u00edjna",
+ "10": "listopadu",
+ "11": "prosince"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "\u00fat",
+ "3": "st",
+ "4": "\u010dt",
+ "5": "p\u00e1",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "Led",
+ "1": "\u00dano",
+ "2": "B\u0159e",
+ "3": "Dub",
+ "4": "Kv\u011b",
+ "5": "\u010cer",
+ "6": "\u010cvc",
+ "7": "Srp",
+ "8": "Z\u00e1\u0159",
+ "9": "\u0158\u00edj",
+ "10": "Lis",
+ "11": "Pro"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d. M. yyyy H:mm:ss",
+ "mediumDate": "d. M. yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "K\u010d",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "cs",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n >= 2 && n <= 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_cy.js b/1.1.5/i18n/angular-locale_cy.js
new file mode 100644
index 0000000000..db25bc62fe
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_cy.js
@@ -0,0 +1,4 @@
+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":{"MONTH":["Ionawr","Chwefror","Mawrth","Ebrill","Mai","Mehefin","Gorffenaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],"SHORTMONTH":["Ion","Chwef","Mawrth","Ebrill","Mai","Meh","Gorff","Awst","Medi","Hyd","Tach","Rhag"],"DAY":["Dydd Sul","Dydd Llun","Dydd Mawrth","Dydd Mercher","Dydd Iau","Dydd Gwener","Dydd Sadwrn"],"SHORTDAY":["Sul","Llun","Maw","Mer","Iau","Gwen","Sad"],"AMPMS":["AM","PM"],"medium":"d MMM y HH:mm:ss","short":"dd/MM/yyyy HH:mm","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"d MMM y","shortDate":"dd/MM/yyyy","mediumTime":"HH:mm:ss","shortTime":"HH:mm"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"id":"cy"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_da-dk.js b/1.1.5/i18n/angular-locale_da-dk.js
new file mode 100644
index 0000000000..60689ebe12
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_da-dk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "f.m.",
+ "1": "e.m."
+ },
+ "DAY": {
+ "0": "s\u00f8ndag",
+ "1": "mandag",
+ "2": "tirsdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "l\u00f8rdag"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "marts",
+ "3": "april",
+ "4": "maj",
+ "5": "juni",
+ "6": "juli",
+ "7": "august",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "s\u00f8n",
+ "1": "man",
+ "2": "tir",
+ "3": "ons",
+ "4": "tor",
+ "5": "fre",
+ "6": "l\u00f8r"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "maj",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE 'den' d. MMMM y",
+ "longDate": "d. MMM y",
+ "medium": "dd/MM/yyyy HH.mm.ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH.mm.ss",
+ "short": "dd/MM/yy HH.mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH.mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "da-dk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_da.js b/1.1.5/i18n/angular-locale_da.js
new file mode 100644
index 0000000000..7127e47e82
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_da.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "f.m.",
+ "1": "e.m."
+ },
+ "DAY": {
+ "0": "s\u00f8ndag",
+ "1": "mandag",
+ "2": "tirsdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "l\u00f8rdag"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "marts",
+ "3": "april",
+ "4": "maj",
+ "5": "juni",
+ "6": "juli",
+ "7": "august",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "s\u00f8n",
+ "1": "man",
+ "2": "tir",
+ "3": "ons",
+ "4": "tor",
+ "5": "fre",
+ "6": "l\u00f8r"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "maj",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE 'den' d. MMMM y",
+ "longDate": "d. MMM y",
+ "medium": "dd/MM/yyyy HH.mm.ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH.mm.ss",
+ "short": "dd/MM/yy HH.mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH.mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "da",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de-at.js b/1.1.5/i18n/angular-locale_de-at.js
new file mode 100644
index 0000000000..54ddb81424
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de-at.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "J\u00e4nner",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "J\u00e4n",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, dd. MMMM y",
+ "longDate": "dd. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "de-at",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de-be.js b/1.1.5/i18n/angular-locale_de-be.js
new file mode 100644
index 0000000000..7bdec65509
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de-be.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "de-be",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de-ch.js b/1.1.5/i18n/angular-locale_de-ch.js
new file mode 100644
index 0000000000..b28f204208
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de-ch.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "CHF",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": "'",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "de-ch",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de-de.js b/1.1.5/i18n/angular-locale_de-de.js
new file mode 100644
index 0000000000..94a8712d83
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de-de.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "de-de",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de-li.js b/1.1.5/i18n/angular-locale_de-li.js
new file mode 100644
index 0000000000..b6b1c4bd2b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de-li.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "de-li",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de-lu.js b/1.1.5/i18n/angular-locale_de-lu.js
new file mode 100644
index 0000000000..49bd7ee4e7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de-lu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "de-lu",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_de.js b/1.1.5/i18n/angular-locale_de.js
new file mode 100644
index 0000000000..545676c95c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_de.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nachm."
+ },
+ "DAY": {
+ "0": "Sonntag",
+ "1": "Montag",
+ "2": "Dienstag",
+ "3": "Mittwoch",
+ "4": "Donnerstag",
+ "5": "Freitag",
+ "6": "Samstag"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "August",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Dezember"
+ },
+ "SHORTDAY": {
+ "0": "So.",
+ "1": "Mo.",
+ "2": "Di.",
+ "3": "Mi.",
+ "4": "Do.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "de",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_el-cy.js b/1.1.5/i18n/angular-locale_el-cy.js
new file mode 100644
index 0000000000..ad98b20290
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_el-cy.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u03c0.\u03bc.",
+ "1": "\u03bc.\u03bc."
+ },
+ "DAY": {
+ "0": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
+ "1": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
+ "2": "\u03a4\u03c1\u03af\u03c4\u03b7",
+ "3": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
+ "4": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
+ "5": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
+ "6": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"
+ },
+ "MONTH": {
+ "0": "\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
+ "1": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
+ "2": "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
+ "3": "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
+ "4": "\u039c\u03b1\u0390\u03bf\u03c5",
+ "5": "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
+ "6": "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
+ "7": "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
+ "8": "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
+ "9": "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
+ "10": "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
+ "11": "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"
+ },
+ "SHORTDAY": {
+ "0": "\u039a\u03c5\u03c1",
+ "1": "\u0394\u03b5\u03c5",
+ "2": "\u03a4\u03c1\u03b9",
+ "3": "\u03a4\u03b5\u03c4",
+ "4": "\u03a0\u03b5\u03bc",
+ "5": "\u03a0\u03b1\u03c1",
+ "6": "\u03a3\u03b1\u03b2"
+ },
+ "SHORTMONTH": {
+ "0": "\u0399\u03b1\u03bd",
+ "1": "\u03a6\u03b5\u03b2",
+ "2": "\u039c\u03b1\u03c1",
+ "3": "\u0391\u03c0\u03c1",
+ "4": "\u039c\u03b1\u03ca",
+ "5": "\u0399\u03bf\u03c5\u03bd",
+ "6": "\u0399\u03bf\u03c5\u03bb",
+ "7": "\u0391\u03c5\u03b3",
+ "8": "\u03a3\u03b5\u03c0",
+ "9": "\u039f\u03ba\u03c4",
+ "10": "\u039d\u03bf\u03b5",
+ "11": "\u0394\u03b5\u03ba"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "el-cy",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_el-gr.js b/1.1.5/i18n/angular-locale_el-gr.js
new file mode 100644
index 0000000000..fb27ac33b7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_el-gr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u03c0.\u03bc.",
+ "1": "\u03bc.\u03bc."
+ },
+ "DAY": {
+ "0": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
+ "1": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
+ "2": "\u03a4\u03c1\u03af\u03c4\u03b7",
+ "3": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
+ "4": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
+ "5": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
+ "6": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"
+ },
+ "MONTH": {
+ "0": "\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
+ "1": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
+ "2": "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
+ "3": "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
+ "4": "\u039c\u03b1\u0390\u03bf\u03c5",
+ "5": "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
+ "6": "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
+ "7": "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
+ "8": "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
+ "9": "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
+ "10": "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
+ "11": "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"
+ },
+ "SHORTDAY": {
+ "0": "\u039a\u03c5\u03c1",
+ "1": "\u0394\u03b5\u03c5",
+ "2": "\u03a4\u03c1\u03b9",
+ "3": "\u03a4\u03b5\u03c4",
+ "4": "\u03a0\u03b5\u03bc",
+ "5": "\u03a0\u03b1\u03c1",
+ "6": "\u03a3\u03b1\u03b2"
+ },
+ "SHORTMONTH": {
+ "0": "\u0399\u03b1\u03bd",
+ "1": "\u03a6\u03b5\u03b2",
+ "2": "\u039c\u03b1\u03c1",
+ "3": "\u0391\u03c0\u03c1",
+ "4": "\u039c\u03b1\u03ca",
+ "5": "\u0399\u03bf\u03c5\u03bd",
+ "6": "\u0399\u03bf\u03c5\u03bb",
+ "7": "\u0391\u03c5\u03b3",
+ "8": "\u03a3\u03b5\u03c0",
+ "9": "\u039f\u03ba\u03c4",
+ "10": "\u039d\u03bf\u03b5",
+ "11": "\u0394\u03b5\u03ba"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "el-gr",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_el-polyton.js b/1.1.5/i18n/angular-locale_el-polyton.js
new file mode 100644
index 0000000000..d480d8332e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_el-polyton.js
@@ -0,0 +1,4 @@
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+$provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":",","GROUP_SEP":".","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"","posSuf":" \u00A4","negPre":"-","negSuf":" \u00A4","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"€"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["Ιανουαρίου","Φεβρουαρίου","Μαρτίου","Απριλίου","Μαΐου","Ιουνίου","Ιουλίου","Αυγούστου","Σεπτεμβρίου","Οκτωβρίου","Νοεμβρίου","Δεκεμβρίου"],"SHORTMONTH":["Ιαν","Φεβ","Μαρ","Απρ","Μαϊ","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],"DAY":["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],"SHORTDAY":["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],"AMPMS":["π.μ.","μ.μ."],"medium":"d MMM y h:mm:ss a","short":"d/M/yy h:mm a","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"d MMM y","shortDate":"d/M/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"id":"el-polyton"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_el.js b/1.1.5/i18n/angular-locale_el.js
new file mode 100644
index 0000000000..a3730d7dac
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_el.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u03c0.\u03bc.",
+ "1": "\u03bc.\u03bc."
+ },
+ "DAY": {
+ "0": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
+ "1": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
+ "2": "\u03a4\u03c1\u03af\u03c4\u03b7",
+ "3": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
+ "4": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
+ "5": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
+ "6": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"
+ },
+ "MONTH": {
+ "0": "\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
+ "1": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
+ "2": "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
+ "3": "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
+ "4": "\u039c\u03b1\u0390\u03bf\u03c5",
+ "5": "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
+ "6": "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
+ "7": "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
+ "8": "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
+ "9": "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
+ "10": "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
+ "11": "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"
+ },
+ "SHORTDAY": {
+ "0": "\u039a\u03c5\u03c1",
+ "1": "\u0394\u03b5\u03c5",
+ "2": "\u03a4\u03c1\u03b9",
+ "3": "\u03a4\u03b5\u03c4",
+ "4": "\u03a0\u03b5\u03bc",
+ "5": "\u03a0\u03b1\u03c1",
+ "6": "\u03a3\u03b1\u03b2"
+ },
+ "SHORTMONTH": {
+ "0": "\u0399\u03b1\u03bd",
+ "1": "\u03a6\u03b5\u03b2",
+ "2": "\u039c\u03b1\u03c1",
+ "3": "\u0391\u03c0\u03c1",
+ "4": "\u039c\u03b1\u03ca",
+ "5": "\u0399\u03bf\u03c5\u03bd",
+ "6": "\u0399\u03bf\u03c5\u03bb",
+ "7": "\u0391\u03c5\u03b3",
+ "8": "\u03a3\u03b5\u03c0",
+ "9": "\u039f\u03ba\u03c4",
+ "10": "\u039d\u03bf\u03b5",
+ "11": "\u0394\u03b5\u03ba"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "el",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-as.js b/1.1.5/i18n/angular-locale_en-as.js
new file mode 100644
index 0000000000..254ad7ed4a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-as.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-as",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-au.js b/1.1.5/i18n/angular-locale_en-au.js
new file mode 100644
index 0000000000..b2ab0fcfb0
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-au.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd/MM/yyyy h:mm:ss a",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
+ "shortDate": "d/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-au",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-bb.js b/1.1.5/i18n/angular-locale_en-bb.js
new file mode 100644
index 0000000000..5ce0ff373e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-bb.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-bb",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-be.js b/1.1.5/i18n/angular-locale_en-be.js
new file mode 100644
index 0000000000..28ec6bcb05
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-be.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMM 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",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-be",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-bm.js b/1.1.5/i18n/angular-locale_en-bm.js
new file mode 100644
index 0000000000..7fdc16784e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-bm.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-bm",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-bw.js b/1.1.5/i18n/angular-locale_en-bw.js
new file mode 100644
index 0000000000..58061ef93d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-bw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "MMM d, y h:mm:ss a",
+ "mediumDate": "MMM d, y",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd/MM/yy h:mm a",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-bw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-bz.js b/1.1.5/i18n/angular-locale_en-bz.js
new file mode 100644
index 0000000000..09af3b164f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-bz.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "dd MMMM y",
+ "longDate": "dd 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",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-bz",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-ca.js b/1.1.5/i18n/angular-locale_en-ca.js
new file mode 100644
index 0000000000..f58feb3f3f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-ca.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "d MMMM, y",
+ "medium": "yyyy-MM-dd h:mm:ss a",
+ "mediumDate": "yyyy-MM-dd",
+ "mediumTime": "h:mm:ss a",
+ "short": "yy-MM-dd h:mm a",
+ "shortDate": "yy-MM-dd",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-ca",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-dsrt-us.js b/1.1.5/i18n/angular-locale_en-dsrt-us.js
new file mode 100644
index 0000000000..013d18cdcd
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-dsrt-us.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\ud801\udc08\ud801\udc23",
+ "1": "\ud801\udc11\ud801\udc23"
+ },
+ "DAY": {
+ "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
+ "1": "\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
+ "2": "\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29",
+ "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29",
+ "4": "\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29",
+ "5": "\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29",
+ "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29"
+ },
+ "MONTH": {
+ "0": "\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
+ "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
+ "2": "\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d",
+ "3": "\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a",
+ "4": "\ud801\udc23\ud801\udc29",
+ "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
+ "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34",
+ "7": "\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b",
+ "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
+ "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49",
+ "10": "\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
+ "11": "\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49"
+ },
+ "SHORTDAY": {
+ "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c",
+ "1": "\ud801\udc23\ud801\udc32\ud801\udc4c",
+ "2": "\ud801\udc13\ud801\udc2d\ud801\udc46",
+ "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c",
+ "4": "\ud801\udc1b\ud801\udc32\ud801\udc49",
+ "5": "\ud801\udc19\ud801\udc49\ud801\udc34",
+ "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b"
+ },
+ "SHORTMONTH": {
+ "0": "\ud801\udc16\ud801\udc30\ud801\udc4c",
+ "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a",
+ "2": "\ud801\udc23\ud801\udc2a\ud801\udc49",
+ "3": "\ud801\udc01\ud801\udc39\ud801\udc49",
+ "4": "\ud801\udc23\ud801\udc29",
+ "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
+ "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a",
+ "7": "\ud801\udc02\ud801\udc40",
+ "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39",
+ "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b",
+ "10": "\ud801\udc24\ud801\udc2c\ud801\udc42",
+ "11": "\ud801\udc14\ud801\udc28\ud801\udc45"
+ },
+ "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-dsrt-us",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-dsrt.js b/1.1.5/i18n/angular-locale_en-dsrt.js
new file mode 100644
index 0000000000..f7f21c9b00
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-dsrt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\ud801\udc08\ud801\udc23",
+ "1": "\ud801\udc11\ud801\udc23"
+ },
+ "DAY": {
+ "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
+ "1": "\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
+ "2": "\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29",
+ "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29",
+ "4": "\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29",
+ "5": "\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29",
+ "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29"
+ },
+ "MONTH": {
+ "0": "\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
+ "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
+ "2": "\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d",
+ "3": "\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a",
+ "4": "\ud801\udc23\ud801\udc29",
+ "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
+ "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34",
+ "7": "\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b",
+ "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
+ "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49",
+ "10": "\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
+ "11": "\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49"
+ },
+ "SHORTDAY": {
+ "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c",
+ "1": "\ud801\udc23\ud801\udc32\ud801\udc4c",
+ "2": "\ud801\udc13\ud801\udc2d\ud801\udc46",
+ "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c",
+ "4": "\ud801\udc1b\ud801\udc32\ud801\udc49",
+ "5": "\ud801\udc19\ud801\udc49\ud801\udc34",
+ "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b"
+ },
+ "SHORTMONTH": {
+ "0": "\ud801\udc16\ud801\udc30\ud801\udc4c",
+ "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a",
+ "2": "\ud801\udc23\ud801\udc2a\ud801\udc49",
+ "3": "\ud801\udc01\ud801\udc39\ud801\udc49",
+ "4": "\ud801\udc23\ud801\udc29",
+ "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
+ "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a",
+ "7": "\ud801\udc02\ud801\udc40",
+ "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39",
+ "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b",
+ "10": "\ud801\udc24\ud801\udc2c\ud801\udc42",
+ "11": "\ud801\udc14\ud801\udc28\ud801\udc45"
+ },
+ "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-dsrt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-fm.js b/1.1.5/i18n/angular-locale_en-fm.js
new file mode 100644
index 0000000000..92f1c1f659
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-fm.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-fm",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-gb.js b/1.1.5/i18n/angular-locale_en-gb.js
new file mode 100644
index 0000000000..d311e40af1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-gb.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "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/yyyy HH:mm",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a3",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-gb",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-gu.js b/1.1.5/i18n/angular-locale_en-gu.js
new file mode 100644
index 0000000000..06f41d663a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-gu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-gu",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-gy.js b/1.1.5/i18n/angular-locale_en-gy.js
new file mode 100644
index 0000000000..8da13f0267
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-gy.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-gy",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-hk.js b/1.1.5/i18n/angular-locale_en-hk.js
new file mode 100644
index 0000000000..e565ec48f1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-hk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-hk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-ie.js b/1.1.5/i18n/angular-locale_en-ie.js
new file mode 100644
index 0000000000..7422283dd8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-ie.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "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": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-ie",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-in.js b/1.1.5/i18n/angular-locale_en-in.js
new file mode 100644
index 0000000000..5e6f242db3
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd-MMM-y h:mm:ss a",
+ "mediumDate": "dd-MMM-y",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd/MM/yy h:mm a",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-iso.js b/1.1.5/i18n/angular-locale_en-iso.js
new file mode 100644
index 0000000000..dbe28a69b0
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-iso.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE, y MMMM dd",
+ "longDate": "y MMMM d",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-iso",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-jm.js b/1.1.5/i18n/angular-locale_en-jm.js
new file mode 100644
index 0000000000..8b1a67070b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-jm.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-jm",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-mh.js b/1.1.5/i18n/angular-locale_en-mh.js
new file mode 100644
index 0000000000..3d4a80993d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-mh.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-mh",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-mp.js b/1.1.5/i18n/angular-locale_en-mp.js
new file mode 100644
index 0000000000..3781598af2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-mp.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-mp",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-mt.js b/1.1.5/i18n/angular-locale_en-mt.js
new file mode 100644
index 0000000000..8cd3cb8535
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-mt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "dd MMM y h:mm:ss a",
+ "mediumDate": "dd MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-mt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-mu.js b/1.1.5/i18n/angular-locale_en-mu.js
new file mode 100644
index 0000000000..a70779020b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-mu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-mu",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-na.js b/1.1.5/i18n/angular-locale_en-na.js
new file mode 100644
index 0000000000..7a065e8f8f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-na.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-na",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-nz.js b/1.1.5/i18n/angular-locale_en-nz.js
new file mode 100644
index 0000000000..1dfb367784
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-nz.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d/MM/yyyy h:mm:ss a",
+ "mediumDate": "d/MM/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
+ "shortDate": "d/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-nz",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-ph.js b/1.1.5/i18n/angular-locale_en-ph.js
new file mode 100644
index 0000000000..d82bce0439
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-ph.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-ph",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-pk.js b/1.1.5/i18n/angular-locale_en-pk.js
new file mode 100644
index 0000000000..87b741110e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-pk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd-MMM-y h:mm:ss a",
+ "mediumDate": "dd-MMM-y",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd/MM/yy h:mm a",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-pk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-pr.js b/1.1.5/i18n/angular-locale_en-pr.js
new file mode 100644
index 0000000000..d1c9a77106
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-pr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-pr",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-pw.js b/1.1.5/i18n/angular-locale_en-pw.js
new file mode 100644
index 0000000000..0e9c65df22
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-pw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-pw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-sg.js b/1.1.5/i18n/angular-locale_en-sg.js
new file mode 100644
index 0000000000..067e2d8635
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-sg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-sg",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-tc.js b/1.1.5/i18n/angular-locale_en-tc.js
new file mode 100644
index 0000000000..2ccad1e13e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-tc.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-tc",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-tt.js b/1.1.5/i18n/angular-locale_en-tt.js
new file mode 100644
index 0000000000..0c1181083c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-tt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-tt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-um.js b/1.1.5/i18n/angular-locale_en-um.js
new file mode 100644
index 0000000000..cf90a663bb
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-um.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-um",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-us.js b/1.1.5/i18n/angular-locale_en-us.js
new file mode 100644
index 0000000000..244365d125
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-us.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-us",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-vg.js b/1.1.5/i18n/angular-locale_en-vg.js
new file mode 100644
index 0000000000..fb882e36cb
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-vg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-vg",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-vi.js b/1.1.5/i18n/angular-locale_en-vi.js
new file mode 100644
index 0000000000..107f7ef3ec
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-vi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-vi",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-za.js b/1.1.5/i18n/angular-locale_en-za.js
new file mode 100644
index 0000000000..0bd8b663d6
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-za.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "dd MMM y h:mm:ss a",
+ "mediumDate": "dd MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy/MM/dd h:mm a",
+ "shortDate": "yyyy/MM/dd",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-za",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-zw.js b/1.1.5/i18n/angular-locale_en-zw.js
new file mode 100644
index 0000000000..578f1f1249
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-zw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "dd MMM,y h:mm:ss a",
+ "mediumDate": "dd MMM,y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yyyy h:mm a",
+ "shortDate": "d/M/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en-zw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en-zz.js b/1.1.5/i18n/angular-locale_en-zz.js
new file mode 100644
index 0000000000..b72c592365
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en-zz.js
@@ -0,0 +1,4 @@
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+$provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4","posSuf":"","negPre":"(\u00A4","negSuf":")","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"$"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["January","February","March","April","May","June","July","August","September","October","November","December"],"SHORTMONTH":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"DAY":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"SHORTDAY":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AMPMS":["AM","PM"],"medium":"MMM d, y h:mm:ss a","short":"M/d/yy h:mm a","fullDate":"EEEE, MMMM d, y","longDate":"MMMM d, y","mediumDate":"MMM d, y","shortDate":"M/d/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"id":"en-zz"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_en.js b/1.1.5/i18n/angular-locale_en.js
new file mode 100644
index 0000000000..60c4000048
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_en.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sunday",
+ "1": "Monday",
+ "2": "Tuesday",
+ "3": "Wednesday",
+ "4": "Thursday",
+ "5": "Friday",
+ "6": "Saturday"
+ },
+ "MONTH": {
+ "0": "January",
+ "1": "February",
+ "2": "March",
+ "3": "April",
+ "4": "May",
+ "5": "June",
+ "6": "July",
+ "7": "August",
+ "8": "September",
+ "9": "October",
+ "10": "November",
+ "11": "December"
+ },
+ "SHORTDAY": {
+ "0": "Sun",
+ "1": "Mon",
+ "2": "Tue",
+ "3": "Wed",
+ "4": "Thu",
+ "5": "Fri",
+ "6": "Sat"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "May",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Oct",
+ "10": "Nov",
+ "11": "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": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "en",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-419.js b/1.1.5/i18n/angular-locale_es-419.js
new file mode 100644
index 0000000000..315ecb894c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-419.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "es-419",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-ar.js b/1.1.5/i18n/angular-locale_es-ar.js
new file mode 100644
index 0000000000..93dc40206d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-ar.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-ar",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-bo.js b/1.1.5/i18n/angular-locale_es-bo.js
new file mode 100644
index 0000000000..d06f6621cb
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-bo.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-bo",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-cl.js b/1.1.5/i18n/angular-locale_es-cl.js
new file mode 100644
index 0000000000..4edd9bc088
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-cl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd-MM-yyyy H:mm:ss",
+ "mediumDate": "dd-MM-yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd-MM-yy H:mm",
+ "shortDate": "dd-MM-yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-cl",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-co.js b/1.1.5/i18n/angular-locale_es-co.js
new file mode 100644
index 0000000000..df187b4cb3
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-co.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "d/MM/yyyy H:mm:ss",
+ "mediumDate": "d/MM/yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "d/MM/yy H:mm",
+ "shortDate": "d/MM/yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-co",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-cr.js b/1.1.5/i18n/angular-locale_es-cr.js
new file mode 100644
index 0000000000..cafe66086a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-cr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-cr",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-do.js b/1.1.5/i18n/angular-locale_es-do.js
new file mode 100644
index 0000000000..a934e73c86
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-do.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-do",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-ea.js b/1.1.5/i18n/angular-locale_es-ea.js
new file mode 100644
index 0000000000..53f9993d8d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-ea.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-ea",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-ec.js b/1.1.5/i18n/angular-locale_es-ec.js
new file mode 100644
index 0000000000..3a6838d0c4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-ec.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy H:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd/MM/yy H:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-ec",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-es.js b/1.1.5/i18n/angular-locale_es-es.js
new file mode 100644
index 0000000000..98e553ab75
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-es.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-es",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-gq.js b/1.1.5/i18n/angular-locale_es-gq.js
new file mode 100644
index 0000000000..9f1e1e9a66
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-gq.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-gq",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-gt.js b/1.1.5/i18n/angular-locale_es-gt.js
new file mode 100644
index 0000000000..16a106a942
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-gt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "d/MM/yyyy HH:mm:ss",
+ "mediumDate": "d/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "d/MM/yy HH:mm",
+ "shortDate": "d/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-gt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-hn.js b/1.1.5/i18n/angular-locale_es-hn.js
new file mode 100644
index 0000000000..8f789cecf9
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-hn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE dd 'de' MMMM 'de' y",
+ "longDate": "dd 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-hn",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-ic.js b/1.1.5/i18n/angular-locale_es-ic.js
new file mode 100644
index 0000000000..4df6bca5e8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-ic.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-ic",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-mx.js b/1.1.5/i18n/angular-locale_es-mx.js
new file mode 100644
index 0000000000..80418a1a7c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-mx.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-mx",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-ni.js b/1.1.5/i18n/angular-locale_es-ni.js
new file mode 100644
index 0000000000..1780a2cda4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-ni.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-ni",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-pa.js b/1.1.5/i18n/angular-locale_es-pa.js
new file mode 100644
index 0000000000..fce18ba63e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-pa.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "MM/dd/yyyy HH:mm:ss",
+ "mediumDate": "MM/dd/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "MM/dd/yy HH:mm",
+ "shortDate": "MM/dd/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-pa",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-pe.js b/1.1.5/i18n/angular-locale_es-pe.js
new file mode 100644
index 0000000000..826c7d0f2c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-pe.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "d/MM/yy HH:mm",
+ "shortDate": "d/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-pe",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-pr.js b/1.1.5/i18n/angular-locale_es-pr.js
new file mode 100644
index 0000000000..2abfe43e15
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-pr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "MM/dd/yyyy HH:mm:ss",
+ "mediumDate": "MM/dd/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "MM/dd/yy HH:mm",
+ "shortDate": "MM/dd/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-pr",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-py.js b/1.1.5/i18n/angular-locale_es-py.js
new file mode 100644
index 0000000000..61c65cd3f2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-py.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-py",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-sv.js b/1.1.5/i18n/angular-locale_es-sv.js
new file mode 100644
index 0000000000..a613d76896
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-sv.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-sv",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-us.js b/1.1.5/i18n/angular-locale_es-us.js
new file mode 100644
index 0000000000..2f605d1157
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-us.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "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",
+ "mediumTime": "h:mm:ss a",
+ "short": "M/d/yy h:mm a",
+ "shortDate": "M/d/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-us",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-uy.js b/1.1.5/i18n/angular-locale_es-uy.js
new file mode 100644
index 0000000000..c0ecff36f5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-uy.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-uy",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es-ve.js b/1.1.5/i18n/angular-locale_es-ve.js
new file mode 100644
index 0000000000..c988218b12
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es-ve.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es-ve",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_es.js b/1.1.5/i18n/angular-locale_es.js
new file mode 100644
index 0000000000..3f125b46ac
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_es.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "lunes",
+ "2": "martes",
+ "3": "mi\u00e9rcoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "enero",
+ "1": "febrero",
+ "2": "marzo",
+ "3": "abril",
+ "4": "mayo",
+ "5": "junio",
+ "6": "julio",
+ "7": "agosto",
+ "8": "septiembre",
+ "9": "octubre",
+ "10": "noviembre",
+ "11": "diciembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mi\u00e9",
+ "4": "jue",
+ "5": "vie",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "ene",
+ "1": "feb",
+ "2": "mar",
+ "3": "abr",
+ "4": "may",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "sep",
+ "9": "oct",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "es",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_et-ee.js b/1.1.5/i18n/angular-locale_et-ee.js
new file mode 100644
index 0000000000..8a6ff7648b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_et-ee.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "enne keskp\u00e4eva",
+ "1": "p\u00e4rast keskp\u00e4eva"
+ },
+ "DAY": {
+ "0": "p\u00fchap\u00e4ev",
+ "1": "esmasp\u00e4ev",
+ "2": "teisip\u00e4ev",
+ "3": "kolmap\u00e4ev",
+ "4": "neljap\u00e4ev",
+ "5": "reede",
+ "6": "laup\u00e4ev"
+ },
+ "MONTH": {
+ "0": "jaanuar",
+ "1": "veebruar",
+ "2": "m\u00e4rts",
+ "3": "aprill",
+ "4": "mai",
+ "5": "juuni",
+ "6": "juuli",
+ "7": "august",
+ "8": "september",
+ "9": "oktoober",
+ "10": "november",
+ "11": "detsember"
+ },
+ "SHORTDAY": {
+ "0": "P",
+ "1": "E",
+ "2": "T",
+ "3": "K",
+ "4": "N",
+ "5": "R",
+ "6": "L"
+ },
+ "SHORTMONTH": {
+ "0": "jaan",
+ "1": "veebr",
+ "2": "m\u00e4rts",
+ "3": "apr",
+ "4": "mai",
+ "5": "juuni",
+ "6": "juuli",
+ "7": "aug",
+ "8": "sept",
+ "9": "okt",
+ "10": "nov",
+ "11": "dets"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy H:mm.ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "H:mm.ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "et-ee",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_et.js b/1.1.5/i18n/angular-locale_et.js
new file mode 100644
index 0000000000..4bffdb6699
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_et.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "enne keskp\u00e4eva",
+ "1": "p\u00e4rast keskp\u00e4eva"
+ },
+ "DAY": {
+ "0": "p\u00fchap\u00e4ev",
+ "1": "esmasp\u00e4ev",
+ "2": "teisip\u00e4ev",
+ "3": "kolmap\u00e4ev",
+ "4": "neljap\u00e4ev",
+ "5": "reede",
+ "6": "laup\u00e4ev"
+ },
+ "MONTH": {
+ "0": "jaanuar",
+ "1": "veebruar",
+ "2": "m\u00e4rts",
+ "3": "aprill",
+ "4": "mai",
+ "5": "juuni",
+ "6": "juuli",
+ "7": "august",
+ "8": "september",
+ "9": "oktoober",
+ "10": "november",
+ "11": "detsember"
+ },
+ "SHORTDAY": {
+ "0": "P",
+ "1": "E",
+ "2": "T",
+ "3": "K",
+ "4": "N",
+ "5": "R",
+ "6": "L"
+ },
+ "SHORTMONTH": {
+ "0": "jaan",
+ "1": "veebr",
+ "2": "m\u00e4rts",
+ "3": "apr",
+ "4": "mai",
+ "5": "juuni",
+ "6": "juuli",
+ "7": "aug",
+ "8": "sept",
+ "9": "okt",
+ "10": "nov",
+ "11": "dets"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy H:mm.ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "H:mm.ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 0,
+ "lgSize": 0,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "et",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_eu-es.js b/1.1.5/i18n/angular-locale_eu-es.js
new file mode 100644
index 0000000000..6ff2293a78
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_eu-es.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "igandea",
+ "1": "astelehena",
+ "2": "asteartea",
+ "3": "asteazkena",
+ "4": "osteguna",
+ "5": "ostirala",
+ "6": "larunbata"
+ },
+ "MONTH": {
+ "0": "urtarrila",
+ "1": "otsaila",
+ "2": "martxoa",
+ "3": "apirila",
+ "4": "maiatza",
+ "5": "ekaina",
+ "6": "uztaila",
+ "7": "abuztua",
+ "8": "iraila",
+ "9": "urria",
+ "10": "azaroa",
+ "11": "abendua"
+ },
+ "SHORTDAY": {
+ "0": "ig",
+ "1": "al",
+ "2": "as",
+ "3": "az",
+ "4": "og",
+ "5": "or",
+ "6": "lr"
+ },
+ "SHORTMONTH": {
+ "0": "urt",
+ "1": "ots",
+ "2": "mar",
+ "3": "api",
+ "4": "mai",
+ "5": "eka",
+ "6": "uzt",
+ "7": "abu",
+ "8": "ira",
+ "9": "urr",
+ "10": "aza",
+ "11": "abe"
+ },
+ "fullDate": "EEEE, y'eko' MMMM'ren' dd'a'",
+ "longDate": "y'eko' MMM'ren' dd'a'",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "eu-es",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_eu.js b/1.1.5/i18n/angular-locale_eu.js
new file mode 100644
index 0000000000..e101cdba98
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_eu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "igandea",
+ "1": "astelehena",
+ "2": "asteartea",
+ "3": "asteazkena",
+ "4": "osteguna",
+ "5": "ostirala",
+ "6": "larunbata"
+ },
+ "MONTH": {
+ "0": "urtarrila",
+ "1": "otsaila",
+ "2": "martxoa",
+ "3": "apirila",
+ "4": "maiatza",
+ "5": "ekaina",
+ "6": "uztaila",
+ "7": "abuztua",
+ "8": "iraila",
+ "9": "urria",
+ "10": "azaroa",
+ "11": "abendua"
+ },
+ "SHORTDAY": {
+ "0": "ig",
+ "1": "al",
+ "2": "as",
+ "3": "az",
+ "4": "og",
+ "5": "or",
+ "6": "lr"
+ },
+ "SHORTMONTH": {
+ "0": "urt",
+ "1": "ots",
+ "2": "mar",
+ "3": "api",
+ "4": "mai",
+ "5": "eka",
+ "6": "uzt",
+ "7": "abu",
+ "8": "ira",
+ "9": "urr",
+ "10": "aza",
+ "11": "abe"
+ },
+ "fullDate": "EEEE, y'eko' MMMM'ren' dd'a'",
+ "longDate": "y'eko' MMM'ren' dd'a'",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "eu",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fa-af.js b/1.1.5/i18n/angular-locale_fa-af.js
new file mode 100644
index 0000000000..51ff8d1560
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fa-af.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
+ "1": "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
+ },
+ "DAY": {
+ "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
+ "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
+ "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
+ "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
+ "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
+ "5": "\u062c\u0645\u0639\u0647",
+ "6": "\u0634\u0646\u0628\u0647"
+ },
+ "MONTH": {
+ "0": "\u062c\u0646\u0648\u0631\u06cc",
+ "1": "\u0641\u0628\u0631\u0648\u0631\u06cc",
+ "2": "\u0645\u0627\u0631\u0686",
+ "3": "\u0627\u067e\u0631\u06cc\u0644",
+ "4": "\u0645\u06cc",
+ "5": "\u062c\u0648\u0646",
+ "6": "\u062c\u0648\u0644\u0627\u06cc",
+ "7": "\u0627\u06af\u0633\u062a",
+ "8": "\u0633\u067e\u062a\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
+ "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
+ "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
+ "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
+ "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
+ "5": "\u062c\u0645\u0639\u0647",
+ "6": "\u0634\u0646\u0628\u0647"
+ },
+ "SHORTMONTH": {
+ "0": "\u062c\u0646\u0648",
+ "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0622\u0648\u0631\u06cc\u0644",
+ "4": "\u0645\u0640\u06cc",
+ "5": "\u0698\u0648\u0626\u0646",
+ "6": "\u062c\u0648\u0644",
+ "7": "\u0627\u0648\u062a",
+ "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0628\u0631",
+ "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0645"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy/M/d H:mm",
+ "shortDate": "yyyy/M/d",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rial",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u200e(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u200e\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "fa-af",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fa-ir.js b/1.1.5/i18n/angular-locale_fa-ir.js
new file mode 100644
index 0000000000..714036d15c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fa-ir.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
+ "1": "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
+ },
+ "DAY": {
+ "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
+ "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
+ "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
+ "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
+ "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
+ "5": "\u062c\u0645\u0639\u0647",
+ "6": "\u0634\u0646\u0628\u0647"
+ },
+ "MONTH": {
+ "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
+ "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0622\u0648\u0631\u06cc\u0644",
+ "4": "\u0645\u0647\u0654",
+ "5": "\u0698\u0648\u0626\u0646",
+ "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
+ "7": "\u0627\u0648\u062a",
+ "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0628\u0631",
+ "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
+ "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
+ "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
+ "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
+ "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
+ "5": "\u062c\u0645\u0639\u0647",
+ "6": "\u0634\u0646\u0628\u0647"
+ },
+ "SHORTMONTH": {
+ "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
+ "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0622\u0648\u0631\u06cc\u0644",
+ "4": "\u0645\u0647\u0654",
+ "5": "\u0698\u0648\u0626\u0646",
+ "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
+ "7": "\u0627\u0648\u062a",
+ "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0628\u0631",
+ "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy/M/d H:mm",
+ "shortDate": "yyyy/M/d",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rial",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u200e(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u200e\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "fa-ir",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fa.js b/1.1.5/i18n/angular-locale_fa.js
new file mode 100644
index 0000000000..4d2f1a7cba
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fa.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
+ "1": "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
+ },
+ "DAY": {
+ "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
+ "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
+ "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
+ "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
+ "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
+ "5": "\u062c\u0645\u0639\u0647",
+ "6": "\u0634\u0646\u0628\u0647"
+ },
+ "MONTH": {
+ "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
+ "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0622\u0648\u0631\u06cc\u0644",
+ "4": "\u0645\u0647\u0654",
+ "5": "\u0698\u0648\u0626\u0646",
+ "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
+ "7": "\u0627\u0648\u062a",
+ "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0628\u0631",
+ "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
+ "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
+ "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
+ "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
+ "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
+ "5": "\u062c\u0645\u0639\u0647",
+ "6": "\u0634\u0646\u0628\u0647"
+ },
+ "SHORTMONTH": {
+ "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
+ "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
+ "2": "\u0645\u0627\u0631\u0633",
+ "3": "\u0622\u0648\u0631\u06cc\u0644",
+ "4": "\u0645\u0647\u0654",
+ "5": "\u0698\u0648\u0626\u0646",
+ "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
+ "7": "\u0627\u0648\u062a",
+ "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0628\u0631",
+ "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy/M/d H:mm",
+ "shortDate": "yyyy/M/d",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rial",
+ "DECIMAL_SEP": "\u066b",
+ "GROUP_SEP": "\u066c",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u200e(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u200e\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "fa",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fi-fi.js b/1.1.5/i18n/angular-locale_fi-fi.js
new file mode 100644
index 0000000000..25a30d0afa
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fi-fi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "ap.",
+ "1": "ip."
+ },
+ "DAY": {
+ "0": "sunnuntaina",
+ "1": "maanantaina",
+ "2": "tiistaina",
+ "3": "keskiviikkona",
+ "4": "torstaina",
+ "5": "perjantaina",
+ "6": "lauantaina"
+ },
+ "MONTH": {
+ "0": "tammikuuta",
+ "1": "helmikuuta",
+ "2": "maaliskuuta",
+ "3": "huhtikuuta",
+ "4": "toukokuuta",
+ "5": "kes\u00e4kuuta",
+ "6": "hein\u00e4kuuta",
+ "7": "elokuuta",
+ "8": "syyskuuta",
+ "9": "lokakuuta",
+ "10": "marraskuuta",
+ "11": "joulukuuta"
+ },
+ "SHORTDAY": {
+ "0": "su",
+ "1": "ma",
+ "2": "ti",
+ "3": "ke",
+ "4": "to",
+ "5": "pe",
+ "6": "la"
+ },
+ "SHORTMONTH": {
+ "0": "tammikuuta",
+ "1": "helmikuuta",
+ "2": "maaliskuuta",
+ "3": "huhtikuuta",
+ "4": "toukokuuta",
+ "5": "kes\u00e4kuuta",
+ "6": "hein\u00e4kuuta",
+ "7": "elokuuta",
+ "8": "syyskuuta",
+ "9": "lokakuuta",
+ "10": "marraskuuta",
+ "11": "joulukuuta"
+ },
+ "fullDate": "cccc, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.yyyy H.mm.ss",
+ "mediumDate": "d.M.yyyy",
+ "mediumTime": "H.mm.ss",
+ "short": "d.M.yyyy H.mm",
+ "shortDate": "d.M.yyyy",
+ "shortTime": "H.mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fi-fi",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fi.js b/1.1.5/i18n/angular-locale_fi.js
new file mode 100644
index 0000000000..e63c1b9e2f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "ap.",
+ "1": "ip."
+ },
+ "DAY": {
+ "0": "sunnuntaina",
+ "1": "maanantaina",
+ "2": "tiistaina",
+ "3": "keskiviikkona",
+ "4": "torstaina",
+ "5": "perjantaina",
+ "6": "lauantaina"
+ },
+ "MONTH": {
+ "0": "tammikuuta",
+ "1": "helmikuuta",
+ "2": "maaliskuuta",
+ "3": "huhtikuuta",
+ "4": "toukokuuta",
+ "5": "kes\u00e4kuuta",
+ "6": "hein\u00e4kuuta",
+ "7": "elokuuta",
+ "8": "syyskuuta",
+ "9": "lokakuuta",
+ "10": "marraskuuta",
+ "11": "joulukuuta"
+ },
+ "SHORTDAY": {
+ "0": "su",
+ "1": "ma",
+ "2": "ti",
+ "3": "ke",
+ "4": "to",
+ "5": "pe",
+ "6": "la"
+ },
+ "SHORTMONTH": {
+ "0": "tammikuuta",
+ "1": "helmikuuta",
+ "2": "maaliskuuta",
+ "3": "huhtikuuta",
+ "4": "toukokuuta",
+ "5": "kes\u00e4kuuta",
+ "6": "hein\u00e4kuuta",
+ "7": "elokuuta",
+ "8": "syyskuuta",
+ "9": "lokakuuta",
+ "10": "marraskuuta",
+ "11": "joulukuuta"
+ },
+ "fullDate": "cccc, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.yyyy H.mm.ss",
+ "mediumDate": "d.M.yyyy",
+ "mediumTime": "H.mm.ss",
+ "short": "d.M.yyyy H.mm",
+ "shortDate": "d.M.yyyy",
+ "shortTime": "H.mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fi",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fil-ph.js b/1.1.5/i18n/angular-locale_fil-ph.js
new file mode 100644
index 0000000000..eba93762e8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fil-ph.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Linggo",
+ "1": "Lunes",
+ "2": "Martes",
+ "3": "Miyerkules",
+ "4": "Huwebes",
+ "5": "Biyernes",
+ "6": "Sabado"
+ },
+ "MONTH": {
+ "0": "Enero",
+ "1": "Pebrero",
+ "2": "Marso",
+ "3": "Abril",
+ "4": "Mayo",
+ "5": "Hunyo",
+ "6": "Hulyo",
+ "7": "Agosto",
+ "8": "Setyembre",
+ "9": "Oktubre",
+ "10": "Nobyembre",
+ "11": "Disyembre"
+ },
+ "SHORTDAY": {
+ "0": "Lin",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "Mye",
+ "4": "Huw",
+ "5": "Bye",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Ene",
+ "1": "Peb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "May",
+ "5": "Hun",
+ "6": "Hul",
+ "7": "Ago",
+ "8": "Set",
+ "9": "Okt",
+ "10": "Nob",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE, MMMM dd y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y HH:mm:ss",
+ "mediumDate": "MMM d, y",
+ "mediumTime": "HH:mm:ss",
+ "short": "M/d/yy HH:mm",
+ "shortDate": "M/d/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b1",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "fil-ph",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fil.js b/1.1.5/i18n/angular-locale_fil.js
new file mode 100644
index 0000000000..88f30609fa
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fil.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Linggo",
+ "1": "Lunes",
+ "2": "Martes",
+ "3": "Miyerkules",
+ "4": "Huwebes",
+ "5": "Biyernes",
+ "6": "Sabado"
+ },
+ "MONTH": {
+ "0": "Enero",
+ "1": "Pebrero",
+ "2": "Marso",
+ "3": "Abril",
+ "4": "Mayo",
+ "5": "Hunyo",
+ "6": "Hulyo",
+ "7": "Agosto",
+ "8": "Setyembre",
+ "9": "Oktubre",
+ "10": "Nobyembre",
+ "11": "Disyembre"
+ },
+ "SHORTDAY": {
+ "0": "Lin",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "Mye",
+ "4": "Huw",
+ "5": "Bye",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Ene",
+ "1": "Peb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "May",
+ "5": "Hun",
+ "6": "Hul",
+ "7": "Ago",
+ "8": "Set",
+ "9": "Okt",
+ "10": "Nob",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE, MMMM dd y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y HH:mm:ss",
+ "mediumDate": "MMM d, y",
+ "mediumTime": "HH:mm:ss",
+ "short": "M/d/yy HH:mm",
+ "shortDate": "M/d/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b1",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "fil",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-be.js b/1.1.5/i18n/angular-locale_fr-be.js
new file mode 100644
index 0000000000..015ac1142b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-be.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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/MM/yy HH:mm",
+ "shortDate": "d/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-be",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-bf.js b/1.1.5/i18n/angular-locale_fr-bf.js
new file mode 100644
index 0000000000..b262351d62
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-bf.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-bf",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-bi.js b/1.1.5/i18n/angular-locale_fr-bi.js
new file mode 100644
index 0000000000..ba2f179421
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-bi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-bi",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-bj.js b/1.1.5/i18n/angular-locale_fr-bj.js
new file mode 100644
index 0000000000..9eb32657e7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-bj.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-bj",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-bl.js b/1.1.5/i18n/angular-locale_fr-bl.js
new file mode 100644
index 0000000000..a6febf3ef3
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-bl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-bl",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-ca.js b/1.1.5/i18n/angular-locale_fr-ca.js
new file mode 100644
index 0000000000..54962e19ce
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-ca.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "yyyy-MM-dd HH:mm:ss",
+ "mediumDate": "yyyy-MM-dd",
+ "mediumTime": "HH:mm:ss",
+ "short": "yy-MM-dd HH:mm",
+ "shortDate": "yy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-ca",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-cd.js b/1.1.5/i18n/angular-locale_fr-cd.js
new file mode 100644
index 0000000000..59ba29ffa8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-cd.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-cd",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-cf.js b/1.1.5/i18n/angular-locale_fr-cf.js
new file mode 100644
index 0000000000..8e05c39e9f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-cf.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-cf",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-cg.js b/1.1.5/i18n/angular-locale_fr-cg.js
new file mode 100644
index 0000000000..990a608287
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-cg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-cg",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-ch.js b/1.1.5/i18n/angular-locale_fr-ch.js
new file mode 100644
index 0000000000..09a6df83e2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-ch.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-ch",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-ci.js b/1.1.5/i18n/angular-locale_fr-ci.js
new file mode 100644
index 0000000000..04238f27a4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-ci.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-ci",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-cm.js b/1.1.5/i18n/angular-locale_fr-cm.js
new file mode 100644
index 0000000000..b5d68b02b5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-cm.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-cm",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-dj.js b/1.1.5/i18n/angular-locale_fr-dj.js
new file mode 100644
index 0000000000..fad6b90a11
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-dj.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-dj",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-fr.js b/1.1.5/i18n/angular-locale_fr-fr.js
new file mode 100644
index 0000000000..df7963b358
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-fr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-fr",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-ga.js b/1.1.5/i18n/angular-locale_fr-ga.js
new file mode 100644
index 0000000000..e44b82f12c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-ga.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-ga",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-gf.js b/1.1.5/i18n/angular-locale_fr-gf.js
new file mode 100644
index 0000000000..933bba7dd0
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-gf.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-gf",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-gn.js b/1.1.5/i18n/angular-locale_fr-gn.js
new file mode 100644
index 0000000000..ee63d96a60
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-gn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-gn",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-gp.js b/1.1.5/i18n/angular-locale_fr-gp.js
new file mode 100644
index 0000000000..4ade36e5c1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-gp.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-gp",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-gq.js b/1.1.5/i18n/angular-locale_fr-gq.js
new file mode 100644
index 0000000000..939f069995
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-gq.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-gq",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-km.js b/1.1.5/i18n/angular-locale_fr-km.js
new file mode 100644
index 0000000000..466b2243f2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-km.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-km",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-lu.js b/1.1.5/i18n/angular-locale_fr-lu.js
new file mode 100644
index 0000000000..0c40ef86a5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-lu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-lu",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-mc.js b/1.1.5/i18n/angular-locale_fr-mc.js
new file mode 100644
index 0000000000..0717749904
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-mc.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-mc",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-mf.js b/1.1.5/i18n/angular-locale_fr-mf.js
new file mode 100644
index 0000000000..99a8b9ef81
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-mf.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-mf",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-mg.js b/1.1.5/i18n/angular-locale_fr-mg.js
new file mode 100644
index 0000000000..59abeb30c7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-mg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-mg",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-ml.js b/1.1.5/i18n/angular-locale_fr-ml.js
new file mode 100644
index 0000000000..13c333271a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-ml.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-ml",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-mq.js b/1.1.5/i18n/angular-locale_fr-mq.js
new file mode 100644
index 0000000000..9e757d1d70
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-mq.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-mq",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-ne.js b/1.1.5/i18n/angular-locale_fr-ne.js
new file mode 100644
index 0000000000..e4e4b772b2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-ne.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-ne",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-re.js b/1.1.5/i18n/angular-locale_fr-re.js
new file mode 100644
index 0000000000..844de6b813
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-re.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-re",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-rw.js b/1.1.5/i18n/angular-locale_fr-rw.js
new file mode 100644
index 0000000000..ef84535bc7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-rw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-rw",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-sn.js b/1.1.5/i18n/angular-locale_fr-sn.js
new file mode 100644
index 0000000000..ca496daeac
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-sn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-sn",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-td.js b/1.1.5/i18n/angular-locale_fr-td.js
new file mode 100644
index 0000000000..4efa43347b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-td.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-td",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-tg.js b/1.1.5/i18n/angular-locale_fr-tg.js
new file mode 100644
index 0000000000..24b76ca97f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-tg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "février",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "août",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "décembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "févr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "août",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "déc."
+ },
+ "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": "€",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": " ",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": " \u00A4)",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "fr-tg",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr-yt.js b/1.1.5/i18n/angular-locale_fr-yt.js
new file mode 100644
index 0000000000..fb3be5d309
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr-yt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr-yt",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_fr.js b/1.1.5/i18n/angular-locale_fr.js
new file mode 100644
index 0000000000..23cac6b18a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_fr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "dimanche",
+ "1": "lundi",
+ "2": "mardi",
+ "3": "mercredi",
+ "4": "jeudi",
+ "5": "vendredi",
+ "6": "samedi"
+ },
+ "MONTH": {
+ "0": "janvier",
+ "1": "f\u00e9vrier",
+ "2": "mars",
+ "3": "avril",
+ "4": "mai",
+ "5": "juin",
+ "6": "juillet",
+ "7": "ao\u00fbt",
+ "8": "septembre",
+ "9": "octobre",
+ "10": "novembre",
+ "11": "d\u00e9cembre"
+ },
+ "SHORTDAY": {
+ "0": "dim.",
+ "1": "lun.",
+ "2": "mar.",
+ "3": "mer.",
+ "4": "jeu.",
+ "5": "ven.",
+ "6": "sam."
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "f\u00e9vr.",
+ "2": "mars",
+ "3": "avr.",
+ "4": "mai",
+ "5": "juin",
+ "6": "juil.",
+ "7": "ao\u00fbt",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "d\u00e9c."
+ },
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "fr",
+ "pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_gl-es.js b/1.1.5/i18n/angular-locale_gl-es.js
new file mode 100644
index 0000000000..e73f2ec5d3
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_gl-es.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "Domingo",
+ "1": "Luns",
+ "2": "Martes",
+ "3": "M\u00e9rcores",
+ "4": "Xoves",
+ "5": "Venres",
+ "6": "S\u00e1bado"
+ },
+ "MONTH": {
+ "0": "Xaneiro",
+ "1": "Febreiro",
+ "2": "Marzo",
+ "3": "Abril",
+ "4": "Maio",
+ "5": "Xu\u00f1o",
+ "6": "Xullo",
+ "7": "Agosto",
+ "8": "Setembro",
+ "9": "Outubro",
+ "10": "Novembro",
+ "11": "Decembro"
+ },
+ "SHORTDAY": {
+ "0": "Dom",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "M\u00e9r",
+ "4": "Xov",
+ "5": "Ven",
+ "6": "S\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "Xan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "Mai",
+ "5": "Xu\u00f1",
+ "6": "Xul",
+ "7": "Ago",
+ "8": "Set",
+ "9": "Out",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd 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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "gl-es",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_gl.js b/1.1.5/i18n/angular-locale_gl.js
new file mode 100644
index 0000000000..3a42b42494
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_gl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "Domingo",
+ "1": "Luns",
+ "2": "Martes",
+ "3": "M\u00e9rcores",
+ "4": "Xoves",
+ "5": "Venres",
+ "6": "S\u00e1bado"
+ },
+ "MONTH": {
+ "0": "Xaneiro",
+ "1": "Febreiro",
+ "2": "Marzo",
+ "3": "Abril",
+ "4": "Maio",
+ "5": "Xu\u00f1o",
+ "6": "Xullo",
+ "7": "Agosto",
+ "8": "Setembro",
+ "9": "Outubro",
+ "10": "Novembro",
+ "11": "Decembro"
+ },
+ "SHORTDAY": {
+ "0": "Dom",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "M\u00e9r",
+ "4": "Xov",
+ "5": "Ven",
+ "6": "S\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "Xan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "Mai",
+ "5": "Xu\u00f1",
+ "6": "Xul",
+ "7": "Ago",
+ "8": "Set",
+ "9": "Out",
+ "10": "Nov",
+ "11": "Dec"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "dd 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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "gl",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_gsw-ch.js b/1.1.5/i18n/angular-locale_gsw-ch.js
new file mode 100644
index 0000000000..1f18587af1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_gsw-ch.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nam."
+ },
+ "DAY": {
+ "0": "Sunntig",
+ "1": "M\u00e4\u00e4ntig",
+ "2": "Ziischtig",
+ "3": "Mittwuch",
+ "4": "Dunschtig",
+ "5": "Friitig",
+ "6": "Samschtig"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Auguscht",
+ "8": "Sept\u00e4mber",
+ "9": "Oktoober",
+ "10": "Nov\u00e4mber",
+ "11": "Dez\u00e4mber"
+ },
+ "SHORTDAY": {
+ "0": "Su.",
+ "1": "M\u00e4.",
+ "2": "Zi.",
+ "3": "Mi.",
+ "4": "Du.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "CHF",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": "\u2019",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "gsw-ch",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_gsw.js b/1.1.5/i18n/angular-locale_gsw.js
new file mode 100644
index 0000000000..fc978d2999
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_gsw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "vorm.",
+ "1": "nam."
+ },
+ "DAY": {
+ "0": "Sunntig",
+ "1": "M\u00e4\u00e4ntig",
+ "2": "Ziischtig",
+ "3": "Mittwuch",
+ "4": "Dunschtig",
+ "5": "Friitig",
+ "6": "Samschtig"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "M\u00e4rz",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Auguscht",
+ "8": "Sept\u00e4mber",
+ "9": "Oktoober",
+ "10": "Nov\u00e4mber",
+ "11": "Dez\u00e4mber"
+ },
+ "SHORTDAY": {
+ "0": "Su.",
+ "1": "M\u00e4.",
+ "2": "Zi.",
+ "3": "Mi.",
+ "4": "Du.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "M\u00e4r",
+ "3": "Apr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aug",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "CHF",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": "\u2019",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "gsw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_gu-in.js b/1.1.5/i18n/angular-locale_gu-in.js
new file mode 100644
index 0000000000..27840585b9
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_gu-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0",
+ "1": "\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0",
+ "2": "\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0",
+ "3": "\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0",
+ "4": "\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0",
+ "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0",
+ "6": "\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"
+ },
+ "MONTH": {
+ "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0",
+ "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0",
+ "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
+ "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
+ "4": "\u0aae\u0ac7",
+ "5": "\u0a9c\u0ac2\u0aa8",
+ "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
+ "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0",
+ "10": "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "11": "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"
+ },
+ "SHORTDAY": {
+ "0": "\u0ab0\u0ab5\u0abf",
+ "1": "\u0ab8\u0acb\u0aae",
+ "2": "\u0aae\u0a82\u0a97\u0ab3",
+ "3": "\u0aac\u0ac1\u0aa7",
+ "4": "\u0a97\u0ac1\u0ab0\u0ac1",
+ "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0",
+ "6": "\u0ab6\u0aa8\u0abf"
+ },
+ "SHORTMONTH": {
+ "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1",
+ "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1",
+ "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
+ "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
+ "4": "\u0aae\u0ac7",
+ "5": "\u0a9c\u0ac2\u0aa8",
+ "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
+ "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7",
+ "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb",
+ "10": "\u0aa8\u0ab5\u0ac7",
+ "11": "\u0aa1\u0abf\u0ab8\u0ac7"
+ },
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "d MMMM, y",
+ "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",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "gu-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_gu.js b/1.1.5/i18n/angular-locale_gu.js
new file mode 100644
index 0000000000..34a7fbcc06
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_gu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0",
+ "1": "\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0",
+ "2": "\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0",
+ "3": "\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0",
+ "4": "\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0",
+ "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0",
+ "6": "\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"
+ },
+ "MONTH": {
+ "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0",
+ "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0",
+ "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
+ "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
+ "4": "\u0aae\u0ac7",
+ "5": "\u0a9c\u0ac2\u0aa8",
+ "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
+ "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0",
+ "10": "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0",
+ "11": "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"
+ },
+ "SHORTDAY": {
+ "0": "\u0ab0\u0ab5\u0abf",
+ "1": "\u0ab8\u0acb\u0aae",
+ "2": "\u0aae\u0a82\u0a97\u0ab3",
+ "3": "\u0aac\u0ac1\u0aa7",
+ "4": "\u0a97\u0ac1\u0ab0\u0ac1",
+ "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0",
+ "6": "\u0ab6\u0aa8\u0abf"
+ },
+ "SHORTMONTH": {
+ "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1",
+ "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1",
+ "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
+ "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
+ "4": "\u0aae\u0ac7",
+ "5": "\u0a9c\u0ac2\u0aa8",
+ "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
+ "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
+ "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7",
+ "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb",
+ "10": "\u0aa8\u0ab5\u0ac7",
+ "11": "\u0aa1\u0abf\u0ab8\u0ac7"
+ },
+ "fullDate": "EEEE, d MMMM, y",
+ "longDate": "d MMMM, y",
+ "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",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "gu",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_haw.js b/1.1.5/i18n/angular-locale_haw.js
new file mode 100644
index 0000000000..d898946c1a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_haw.js
@@ -0,0 +1,4 @@
+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":{"MONTH":["Ianuali","Pepeluali","Malaki","ʻApelila","Mei","Iune","Iulai","ʻAukake","Kepakemapa","ʻOkakopa","Nowemapa","Kekemapa"],"SHORTMONTH":["Ian.","Pep.","Mal.","ʻAp.","Mei","Iun.","Iul.","ʻAu.","Kep.","ʻOk.","Now.","Kek."],"DAY":["Lāpule","Poʻakahi","Poʻalua","Poʻakolu","Poʻahā","Poʻalima","Poʻaono"],"SHORTDAY":["LP","P1","P2","P3","P4","P5","P6"],"AMPMS":["AM","PM"],"medium":"d MMM y h:mm:ss a","short":"d/M/yy h:mm a","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"d MMM y","shortDate":"d/M/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"id":"haw"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_he-il.js b/1.1.5/i18n/angular-locale_he-il.js
new file mode 100644
index 0000000000..e67690be0f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_he-il.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
+ "1": "\u05d0\u05d7\u05d4\u05f4\u05e6"
+ },
+ "DAY": {
+ "0": "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
+ "1": "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
+ "2": "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
+ "3": "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
+ "4": "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
+ "5": "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
+ "6": "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"
+ },
+ "MONTH": {
+ "0": "\u05d9\u05e0\u05d5\u05d0\u05e8",
+ "1": "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
+ "2": "\u05de\u05e8\u05e5",
+ "3": "\u05d0\u05e4\u05e8\u05d9\u05dc",
+ "4": "\u05de\u05d0\u05d9",
+ "5": "\u05d9\u05d5\u05e0\u05d9",
+ "6": "\u05d9\u05d5\u05dc\u05d9",
+ "7": "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
+ "8": "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
+ "9": "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
+ "10": "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
+ "11": "\u05d3\u05e6\u05de\u05d1\u05e8"
+ },
+ "SHORTDAY": {
+ "0": "\u05d9\u05d5\u05dd \u05d0\u05f3",
+ "1": "\u05d9\u05d5\u05dd \u05d1\u05f3",
+ "2": "\u05d9\u05d5\u05dd \u05d2\u05f3",
+ "3": "\u05d9\u05d5\u05dd \u05d3\u05f3",
+ "4": "\u05d9\u05d5\u05dd \u05d4\u05f3",
+ "5": "\u05d9\u05d5\u05dd \u05d5\u05f3",
+ "6": "\u05e9\u05d1\u05ea"
+ },
+ "SHORTMONTH": {
+ "0": "\u05d9\u05e0\u05d5",
+ "1": "\u05e4\u05d1\u05e8",
+ "2": "\u05de\u05e8\u05e5",
+ "3": "\u05d0\u05e4\u05e8",
+ "4": "\u05de\u05d0\u05d9",
+ "5": "\u05d9\u05d5\u05e0",
+ "6": "\u05d9\u05d5\u05dc",
+ "7": "\u05d0\u05d5\u05d2",
+ "8": "\u05e1\u05e4\u05d8",
+ "9": "\u05d0\u05d5\u05e7",
+ "10": "\u05e0\u05d5\u05d1",
+ "11": "\u05d3\u05e6\u05de"
+ },
+ "fullDate": "EEEE, d \u05d1MMMM y",
+ "longDate": "d \u05d1MMMM y",
+ "medium": "d \u05d1MMM yyyy HH:mm:ss",
+ "mediumDate": "d \u05d1MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20aa",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "he-il",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_he.js b/1.1.5/i18n/angular-locale_he.js
new file mode 100644
index 0000000000..f343ce60eb
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_he.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
+ "1": "\u05d0\u05d7\u05d4\u05f4\u05e6"
+ },
+ "DAY": {
+ "0": "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
+ "1": "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
+ "2": "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
+ "3": "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
+ "4": "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
+ "5": "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
+ "6": "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"
+ },
+ "MONTH": {
+ "0": "\u05d9\u05e0\u05d5\u05d0\u05e8",
+ "1": "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
+ "2": "\u05de\u05e8\u05e5",
+ "3": "\u05d0\u05e4\u05e8\u05d9\u05dc",
+ "4": "\u05de\u05d0\u05d9",
+ "5": "\u05d9\u05d5\u05e0\u05d9",
+ "6": "\u05d9\u05d5\u05dc\u05d9",
+ "7": "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
+ "8": "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
+ "9": "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
+ "10": "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
+ "11": "\u05d3\u05e6\u05de\u05d1\u05e8"
+ },
+ "SHORTDAY": {
+ "0": "\u05d9\u05d5\u05dd \u05d0\u05f3",
+ "1": "\u05d9\u05d5\u05dd \u05d1\u05f3",
+ "2": "\u05d9\u05d5\u05dd \u05d2\u05f3",
+ "3": "\u05d9\u05d5\u05dd \u05d3\u05f3",
+ "4": "\u05d9\u05d5\u05dd \u05d4\u05f3",
+ "5": "\u05d9\u05d5\u05dd \u05d5\u05f3",
+ "6": "\u05e9\u05d1\u05ea"
+ },
+ "SHORTMONTH": {
+ "0": "\u05d9\u05e0\u05d5",
+ "1": "\u05e4\u05d1\u05e8",
+ "2": "\u05de\u05e8\u05e5",
+ "3": "\u05d0\u05e4\u05e8",
+ "4": "\u05de\u05d0\u05d9",
+ "5": "\u05d9\u05d5\u05e0",
+ "6": "\u05d9\u05d5\u05dc",
+ "7": "\u05d0\u05d5\u05d2",
+ "8": "\u05e1\u05e4\u05d8",
+ "9": "\u05d0\u05d5\u05e7",
+ "10": "\u05e0\u05d5\u05d1",
+ "11": "\u05d3\u05e6\u05de"
+ },
+ "fullDate": "EEEE, d \u05d1MMMM y",
+ "longDate": "d \u05d1MMMM y",
+ "medium": "d \u05d1MMM yyyy HH:mm:ss",
+ "mediumDate": "d \u05d1MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20aa",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "he",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_hi-in.js b/1.1.5/i18n/angular-locale_hi-in.js
new file mode 100644
index 0000000000..2fd2c638db
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_hi-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
+ "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
+ "2": "\u092e\u0902\u0917\u0932\u0935\u093e\u0930",
+ "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
+ "4": "\u092c\u0943\u0939\u0938\u094d\u092a\u0924\u093f\u0935\u093e\u0930",
+ "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
+ "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
+ },
+ "MONTH": {
+ "0": "\u091c\u0928\u0935\u0930\u0940",
+ "1": "\u092b\u0930\u0935\u0930\u0940",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
+ "4": "\u092e\u0908",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u093e\u0908",
+ "7": "\u0905\u0917\u0938\u094d\u0924",
+ "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
+ "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
+ "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
+ "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
+ },
+ "SHORTDAY": {
+ "0": "\u0930\u0935\u093f.",
+ "1": "\u0938\u094b\u092e.",
+ "2": "\u092e\u0902\u0917\u0932.",
+ "3": "\u092c\u0941\u0927.",
+ "4": "\u092c\u0943\u0939.",
+ "5": "\u0936\u0941\u0915\u094d\u0930.",
+ "6": "\u0936\u0928\u093f."
+ },
+ "SHORTMONTH": {
+ "0": "\u091c\u0928\u0935\u0930\u0940",
+ "1": "\u092b\u0930\u0935\u0930\u0940",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
+ "4": "\u092e\u0908",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u093e\u0908",
+ "7": "\u0905\u0917\u0938\u094d\u0924",
+ "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
+ "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
+ "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
+ "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd-MM-yyyy h:mm:ss a",
+ "mediumDate": "dd-MM-yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d-M-yy h:mm a",
+ "shortDate": "d-M-yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "hi-in",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_hi.js b/1.1.5/i18n/angular-locale_hi.js
new file mode 100644
index 0000000000..f63259ca03
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_hi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
+ "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
+ "2": "\u092e\u0902\u0917\u0932\u0935\u093e\u0930",
+ "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
+ "4": "\u092c\u0943\u0939\u0938\u094d\u092a\u0924\u093f\u0935\u093e\u0930",
+ "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
+ "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
+ },
+ "MONTH": {
+ "0": "\u091c\u0928\u0935\u0930\u0940",
+ "1": "\u092b\u0930\u0935\u0930\u0940",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
+ "4": "\u092e\u0908",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u093e\u0908",
+ "7": "\u0905\u0917\u0938\u094d\u0924",
+ "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
+ "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
+ "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
+ "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
+ },
+ "SHORTDAY": {
+ "0": "\u0930\u0935\u093f.",
+ "1": "\u0938\u094b\u092e.",
+ "2": "\u092e\u0902\u0917\u0932.",
+ "3": "\u092c\u0941\u0927.",
+ "4": "\u092c\u0943\u0939.",
+ "5": "\u0936\u0941\u0915\u094d\u0930.",
+ "6": "\u0936\u0928\u093f."
+ },
+ "SHORTMONTH": {
+ "0": "\u091c\u0928\u0935\u0930\u0940",
+ "1": "\u092b\u0930\u0935\u0930\u0940",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
+ "4": "\u092e\u0908",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u093e\u0908",
+ "7": "\u0905\u0917\u0938\u094d\u0924",
+ "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
+ "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
+ "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
+ "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd-MM-yyyy h:mm:ss a",
+ "mediumDate": "dd-MM-yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d-M-yy h:mm a",
+ "shortDate": "d-M-yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "hi",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_hr-hr.js b/1.1.5/i18n/angular-locale_hr-hr.js
new file mode 100644
index 0000000000..232c27c78c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_hr-hr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "nedjelja",
+ "1": "ponedjeljak",
+ "2": "utorak",
+ "3": "srijeda",
+ "4": "\u010detvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "sije\u010dnja",
+ "1": "velja\u010de",
+ "2": "o\u017eujka",
+ "3": "travnja",
+ "4": "svibnja",
+ "5": "lipnja",
+ "6": "srpnja",
+ "7": "kolovoza",
+ "8": "rujna",
+ "9": "listopada",
+ "10": "studenoga",
+ "11": "prosinca"
+ },
+ "SHORTDAY": {
+ "0": "ned",
+ "1": "pon",
+ "2": "uto",
+ "3": "sri",
+ "4": "\u010det",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "sij",
+ "1": "velj",
+ "2": "o\u017eu",
+ "3": "tra",
+ "4": "svi",
+ "5": "lip",
+ "6": "srp",
+ "7": "kol",
+ "8": "ruj",
+ "9": "lis",
+ "10": "stu",
+ "11": "pro"
+ },
+ "fullDate": "EEEE, d. MMMM y.",
+ "longDate": "d. MMMM y.",
+ "medium": "d. M. y. HH:mm:ss",
+ "mediumDate": "d. M. y.",
+ "mediumTime": "HH:mm:ss",
+ "short": "d.M.y. HH:mm",
+ "shortDate": "d.M.y.",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kn",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "hr-hr",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_hr.js b/1.1.5/i18n/angular-locale_hr.js
new file mode 100644
index 0000000000..420097423c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_hr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "nedjelja",
+ "1": "ponedjeljak",
+ "2": "utorak",
+ "3": "srijeda",
+ "4": "\u010detvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "sije\u010dnja",
+ "1": "velja\u010de",
+ "2": "o\u017eujka",
+ "3": "travnja",
+ "4": "svibnja",
+ "5": "lipnja",
+ "6": "srpnja",
+ "7": "kolovoza",
+ "8": "rujna",
+ "9": "listopada",
+ "10": "studenoga",
+ "11": "prosinca"
+ },
+ "SHORTDAY": {
+ "0": "ned",
+ "1": "pon",
+ "2": "uto",
+ "3": "sri",
+ "4": "\u010det",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "sij",
+ "1": "velj",
+ "2": "o\u017eu",
+ "3": "tra",
+ "4": "svi",
+ "5": "lip",
+ "6": "srp",
+ "7": "kol",
+ "8": "ruj",
+ "9": "lis",
+ "10": "stu",
+ "11": "pro"
+ },
+ "fullDate": "EEEE, d. MMMM y.",
+ "longDate": "d. MMMM y.",
+ "medium": "d. M. y. HH:mm:ss",
+ "mediumDate": "d. M. y.",
+ "mediumTime": "HH:mm:ss",
+ "short": "d.M.y. HH:mm",
+ "shortDate": "d.M.y.",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kn",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "hr",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_hu-hu.js b/1.1.5/i18n/angular-locale_hu-hu.js
new file mode 100644
index 0000000000..b462565535
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_hu-hu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "de.",
+ "1": "du."
+ },
+ "DAY": {
+ "0": "vas\u00e1rnap",
+ "1": "h\u00e9tf\u0151",
+ "2": "kedd",
+ "3": "szerda",
+ "4": "cs\u00fct\u00f6rt\u00f6k",
+ "5": "p\u00e9ntek",
+ "6": "szombat"
+ },
+ "MONTH": {
+ "0": "janu\u00e1r",
+ "1": "febru\u00e1r",
+ "2": "m\u00e1rcius",
+ "3": "\u00e1prilis",
+ "4": "m\u00e1jus",
+ "5": "j\u00fanius",
+ "6": "j\u00falius",
+ "7": "augusztus",
+ "8": "szeptember",
+ "9": "okt\u00f3ber",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "V",
+ "1": "H",
+ "2": "K",
+ "3": "Sze",
+ "4": "Cs",
+ "5": "P",
+ "6": "Szo"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "febr.",
+ "2": "m\u00e1rc.",
+ "3": "\u00e1pr.",
+ "4": "m\u00e1j.",
+ "5": "j\u00fan.",
+ "6": "j\u00fal.",
+ "7": "aug.",
+ "8": "szept.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "y. MMMM d., EEEE",
+ "longDate": "y. MMMM d.",
+ "medium": "yyyy.MM.dd. H:mm:ss",
+ "mediumDate": "yyyy.MM.dd.",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy.MM.dd. H:mm",
+ "shortDate": "yyyy.MM.dd.",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Ft",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "hu-hu",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_hu.js b/1.1.5/i18n/angular-locale_hu.js
new file mode 100644
index 0000000000..5881c61ecc
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_hu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "de.",
+ "1": "du."
+ },
+ "DAY": {
+ "0": "vas\u00e1rnap",
+ "1": "h\u00e9tf\u0151",
+ "2": "kedd",
+ "3": "szerda",
+ "4": "cs\u00fct\u00f6rt\u00f6k",
+ "5": "p\u00e9ntek",
+ "6": "szombat"
+ },
+ "MONTH": {
+ "0": "janu\u00e1r",
+ "1": "febru\u00e1r",
+ "2": "m\u00e1rcius",
+ "3": "\u00e1prilis",
+ "4": "m\u00e1jus",
+ "5": "j\u00fanius",
+ "6": "j\u00falius",
+ "7": "augusztus",
+ "8": "szeptember",
+ "9": "okt\u00f3ber",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "V",
+ "1": "H",
+ "2": "K",
+ "3": "Sze",
+ "4": "Cs",
+ "5": "P",
+ "6": "Szo"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "febr.",
+ "2": "m\u00e1rc.",
+ "3": "\u00e1pr.",
+ "4": "m\u00e1j.",
+ "5": "j\u00fan.",
+ "6": "j\u00fal.",
+ "7": "aug.",
+ "8": "szept.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "y. MMMM d., EEEE",
+ "longDate": "y. MMMM d.",
+ "medium": "yyyy.MM.dd. H:mm:ss",
+ "mediumDate": "yyyy.MM.dd.",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy.MM.dd. H:mm",
+ "shortDate": "yyyy.MM.dd.",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Ft",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "hu",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_id-id.js b/1.1.5/i18n/angular-locale_id-id.js
new file mode 100644
index 0000000000..cfb57b2b47
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_id-id.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Minggu",
+ "1": "Senin",
+ "2": "Selasa",
+ "3": "Rabu",
+ "4": "Kamis",
+ "5": "Jumat",
+ "6": "Sabtu"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Maret",
+ "3": "April",
+ "4": "Mei",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Agustus",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Desember"
+ },
+ "SHORTDAY": {
+ "0": "Min",
+ "1": "Sen",
+ "2": "Sel",
+ "3": "Rab",
+ "4": "Kam",
+ "5": "Jum",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Agt",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "fullDate": "EEEE, dd MMMM yyyy",
+ "longDate": "d MMMM yyyy",
+ "medium": "d MMM yyyy HH:mm:ss",
+ "mediumDate": "d MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rp",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "id-id",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_id.js b/1.1.5/i18n/angular-locale_id.js
new file mode 100644
index 0000000000..be1261608c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_id.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Minggu",
+ "1": "Senin",
+ "2": "Selasa",
+ "3": "Rabu",
+ "4": "Kamis",
+ "5": "Jumat",
+ "6": "Sabtu"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Maret",
+ "3": "April",
+ "4": "Mei",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Agustus",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Desember"
+ },
+ "SHORTDAY": {
+ "0": "Min",
+ "1": "Sen",
+ "2": "Sel",
+ "3": "Rab",
+ "4": "Kam",
+ "5": "Jum",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Agt",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "fullDate": "EEEE, dd MMMM yyyy",
+ "longDate": "d MMMM yyyy",
+ "medium": "d MMM yyyy HH:mm:ss",
+ "mediumDate": "d MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rp",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "id",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_in.js b/1.1.5/i18n/angular-locale_in.js
new file mode 100644
index 0000000000..086515175d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Minggu",
+ "1": "Senin",
+ "2": "Selasa",
+ "3": "Rabu",
+ "4": "Kamis",
+ "5": "Jumat",
+ "6": "Sabtu"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Maret",
+ "3": "April",
+ "4": "Mei",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Agustus",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Desember"
+ },
+ "SHORTDAY": {
+ "0": "Min",
+ "1": "Sen",
+ "2": "Sel",
+ "3": "Rab",
+ "4": "Kam",
+ "5": "Jum",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Agt",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "fullDate": "EEEE, dd MMMM yyyy",
+ "longDate": "d MMMM yyyy",
+ "medium": "d MMM yyyy HH:mm:ss",
+ "mediumDate": "d MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rp",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "in",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_is-is.js b/1.1.5/i18n/angular-locale_is-is.js
new file mode 100644
index 0000000000..056030d0f3
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_is-is.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "f.h.",
+ "1": "e.h."
+ },
+ "DAY": {
+ "0": "sunnudagur",
+ "1": "m\u00e1nudagur",
+ "2": "\u00feri\u00f0judagur",
+ "3": "mi\u00f0vikudagur",
+ "4": "fimmtudagur",
+ "5": "f\u00f6studagur",
+ "6": "laugardagur"
+ },
+ "MONTH": {
+ "0": "jan\u00faar",
+ "1": "febr\u00faar",
+ "2": "mars",
+ "3": "apr\u00edl",
+ "4": "ma\u00ed",
+ "5": "j\u00fan\u00ed",
+ "6": "j\u00fal\u00ed",
+ "7": "\u00e1g\u00fast",
+ "8": "september",
+ "9": "okt\u00f3ber",
+ "10": "n\u00f3vember",
+ "11": "desember"
+ },
+ "SHORTDAY": {
+ "0": "sun",
+ "1": "m\u00e1n",
+ "2": "\u00feri",
+ "3": "mi\u00f0",
+ "4": "fim",
+ "5": "f\u00f6s",
+ "6": "lau"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "ma\u00ed",
+ "5": "j\u00fan",
+ "6": "j\u00fal",
+ "7": "\u00e1g\u00fa",
+ "8": "sep",
+ "9": "okt",
+ "10": "n\u00f3v",
+ "11": "des"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.yyyy HH:mm:ss",
+ "mediumDate": "d.M.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "d.M.yyyy HH:mm",
+ "shortDate": "d.M.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "is-is",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_is.js b/1.1.5/i18n/angular-locale_is.js
new file mode 100644
index 0000000000..8730d4405a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_is.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "f.h.",
+ "1": "e.h."
+ },
+ "DAY": {
+ "0": "sunnudagur",
+ "1": "m\u00e1nudagur",
+ "2": "\u00feri\u00f0judagur",
+ "3": "mi\u00f0vikudagur",
+ "4": "fimmtudagur",
+ "5": "f\u00f6studagur",
+ "6": "laugardagur"
+ },
+ "MONTH": {
+ "0": "jan\u00faar",
+ "1": "febr\u00faar",
+ "2": "mars",
+ "3": "apr\u00edl",
+ "4": "ma\u00ed",
+ "5": "j\u00fan\u00ed",
+ "6": "j\u00fal\u00ed",
+ "7": "\u00e1g\u00fast",
+ "8": "september",
+ "9": "okt\u00f3ber",
+ "10": "n\u00f3vember",
+ "11": "desember"
+ },
+ "SHORTDAY": {
+ "0": "sun",
+ "1": "m\u00e1n",
+ "2": "\u00feri",
+ "3": "mi\u00f0",
+ "4": "fim",
+ "5": "f\u00f6s",
+ "6": "lau"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "ma\u00ed",
+ "5": "j\u00fan",
+ "6": "j\u00fal",
+ "7": "\u00e1g\u00fa",
+ "8": "sep",
+ "9": "okt",
+ "10": "n\u00f3v",
+ "11": "des"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.yyyy HH:mm:ss",
+ "mediumDate": "d.M.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "d.M.yyyy HH:mm",
+ "shortDate": "d.M.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "is",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_it-ch.js b/1.1.5/i18n/angular-locale_it-ch.js
new file mode 100644
index 0000000000..8b57604983
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_it-ch.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "m.",
+ "1": "p."
+ },
+ "DAY": {
+ "0": "domenica",
+ "1": "lunedì",
+ "2": "martedì",
+ "3": "mercoledì",
+ "4": "giovedì",
+ "5": "venerdì",
+ "6": "sabato"
+ },
+ "MONTH": {
+ "0": "gennaio",
+ "1": "febbraio",
+ "2": "marzo",
+ "3": "aprile",
+ "4": "maggio",
+ "5": "giugno",
+ "6": "luglio",
+ "7": "agosto",
+ "8": "settembre",
+ "9": "ottobre",
+ "10": "novembre",
+ "11": "dicembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mer",
+ "4": "gio",
+ "5": "ven",
+ "6": "sab"
+ },
+ "SHORTMONTH": {
+ "0": "gen",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "mag",
+ "5": "giu",
+ "6": "lug",
+ "7": "ago",
+ "8": "set",
+ "9": "ott",
+ "10": "nov",
+ "11": "dic"
+ },
+ "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": "€",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00A4 -",
+ "negSuf": "",
+ "posPre": "\u00A4 ",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "it-ch",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_it-it.js b/1.1.5/i18n/angular-locale_it-it.js
new file mode 100644
index 0000000000..6461102f14
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_it-it.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "m.",
+ "1": "p."
+ },
+ "DAY": {
+ "0": "domenica",
+ "1": "luned\u00ec",
+ "2": "marted\u00ec",
+ "3": "mercoled\u00ec",
+ "4": "gioved\u00ec",
+ "5": "venerd\u00ec",
+ "6": "sabato"
+ },
+ "MONTH": {
+ "0": "gennaio",
+ "1": "febbraio",
+ "2": "marzo",
+ "3": "aprile",
+ "4": "maggio",
+ "5": "giugno",
+ "6": "luglio",
+ "7": "agosto",
+ "8": "settembre",
+ "9": "ottobre",
+ "10": "novembre",
+ "11": "dicembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mer",
+ "4": "gio",
+ "5": "ven",
+ "6": "sab"
+ },
+ "SHORTMONTH": {
+ "0": "gen",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "mag",
+ "5": "giu",
+ "6": "lug",
+ "7": "ago",
+ "8": "set",
+ "9": "ott",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "dd 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",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "it-it",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_it-sm.js b/1.1.5/i18n/angular-locale_it-sm.js
new file mode 100644
index 0000000000..69c9d1977a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_it-sm.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "m.",
+ "1": "p."
+ },
+ "DAY": {
+ "0": "domenica",
+ "1": "luned\u00ec",
+ "2": "marted\u00ec",
+ "3": "mercoled\u00ec",
+ "4": "gioved\u00ec",
+ "5": "venerd\u00ec",
+ "6": "sabato"
+ },
+ "MONTH": {
+ "0": "gennaio",
+ "1": "febbraio",
+ "2": "marzo",
+ "3": "aprile",
+ "4": "maggio",
+ "5": "giugno",
+ "6": "luglio",
+ "7": "agosto",
+ "8": "settembre",
+ "9": "ottobre",
+ "10": "novembre",
+ "11": "dicembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mer",
+ "4": "gio",
+ "5": "ven",
+ "6": "sab"
+ },
+ "SHORTMONTH": {
+ "0": "gen",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "mag",
+ "5": "giu",
+ "6": "lug",
+ "7": "ago",
+ "8": "set",
+ "9": "ott",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "dd 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",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "it-sm",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_it.js b/1.1.5/i18n/angular-locale_it.js
new file mode 100644
index 0000000000..47dee0c179
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_it.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "m.",
+ "1": "p."
+ },
+ "DAY": {
+ "0": "domenica",
+ "1": "luned\u00ec",
+ "2": "marted\u00ec",
+ "3": "mercoled\u00ec",
+ "4": "gioved\u00ec",
+ "5": "venerd\u00ec",
+ "6": "sabato"
+ },
+ "MONTH": {
+ "0": "gennaio",
+ "1": "febbraio",
+ "2": "marzo",
+ "3": "aprile",
+ "4": "maggio",
+ "5": "giugno",
+ "6": "luglio",
+ "7": "agosto",
+ "8": "settembre",
+ "9": "ottobre",
+ "10": "novembre",
+ "11": "dicembre"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "lun",
+ "2": "mar",
+ "3": "mer",
+ "4": "gio",
+ "5": "ven",
+ "6": "sab"
+ },
+ "SHORTMONTH": {
+ "0": "gen",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "mag",
+ "5": "giu",
+ "6": "lug",
+ "7": "ago",
+ "8": "set",
+ "9": "ott",
+ "10": "nov",
+ "11": "dic"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "dd 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",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "it",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_iw.js b/1.1.5/i18n/angular-locale_iw.js
new file mode 100644
index 0000000000..4f705f9f31
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_iw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
+ "1": "\u05d0\u05d7\u05d4\u05f4\u05e6"
+ },
+ "DAY": {
+ "0": "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
+ "1": "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
+ "2": "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
+ "3": "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
+ "4": "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
+ "5": "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
+ "6": "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"
+ },
+ "MONTH": {
+ "0": "\u05d9\u05e0\u05d5\u05d0\u05e8",
+ "1": "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
+ "2": "\u05de\u05e8\u05e5",
+ "3": "\u05d0\u05e4\u05e8\u05d9\u05dc",
+ "4": "\u05de\u05d0\u05d9",
+ "5": "\u05d9\u05d5\u05e0\u05d9",
+ "6": "\u05d9\u05d5\u05dc\u05d9",
+ "7": "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
+ "8": "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
+ "9": "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
+ "10": "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
+ "11": "\u05d3\u05e6\u05de\u05d1\u05e8"
+ },
+ "SHORTDAY": {
+ "0": "\u05d9\u05d5\u05dd \u05d0\u05f3",
+ "1": "\u05d9\u05d5\u05dd \u05d1\u05f3",
+ "2": "\u05d9\u05d5\u05dd \u05d2\u05f3",
+ "3": "\u05d9\u05d5\u05dd \u05d3\u05f3",
+ "4": "\u05d9\u05d5\u05dd \u05d4\u05f3",
+ "5": "\u05d9\u05d5\u05dd \u05d5\u05f3",
+ "6": "\u05e9\u05d1\u05ea"
+ },
+ "SHORTMONTH": {
+ "0": "\u05d9\u05e0\u05d5",
+ "1": "\u05e4\u05d1\u05e8",
+ "2": "\u05de\u05e8\u05e5",
+ "3": "\u05d0\u05e4\u05e8",
+ "4": "\u05de\u05d0\u05d9",
+ "5": "\u05d9\u05d5\u05e0",
+ "6": "\u05d9\u05d5\u05dc",
+ "7": "\u05d0\u05d5\u05d2",
+ "8": "\u05e1\u05e4\u05d8",
+ "9": "\u05d0\u05d5\u05e7",
+ "10": "\u05e0\u05d5\u05d1",
+ "11": "\u05d3\u05e6\u05de"
+ },
+ "fullDate": "EEEE, d \u05d1MMMM y",
+ "longDate": "d \u05d1MMMM y",
+ "medium": "d \u05d1MMM yyyy HH:mm:ss",
+ "mediumDate": "d \u05d1MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20aa",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "iw",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ja-jp.js b/1.1.5/i18n/angular-locale_ja-jp.js
new file mode 100644
index 0000000000..609eec6bff
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ja-jp.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u5348\u524d",
+ "1": "\u5348\u5f8c"
+ },
+ "DAY": {
+ "0": "\u65e5\u66dc\u65e5",
+ "1": "\u6708\u66dc\u65e5",
+ "2": "\u706b\u66dc\u65e5",
+ "3": "\u6c34\u66dc\u65e5",
+ "4": "\u6728\u66dc\u65e5",
+ "5": "\u91d1\u66dc\u65e5",
+ "6": "\u571f\u66dc\u65e5"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u65e5",
+ "1": "\u6708",
+ "2": "\u706b",
+ "3": "\u6c34",
+ "4": "\u6728",
+ "5": "\u91d1",
+ "6": "\u571f"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "yyyy/MM/dd H:mm:ss",
+ "mediumDate": "yyyy/MM/dd",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy/MM/dd H:mm",
+ "shortDate": "yyyy/MM/dd",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a5",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ja-jp",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ja.js b/1.1.5/i18n/angular-locale_ja.js
new file mode 100644
index 0000000000..bc92d625c5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ja.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u5348\u524d",
+ "1": "\u5348\u5f8c"
+ },
+ "DAY": {
+ "0": "\u65e5\u66dc\u65e5",
+ "1": "\u6708\u66dc\u65e5",
+ "2": "\u706b\u66dc\u65e5",
+ "3": "\u6c34\u66dc\u65e5",
+ "4": "\u6728\u66dc\u65e5",
+ "5": "\u91d1\u66dc\u65e5",
+ "6": "\u571f\u66dc\u65e5"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u65e5",
+ "1": "\u6708",
+ "2": "\u706b",
+ "3": "\u6c34",
+ "4": "\u6728",
+ "5": "\u91d1",
+ "6": "\u571f"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "yyyy/MM/dd H:mm:ss",
+ "mediumDate": "yyyy/MM/dd",
+ "mediumTime": "H:mm:ss",
+ "short": "yyyy/MM/dd H:mm",
+ "shortDate": "yyyy/MM/dd",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a5",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ja",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_kn-in.js b/1.1.5/i18n/angular-locale_kn-in.js
new file mode 100644
index 0000000000..a361ec9790
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_kn-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
+ "1": "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
+ "2": "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
+ "3": "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
+ "4": "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
+ "5": "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
+ "6": "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
+ },
+ "MONTH": {
+ "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
+ "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
+ "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
+ "4": "\u0cae\u0cc6",
+ "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
+ "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
+ "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
+ },
+ "SHORTDAY": {
+ "0": "\u0cb0.",
+ "1": "\u0cb8\u0ccb.",
+ "2": "\u0cae\u0c82.",
+ "3": "\u0cac\u0cc1.",
+ "4": "\u0c97\u0cc1.",
+ "5": "\u0cb6\u0cc1.",
+ "6": "\u0cb6\u0ca8\u0cbf."
+ },
+ "SHORTMONTH": {
+ "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
+ "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
+ "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
+ "4": "\u0cae\u0cc6",
+ "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
+ "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
+ "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y hh:mm:ss a",
+ "mediumDate": "d MMM y",
+ "mediumTime": "hh:mm:ss a",
+ "short": "d-M-yy hh:mm a",
+ "shortDate": "d-M-yy",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "kn-in",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_kn.js b/1.1.5/i18n/angular-locale_kn.js
new file mode 100644
index 0000000000..aa933a6169
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_kn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
+ "1": "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
+ "2": "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
+ "3": "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
+ "4": "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
+ "5": "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
+ "6": "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
+ },
+ "MONTH": {
+ "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
+ "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
+ "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
+ "4": "\u0cae\u0cc6",
+ "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
+ "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
+ "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
+ },
+ "SHORTDAY": {
+ "0": "\u0cb0.",
+ "1": "\u0cb8\u0ccb.",
+ "2": "\u0cae\u0c82.",
+ "3": "\u0cac\u0cc1.",
+ "4": "\u0c97\u0cc1.",
+ "5": "\u0cb6\u0cc1.",
+ "6": "\u0cb6\u0ca8\u0cbf."
+ },
+ "SHORTMONTH": {
+ "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
+ "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
+ "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
+ "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
+ "4": "\u0cae\u0cc6",
+ "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
+ "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
+ "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
+ "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
+ "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
+ "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
+ },
+ "fullDate": "EEEE d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y hh:mm:ss a",
+ "mediumDate": "d MMM y",
+ "mediumTime": "hh:mm:ss a",
+ "short": "d-M-yy hh:mm a",
+ "shortDate": "d-M-yy",
+ "shortTime": "hh:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "kn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ko-kr.js b/1.1.5/i18n/angular-locale_ko-kr.js
new file mode 100644
index 0000000000..ce2ba3f440
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ko-kr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\uc624\uc804",
+ "1": "\uc624\ud6c4"
+ },
+ "DAY": {
+ "0": "\uc77c\uc694\uc77c",
+ "1": "\uc6d4\uc694\uc77c",
+ "2": "\ud654\uc694\uc77c",
+ "3": "\uc218\uc694\uc77c",
+ "4": "\ubaa9\uc694\uc77c",
+ "5": "\uae08\uc694\uc77c",
+ "6": "\ud1a0\uc694\uc77c"
+ },
+ "MONTH": {
+ "0": "1\uc6d4",
+ "1": "2\uc6d4",
+ "2": "3\uc6d4",
+ "3": "4\uc6d4",
+ "4": "5\uc6d4",
+ "5": "6\uc6d4",
+ "6": "7\uc6d4",
+ "7": "8\uc6d4",
+ "8": "9\uc6d4",
+ "9": "10\uc6d4",
+ "10": "11\uc6d4",
+ "11": "12\uc6d4"
+ },
+ "SHORTDAY": {
+ "0": "\uc77c",
+ "1": "\uc6d4",
+ "2": "\ud654",
+ "3": "\uc218",
+ "4": "\ubaa9",
+ "5": "\uae08",
+ "6": "\ud1a0"
+ },
+ "SHORTMONTH": {
+ "0": "1\uc6d4",
+ "1": "2\uc6d4",
+ "2": "3\uc6d4",
+ "3": "4\uc6d4",
+ "4": "5\uc6d4",
+ "5": "6\uc6d4",
+ "6": "7\uc6d4",
+ "7": "8\uc6d4",
+ "8": "9\uc6d4",
+ "9": "10\uc6d4",
+ "10": "11\uc6d4",
+ "11": "12\uc6d4"
+ },
+ "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
+ "longDate": "y\ub144 M\uc6d4 d\uc77c",
+ "medium": "yyyy. M. d. a h:mm:ss",
+ "mediumDate": "yyyy. M. d.",
+ "mediumTime": "a h:mm:ss",
+ "short": "yy. M. d. a h:mm",
+ "shortDate": "yy. M. d.",
+ "shortTime": "a h:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20a9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ko-kr",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ko.js b/1.1.5/i18n/angular-locale_ko.js
new file mode 100644
index 0000000000..81ac18574f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ko.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\uc624\uc804",
+ "1": "\uc624\ud6c4"
+ },
+ "DAY": {
+ "0": "\uc77c\uc694\uc77c",
+ "1": "\uc6d4\uc694\uc77c",
+ "2": "\ud654\uc694\uc77c",
+ "3": "\uc218\uc694\uc77c",
+ "4": "\ubaa9\uc694\uc77c",
+ "5": "\uae08\uc694\uc77c",
+ "6": "\ud1a0\uc694\uc77c"
+ },
+ "MONTH": {
+ "0": "1\uc6d4",
+ "1": "2\uc6d4",
+ "2": "3\uc6d4",
+ "3": "4\uc6d4",
+ "4": "5\uc6d4",
+ "5": "6\uc6d4",
+ "6": "7\uc6d4",
+ "7": "8\uc6d4",
+ "8": "9\uc6d4",
+ "9": "10\uc6d4",
+ "10": "11\uc6d4",
+ "11": "12\uc6d4"
+ },
+ "SHORTDAY": {
+ "0": "\uc77c",
+ "1": "\uc6d4",
+ "2": "\ud654",
+ "3": "\uc218",
+ "4": "\ubaa9",
+ "5": "\uae08",
+ "6": "\ud1a0"
+ },
+ "SHORTMONTH": {
+ "0": "1\uc6d4",
+ "1": "2\uc6d4",
+ "2": "3\uc6d4",
+ "3": "4\uc6d4",
+ "4": "5\uc6d4",
+ "5": "6\uc6d4",
+ "6": "7\uc6d4",
+ "7": "8\uc6d4",
+ "8": "9\uc6d4",
+ "9": "10\uc6d4",
+ "10": "11\uc6d4",
+ "11": "12\uc6d4"
+ },
+ "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
+ "longDate": "y\ub144 M\uc6d4 d\uc77c",
+ "medium": "yyyy. M. d. a h:mm:ss",
+ "mediumDate": "yyyy. M. d.",
+ "mediumTime": "a h:mm:ss",
+ "short": "yy. M. d. a h:mm",
+ "shortDate": "yy. M. d.",
+ "shortTime": "a h:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20a9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ko",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ln-cd.js b/1.1.5/i18n/angular-locale_ln-cd.js
new file mode 100644
index 0000000000..af09c52d29
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ln-cd.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "nt\u0254\u0301ng\u0254\u0301",
+ "1": "mp\u00f3kwa"
+ },
+ "DAY": {
+ "0": "eyenga",
+ "1": "mok\u0254l\u0254 mwa yambo",
+ "2": "mok\u0254l\u0254 mwa m\u00edbal\u00e9",
+ "3": "mok\u0254l\u0254 mwa m\u00eds\u00e1to",
+ "4": "mok\u0254l\u0254 ya m\u00edn\u00e9i",
+ "5": "mok\u0254l\u0254 ya m\u00edt\u00e1no",
+ "6": "mp\u0254\u0301s\u0254"
+ },
+ "MONTH": {
+ "0": "s\u00e1nz\u00e1 ya yambo",
+ "1": "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "2": "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "3": "s\u00e1nz\u00e1 ya m\u00ednei",
+ "4": "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "5": "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "6": "s\u00e1nz\u00e1 ya nsambo",
+ "7": "s\u00e1nz\u00e1 ya mwambe",
+ "8": "s\u00e1nz\u00e1 ya libwa",
+ "9": "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "10": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "11": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ },
+ "SHORTDAY": {
+ "0": "eye",
+ "1": "ybo",
+ "2": "mbl",
+ "3": "mst",
+ "4": "min",
+ "5": "mtn",
+ "6": "mps"
+ },
+ "SHORTMONTH": {
+ "0": "yan",
+ "1": "fbl",
+ "2": "msi",
+ "3": "apl",
+ "4": "mai",
+ "5": "yun",
+ "6": "yul",
+ "7": "agt",
+ "8": "stb",
+ "9": "\u0254tb",
+ "10": "nvb",
+ "11": "dsb"
+ },
+ "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/yyyy HH:mm",
+ "shortDate": "d/M/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "FrCD",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "ln-cd",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ln-cg.js b/1.1.5/i18n/angular-locale_ln-cg.js
new file mode 100644
index 0000000000..99942073ff
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ln-cg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "ntɔ́ngɔ́",
+ "1": "mpókwa"
+ },
+ "DAY": {
+ "0": "eyenga",
+ "1": "mokɔlɔ mwa yambo",
+ "2": "mokɔlɔ mwa míbalé",
+ "3": "mokɔlɔ mwa mísáto",
+ "4": "mokɔlɔ ya mínéi",
+ "5": "mokɔlɔ ya mítáno",
+ "6": "mpɔ́sɔ"
+ },
+ "MONTH": {
+ "0": "sánzá ya yambo",
+ "1": "sánzá ya míbalé",
+ "2": "sánzá ya mísáto",
+ "3": "sánzá ya mínei",
+ "4": "sánzá ya mítáno",
+ "5": "sánzá ya motóbá",
+ "6": "sánzá ya nsambo",
+ "7": "sánzá ya mwambe",
+ "8": "sánzá ya libwa",
+ "9": "sánzá ya zómi",
+ "10": "sánzá ya zómi na mɔ̌kɔ́",
+ "11": "sánzá ya zómi na míbalé"
+ },
+ "SHORTDAY": {
+ "0": "eye",
+ "1": "ybo",
+ "2": "mbl",
+ "3": "mst",
+ "4": "min",
+ "5": "mtn",
+ "6": "mps"
+ },
+ "SHORTMONTH": {
+ "0": "yan",
+ "1": "fbl",
+ "2": "msi",
+ "3": "apl",
+ "4": "mai",
+ "5": "yun",
+ "6": "yul",
+ "7": "agt",
+ "8": "stb",
+ "9": "ɔtb",
+ "10": "nvb",
+ "11": "dsb"
+ },
+ "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/yyyy HH:mm",
+ "shortDate": "d/M/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "FrCD",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "ln-cg",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ln.js b/1.1.5/i18n/angular-locale_ln.js
new file mode 100644
index 0000000000..8f80a8debe
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ln.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "nt\u0254\u0301ng\u0254\u0301",
+ "1": "mp\u00f3kwa"
+ },
+ "DAY": {
+ "0": "eyenga",
+ "1": "mok\u0254l\u0254 mwa yambo",
+ "2": "mok\u0254l\u0254 mwa m\u00edbal\u00e9",
+ "3": "mok\u0254l\u0254 mwa m\u00eds\u00e1to",
+ "4": "mok\u0254l\u0254 ya m\u00edn\u00e9i",
+ "5": "mok\u0254l\u0254 ya m\u00edt\u00e1no",
+ "6": "mp\u0254\u0301s\u0254"
+ },
+ "MONTH": {
+ "0": "s\u00e1nz\u00e1 ya yambo",
+ "1": "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
+ "2": "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
+ "3": "s\u00e1nz\u00e1 ya m\u00ednei",
+ "4": "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
+ "5": "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
+ "6": "s\u00e1nz\u00e1 ya nsambo",
+ "7": "s\u00e1nz\u00e1 ya mwambe",
+ "8": "s\u00e1nz\u00e1 ya libwa",
+ "9": "s\u00e1nz\u00e1 ya z\u00f3mi",
+ "10": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
+ "11": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
+ },
+ "SHORTDAY": {
+ "0": "eye",
+ "1": "ybo",
+ "2": "mbl",
+ "3": "mst",
+ "4": "min",
+ "5": "mtn",
+ "6": "mps"
+ },
+ "SHORTMONTH": {
+ "0": "yan",
+ "1": "fbl",
+ "2": "msi",
+ "3": "apl",
+ "4": "mai",
+ "5": "yun",
+ "6": "yul",
+ "7": "agt",
+ "8": "stb",
+ "9": "\u0254tb",
+ "10": "nvb",
+ "11": "dsb"
+ },
+ "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/yyyy HH:mm",
+ "shortDate": "d/M/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "FrCD",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "ln",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_lt-lt.js b/1.1.5/i18n/angular-locale_lt-lt.js
new file mode 100644
index 0000000000..b83a063a9a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_lt-lt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "prie\u0161piet",
+ "1": "popiet"
+ },
+ "DAY": {
+ "0": "sekmadienis",
+ "1": "pirmadienis",
+ "2": "antradienis",
+ "3": "tre\u010diadienis",
+ "4": "ketvirtadienis",
+ "5": "penktadienis",
+ "6": "\u0161e\u0161tadienis"
+ },
+ "MONTH": {
+ "0": "sausio",
+ "1": "vasaris",
+ "2": "kovas",
+ "3": "balandis",
+ "4": "gegu\u017e\u0117",
+ "5": "bir\u017eelis",
+ "6": "liepa",
+ "7": "rugpj\u016btis",
+ "8": "rugs\u0117jis",
+ "9": "spalis",
+ "10": "lapkritis",
+ "11": "gruodis"
+ },
+ "SHORTDAY": {
+ "0": "Sk",
+ "1": "Pr",
+ "2": "An",
+ "3": "Tr",
+ "4": "Kt",
+ "5": "Pn",
+ "6": "\u0160t"
+ },
+ "SHORTMONTH": {
+ "0": "Saus.",
+ "1": "Vas",
+ "2": "Kov.",
+ "3": "Bal.",
+ "4": "Geg.",
+ "5": "Bir.",
+ "6": "Liep.",
+ "7": "Rugp.",
+ "8": "Rugs.",
+ "9": "Spal.",
+ "10": "Lapkr.",
+ "11": "Gruod."
+ },
+ "fullDate": "y 'm'. MMMM d 'd'., EEEE",
+ "longDate": "y 'm'. MMMM d 'd'.",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Lt",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "lt-lt",
+ "pluralCat": function (n) { if (n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_lt.js b/1.1.5/i18n/angular-locale_lt.js
new file mode 100644
index 0000000000..41b1d53f13
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_lt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "prie\u0161piet",
+ "1": "popiet"
+ },
+ "DAY": {
+ "0": "sekmadienis",
+ "1": "pirmadienis",
+ "2": "antradienis",
+ "3": "tre\u010diadienis",
+ "4": "ketvirtadienis",
+ "5": "penktadienis",
+ "6": "\u0161e\u0161tadienis"
+ },
+ "MONTH": {
+ "0": "sausio",
+ "1": "vasaris",
+ "2": "kovas",
+ "3": "balandis",
+ "4": "gegu\u017e\u0117",
+ "5": "bir\u017eelis",
+ "6": "liepa",
+ "7": "rugpj\u016btis",
+ "8": "rugs\u0117jis",
+ "9": "spalis",
+ "10": "lapkritis",
+ "11": "gruodis"
+ },
+ "SHORTDAY": {
+ "0": "Sk",
+ "1": "Pr",
+ "2": "An",
+ "3": "Tr",
+ "4": "Kt",
+ "5": "Pn",
+ "6": "\u0160t"
+ },
+ "SHORTMONTH": {
+ "0": "Saus.",
+ "1": "Vas",
+ "2": "Kov.",
+ "3": "Bal.",
+ "4": "Geg.",
+ "5": "Bir.",
+ "6": "Liep.",
+ "7": "Rugp.",
+ "8": "Rugs.",
+ "9": "Spal.",
+ "10": "Lapkr.",
+ "11": "Gruod."
+ },
+ "fullDate": "y 'm'. MMMM d 'd'., EEEE",
+ "longDate": "y 'm'. MMMM d 'd'.",
+ "medium": "y MMM d HH:mm:ss",
+ "mediumDate": "y MMM d",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Lt",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "lt",
+ "pluralCat": function (n) { if (n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_lv-lv.js b/1.1.5/i18n/angular-locale_lv-lv.js
new file mode 100644
index 0000000000..9f84432652
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_lv-lv.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "priek\u0161pusdien\u0101",
+ "1": "p\u0113cpusdien\u0101"
+ },
+ "DAY": {
+ "0": "sv\u0113tdiena",
+ "1": "pirmdiena",
+ "2": "otrdiena",
+ "3": "tre\u0161diena",
+ "4": "ceturtdiena",
+ "5": "piektdiena",
+ "6": "sestdiena"
+ },
+ "MONTH": {
+ "0": "janv\u0101ris",
+ "1": "febru\u0101ris",
+ "2": "marts",
+ "3": "apr\u012blis",
+ "4": "maijs",
+ "5": "j\u016bnijs",
+ "6": "j\u016blijs",
+ "7": "augusts",
+ "8": "septembris",
+ "9": "oktobris",
+ "10": "novembris",
+ "11": "decembris"
+ },
+ "SHORTDAY": {
+ "0": "Sv",
+ "1": "Pr",
+ "2": "Ot",
+ "3": "Tr",
+ "4": "Ce",
+ "5": "Pk",
+ "6": "Se"
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "febr.",
+ "2": "marts",
+ "3": "apr.",
+ "4": "maijs",
+ "5": "j\u016bn.",
+ "6": "j\u016bl.",
+ "7": "aug.",
+ "8": "sept.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, y. 'gada' d. MMMM",
+ "longDate": "y. 'gada' d. MMMM",
+ "medium": "y. 'gada' d. MMM HH:mm:ss",
+ "mediumDate": "y. 'gada' d. MMM",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Ls",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "lv-lv",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_lv.js b/1.1.5/i18n/angular-locale_lv.js
new file mode 100644
index 0000000000..62f4a2aa1d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_lv.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "priek\u0161pusdien\u0101",
+ "1": "p\u0113cpusdien\u0101"
+ },
+ "DAY": {
+ "0": "sv\u0113tdiena",
+ "1": "pirmdiena",
+ "2": "otrdiena",
+ "3": "tre\u0161diena",
+ "4": "ceturtdiena",
+ "5": "piektdiena",
+ "6": "sestdiena"
+ },
+ "MONTH": {
+ "0": "janv\u0101ris",
+ "1": "febru\u0101ris",
+ "2": "marts",
+ "3": "apr\u012blis",
+ "4": "maijs",
+ "5": "j\u016bnijs",
+ "6": "j\u016blijs",
+ "7": "augusts",
+ "8": "septembris",
+ "9": "oktobris",
+ "10": "novembris",
+ "11": "decembris"
+ },
+ "SHORTDAY": {
+ "0": "Sv",
+ "1": "Pr",
+ "2": "Ot",
+ "3": "Tr",
+ "4": "Ce",
+ "5": "Pk",
+ "6": "Se"
+ },
+ "SHORTMONTH": {
+ "0": "janv.",
+ "1": "febr.",
+ "2": "marts",
+ "3": "apr.",
+ "4": "maijs",
+ "5": "j\u016bn.",
+ "6": "j\u016bl.",
+ "7": "aug.",
+ "8": "sept.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, y. 'gada' d. MMMM",
+ "longDate": "y. 'gada' d. MMMM",
+ "medium": "y. 'gada' d. MMM HH:mm:ss",
+ "mediumDate": "y. 'gada' d. MMM",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Ls",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "lv",
+ "pluralCat": function (n) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ml-in.js b/1.1.5/i18n/angular-locale_ml-in.js
new file mode 100644
index 0000000000..f8ba886088
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ml-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a",
+ "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a",
+ "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a",
+ "3": "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a",
+ "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a",
+ "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a",
+ "6": "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a"
+ },
+ "MONTH": {
+ "0": "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f",
+ "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f",
+ "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d\u0d1a\u0d4d\u0d1a\u0d4d",
+ "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d32\u0d4d\u200d",
+ "4": "\u0d2e\u0d47\u0d2f\u0d4d",
+ "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
+ "6": "\u0d1c\u0d42\u0d32\u0d48",
+ "7": "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
+ "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d30\u0d4d\u200d",
+ "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d30\u0d4d\u200d",
+ "10": "\u0d28\u0d35\u0d02\u0d2c\u0d30\u0d4d\u200d",
+ "11": "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d30\u0d4d\u200d"
+ },
+ "SHORTDAY": {
+ "0": "\u0d1e\u0d3e\u0d2f\u0d30\u0d4d\u200d",
+ "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d4d\u200d",
+ "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35",
+ "3": "\u0d2c\u0d41\u0d27\u0d28\u0d4d\u200d",
+ "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02",
+ "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f",
+ "6": "\u0d36\u0d28\u0d3f"
+ },
+ "SHORTMONTH": {
+ "0": "\u0d1c\u0d28\u0d41",
+ "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41",
+ "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d",
+ "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f",
+ "4": "\u0d2e\u0d47\u0d2f\u0d4d",
+ "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
+ "6": "\u0d1c\u0d42\u0d32\u0d48",
+ "7": "\u0d13\u0d17",
+ "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02",
+ "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b",
+ "10": "\u0d28\u0d35\u0d02",
+ "11": "\u0d21\u0d3f\u0d38\u0d02"
+ },
+ "fullDate": "y, MMMM d, EEEE",
+ "longDate": "y, MMMM d",
+ "medium": "y, MMM d h:mm:ss a",
+ "mediumDate": "y, MMM d",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd/MM/yy h:mm a",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "ml-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ml.js b/1.1.5/i18n/angular-locale_ml.js
new file mode 100644
index 0000000000..fe5a6fedc6
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ml.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a",
+ "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a",
+ "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a",
+ "3": "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a",
+ "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a",
+ "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a",
+ "6": "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a"
+ },
+ "MONTH": {
+ "0": "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f",
+ "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f",
+ "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d\u0d1a\u0d4d\u0d1a\u0d4d",
+ "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d32\u0d4d\u200d",
+ "4": "\u0d2e\u0d47\u0d2f\u0d4d",
+ "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
+ "6": "\u0d1c\u0d42\u0d32\u0d48",
+ "7": "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
+ "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d30\u0d4d\u200d",
+ "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d30\u0d4d\u200d",
+ "10": "\u0d28\u0d35\u0d02\u0d2c\u0d30\u0d4d\u200d",
+ "11": "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d30\u0d4d\u200d"
+ },
+ "SHORTDAY": {
+ "0": "\u0d1e\u0d3e\u0d2f\u0d30\u0d4d\u200d",
+ "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d4d\u200d",
+ "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35",
+ "3": "\u0d2c\u0d41\u0d27\u0d28\u0d4d\u200d",
+ "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02",
+ "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f",
+ "6": "\u0d36\u0d28\u0d3f"
+ },
+ "SHORTMONTH": {
+ "0": "\u0d1c\u0d28\u0d41",
+ "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41",
+ "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d",
+ "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f",
+ "4": "\u0d2e\u0d47\u0d2f\u0d4d",
+ "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
+ "6": "\u0d1c\u0d42\u0d32\u0d48",
+ "7": "\u0d13\u0d17",
+ "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02",
+ "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b",
+ "10": "\u0d28\u0d35\u0d02",
+ "11": "\u0d21\u0d3f\u0d38\u0d02"
+ },
+ "fullDate": "y, MMMM d, EEEE",
+ "longDate": "y, MMMM d",
+ "medium": "y, MMM d h:mm:ss a",
+ "mediumDate": "y, MMM d",
+ "mediumTime": "h:mm:ss a",
+ "short": "dd/MM/yy h:mm a",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a4"
+ }
+ }
+ },
+ "id": "ml",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_mo.js b/1.1.5/i18n/angular-locale_mo.js
new file mode 100644
index 0000000000..22bc44a3f0
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_mo.js
@@ -0,0 +1,4 @@
+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":{"MONTH":["ianuarie","februarie","martie","aprilie","mai","iunie","iulie","august","septembrie","octombrie","noiembrie","decembrie"],"SHORTMONTH":["ian.","feb.","mar.","apr.","mai","iun.","iul.","aug.","sept.","oct.","nov.","dec."],"DAY":["duminică","luni","marți","miercuri","joi","vineri","sâmbătă"],"SHORTDAY":["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],"AMPMS":["AM","PM"],"medium":"dd.MM.yyyy HH:mm:ss","short":"dd.MM.yyyy HH:mm","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"dd.MM.yyyy","shortDate":"dd.MM.yyyy","mediumTime":"HH:mm:ss","shortTime":"HH:mm"},"NUMBER_FORMATS":{"DECIMAL_SEP":",","GROUP_SEP":".","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"","posSuf":" \u00A4","negPre":"-","negSuf":" \u00A4","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"MDL"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n != 1 && (n % 100) >= 1 && (n % 100) <= 19 && n == Math.floor(n)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;},"id":"mo"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_mr-in.js b/1.1.5/i18n/angular-locale_mr-in.js
new file mode 100644
index 0000000000..479f01c9d8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_mr-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
+ "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
+ "2": "\u092e\u0902\u0917\u0933\u0935\u093e\u0930",
+ "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
+ "4": "\u0917\u0941\u0930\u0941\u0935\u093e\u0930",
+ "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
+ "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
+ },
+ "MONTH": {
+ "0": "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
+ "1": "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u090f\u092a\u094d\u0930\u093f\u0932",
+ "4": "\u092e\u0947",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u0948",
+ "7": "\u0911\u0917\u0938\u094d\u091f",
+ "8": "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
+ "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
+ "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
+ "11": "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
+ },
+ "SHORTDAY": {
+ "0": "\u0930\u0935\u093f",
+ "1": "\u0938\u094b\u092e",
+ "2": "\u092e\u0902\u0917\u0933",
+ "3": "\u092c\u0941\u0927",
+ "4": "\u0917\u0941\u0930\u0941",
+ "5": "\u0936\u0941\u0915\u094d\u0930",
+ "6": "\u0936\u0928\u093f"
+ },
+ "SHORTMONTH": {
+ "0": "\u091c\u093e\u0928\u0947",
+ "1": "\u092b\u0947\u092c\u094d\u0930\u0941",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u090f\u092a\u094d\u0930\u093f",
+ "4": "\u092e\u0947",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u0948",
+ "7": "\u0911\u0917",
+ "8": "\u0938\u0947\u092a\u094d\u091f\u0947\u0902",
+ "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
+ "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902",
+ "11": "\u0921\u093f\u0938\u0947\u0902"
+ },
+ "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",
+ "shortTime": "h-mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "mr-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_mr.js b/1.1.5/i18n/angular-locale_mr.js
new file mode 100644
index 0000000000..9e97792017
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_mr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
+ "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
+ "2": "\u092e\u0902\u0917\u0933\u0935\u093e\u0930",
+ "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
+ "4": "\u0917\u0941\u0930\u0941\u0935\u093e\u0930",
+ "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
+ "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
+ },
+ "MONTH": {
+ "0": "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
+ "1": "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u090f\u092a\u094d\u0930\u093f\u0932",
+ "4": "\u092e\u0947",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u0948",
+ "7": "\u0911\u0917\u0938\u094d\u091f",
+ "8": "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
+ "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
+ "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
+ "11": "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
+ },
+ "SHORTDAY": {
+ "0": "\u0930\u0935\u093f",
+ "1": "\u0938\u094b\u092e",
+ "2": "\u092e\u0902\u0917\u0933",
+ "3": "\u092c\u0941\u0927",
+ "4": "\u0917\u0941\u0930\u0941",
+ "5": "\u0936\u0941\u0915\u094d\u0930",
+ "6": "\u0936\u0928\u093f"
+ },
+ "SHORTMONTH": {
+ "0": "\u091c\u093e\u0928\u0947",
+ "1": "\u092b\u0947\u092c\u094d\u0930\u0941",
+ "2": "\u092e\u093e\u0930\u094d\u091a",
+ "3": "\u090f\u092a\u094d\u0930\u093f",
+ "4": "\u092e\u0947",
+ "5": "\u091c\u0942\u0928",
+ "6": "\u091c\u0941\u0932\u0948",
+ "7": "\u0911\u0917",
+ "8": "\u0938\u0947\u092a\u094d\u091f\u0947\u0902",
+ "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
+ "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902",
+ "11": "\u0921\u093f\u0938\u0947\u0902"
+ },
+ "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",
+ "shortTime": "h-mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "mr",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ms-bn.js b/1.1.5/i18n/angular-locale_ms-bn.js
new file mode 100644
index 0000000000..4a7179f68a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ms-bn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "PG",
+ "1": "PTG"
+ },
+ "DAY": {
+ "0": "Ahad",
+ "1": "Isnin",
+ "2": "Selasa",
+ "3": "Rabu",
+ "4": "Khamis",
+ "5": "Jumaat",
+ "6": "Sabtu"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Mac",
+ "3": "April",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Julai",
+ "7": "Ogos",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Disember"
+ },
+ "SHORTDAY": {
+ "0": "Ahd",
+ "1": "Isn",
+ "2": "Sel",
+ "3": "Rab",
+ "4": "Kha",
+ "5": "Jum",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mac",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ogos",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dis"
+ },
+ "fullDate": "dd MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd/MM/yyyy h:mm:ss a",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
+ "shortDate": "d/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RM",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ms-bn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ms-my.js b/1.1.5/i18n/angular-locale_ms-my.js
new file mode 100644
index 0000000000..bdc678b7a8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ms-my.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "PG",
+ "1": "PTG"
+ },
+ "DAY": {
+ "0": "Ahad",
+ "1": "Isnin",
+ "2": "Selasa",
+ "3": "Rabu",
+ "4": "Khamis",
+ "5": "Jumaat",
+ "6": "Sabtu"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Mac",
+ "3": "April",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Julai",
+ "7": "Ogos",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Disember"
+ },
+ "SHORTDAY": {
+ "0": "Ahd",
+ "1": "Isn",
+ "2": "Sel",
+ "3": "Rab",
+ "4": "Kha",
+ "5": "Jum",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mac",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ogos",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd/MM/yyyy h:mm:ss a",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
+ "shortDate": "d/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RM",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ms-my",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ms.js b/1.1.5/i18n/angular-locale_ms.js
new file mode 100644
index 0000000000..23c7305514
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ms.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "PG",
+ "1": "PTG"
+ },
+ "DAY": {
+ "0": "Ahad",
+ "1": "Isnin",
+ "2": "Selasa",
+ "3": "Rabu",
+ "4": "Khamis",
+ "5": "Jumaat",
+ "6": "Sabtu"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Mac",
+ "3": "April",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Julai",
+ "7": "Ogos",
+ "8": "September",
+ "9": "Oktober",
+ "10": "November",
+ "11": "Disember"
+ },
+ "SHORTDAY": {
+ "0": "Ahd",
+ "1": "Isn",
+ "2": "Sel",
+ "3": "Rab",
+ "4": "Kha",
+ "5": "Jum",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mac",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ogos",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd/MM/yyyy h:mm:ss a",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/MM/yy h:mm a",
+ "shortDate": "d/MM/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RM",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ms",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_mt-mt.js b/1.1.5/i18n/angular-locale_mt-mt.js
new file mode 100644
index 0000000000..931c4a236d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_mt-mt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "QN",
+ "1": "WN"
+ },
+ "DAY": {
+ "0": "Il-\u0126add",
+ "1": "It-Tnejn",
+ "2": "It-Tlieta",
+ "3": "L-Erbg\u0127a",
+ "4": "Il-\u0126amis",
+ "5": "Il-\u0120img\u0127a",
+ "6": "Is-Sibt"
+ },
+ "MONTH": {
+ "0": "Jannar",
+ "1": "Frar",
+ "2": "Marzu",
+ "3": "April",
+ "4": "Mejju",
+ "5": "\u0120unju",
+ "6": "Lulju",
+ "7": "Awwissu",
+ "8": "Settembru",
+ "9": "Ottubru",
+ "10": "Novembru",
+ "11": "Di\u010bembru"
+ },
+ "SHORTDAY": {
+ "0": "\u0126ad",
+ "1": "Tne",
+ "2": "Tli",
+ "3": "Erb",
+ "4": "\u0126am",
+ "5": "\u0120im",
+ "6": "Sib"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Fra",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mej",
+ "5": "\u0120un",
+ "6": "Lul",
+ "7": "Aww",
+ "8": "Set",
+ "9": "Ott",
+ "10": "Nov",
+ "11": "Di\u010b"
+ },
+ "fullDate": "EEEE, d 'ta'\u2019 MMMM y",
+ "longDate": "d 'ta'\u2019 MMMM y",
+ "medium": "dd MMM y HH:mm:ss",
+ "mediumDate": "dd MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yyyy HH:mm",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "mt-mt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n == (n | 0) && n % 100 >= 2 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 19) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_mt.js b/1.1.5/i18n/angular-locale_mt.js
new file mode 100644
index 0000000000..b3d273e72f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_mt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "QN",
+ "1": "WN"
+ },
+ "DAY": {
+ "0": "Il-\u0126add",
+ "1": "It-Tnejn",
+ "2": "It-Tlieta",
+ "3": "L-Erbg\u0127a",
+ "4": "Il-\u0126amis",
+ "5": "Il-\u0120img\u0127a",
+ "6": "Is-Sibt"
+ },
+ "MONTH": {
+ "0": "Jannar",
+ "1": "Frar",
+ "2": "Marzu",
+ "3": "April",
+ "4": "Mejju",
+ "5": "\u0120unju",
+ "6": "Lulju",
+ "7": "Awwissu",
+ "8": "Settembru",
+ "9": "Ottubru",
+ "10": "Novembru",
+ "11": "Di\u010bembru"
+ },
+ "SHORTDAY": {
+ "0": "\u0126ad",
+ "1": "Tne",
+ "2": "Tli",
+ "3": "Erb",
+ "4": "\u0126am",
+ "5": "\u0120im",
+ "6": "Sib"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Fra",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mej",
+ "5": "\u0120un",
+ "6": "Lul",
+ "7": "Aww",
+ "8": "Set",
+ "9": "Ott",
+ "10": "Nov",
+ "11": "Di\u010b"
+ },
+ "fullDate": "EEEE, d 'ta'\u2019 MMMM y",
+ "longDate": "d 'ta'\u2019 MMMM y",
+ "medium": "dd MMM y HH:mm:ss",
+ "mediumDate": "dd MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yyyy HH:mm",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "mt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n == (n | 0) && n % 100 >= 2 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 19) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_nl-aw.js b/1.1.5/i18n/angular-locale_nl-aw.js
new file mode 100644
index 0000000000..c5d0d1ca47
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_nl-aw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "zondag",
+ "1": "maandag",
+ "2": "dinsdag",
+ "3": "woensdag",
+ "4": "donderdag",
+ "5": "vrijdag",
+ "6": "zaterdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "maart",
+ "3": "april",
+ "4": "mei",
+ "5": "juni",
+ "6": "juli",
+ "7": "augustus",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "zo",
+ "1": "ma",
+ "2": "di",
+ "3": "wo",
+ "4": "do",
+ "5": "vr",
+ "6": "za"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mrt.",
+ "3": "apr.",
+ "4": "mei",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "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": "€",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00A4 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "nl-aw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_nl-be.js b/1.1.5/i18n/angular-locale_nl-be.js
new file mode 100644
index 0000000000..2975b2c558
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_nl-be.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "zondag",
+ "1": "maandag",
+ "2": "dinsdag",
+ "3": "woensdag",
+ "4": "donderdag",
+ "5": "vrijdag",
+ "6": "zaterdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "maart",
+ "3": "april",
+ "4": "mei",
+ "5": "juni",
+ "6": "juli",
+ "7": "augustus",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "zo",
+ "1": "ma",
+ "2": "di",
+ "3": "wo",
+ "4": "do",
+ "5": "vr",
+ "6": "za"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mrt.",
+ "3": "apr.",
+ "4": "mei",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "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/MM/yy HH:mm",
+ "shortDate": "d/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "€",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00A4 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "nl-be",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_nl-cw.js b/1.1.5/i18n/angular-locale_nl-cw.js
new file mode 100644
index 0000000000..66bf0da805
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_nl-cw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "zondag",
+ "1": "maandag",
+ "2": "dinsdag",
+ "3": "woensdag",
+ "4": "donderdag",
+ "5": "vrijdag",
+ "6": "zaterdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "maart",
+ "3": "april",
+ "4": "mei",
+ "5": "juni",
+ "6": "juli",
+ "7": "augustus",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "zo",
+ "1": "ma",
+ "2": "di",
+ "3": "wo",
+ "4": "do",
+ "5": "vr",
+ "6": "za"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mrt.",
+ "3": "apr.",
+ "4": "mei",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "nl-cw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_nl-nl.js b/1.1.5/i18n/angular-locale_nl-nl.js
new file mode 100644
index 0000000000..f614bb4c3a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_nl-nl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "zondag",
+ "1": "maandag",
+ "2": "dinsdag",
+ "3": "woensdag",
+ "4": "donderdag",
+ "5": "vrijdag",
+ "6": "zaterdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "maart",
+ "3": "april",
+ "4": "mei",
+ "5": "juni",
+ "6": "juli",
+ "7": "augustus",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "zo",
+ "1": "ma",
+ "2": "di",
+ "3": "wo",
+ "4": "do",
+ "5": "vr",
+ "6": "za"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mrt.",
+ "3": "apr.",
+ "4": "mei",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "nl-nl",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_nl-sx.js b/1.1.5/i18n/angular-locale_nl-sx.js
new file mode 100644
index 0000000000..3ba19b9f12
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_nl-sx.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "zondag",
+ "1": "maandag",
+ "2": "dinsdag",
+ "3": "woensdag",
+ "4": "donderdag",
+ "5": "vrijdag",
+ "6": "zaterdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "maart",
+ "3": "april",
+ "4": "mei",
+ "5": "juni",
+ "6": "juli",
+ "7": "augustus",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "zo",
+ "1": "ma",
+ "2": "di",
+ "3": "wo",
+ "4": "do",
+ "5": "vr",
+ "6": "za"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mrt.",
+ "3": "apr.",
+ "4": "mei",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "nl-sx",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_nl.js b/1.1.5/i18n/angular-locale_nl.js
new file mode 100644
index 0000000000..18d407a77b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_nl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "zondag",
+ "1": "maandag",
+ "2": "dinsdag",
+ "3": "woensdag",
+ "4": "donderdag",
+ "5": "vrijdag",
+ "6": "zaterdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "maart",
+ "3": "april",
+ "4": "mei",
+ "5": "juni",
+ "6": "juli",
+ "7": "augustus",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "zo",
+ "1": "ma",
+ "2": "di",
+ "3": "wo",
+ "4": "do",
+ "5": "vr",
+ "6": "za"
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mrt.",
+ "3": "apr.",
+ "4": "mei",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "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": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0",
+ "negSuf": "-",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "nl",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_no.js b/1.1.5/i18n/angular-locale_no.js
new file mode 100644
index 0000000000..b12461a2fc
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_no.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "s\u00f8ndag",
+ "1": "mandag",
+ "2": "tirsdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "l\u00f8rdag"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "mars",
+ "3": "april",
+ "4": "mai",
+ "5": "juni",
+ "6": "juli",
+ "7": "august",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "desember"
+ },
+ "SHORTDAY": {
+ "0": "s\u00f8n.",
+ "1": "man.",
+ "2": "tir.",
+ "3": "ons.",
+ "4": "tor.",
+ "5": "fre.",
+ "6": "l\u00f8r."
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mars",
+ "3": "apr.",
+ "4": "mai",
+ "5": "juni",
+ "6": "juli",
+ "7": "aug.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "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": "dd.MM.yy HH:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "no",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_or-in.js b/1.1.5/i18n/angular-locale_or-in.js
new file mode 100644
index 0000000000..ddc453d2f6
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_or-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30",
+ "1": "\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30",
+ "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30",
+ "3": "\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30",
+ "4": "\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30",
+ "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30",
+ "6": "\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"
+ },
+ "MONTH": {
+ "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
+ "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
+ "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
+ "4": "\u0b2e\u0b47",
+ "5": "\u0b1c\u0b41\u0b28",
+ "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
+ "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
+ "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
+ "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
+ },
+ "SHORTDAY": {
+ "0": "\u0b30\u0b2c\u0b3f",
+ "1": "\u0b38\u0b4b\u0b2e",
+ "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33",
+ "3": "\u0b2c\u0b41\u0b27",
+ "4": "\u0b17\u0b41\u0b30\u0b41",
+ "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30",
+ "6": "\u0b36\u0b28\u0b3f"
+ },
+ "SHORTMONTH": {
+ "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
+ "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
+ "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
+ "4": "\u0b2e\u0b47",
+ "5": "\u0b1c\u0b41\u0b28",
+ "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
+ "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
+ "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
+ "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "or-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_or.js b/1.1.5/i18n/angular-locale_or.js
new file mode 100644
index 0000000000..cf8a14b380
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_or.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30",
+ "1": "\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30",
+ "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30",
+ "3": "\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30",
+ "4": "\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30",
+ "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30",
+ "6": "\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"
+ },
+ "MONTH": {
+ "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
+ "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
+ "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
+ "4": "\u0b2e\u0b47",
+ "5": "\u0b1c\u0b41\u0b28",
+ "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
+ "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
+ "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
+ "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
+ },
+ "SHORTDAY": {
+ "0": "\u0b30\u0b2c\u0b3f",
+ "1": "\u0b38\u0b4b\u0b2e",
+ "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33",
+ "3": "\u0b2c\u0b41\u0b27",
+ "4": "\u0b17\u0b41\u0b30\u0b41",
+ "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30",
+ "6": "\u0b36\u0b28\u0b3f"
+ },
+ "SHORTMONTH": {
+ "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
+ "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
+ "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
+ "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
+ "4": "\u0b2e\u0b47",
+ "5": "\u0b1c\u0b41\u0b28",
+ "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
+ "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
+ "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
+ "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
+ "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "or",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pl-pl.js b/1.1.5/i18n/angular-locale_pl-pl.js
new file mode 100644
index 0000000000..10e76e0a13
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pl-pl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "niedziela",
+ "1": "poniedzia\u0142ek",
+ "2": "wtorek",
+ "3": "\u015broda",
+ "4": "czwartek",
+ "5": "pi\u0105tek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "stycznia",
+ "1": "lutego",
+ "2": "marca",
+ "3": "kwietnia",
+ "4": "maja",
+ "5": "czerwca",
+ "6": "lipca",
+ "7": "sierpnia",
+ "8": "wrze\u015bnia",
+ "9": "pa\u017adziernika",
+ "10": "listopada",
+ "11": "grudnia"
+ },
+ "SHORTDAY": {
+ "0": "niedz.",
+ "1": "pon.",
+ "2": "wt.",
+ "3": "\u015br.",
+ "4": "czw.",
+ "5": "pt.",
+ "6": "sob."
+ },
+ "SHORTMONTH": {
+ "0": "sty",
+ "1": "lut",
+ "2": "mar",
+ "3": "kwi",
+ "4": "maj",
+ "5": "cze",
+ "6": "lip",
+ "7": "sie",
+ "8": "wrz",
+ "9": "pa\u017a",
+ "10": "lis",
+ "11": "gru"
+ },
+ "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.yyyy HH:mm",
+ "shortDate": "dd.MM.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "z\u0142",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "pl-pl",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n != 1 && (n % 10 == 0 || n % 10 == 1) || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 12 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pl.js b/1.1.5/i18n/angular-locale_pl.js
new file mode 100644
index 0000000000..8d881aafd7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "niedziela",
+ "1": "poniedzia\u0142ek",
+ "2": "wtorek",
+ "3": "\u015broda",
+ "4": "czwartek",
+ "5": "pi\u0105tek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "stycznia",
+ "1": "lutego",
+ "2": "marca",
+ "3": "kwietnia",
+ "4": "maja",
+ "5": "czerwca",
+ "6": "lipca",
+ "7": "sierpnia",
+ "8": "wrze\u015bnia",
+ "9": "pa\u017adziernika",
+ "10": "listopada",
+ "11": "grudnia"
+ },
+ "SHORTDAY": {
+ "0": "niedz.",
+ "1": "pon.",
+ "2": "wt.",
+ "3": "\u015br.",
+ "4": "czw.",
+ "5": "pt.",
+ "6": "sob."
+ },
+ "SHORTMONTH": {
+ "0": "sty",
+ "1": "lut",
+ "2": "mar",
+ "3": "kwi",
+ "4": "maj",
+ "5": "cze",
+ "6": "lip",
+ "7": "sie",
+ "8": "wrz",
+ "9": "pa\u017a",
+ "10": "lis",
+ "11": "gru"
+ },
+ "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.yyyy HH:mm",
+ "shortDate": "dd.MM.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "z\u0142",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "pl",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n != 1 && (n % 10 == 0 || n % 10 == 1) || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 12 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt-ao.js b/1.1.5/i18n/angular-locale_pt-ao.js
new file mode 100644
index 0000000000..02fbc6290a
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt-ao.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "segunda-feira",
+ "2": "terça-feira",
+ "3": "quarta-feira",
+ "4": "quinta-feira",
+ "5": "sexta-feira",
+ "6": "sábado"
+ },
+ "MONTH": {
+ "0": "janeiro",
+ "1": "fevereiro",
+ "2": "março",
+ "3": "abril",
+ "4": "maio",
+ "5": "junho",
+ "6": "julho",
+ "7": "agosto",
+ "8": "setembro",
+ "9": "outubro",
+ "10": "novembro",
+ "11": "dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "sáb"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "fev",
+ "2": "mar",
+ "3": "abr",
+ "4": "mai",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "set",
+ "9": "out",
+ "10": "nov",
+ "11": "dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "pt-ao",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt-br.js b/1.1.5/i18n/angular-locale_pt-br.js
new file mode 100644
index 0000000000..0583a02ff7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt-br.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "segunda-feira",
+ "2": "ter\u00e7a-feira",
+ "3": "quarta-feira",
+ "4": "quinta-feira",
+ "5": "sexta-feira",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "janeiro",
+ "1": "fevereiro",
+ "2": "mar\u00e7o",
+ "3": "abril",
+ "4": "maio",
+ "5": "junho",
+ "6": "julho",
+ "7": "agosto",
+ "8": "setembro",
+ "9": "outubro",
+ "10": "novembro",
+ "11": "dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "fev",
+ "2": "mar",
+ "3": "abr",
+ "4": "mai",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "set",
+ "9": "out",
+ "10": "nov",
+ "11": "dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "pt-br",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt-gw.js b/1.1.5/i18n/angular-locale_pt-gw.js
new file mode 100644
index 0000000000..f3cfdf7948
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt-gw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "segunda-feira",
+ "2": "terça-feira",
+ "3": "quarta-feira",
+ "4": "quinta-feira",
+ "5": "sexta-feira",
+ "6": "sábado"
+ },
+ "MONTH": {
+ "0": "janeiro",
+ "1": "fevereiro",
+ "2": "março",
+ "3": "abril",
+ "4": "maio",
+ "5": "junho",
+ "6": "julho",
+ "7": "agosto",
+ "8": "setembro",
+ "9": "outubro",
+ "10": "novembro",
+ "11": "dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "sáb"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "fev",
+ "2": "mar",
+ "3": "abr",
+ "4": "mai",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "set",
+ "9": "out",
+ "10": "nov",
+ "11": "dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "pt-gw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt-mz.js b/1.1.5/i18n/angular-locale_pt-mz.js
new file mode 100644
index 0000000000..d8b96e5ba0
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt-mz.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "segunda-feira",
+ "2": "terça-feira",
+ "3": "quarta-feira",
+ "4": "quinta-feira",
+ "5": "sexta-feira",
+ "6": "sábado"
+ },
+ "MONTH": {
+ "0": "janeiro",
+ "1": "fevereiro",
+ "2": "março",
+ "3": "abril",
+ "4": "maio",
+ "5": "junho",
+ "6": "julho",
+ "7": "agosto",
+ "8": "setembro",
+ "9": "outubro",
+ "10": "novembro",
+ "11": "dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "sáb"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "fev",
+ "2": "mar",
+ "3": "abr",
+ "4": "mai",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "set",
+ "9": "out",
+ "10": "nov",
+ "11": "dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "pt-mz",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt-pt.js b/1.1.5/i18n/angular-locale_pt-pt.js
new file mode 100644
index 0000000000..e02e1c8b41
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt-pt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "a.m.",
+ "1": "p.m."
+ },
+ "DAY": {
+ "0": "Domingo",
+ "1": "Segunda-feira",
+ "2": "Ter\u00e7a-feira",
+ "3": "Quarta-feira",
+ "4": "Quinta-feira",
+ "5": "Sexta-feira",
+ "6": "S\u00e1bado"
+ },
+ "MONTH": {
+ "0": "Janeiro",
+ "1": "Fevereiro",
+ "2": "Mar\u00e7o",
+ "3": "Abril",
+ "4": "Maio",
+ "5": "Junho",
+ "6": "Julho",
+ "7": "Agosto",
+ "8": "Setembro",
+ "9": "Outubro",
+ "10": "Novembro",
+ "11": "Dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Fev",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "Mai",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ago",
+ "8": "Set",
+ "9": "Out",
+ "10": "Nov",
+ "11": "Dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "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": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "pt-pt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt-st.js b/1.1.5/i18n/angular-locale_pt-st.js
new file mode 100644
index 0000000000..4423d8628f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt-st.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "segunda-feira",
+ "2": "terça-feira",
+ "3": "quarta-feira",
+ "4": "quinta-feira",
+ "5": "sexta-feira",
+ "6": "sábado"
+ },
+ "MONTH": {
+ "0": "janeiro",
+ "1": "fevereiro",
+ "2": "março",
+ "3": "abril",
+ "4": "maio",
+ "5": "junho",
+ "6": "julho",
+ "7": "agosto",
+ "8": "setembro",
+ "9": "outubro",
+ "10": "novembro",
+ "11": "dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "sáb"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "fev",
+ "2": "mar",
+ "3": "abr",
+ "4": "mai",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "set",
+ "9": "out",
+ "10": "nov",
+ "11": "dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "pt-st",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_pt.js b/1.1.5/i18n/angular-locale_pt.js
new file mode 100644
index 0000000000..7f37abc898
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_pt.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "domingo",
+ "1": "segunda-feira",
+ "2": "ter\u00e7a-feira",
+ "3": "quarta-feira",
+ "4": "quinta-feira",
+ "5": "sexta-feira",
+ "6": "s\u00e1bado"
+ },
+ "MONTH": {
+ "0": "janeiro",
+ "1": "fevereiro",
+ "2": "mar\u00e7o",
+ "3": "abril",
+ "4": "maio",
+ "5": "junho",
+ "6": "julho",
+ "7": "agosto",
+ "8": "setembro",
+ "9": "outubro",
+ "10": "novembro",
+ "11": "dezembro"
+ },
+ "SHORTDAY": {
+ "0": "dom",
+ "1": "seg",
+ "2": "ter",
+ "3": "qua",
+ "4": "qui",
+ "5": "sex",
+ "6": "s\u00e1b"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "fev",
+ "2": "mar",
+ "3": "abr",
+ "4": "mai",
+ "5": "jun",
+ "6": "jul",
+ "7": "ago",
+ "8": "set",
+ "9": "out",
+ "10": "nov",
+ "11": "dez"
+ },
+ "fullDate": "EEEE, d 'de' MMMM 'de' y",
+ "longDate": "d 'de' MMMM 'de' y",
+ "medium": "dd/MM/yyyy HH:mm:ss",
+ "mediumDate": "dd/MM/yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yy HH:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R$",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "pt",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ro-md.js b/1.1.5/i18n/angular-locale_ro-md.js
new file mode 100644
index 0000000000..17393db0c0
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ro-md.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "duminică",
+ "1": "luni",
+ "2": "marți",
+ "3": "miercuri",
+ "4": "joi",
+ "5": "vineri",
+ "6": "sâmbătă"
+ },
+ "MONTH": {
+ "0": "ianuarie",
+ "1": "februarie",
+ "2": "martie",
+ "3": "aprilie",
+ "4": "mai",
+ "5": "iunie",
+ "6": "iulie",
+ "7": "august",
+ "8": "septembrie",
+ "9": "octombrie",
+ "10": "noiembrie",
+ "11": "decembrie"
+ },
+ "SHORTDAY": {
+ "0": "Du",
+ "1": "Lu",
+ "2": "Ma",
+ "3": "Mi",
+ "4": "Jo",
+ "5": "Vi",
+ "6": "Sâ"
+ },
+ "SHORTMONTH": {
+ "0": "ian.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "mai",
+ "5": "iun.",
+ "6": "iul.",
+ "7": "aug.",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yyyy HH:mm",
+ "shortDate": "dd.MM.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RON",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "ro-md",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n != 1 && n == (n | 0) && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ro-ro.js b/1.1.5/i18n/angular-locale_ro-ro.js
new file mode 100644
index 0000000000..df17f38038
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ro-ro.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "duminic\u0103",
+ "1": "luni",
+ "2": "mar\u021bi",
+ "3": "miercuri",
+ "4": "joi",
+ "5": "vineri",
+ "6": "s\u00e2mb\u0103t\u0103"
+ },
+ "MONTH": {
+ "0": "ianuarie",
+ "1": "februarie",
+ "2": "martie",
+ "3": "aprilie",
+ "4": "mai",
+ "5": "iunie",
+ "6": "iulie",
+ "7": "august",
+ "8": "septembrie",
+ "9": "octombrie",
+ "10": "noiembrie",
+ "11": "decembrie"
+ },
+ "SHORTDAY": {
+ "0": "Du",
+ "1": "Lu",
+ "2": "Ma",
+ "3": "Mi",
+ "4": "Jo",
+ "5": "Vi",
+ "6": "S\u00e2"
+ },
+ "SHORTMONTH": {
+ "0": "ian.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "mai",
+ "5": "iun.",
+ "6": "iul.",
+ "7": "aug.",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yyyy HH:mm",
+ "shortDate": "dd.MM.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RON",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "ro-ro",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n != 1 && n == (n | 0) && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ro.js b/1.1.5/i18n/angular-locale_ro.js
new file mode 100644
index 0000000000..21439debf1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ro.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "duminic\u0103",
+ "1": "luni",
+ "2": "mar\u021bi",
+ "3": "miercuri",
+ "4": "joi",
+ "5": "vineri",
+ "6": "s\u00e2mb\u0103t\u0103"
+ },
+ "MONTH": {
+ "0": "ianuarie",
+ "1": "februarie",
+ "2": "martie",
+ "3": "aprilie",
+ "4": "mai",
+ "5": "iunie",
+ "6": "iulie",
+ "7": "august",
+ "8": "septembrie",
+ "9": "octombrie",
+ "10": "noiembrie",
+ "11": "decembrie"
+ },
+ "SHORTDAY": {
+ "0": "Du",
+ "1": "Lu",
+ "2": "Ma",
+ "3": "Mi",
+ "4": "Jo",
+ "5": "Vi",
+ "6": "S\u00e2"
+ },
+ "SHORTMONTH": {
+ "0": "ian.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "mai",
+ "5": "iun.",
+ "6": "iul.",
+ "7": "aug.",
+ "8": "sept.",
+ "9": "oct.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, d MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "dd.MM.yyyy HH:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd.MM.yyyy HH:mm",
+ "shortDate": "dd.MM.yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "RON",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "ro",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n != 1 && n == (n | 0) && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ru-md.js b/1.1.5/i18n/angular-locale_ru-md.js
new file mode 100644
index 0000000000..76e233f8b9
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ru-md.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "до полудня",
+ "1": "после полудня"
+ },
+ "DAY": {
+ "0": "воскресенье",
+ "1": "понедельник",
+ "2": "вторник",
+ "3": "среда",
+ "4": "четверг",
+ "5": "пятница",
+ "6": "суббота"
+ },
+ "MONTH": {
+ "0": "января",
+ "1": "февраля",
+ "2": "марта",
+ "3": "апреля",
+ "4": "мая",
+ "5": "июня",
+ "6": "июля",
+ "7": "августа",
+ "8": "сентября",
+ "9": "октября",
+ "10": "ноября",
+ "11": "декабря"
+ },
+ "SHORTDAY": {
+ "0": "вс",
+ "1": "пн",
+ "2": "вт",
+ "3": "ср",
+ "4": "чт",
+ "5": "пт",
+ "6": "сб"
+ },
+ "SHORTMONTH": {
+ "0": "янв.",
+ "1": "февр.",
+ "2": "марта",
+ "3": "апр.",
+ "4": "мая",
+ "5": "июня",
+ "6": "июля",
+ "7": "авг.",
+ "8": "сент.",
+ "9": "окт.",
+ "10": "нояб.",
+ "11": "дек."
+ },
+ "fullDate": "EEEE, d MMMM y 'г'.",
+ "longDate": "d MMMM y 'г'.",
+ "medium": "dd.MM.yyyy H:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "руб.",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": " ",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "ru-md",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ru-ru.js b/1.1.5/i18n/angular-locale_ru-ru.js
new file mode 100644
index 0000000000..d0f2508278
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ru-ru.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0434\u043e \u043f\u043e\u043b\u0443\u0434\u043d\u044f",
+ "1": "\u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0434\u043d\u044f"
+ },
+ "DAY": {
+ "0": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",
+ "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a",
+ "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
+ "3": "\u0441\u0440\u0435\u0434\u0430",
+ "4": "\u0447\u0435\u0442\u0432\u0435\u0440\u0433",
+ "5": "\u043f\u044f\u0442\u043d\u0438\u0446\u0430",
+ "6": "\u0441\u0443\u0431\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u044f\u043d\u0432\u0430\u0440\u044f",
+ "1": "\u0444\u0435\u0432\u0440\u0430\u043b\u044f",
+ "2": "\u043c\u0430\u0440\u0442\u0430",
+ "3": "\u0430\u043f\u0440\u0435\u043b\u044f",
+ "4": "\u043c\u0430\u044f",
+ "5": "\u0438\u044e\u043d\u044f",
+ "6": "\u0438\u044e\u043b\u044f",
+ "7": "\u0430\u0432\u0433\u0443\u0441\u0442\u0430",
+ "8": "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f",
+ "9": "\u043e\u043a\u0442\u044f\u0431\u0440\u044f",
+ "10": "\u043d\u043e\u044f\u0431\u0440\u044f",
+ "11": "\u0434\u0435\u043a\u0430\u0431\u0440\u044f"
+ },
+ "SHORTDAY": {
+ "0": "\u0432\u0441",
+ "1": "\u043f\u043d",
+ "2": "\u0432\u0442",
+ "3": "\u0441\u0440",
+ "4": "\u0447\u0442",
+ "5": "\u043f\u0442",
+ "6": "\u0441\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u044f\u043d\u0432.",
+ "1": "\u0444\u0435\u0432\u0440.",
+ "2": "\u043c\u0430\u0440\u0442\u0430",
+ "3": "\u0430\u043f\u0440.",
+ "4": "\u043c\u0430\u044f",
+ "5": "\u0438\u044e\u043d\u044f",
+ "6": "\u0438\u044e\u043b\u044f",
+ "7": "\u0430\u0432\u0433.",
+ "8": "\u0441\u0435\u043d\u0442.",
+ "9": "\u043e\u043a\u0442.",
+ "10": "\u043d\u043e\u044f\u0431.",
+ "11": "\u0434\u0435\u043a."
+ },
+ "fullDate": "EEEE, d MMMM y\u00a0'\u0433'.",
+ "longDate": "d MMMM y\u00a0'\u0433'.",
+ "medium": "dd.MM.yyyy H:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u0440\u0443\u0431.",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "ru-ru",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ru-ua.js b/1.1.5/i18n/angular-locale_ru-ua.js
new file mode 100644
index 0000000000..0d29b4a70d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ru-ua.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "до полудня",
+ "1": "после полудня"
+ },
+ "DAY": {
+ "0": "воскресенье",
+ "1": "понедельник",
+ "2": "вторник",
+ "3": "среда",
+ "4": "четверг",
+ "5": "пятница",
+ "6": "суббота"
+ },
+ "MONTH": {
+ "0": "января",
+ "1": "февраля",
+ "2": "марта",
+ "3": "апреля",
+ "4": "мая",
+ "5": "июня",
+ "6": "июля",
+ "7": "августа",
+ "8": "сентября",
+ "9": "октября",
+ "10": "ноября",
+ "11": "декабря"
+ },
+ "SHORTDAY": {
+ "0": "вс",
+ "1": "пн",
+ "2": "вт",
+ "3": "ср",
+ "4": "чт",
+ "5": "пт",
+ "6": "сб"
+ },
+ "SHORTMONTH": {
+ "0": "янв.",
+ "1": "февр.",
+ "2": "марта",
+ "3": "апр.",
+ "4": "мая",
+ "5": "июня",
+ "6": "июля",
+ "7": "авг.",
+ "8": "сент.",
+ "9": "окт.",
+ "10": "нояб.",
+ "11": "дек."
+ },
+ "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": "руб.",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": " ",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "ru-ua",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ru.js b/1.1.5/i18n/angular-locale_ru.js
new file mode 100644
index 0000000000..f807b68ab9
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ru.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0434\u043e \u043f\u043e\u043b\u0443\u0434\u043d\u044f",
+ "1": "\u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0434\u043d\u044f"
+ },
+ "DAY": {
+ "0": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",
+ "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a",
+ "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
+ "3": "\u0441\u0440\u0435\u0434\u0430",
+ "4": "\u0447\u0435\u0442\u0432\u0435\u0440\u0433",
+ "5": "\u043f\u044f\u0442\u043d\u0438\u0446\u0430",
+ "6": "\u0441\u0443\u0431\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u044f\u043d\u0432\u0430\u0440\u044f",
+ "1": "\u0444\u0435\u0432\u0440\u0430\u043b\u044f",
+ "2": "\u043c\u0430\u0440\u0442\u0430",
+ "3": "\u0430\u043f\u0440\u0435\u043b\u044f",
+ "4": "\u043c\u0430\u044f",
+ "5": "\u0438\u044e\u043d\u044f",
+ "6": "\u0438\u044e\u043b\u044f",
+ "7": "\u0430\u0432\u0433\u0443\u0441\u0442\u0430",
+ "8": "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f",
+ "9": "\u043e\u043a\u0442\u044f\u0431\u0440\u044f",
+ "10": "\u043d\u043e\u044f\u0431\u0440\u044f",
+ "11": "\u0434\u0435\u043a\u0430\u0431\u0440\u044f"
+ },
+ "SHORTDAY": {
+ "0": "\u0432\u0441",
+ "1": "\u043f\u043d",
+ "2": "\u0432\u0442",
+ "3": "\u0441\u0440",
+ "4": "\u0447\u0442",
+ "5": "\u043f\u0442",
+ "6": "\u0441\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u044f\u043d\u0432.",
+ "1": "\u0444\u0435\u0432\u0440.",
+ "2": "\u043c\u0430\u0440\u0442\u0430",
+ "3": "\u0430\u043f\u0440.",
+ "4": "\u043c\u0430\u044f",
+ "5": "\u0438\u044e\u043d\u044f",
+ "6": "\u0438\u044e\u043b\u044f",
+ "7": "\u0430\u0432\u0433.",
+ "8": "\u0441\u0435\u043d\u0442.",
+ "9": "\u043e\u043a\u0442.",
+ "10": "\u043d\u043e\u044f\u0431.",
+ "11": "\u0434\u0435\u043a."
+ },
+ "fullDate": "EEEE, d MMMM y\u00a0'\u0433'.",
+ "longDate": "d MMMM y\u00a0'\u0433'.",
+ "medium": "dd.MM.yyyy H:mm:ss",
+ "mediumDate": "dd.MM.yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "dd.MM.yy H:mm",
+ "shortDate": "dd.MM.yy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u0440\u0443\u0431.",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "ru",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sk-sk.js b/1.1.5/i18n/angular-locale_sk-sk.js
new file mode 100644
index 0000000000..ce568500a6
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sk-sk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "dopoludnia",
+ "1": "popoludn\u00ed"
+ },
+ "DAY": {
+ "0": "nede\u013ea",
+ "1": "pondelok",
+ "2": "utorok",
+ "3": "streda",
+ "4": "\u0161tvrtok",
+ "5": "piatok",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "janu\u00e1ra",
+ "1": "febru\u00e1ra",
+ "2": "marca",
+ "3": "apr\u00edla",
+ "4": "m\u00e1ja",
+ "5": "j\u00fana",
+ "6": "j\u00fala",
+ "7": "augusta",
+ "8": "septembra",
+ "9": "okt\u00f3bra",
+ "10": "novembra",
+ "11": "decembra"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "ut",
+ "3": "st",
+ "4": "\u0161t",
+ "5": "pi",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "m\u00e1j",
+ "5": "j\u00fan",
+ "6": "j\u00fal",
+ "7": "aug",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.yyyy H:mm:ss",
+ "mediumDate": "d.M.yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "d.M.yyyy H:mm",
+ "shortDate": "d.M.yyyy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sk-sk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n >= 2 && n <= 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sk.js b/1.1.5/i18n/angular-locale_sk.js
new file mode 100644
index 0000000000..a20f35f6ea
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "dopoludnia",
+ "1": "popoludn\u00ed"
+ },
+ "DAY": {
+ "0": "nede\u013ea",
+ "1": "pondelok",
+ "2": "utorok",
+ "3": "streda",
+ "4": "\u0161tvrtok",
+ "5": "piatok",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "janu\u00e1ra",
+ "1": "febru\u00e1ra",
+ "2": "marca",
+ "3": "apr\u00edla",
+ "4": "m\u00e1ja",
+ "5": "j\u00fana",
+ "6": "j\u00fala",
+ "7": "augusta",
+ "8": "septembra",
+ "9": "okt\u00f3bra",
+ "10": "novembra",
+ "11": "decembra"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "ut",
+ "3": "st",
+ "4": "\u0161t",
+ "5": "pi",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "m\u00e1j",
+ "5": "j\u00fan",
+ "6": "j\u00fal",
+ "7": "aug",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "fullDate": "EEEE, d. MMMM y",
+ "longDate": "d. MMMM y",
+ "medium": "d.M.yyyy H:mm:ss",
+ "mediumDate": "d.M.yyyy",
+ "mediumTime": "H:mm:ss",
+ "short": "d.M.yyyy H:mm",
+ "shortDate": "d.M.yyyy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n >= 2 && n <= 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sl-si.js b/1.1.5/i18n/angular-locale_sl-si.js
new file mode 100644
index 0000000000..90fa2b4091
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sl-si.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "dop.",
+ "1": "pop."
+ },
+ "DAY": {
+ "0": "nedelja",
+ "1": "ponedeljek",
+ "2": "torek",
+ "3": "sreda",
+ "4": "\u010detrtek",
+ "5": "petek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "marec",
+ "3": "april",
+ "4": "maj",
+ "5": "junij",
+ "6": "julij",
+ "7": "avgust",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "ned.",
+ "1": "pon.",
+ "2": "tor.",
+ "3": "sre.",
+ "4": "\u010det.",
+ "5": "pet.",
+ "6": "sob."
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "maj",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "avg.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, dd. MMMM y",
+ "longDate": "dd. MMMM y",
+ "medium": "d. MMM yyyy HH:mm:ss",
+ "mediumDate": "d. MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "d. MM. yy HH:mm",
+ "shortDate": "d. MM. yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sl-si",
+ "pluralCat": function (n) { if (n % 100 == 1) { return PLURAL_CATEGORY.ONE; } if (n % 100 == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 == 3 || n % 100 == 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sl.js b/1.1.5/i18n/angular-locale_sl.js
new file mode 100644
index 0000000000..1e4007c5f2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "dop.",
+ "1": "pop."
+ },
+ "DAY": {
+ "0": "nedelja",
+ "1": "ponedeljek",
+ "2": "torek",
+ "3": "sreda",
+ "4": "\u010detrtek",
+ "5": "petek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "marec",
+ "3": "april",
+ "4": "maj",
+ "5": "junij",
+ "6": "julij",
+ "7": "avgust",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "ned.",
+ "1": "pon.",
+ "2": "tor.",
+ "3": "sre.",
+ "4": "\u010det.",
+ "5": "pet.",
+ "6": "sob."
+ },
+ "SHORTMONTH": {
+ "0": "jan.",
+ "1": "feb.",
+ "2": "mar.",
+ "3": "apr.",
+ "4": "maj",
+ "5": "jun.",
+ "6": "jul.",
+ "7": "avg.",
+ "8": "sep.",
+ "9": "okt.",
+ "10": "nov.",
+ "11": "dec."
+ },
+ "fullDate": "EEEE, dd. MMMM y",
+ "longDate": "dd. MMMM y",
+ "medium": "d. MMM yyyy HH:mm:ss",
+ "mediumDate": "d. MMM yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "d. MM. yy HH:mm",
+ "shortDate": "d. MM. yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ac",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sl",
+ "pluralCat": function (n) { if (n % 100 == 1) { return PLURAL_CATEGORY.ONE; } if (n % 100 == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 == 3 || n % 100 == 4) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sq-al.js b/1.1.5/i18n/angular-locale_sq-al.js
new file mode 100644
index 0000000000..0fdd649249
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sq-al.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "PD",
+ "1": "MD"
+ },
+ "DAY": {
+ "0": "e diel",
+ "1": "e h\u00ebn\u00eb",
+ "2": "e mart\u00eb",
+ "3": "e m\u00ebrkur\u00eb",
+ "4": "e enjte",
+ "5": "e premte",
+ "6": "e shtun\u00eb"
+ },
+ "MONTH": {
+ "0": "janar",
+ "1": "shkurt",
+ "2": "mars",
+ "3": "prill",
+ "4": "maj",
+ "5": "qershor",
+ "6": "korrik",
+ "7": "gusht",
+ "8": "shtator",
+ "9": "tetor",
+ "10": "n\u00ebntor",
+ "11": "dhjetor"
+ },
+ "SHORTDAY": {
+ "0": "Die",
+ "1": "H\u00ebn",
+ "2": "Mar",
+ "3": "M\u00ebr",
+ "4": "Enj",
+ "5": "Pre",
+ "6": "Sht"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Shk",
+ "2": "Mar",
+ "3": "Pri",
+ "4": "Maj",
+ "5": "Qer",
+ "6": "Kor",
+ "7": "Gsh",
+ "8": "Sht",
+ "9": "Tet",
+ "10": "N\u00ebn",
+ "11": "Dhj"
+ },
+ "fullDate": "EEEE, dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "yyyy-MM-dd h.mm.ss.a",
+ "mediumDate": "yyyy-MM-dd",
+ "mediumTime": "h.mm.ss.a",
+ "short": "yy-MM-dd h.mm.a",
+ "shortDate": "yy-MM-dd",
+ "shortTime": "h.mm.a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Lek",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sq-al",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sq.js b/1.1.5/i18n/angular-locale_sq.js
new file mode 100644
index 0000000000..cafaa0fe12
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sq.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "PD",
+ "1": "MD"
+ },
+ "DAY": {
+ "0": "e diel",
+ "1": "e h\u00ebn\u00eb",
+ "2": "e mart\u00eb",
+ "3": "e m\u00ebrkur\u00eb",
+ "4": "e enjte",
+ "5": "e premte",
+ "6": "e shtun\u00eb"
+ },
+ "MONTH": {
+ "0": "janar",
+ "1": "shkurt",
+ "2": "mars",
+ "3": "prill",
+ "4": "maj",
+ "5": "qershor",
+ "6": "korrik",
+ "7": "gusht",
+ "8": "shtator",
+ "9": "tetor",
+ "10": "n\u00ebntor",
+ "11": "dhjetor"
+ },
+ "SHORTDAY": {
+ "0": "Die",
+ "1": "H\u00ebn",
+ "2": "Mar",
+ "3": "M\u00ebr",
+ "4": "Enj",
+ "5": "Pre",
+ "6": "Sht"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Shk",
+ "2": "Mar",
+ "3": "Pri",
+ "4": "Maj",
+ "5": "Qer",
+ "6": "Kor",
+ "7": "Gsh",
+ "8": "Sht",
+ "9": "Tet",
+ "10": "N\u00ebn",
+ "11": "Dhj"
+ },
+ "fullDate": "EEEE, dd MMMM y",
+ "longDate": "dd MMMM y",
+ "medium": "yyyy-MM-dd h.mm.ss.a",
+ "mediumDate": "yyyy-MM-dd",
+ "mediumTime": "h.mm.ss.a",
+ "short": "yy-MM-dd h.mm.a",
+ "shortDate": "yy-MM-dd",
+ "shortTime": "h.mm.a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Lek",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sq",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-cyrl-ba.js b/1.1.5/i18n/angular-locale_sr-cyrl-ba.js
new file mode 100644
index 0000000000..8ac4bd0b8e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-cyrl-ba.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "пре подне",
+ "1": "поподне"
+ },
+ "DAY": {
+ "0": "недеља",
+ "1": "понедељак",
+ "2": "уторак",
+ "3": "сриједа",
+ "4": "четвртак",
+ "5": "петак",
+ "6": "субота"
+ },
+ "MONTH": {
+ "0": "јануар",
+ "1": "фебруар",
+ "2": "март",
+ "3": "април",
+ "4": "мај",
+ "5": "јуни",
+ "6": "јули",
+ "7": "август",
+ "8": "септембар",
+ "9": "октобар",
+ "10": "новембар",
+ "11": "децембар"
+ },
+ "SHORTDAY": {
+ "0": "нед",
+ "1": "пон",
+ "2": "уто",
+ "3": "сри",
+ "4": "чет",
+ "5": "пет",
+ "6": "суб"
+ },
+ "SHORTMONTH": {
+ "0": "јан",
+ "1": "феб",
+ "2": "мар",
+ "3": "апр",
+ "4": "мај",
+ "5": "јун",
+ "6": "јул",
+ "7": "авг",
+ "8": "сеп",
+ "9": "окт",
+ "10": "нов",
+ "11": "дец"
+ },
+ "fullDate": "EEEE, dd. MMMM y.",
+ "longDate": "dd. MMMM y.",
+ "medium": "yyyy-MM-dd HH:mm:ss",
+ "mediumDate": "yyyy-MM-dd",
+ "mediumTime": "HH:mm:ss",
+ "short": "yy-MM-dd HH:mm",
+ "shortDate": "yy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sr-cyrl-ba",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-cyrl-me.js b/1.1.5/i18n/angular-locale_sr-cyrl-me.js
new file mode 100644
index 0000000000..28e570e870
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-cyrl-me.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "пре подне",
+ "1": "поподне"
+ },
+ "DAY": {
+ "0": "недеља",
+ "1": "понедељак",
+ "2": "уторак",
+ "3": "среда",
+ "4": "четвртак",
+ "5": "петак",
+ "6": "субота"
+ },
+ "MONTH": {
+ "0": "јануар",
+ "1": "фебруар",
+ "2": "март",
+ "3": "април",
+ "4": "мај",
+ "5": "јун",
+ "6": "јул",
+ "7": "август",
+ "8": "септембар",
+ "9": "октобар",
+ "10": "новембар",
+ "11": "децембар"
+ },
+ "SHORTDAY": {
+ "0": "нед",
+ "1": "пон",
+ "2": "уто",
+ "3": "сре",
+ "4": "чет",
+ "5": "пет",
+ "6": "суб"
+ },
+ "SHORTMONTH": {
+ "0": "јан",
+ "1": "феб",
+ "2": "мар",
+ "3": "апр",
+ "4": "мај",
+ "5": "јун",
+ "6": "јул",
+ "7": "авг",
+ "8": "сеп",
+ "9": "окт",
+ "10": "нов",
+ "11": "дец"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sr-cyrl-me",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-cyrl-rs.js b/1.1.5/i18n/angular-locale_sr-cyrl-rs.js
new file mode 100644
index 0000000000..fbe3e931de
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-cyrl-rs.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
+ "1": "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ },
+ "DAY": {
+ "0": "\u043d\u0435\u0434\u0435\u0459\u0430",
+ "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a",
+ "2": "\u0443\u0442\u043e\u0440\u0430\u043a",
+ "3": "\u0441\u0440\u0435\u0434\u0430",
+ "4": "\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a",
+ "5": "\u043f\u0435\u0442\u0430\u043a",
+ "6": "\u0441\u0443\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "1": "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "2": "\u043c\u0430\u0440\u0442",
+ "3": "\u0430\u043f\u0440\u0438\u043b",
+ "4": "\u043c\u0430\u0458",
+ "5": "\u0458\u0443\u043d",
+ "6": "\u0458\u0443\u043b",
+ "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "9": "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "10": "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "11": "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ },
+ "SHORTDAY": {
+ "0": "\u043d\u0435\u0434",
+ "1": "\u043f\u043e\u043d",
+ "2": "\u0443\u0442\u043e",
+ "3": "\u0441\u0440\u0435",
+ "4": "\u0447\u0435\u0442",
+ "5": "\u043f\u0435\u0442",
+ "6": "\u0441\u0443\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u0458\u0430\u043d",
+ "1": "\u0444\u0435\u0431",
+ "2": "\u043c\u0430\u0440",
+ "3": "\u0430\u043f\u0440",
+ "4": "\u043c\u0430\u0458",
+ "5": "\u0458\u0443\u043d",
+ "6": "\u0458\u0443\u043b",
+ "7": "\u0430\u0432\u0433",
+ "8": "\u0441\u0435\u043f",
+ "9": "\u043e\u043a\u0442",
+ "10": "\u043d\u043e\u0432",
+ "11": "\u0434\u0435\u0446"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sr-cyrl-rs",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-cyrl.js b/1.1.5/i18n/angular-locale_sr-cyrl.js
new file mode 100644
index 0000000000..38647adc2b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-cyrl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "пре подне",
+ "1": "поподне"
+ },
+ "DAY": {
+ "0": "недеља",
+ "1": "понедељак",
+ "2": "уторак",
+ "3": "среда",
+ "4": "четвртак",
+ "5": "петак",
+ "6": "субота"
+ },
+ "MONTH": {
+ "0": "јануар",
+ "1": "фебруар",
+ "2": "март",
+ "3": "април",
+ "4": "мај",
+ "5": "јун",
+ "6": "јул",
+ "7": "август",
+ "8": "септембар",
+ "9": "октобар",
+ "10": "новембар",
+ "11": "децембар"
+ },
+ "SHORTDAY": {
+ "0": "нед",
+ "1": "пон",
+ "2": "уто",
+ "3": "сре",
+ "4": "чет",
+ "5": "пет",
+ "6": "суб"
+ },
+ "SHORTMONTH": {
+ "0": "јан",
+ "1": "феб",
+ "2": "мар",
+ "3": "апр",
+ "4": "мај",
+ "5": "јун",
+ "6": "јул",
+ "7": "авг",
+ "8": "сеп",
+ "9": "окт",
+ "10": "нов",
+ "11": "дец"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sr-cyrl",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-latn-ba.js b/1.1.5/i18n/angular-locale_sr-latn-ba.js
new file mode 100644
index 0000000000..c27089cf9f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-latn-ba.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "pre podne",
+ "1": "popodne"
+ },
+ "DAY": {
+ "0": "nedelja",
+ "1": "ponedeljak",
+ "2": "utorak",
+ "3": "sreda",
+ "4": "četvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "mart",
+ "3": "april",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avgust",
+ "8": "septembar",
+ "9": "oktobar",
+ "10": "novembar",
+ "11": "decembar"
+ },
+ "SHORTDAY": {
+ "0": "ned",
+ "1": "pon",
+ "2": "uto",
+ "3": "sre",
+ "4": "čet",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avg",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sr-latn-ba",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-latn-me.js b/1.1.5/i18n/angular-locale_sr-latn-me.js
new file mode 100644
index 0000000000..bdbee28a60
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-latn-me.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "pre podne",
+ "1": "popodne"
+ },
+ "DAY": {
+ "0": "nedelja",
+ "1": "ponedeljak",
+ "2": "utorak",
+ "3": "sreda",
+ "4": "četvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "mart",
+ "3": "april",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avgust",
+ "8": "septembar",
+ "9": "oktobar",
+ "10": "novembar",
+ "11": "decembar"
+ },
+ "SHORTDAY": {
+ "0": "ned",
+ "1": "pon",
+ "2": "uto",
+ "3": "sre",
+ "4": "čet",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avg",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "fullDate": "EEEE, dd. MMMM y.",
+ "longDate": "d.MM.yyyy.",
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sr-latn-me",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-latn-rs.js b/1.1.5/i18n/angular-locale_sr-latn-rs.js
new file mode 100644
index 0000000000..f9c29396a4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-latn-rs.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "pre podne",
+ "1": "popodne"
+ },
+ "DAY": {
+ "0": "nedelja",
+ "1": "ponedeljak",
+ "2": "utorak",
+ "3": "sreda",
+ "4": "\u010detvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "mart",
+ "3": "april",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avgust",
+ "8": "septembar",
+ "9": "oktobar",
+ "10": "novembar",
+ "11": "decembar"
+ },
+ "SHORTDAY": {
+ "0": "ned",
+ "1": "pon",
+ "2": "uto",
+ "3": "sre",
+ "4": "\u010det",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avg",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sr-latn-rs",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-latn.js b/1.1.5/i18n/angular-locale_sr-latn.js
new file mode 100644
index 0000000000..3e3c90cf7d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-latn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "pre podne",
+ "1": "popodne"
+ },
+ "DAY": {
+ "0": "nedelja",
+ "1": "ponedeljak",
+ "2": "utorak",
+ "3": "sreda",
+ "4": "četvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "januar",
+ "1": "februar",
+ "2": "mart",
+ "3": "april",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avgust",
+ "8": "septembar",
+ "9": "oktobar",
+ "10": "novembar",
+ "11": "decembar"
+ },
+ "SHORTDAY": {
+ "0": "ned",
+ "1": "pon",
+ "2": "uto",
+ "3": "sre",
+ "4": "čet",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "avg",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sr-latn",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr-rs.js b/1.1.5/i18n/angular-locale_sr-rs.js
new file mode 100644
index 0000000000..9f4fccc795
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr-rs.js
@@ -0,0 +1,4 @@
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+$provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"","posSuf":" \u00A4","negPre":"-","negSuf":" \u00A4","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"РСД"},"pluralCat":function (n) { if ((n % 10) == 1 && (n % 100) != 11) { return PLURAL_CATEGORY.ONE; } if ((n % 10) >= 2 && (n % 10) <= 4 && ((n % 100) < 12 || (n % 100) > 14) && n == Math.floor(n)) { return PLURAL_CATEGORY.FEW; } if ((n % 10) == 0 || ((n % 10) >= 5 && (n % 10) <= 9) || ((n % 100) >= 11 && (n % 100) <= 14) && n == Math.floor(n)) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["јануар","фебруар","март","април","мај","јун","јул","август","септембар","октобар","новембар","децембар"],"SHORTMONTH":["јан","феб","мар","апр","мај","јун","јул","авг","сеп","окт","нов","дец"],"DAY":["недеља","понедељак","уторак","среда","четвртак","петак","субота"],"SHORTDAY":["нед","пон","уто","сре","чет","пет","суб"],"AMPMS":["пре подне","поподне"],"medium":"dd.MM.y. HH.mm.ss","short":"d.M.yy. HH.mm","fullDate":"EEEE, dd. MMMM y.","longDate":"dd. MMMM y.","mediumDate":"dd.MM.y.","shortDate":"d.M.yy.","mediumTime":"HH.mm.ss","shortTime":"HH.mm"},"id":"sr-rs"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sr.js b/1.1.5/i18n/angular-locale_sr.js
new file mode 100644
index 0000000000..97af279b2c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
+ "1": "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
+ },
+ "DAY": {
+ "0": "\u043d\u0435\u0434\u0435\u0459\u0430",
+ "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a",
+ "2": "\u0443\u0442\u043e\u0440\u0430\u043a",
+ "3": "\u0441\u0440\u0435\u0434\u0430",
+ "4": "\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a",
+ "5": "\u043f\u0435\u0442\u0430\u043a",
+ "6": "\u0441\u0443\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u0458\u0430\u043d\u0443\u0430\u0440",
+ "1": "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
+ "2": "\u043c\u0430\u0440\u0442",
+ "3": "\u0430\u043f\u0440\u0438\u043b",
+ "4": "\u043c\u0430\u0458",
+ "5": "\u0458\u0443\u043d",
+ "6": "\u0458\u0443\u043b",
+ "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
+ "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
+ "9": "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
+ "10": "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
+ "11": "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
+ },
+ "SHORTDAY": {
+ "0": "\u043d\u0435\u0434",
+ "1": "\u043f\u043e\u043d",
+ "2": "\u0443\u0442\u043e",
+ "3": "\u0441\u0440\u0435",
+ "4": "\u0447\u0435\u0442",
+ "5": "\u043f\u0435\u0442",
+ "6": "\u0441\u0443\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u0458\u0430\u043d",
+ "1": "\u0444\u0435\u0431",
+ "2": "\u043c\u0430\u0440",
+ "3": "\u0430\u043f\u0440",
+ "4": "\u043c\u0430\u0458",
+ "5": "\u0458\u0443\u043d",
+ "6": "\u0458\u0443\u043b",
+ "7": "\u0430\u0432\u0433",
+ "8": "\u0441\u0435\u043f",
+ "9": "\u043e\u043a\u0442",
+ "10": "\u043d\u043e\u0432",
+ "11": "\u0434\u0435\u0446"
+ },
+ "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"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "din",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sr",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sv-fi.js b/1.1.5/i18n/angular-locale_sv-fi.js
new file mode 100644
index 0000000000..a5e51b6a8b
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sv-fi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "fm",
+ "1": "em"
+ },
+ "DAY": {
+ "0": "söndag",
+ "1": "måndag",
+ "2": "tisdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "lördag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "mars",
+ "3": "april",
+ "4": "maj",
+ "5": "juni",
+ "6": "juli",
+ "7": "augusti",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "sön",
+ "1": "mån",
+ "2": "tis",
+ "3": "ons",
+ "4": "tors",
+ "5": "fre",
+ "6": "lör"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "aug",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "fullDate": "EEEE'en' 'den' d:'e' MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": " ",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "sv-fi",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sv-se.js b/1.1.5/i18n/angular-locale_sv-se.js
new file mode 100644
index 0000000000..26baa84670
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sv-se.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "fm",
+ "1": "em"
+ },
+ "DAY": {
+ "0": "s\u00f6ndag",
+ "1": "m\u00e5ndag",
+ "2": "tisdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "l\u00f6rdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "mars",
+ "3": "april",
+ "4": "maj",
+ "5": "juni",
+ "6": "juli",
+ "7": "augusti",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "s\u00f6n",
+ "1": "m\u00e5n",
+ "2": "tis",
+ "3": "ons",
+ "4": "tors",
+ "5": "fre",
+ "6": "l\u00f6r"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "aug",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "fullDate": "EEEE'en' 'den' d:'e' MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sv-se",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sv.js b/1.1.5/i18n/angular-locale_sv.js
new file mode 100644
index 0000000000..069eb92c71
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sv.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "fm",
+ "1": "em"
+ },
+ "DAY": {
+ "0": "s\u00f6ndag",
+ "1": "m\u00e5ndag",
+ "2": "tisdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "l\u00f6rdag"
+ },
+ "MONTH": {
+ "0": "januari",
+ "1": "februari",
+ "2": "mars",
+ "3": "april",
+ "4": "maj",
+ "5": "juni",
+ "6": "juli",
+ "7": "augusti",
+ "8": "september",
+ "9": "oktober",
+ "10": "november",
+ "11": "december"
+ },
+ "SHORTDAY": {
+ "0": "s\u00f6n",
+ "1": "m\u00e5n",
+ "2": "tis",
+ "3": "ons",
+ "4": "tors",
+ "5": "fre",
+ "6": "l\u00f6r"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maj",
+ "5": "jun",
+ "6": "jul",
+ "7": "aug",
+ "8": "sep",
+ "9": "okt",
+ "10": "nov",
+ "11": "dec"
+ },
+ "fullDate": "EEEE'en' 'den' d:'e' MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "yyyy-MM-dd HH:mm",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "kr",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "sv",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sw-ke.js b/1.1.5/i18n/angular-locale_sw-ke.js
new file mode 100644
index 0000000000..dea433fb00
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sw-ke.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "asubuhi",
+ "1": "alasiri"
+ },
+ "DAY": {
+ "0": "Jumapili",
+ "1": "Jumatatu",
+ "2": "Jumanne",
+ "3": "Jumatano",
+ "4": "Alhamisi",
+ "5": "Ijumaa",
+ "6": "Jumamosi"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Machi",
+ "3": "Aprili",
+ "4": "Mei",
+ "5": "Juni",
+ "6": "Julai",
+ "7": "Agosti",
+ "8": "Septemba",
+ "9": "Oktoba",
+ "10": "Novemba",
+ "11": "Desemba"
+ },
+ "SHORTDAY": {
+ "0": "J2",
+ "1": "J3",
+ "2": "J4",
+ "3": "J5",
+ "4": "Alh",
+ "5": "Ij",
+ "6": "J1"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mac",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ago",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "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": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "TSh",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sw-ke",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sw-tz.js b/1.1.5/i18n/angular-locale_sw-tz.js
new file mode 100644
index 0000000000..9e1227d8b2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sw-tz.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "asubuhi",
+ "1": "alasiri"
+ },
+ "DAY": {
+ "0": "Jumapili",
+ "1": "Jumatatu",
+ "2": "Jumanne",
+ "3": "Jumatano",
+ "4": "Alhamisi",
+ "5": "Ijumaa",
+ "6": "Jumamosi"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Machi",
+ "3": "Aprili",
+ "4": "Mei",
+ "5": "Juni",
+ "6": "Julai",
+ "7": "Agosti",
+ "8": "Septemba",
+ "9": "Oktoba",
+ "10": "Novemba",
+ "11": "Desemba"
+ },
+ "SHORTDAY": {
+ "0": "J2",
+ "1": "J3",
+ "2": "J4",
+ "3": "J5",
+ "4": "Alh",
+ "5": "Ij",
+ "6": "J1"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mac",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ago",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "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": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "TSh",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sw-tz",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_sw.js b/1.1.5/i18n/angular-locale_sw.js
new file mode 100644
index 0000000000..924ca11ce4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_sw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "asubuhi",
+ "1": "alasiri"
+ },
+ "DAY": {
+ "0": "Jumapili",
+ "1": "Jumatatu",
+ "2": "Jumanne",
+ "3": "Jumatano",
+ "4": "Alhamisi",
+ "5": "Ijumaa",
+ "6": "Jumamosi"
+ },
+ "MONTH": {
+ "0": "Januari",
+ "1": "Februari",
+ "2": "Machi",
+ "3": "Aprili",
+ "4": "Mei",
+ "5": "Juni",
+ "6": "Julai",
+ "7": "Agosti",
+ "8": "Septemba",
+ "9": "Oktoba",
+ "10": "Novemba",
+ "11": "Desemba"
+ },
+ "SHORTDAY": {
+ "0": "J2",
+ "1": "J3",
+ "2": "J4",
+ "3": "J5",
+ "4": "Alh",
+ "5": "Ij",
+ "6": "J1"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mac",
+ "3": "Apr",
+ "4": "Mei",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Ago",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Des"
+ },
+ "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": "dd/MM/yyyy h:mm a",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "TSh",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "sw",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ta-in.js b/1.1.5/i18n/angular-locale_ta-in.js
new file mode 100644
index 0000000000..58d2353707
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ta-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1",
+ "1": "\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
+ "2": "\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd",
+ "3": "\u0baa\u0bc1\u0ba4\u0ba9\u0bcd",
+ "4": "\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd",
+ "5": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf",
+ "6": "\u0b9a\u0ba9\u0bbf"
+ },
+ "MONTH": {
+ "0": "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "1": "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "2": "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "3": "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "4": "\u0bae\u0bc7",
+ "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "7": "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd",
+ "8": "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "9": "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "10": "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "11": "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ },
+ "SHORTDAY": {
+ "0": "\u0b9e\u0bbe",
+ "1": "\u0ba4\u0bbf",
+ "2": "\u0b9a\u0bc6",
+ "3": "\u0baa\u0bc1",
+ "4": "\u0bb5\u0bbf",
+ "5": "\u0bb5\u0bc6",
+ "6": "\u0b9a"
+ },
+ "SHORTMONTH": {
+ "0": "\u0b9c\u0ba9.",
+ "1": "\u0baa\u0bbf\u0baa\u0bcd.",
+ "2": "\u0bae\u0bbe\u0bb0\u0bcd.",
+ "3": "\u0b8f\u0baa\u0bcd.",
+ "4": "\u0bae\u0bc7",
+ "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "7": "\u0b86\u0b95.",
+ "8": "\u0b9a\u0bc6\u0baa\u0bcd.",
+ "9": "\u0b85\u0b95\u0bcd.",
+ "10": "\u0ba8\u0bb5.",
+ "11": "\u0b9f\u0bbf\u0b9a."
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ta-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ta-lk.js b/1.1.5/i18n/angular-locale_ta-lk.js
new file mode 100644
index 0000000000..a156bd3677
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ta-lk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "ஞாயிறு",
+ "1": "திங்கள்",
+ "2": "செவ்வாய்",
+ "3": "புதன்",
+ "4": "வியாழன்",
+ "5": "வெள்ளி",
+ "6": "சனி"
+ },
+ "MONTH": {
+ "0": "ஜனவரி",
+ "1": "பிப்ரவரி",
+ "2": "மார்ச்",
+ "3": "ஏப்ரல்",
+ "4": "மே",
+ "5": "ஜூன்",
+ "6": "ஜூலை",
+ "7": "ஆகஸ்ட்",
+ "8": "செப்டம்பர்",
+ "9": "அக்டோபர்",
+ "10": "நவம்பர்",
+ "11": "டிசம்பர்"
+ },
+ "SHORTDAY": {
+ "0": "ஞா",
+ "1": "தி",
+ "2": "செ",
+ "3": "பு",
+ "4": "வி",
+ "5": "வெ",
+ "6": "ச"
+ },
+ "SHORTMONTH": {
+ "0": "ஜன.",
+ "1": "பிப்.",
+ "2": "மார்.",
+ "3": "ஏப்.",
+ "4": "மே",
+ "5": "ஜூன்",
+ "6": "ஜூலை",
+ "7": "ஆக.",
+ "8": "செப்.",
+ "9": "அக்.",
+ "10": "நவ.",
+ "11": "டிச."
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "₹",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00A4 -",
+ "negSuf": "",
+ "posPre": "\u00A4 ",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ta-lk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ta.js b/1.1.5/i18n/angular-locale_ta.js
new file mode 100644
index 0000000000..afbc13778e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ta.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1",
+ "1": "\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
+ "2": "\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd",
+ "3": "\u0baa\u0bc1\u0ba4\u0ba9\u0bcd",
+ "4": "\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd",
+ "5": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf",
+ "6": "\u0b9a\u0ba9\u0bbf"
+ },
+ "MONTH": {
+ "0": "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
+ "1": "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
+ "2": "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
+ "3": "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
+ "4": "\u0bae\u0bc7",
+ "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "7": "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd",
+ "8": "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "9": "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
+ "10": "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
+ "11": "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
+ },
+ "SHORTDAY": {
+ "0": "\u0b9e\u0bbe",
+ "1": "\u0ba4\u0bbf",
+ "2": "\u0b9a\u0bc6",
+ "3": "\u0baa\u0bc1",
+ "4": "\u0bb5\u0bbf",
+ "5": "\u0bb5\u0bc6",
+ "6": "\u0b9a"
+ },
+ "SHORTMONTH": {
+ "0": "\u0b9c\u0ba9.",
+ "1": "\u0baa\u0bbf\u0baa\u0bcd.",
+ "2": "\u0bae\u0bbe\u0bb0\u0bcd.",
+ "3": "\u0b8f\u0baa\u0bcd.",
+ "4": "\u0bae\u0bc7",
+ "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
+ "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
+ "7": "\u0b86\u0b95.",
+ "8": "\u0b9a\u0bc6\u0baa\u0bcd.",
+ "9": "\u0b85\u0b95\u0bcd.",
+ "10": "\u0ba8\u0bb5.",
+ "11": "\u0b9f\u0bbf\u0b9a."
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 2,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4\u00a0-",
+ "negSuf": "",
+ "posPre": "\u00a4\u00a0",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ta",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_te-in.js b/1.1.5/i18n/angular-locale_te-in.js
new file mode 100644
index 0000000000..3060b33ba5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_te-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
+ "1": "\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02",
+ "2": "\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02",
+ "3": "\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02",
+ "4": "\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02",
+ "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02",
+ "6": "\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"
+ },
+ "MONTH": {
+ "0": "\u0c1c\u0c28\u0c35\u0c30\u0c3f",
+ "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
+ "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
+ "3": "\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
+ "4": "\u0c2e\u0c47",
+ "5": "\u0c1c\u0c42\u0c28\u0c4d",
+ "6": "\u0c1c\u0c42\u0c32\u0c48",
+ "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
+ "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
+ "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
+ "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
+ "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
+ },
+ "SHORTDAY": {
+ "0": "\u0c06\u0c26\u0c3f",
+ "1": "\u0c38\u0c4b\u0c2e",
+ "2": "\u0c2e\u0c02\u0c17\u0c33",
+ "3": "\u0c2c\u0c41\u0c27",
+ "4": "\u0c17\u0c41\u0c30\u0c41",
+ "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30",
+ "6": "\u0c36\u0c28\u0c3f"
+ },
+ "SHORTMONTH": {
+ "0": "\u0c1c\u0c28",
+ "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30",
+ "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
+ "3": "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f",
+ "4": "\u0c2e\u0c47",
+ "5": "\u0c1c\u0c42\u0c28\u0c4d",
+ "6": "\u0c1c\u0c42\u0c32\u0c48",
+ "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
+ "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
+ "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
+ "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
+ "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
+ },
+ "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": "dd-MM-yy h:mm a",
+ "shortDate": "dd-MM-yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "te-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_te.js b/1.1.5/i18n/angular-locale_te.js
new file mode 100644
index 0000000000..8d2cba07c3
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_te.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "am",
+ "1": "pm"
+ },
+ "DAY": {
+ "0": "\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
+ "1": "\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02",
+ "2": "\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02",
+ "3": "\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02",
+ "4": "\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02",
+ "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02",
+ "6": "\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"
+ },
+ "MONTH": {
+ "0": "\u0c1c\u0c28\u0c35\u0c30\u0c3f",
+ "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
+ "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
+ "3": "\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
+ "4": "\u0c2e\u0c47",
+ "5": "\u0c1c\u0c42\u0c28\u0c4d",
+ "6": "\u0c1c\u0c42\u0c32\u0c48",
+ "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
+ "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
+ "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
+ "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
+ "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
+ },
+ "SHORTDAY": {
+ "0": "\u0c06\u0c26\u0c3f",
+ "1": "\u0c38\u0c4b\u0c2e",
+ "2": "\u0c2e\u0c02\u0c17\u0c33",
+ "3": "\u0c2c\u0c41\u0c27",
+ "4": "\u0c17\u0c41\u0c30\u0c41",
+ "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30",
+ "6": "\u0c36\u0c28\u0c3f"
+ },
+ "SHORTMONTH": {
+ "0": "\u0c1c\u0c28",
+ "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30",
+ "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
+ "3": "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f",
+ "4": "\u0c2e\u0c47",
+ "5": "\u0c1c\u0c42\u0c28\u0c4d",
+ "6": "\u0c1c\u0c42\u0c32\u0c48",
+ "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
+ "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
+ "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
+ "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
+ "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
+ },
+ "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": "dd-MM-yy h:mm a",
+ "shortDate": "dd-MM-yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b9",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "te",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_th-th.js b/1.1.5/i18n/angular-locale_th-th.js
new file mode 100644
index 0000000000..a70cc09788
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_th-th.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
+ "1": "\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"
+ },
+ "DAY": {
+ "0": "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c",
+ "1": "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c",
+ "2": "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23",
+ "3": "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18",
+ "4": "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35",
+ "5": "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c",
+ "6": "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"
+ },
+ "MONTH": {
+ "0": "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
+ "1": "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
+ "2": "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
+ "3": "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
+ "4": "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
+ "5": "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
+ "6": "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
+ "7": "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
+ "8": "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
+ "9": "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
+ "10": "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
+ "11": "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"
+ },
+ "SHORTDAY": {
+ "0": "\u0e2d\u0e32.",
+ "1": "\u0e08.",
+ "2": "\u0e2d.",
+ "3": "\u0e1e.",
+ "4": "\u0e1e\u0e24.",
+ "5": "\u0e28.",
+ "6": "\u0e2a."
+ },
+ "SHORTMONTH": {
+ "0": "\u0e21.\u0e04.",
+ "1": "\u0e01.\u0e1e.",
+ "2": "\u0e21\u0e35.\u0e04.",
+ "3": "\u0e40\u0e21.\u0e22.",
+ "4": "\u0e1e.\u0e04.",
+ "5": "\u0e21\u0e34.\u0e22.",
+ "6": "\u0e01.\u0e04.",
+ "7": "\u0e2a.\u0e04.",
+ "8": "\u0e01.\u0e22.",
+ "9": "\u0e15.\u0e04.",
+ "10": "\u0e1e.\u0e22.",
+ "11": "\u0e18.\u0e04."
+ },
+ "fullDate": "EEEE\u0e17\u0e35\u0e48 d MMMM G y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "H:mm:ss",
+ "short": "d/M/yyyy H:mm",
+ "shortDate": "d/M/yyyy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u0e3f",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "th-th",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_th.js b/1.1.5/i18n/angular-locale_th.js
new file mode 100644
index 0000000000..2d086f8d81
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_th.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
+ "1": "\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"
+ },
+ "DAY": {
+ "0": "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c",
+ "1": "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c",
+ "2": "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23",
+ "3": "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18",
+ "4": "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35",
+ "5": "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c",
+ "6": "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"
+ },
+ "MONTH": {
+ "0": "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
+ "1": "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
+ "2": "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
+ "3": "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
+ "4": "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
+ "5": "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
+ "6": "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
+ "7": "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
+ "8": "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
+ "9": "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
+ "10": "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
+ "11": "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"
+ },
+ "SHORTDAY": {
+ "0": "\u0e2d\u0e32.",
+ "1": "\u0e08.",
+ "2": "\u0e2d.",
+ "3": "\u0e1e.",
+ "4": "\u0e1e\u0e24.",
+ "5": "\u0e28.",
+ "6": "\u0e2a."
+ },
+ "SHORTMONTH": {
+ "0": "\u0e21.\u0e04.",
+ "1": "\u0e01.\u0e1e.",
+ "2": "\u0e21\u0e35.\u0e04.",
+ "3": "\u0e40\u0e21.\u0e22.",
+ "4": "\u0e1e.\u0e04.",
+ "5": "\u0e21\u0e34.\u0e22.",
+ "6": "\u0e01.\u0e04.",
+ "7": "\u0e2a.\u0e04.",
+ "8": "\u0e01.\u0e22.",
+ "9": "\u0e15.\u0e04.",
+ "10": "\u0e1e.\u0e22.",
+ "11": "\u0e18.\u0e04."
+ },
+ "fullDate": "EEEE\u0e17\u0e35\u0e48 d MMMM G y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y H:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "H:mm:ss",
+ "short": "d/M/yyyy H:mm",
+ "shortDate": "d/M/yyyy",
+ "shortTime": "H:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u0e3f",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "th",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_tl-ph.js b/1.1.5/i18n/angular-locale_tl-ph.js
new file mode 100644
index 0000000000..2a424e181e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_tl-ph.js
@@ -0,0 +1,4 @@
+angular.module("ngLocale", [], ["$provide", function($provide) {
+var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
+$provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4 ","posSuf":"","negPre":"\u00A4 -","negSuf":"","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"P"},"pluralCat":function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["Enero","Pebrero","Marso","Abril","Mayo","Hunyo","Hulyo","Agosto","Setyembre","Oktubre","Nobyembre","Disyembre"],"SHORTMONTH":["Ene","Peb","Mar","Abr","May","Hun","Hul","Ago","Set","Okt","Nob","Dis"],"DAY":["Linggo","Lunes","Martes","Miyerkules","Huwebes","Biyernes","Sabado"],"SHORTDAY":["Lin","Lun","Mar","Mye","Huw","Bye","Sab"],"AMPMS":["AM","PM"],"medium":"MMM d, y HH:mm:ss","short":"M/d/yy HH:mm","fullDate":"EEEE, MMMM dd y","longDate":"MMMM d, y","mediumDate":"MMM d, y","shortDate":"M/d/yy","mediumTime":"HH:mm:ss","shortTime":"HH:mm"},"id":"tl-ph"});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_tl.js b/1.1.5/i18n/angular-locale_tl.js
new file mode 100644
index 0000000000..8cb307d368
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_tl.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Linggo",
+ "1": "Lunes",
+ "2": "Martes",
+ "3": "Miyerkules",
+ "4": "Huwebes",
+ "5": "Biyernes",
+ "6": "Sabado"
+ },
+ "MONTH": {
+ "0": "Enero",
+ "1": "Pebrero",
+ "2": "Marso",
+ "3": "Abril",
+ "4": "Mayo",
+ "5": "Hunyo",
+ "6": "Hulyo",
+ "7": "Agosto",
+ "8": "Setyembre",
+ "9": "Oktubre",
+ "10": "Nobyembre",
+ "11": "Disyembre"
+ },
+ "SHORTDAY": {
+ "0": "Lin",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "Mye",
+ "4": "Huw",
+ "5": "Bye",
+ "6": "Sab"
+ },
+ "SHORTMONTH": {
+ "0": "Ene",
+ "1": "Peb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "May",
+ "5": "Hun",
+ "6": "Hul",
+ "7": "Ago",
+ "8": "Set",
+ "9": "Okt",
+ "10": "Nob",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE, MMMM dd y",
+ "longDate": "MMMM d, y",
+ "medium": "MMM d, y HH:mm:ss",
+ "mediumDate": "MMM d, y",
+ "mediumTime": "HH:mm:ss",
+ "short": "M/d/yy HH:mm",
+ "shortDate": "M/d/yy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20b1",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "tl",
+ "pluralCat": function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_tr-tr.js b/1.1.5/i18n/angular-locale_tr-tr.js
new file mode 100644
index 0000000000..0331a943d1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_tr-tr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Pazar",
+ "1": "Pazartesi",
+ "2": "Sal\u0131",
+ "3": "\u00c7ar\u015famba",
+ "4": "Per\u015fembe",
+ "5": "Cuma",
+ "6": "Cumartesi"
+ },
+ "MONTH": {
+ "0": "Ocak",
+ "1": "\u015eubat",
+ "2": "Mart",
+ "3": "Nisan",
+ "4": "May\u0131s",
+ "5": "Haziran",
+ "6": "Temmuz",
+ "7": "A\u011fustos",
+ "8": "Eyl\u00fcl",
+ "9": "Ekim",
+ "10": "Kas\u0131m",
+ "11": "Aral\u0131k"
+ },
+ "SHORTDAY": {
+ "0": "Paz",
+ "1": "Pzt",
+ "2": "Sal",
+ "3": "\u00c7ar",
+ "4": "Per",
+ "5": "Cum",
+ "6": "Cmt"
+ },
+ "SHORTMONTH": {
+ "0": "Oca",
+ "1": "\u015eub",
+ "2": "Mar",
+ "3": "Nis",
+ "4": "May",
+ "5": "Haz",
+ "6": "Tem",
+ "7": "A\u011fu",
+ "8": "Eyl",
+ "9": "Eki",
+ "10": "Kas",
+ "11": "Ara"
+ },
+ "fullDate": "d MMMM y EEEE",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd MM yyyy HH:mm",
+ "shortDate": "dd MM yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "TL",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "tr-tr",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_tr.js b/1.1.5/i18n/angular-locale_tr.js
new file mode 100644
index 0000000000..162e7d3bfc
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_tr.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Pazar",
+ "1": "Pazartesi",
+ "2": "Sal\u0131",
+ "3": "\u00c7ar\u015famba",
+ "4": "Per\u015fembe",
+ "5": "Cuma",
+ "6": "Cumartesi"
+ },
+ "MONTH": {
+ "0": "Ocak",
+ "1": "\u015eubat",
+ "2": "Mart",
+ "3": "Nisan",
+ "4": "May\u0131s",
+ "5": "Haziran",
+ "6": "Temmuz",
+ "7": "A\u011fustos",
+ "8": "Eyl\u00fcl",
+ "9": "Ekim",
+ "10": "Kas\u0131m",
+ "11": "Aral\u0131k"
+ },
+ "SHORTDAY": {
+ "0": "Paz",
+ "1": "Pzt",
+ "2": "Sal",
+ "3": "\u00c7ar",
+ "4": "Per",
+ "5": "Cum",
+ "6": "Cmt"
+ },
+ "SHORTMONTH": {
+ "0": "Oca",
+ "1": "\u015eub",
+ "2": "Mar",
+ "3": "Nis",
+ "4": "May",
+ "5": "Haz",
+ "6": "Tem",
+ "7": "A\u011fu",
+ "8": "Eyl",
+ "9": "Eki",
+ "10": "Kas",
+ "11": "Ara"
+ },
+ "fullDate": "d MMMM y EEEE",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y HH:mm:ss",
+ "mediumDate": "d MMM y",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd MM yyyy HH:mm",
+ "shortDate": "dd MM yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "TL",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(",
+ "negSuf": "\u00a0\u00a4)",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "tr",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_uk-ua.js b/1.1.5/i18n/angular-locale_uk-ua.js
new file mode 100644
index 0000000000..e0cee1d812
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_uk-ua.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0434\u043f",
+ "1": "\u043f\u043f"
+ },
+ "DAY": {
+ "0": "\u041d\u0435\u0434\u0456\u043b\u044f",
+ "1": "\u041f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a",
+ "2": "\u0412\u0456\u0432\u0442\u043e\u0440\u043e\u043a",
+ "3": "\u0421\u0435\u0440\u0435\u0434\u0430",
+ "4": "\u0427\u0435\u0442\u0432\u0435\u0440",
+ "5": "\u041f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f",
+ "6": "\u0421\u0443\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u0441\u0456\u0447\u043d\u044f",
+ "1": "\u043b\u044e\u0442\u043e\u0433\u043e",
+ "2": "\u0431\u0435\u0440\u0435\u0437\u043d\u044f",
+ "3": "\u043a\u0432\u0456\u0442\u043d\u044f",
+ "4": "\u0442\u0440\u0430\u0432\u043d\u044f",
+ "5": "\u0447\u0435\u0440\u0432\u043d\u044f",
+ "6": "\u043b\u0438\u043f\u043d\u044f",
+ "7": "\u0441\u0435\u0440\u043f\u043d\u044f",
+ "8": "\u0432\u0435\u0440\u0435\u0441\u043d\u044f",
+ "9": "\u0436\u043e\u0432\u0442\u043d\u044f",
+ "10": "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430",
+ "11": "\u0433\u0440\u0443\u0434\u043d\u044f"
+ },
+ "SHORTDAY": {
+ "0": "\u041d\u0434",
+ "1": "\u041f\u043d",
+ "2": "\u0412\u0442",
+ "3": "\u0421\u0440",
+ "4": "\u0427\u0442",
+ "5": "\u041f\u0442",
+ "6": "\u0421\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u0441\u0456\u0447.",
+ "1": "\u043b\u044e\u0442.",
+ "2": "\u0431\u0435\u0440.",
+ "3": "\u043a\u0432\u0456\u0442.",
+ "4": "\u0442\u0440\u0430\u0432.",
+ "5": "\u0447\u0435\u0440\u0432.",
+ "6": "\u043b\u0438\u043f.",
+ "7": "\u0441\u0435\u0440\u043f.",
+ "8": "\u0432\u0435\u0440.",
+ "9": "\u0436\u043e\u0432\u0442.",
+ "10": "\u043b\u0438\u0441\u0442.",
+ "11": "\u0433\u0440\u0443\u0434."
+ },
+ "fullDate": "EEEE, d MMMM y '\u0440'.",
+ "longDate": "d MMMM y '\u0440'.",
+ "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": "\u20b4",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "uk-ua",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_uk.js b/1.1.5/i18n/angular-locale_uk.js
new file mode 100644
index 0000000000..8e3fdfbde8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_uk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u0434\u043f",
+ "1": "\u043f\u043f"
+ },
+ "DAY": {
+ "0": "\u041d\u0435\u0434\u0456\u043b\u044f",
+ "1": "\u041f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a",
+ "2": "\u0412\u0456\u0432\u0442\u043e\u0440\u043e\u043a",
+ "3": "\u0421\u0435\u0440\u0435\u0434\u0430",
+ "4": "\u0427\u0435\u0442\u0432\u0435\u0440",
+ "5": "\u041f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f",
+ "6": "\u0421\u0443\u0431\u043e\u0442\u0430"
+ },
+ "MONTH": {
+ "0": "\u0441\u0456\u0447\u043d\u044f",
+ "1": "\u043b\u044e\u0442\u043e\u0433\u043e",
+ "2": "\u0431\u0435\u0440\u0435\u0437\u043d\u044f",
+ "3": "\u043a\u0432\u0456\u0442\u043d\u044f",
+ "4": "\u0442\u0440\u0430\u0432\u043d\u044f",
+ "5": "\u0447\u0435\u0440\u0432\u043d\u044f",
+ "6": "\u043b\u0438\u043f\u043d\u044f",
+ "7": "\u0441\u0435\u0440\u043f\u043d\u044f",
+ "8": "\u0432\u0435\u0440\u0435\u0441\u043d\u044f",
+ "9": "\u0436\u043e\u0432\u0442\u043d\u044f",
+ "10": "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430",
+ "11": "\u0433\u0440\u0443\u0434\u043d\u044f"
+ },
+ "SHORTDAY": {
+ "0": "\u041d\u0434",
+ "1": "\u041f\u043d",
+ "2": "\u0412\u0442",
+ "3": "\u0421\u0440",
+ "4": "\u0427\u0442",
+ "5": "\u041f\u0442",
+ "6": "\u0421\u0431"
+ },
+ "SHORTMONTH": {
+ "0": "\u0441\u0456\u0447.",
+ "1": "\u043b\u044e\u0442.",
+ "2": "\u0431\u0435\u0440.",
+ "3": "\u043a\u0432\u0456\u0442.",
+ "4": "\u0442\u0440\u0430\u0432.",
+ "5": "\u0447\u0435\u0440\u0432.",
+ "6": "\u043b\u0438\u043f.",
+ "7": "\u0441\u0435\u0440\u043f.",
+ "8": "\u0432\u0435\u0440.",
+ "9": "\u0436\u043e\u0432\u0442.",
+ "10": "\u043b\u0438\u0441\u0442.",
+ "11": "\u0433\u0440\u0443\u0434."
+ },
+ "fullDate": "EEEE, d MMMM y '\u0440'.",
+ "longDate": "d MMMM y '\u0440'.",
+ "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": "\u20b4",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": "\u00a0",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "uk",
+ "pluralCat": function (n) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n == (n | 0) && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n == (n | 0) && n % 10 >= 5 && n % 10 <= 9 || n == (n | 0) && n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ur-in.js b/1.1.5/i18n/angular-locale_ur-in.js
new file mode 100644
index 0000000000..867fd18f86
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ur-in.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "دن",
+ "1": "رات"
+ },
+ "DAY": {
+ "0": "اتوار",
+ "1": "پير",
+ "2": "منگل",
+ "3": "بده",
+ "4": "جمعرات",
+ "5": "جمعہ",
+ "6": "ہفتہ"
+ },
+ "MONTH": {
+ "0": "جنوری",
+ "1": "فروری",
+ "2": "مارچ",
+ "3": "اپريل",
+ "4": "مئ",
+ "5": "جون",
+ "6": "جولائ",
+ "7": "اگست",
+ "8": "ستمبر",
+ "9": "اکتوبر",
+ "10": "نومبر",
+ "11": "دسمبر"
+ },
+ "SHORTDAY": {
+ "0": "اتوار",
+ "1": "پير",
+ "2": "منگل",
+ "3": "بده",
+ "4": "جمعرات",
+ "5": "جمعہ",
+ "6": "ہفتہ"
+ },
+ "SHORTMONTH": {
+ "0": "جنوری",
+ "1": "فروری",
+ "2": "مارچ",
+ "3": "اپريل",
+ "4": "مئ",
+ "5": "جون",
+ "6": "جولائ",
+ "7": "اگست",
+ "8": "ستمبر",
+ "9": "اکتوبر",
+ "10": "نومبر",
+ "11": "دسمبر"
+ },
+ "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",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rs",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00A4-",
+ "negSuf": "",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ur-in",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ur-pk.js b/1.1.5/i18n/angular-locale_ur-pk.js
new file mode 100644
index 0000000000..11c1dc1d5f
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ur-pk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u062f\u0646",
+ "1": "\u0631\u0627\u062a"
+ },
+ "DAY": {
+ "0": "\u0627\u062a\u0648\u0627\u0631",
+ "1": "\u067e\u064a\u0631",
+ "2": "\u0645\u0646\u06af\u0644",
+ "3": "\u0628\u062f\u0647",
+ "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
+ "5": "\u062c\u0645\u0639\u06c1",
+ "6": "\u06c1\u0641\u062a\u06c1"
+ },
+ "MONTH": {
+ "0": "\u062c\u0646\u0648\u0631\u06cc",
+ "1": "\u0641\u0631\u0648\u0631\u06cc",
+ "2": "\u0645\u0627\u0631\u0686",
+ "3": "\u0627\u067e\u0631\u064a\u0644",
+ "4": "\u0645\u0626",
+ "5": "\u062c\u0648\u0646",
+ "6": "\u062c\u0648\u0644\u0627\u0626",
+ "7": "\u0627\u06af\u0633\u062a",
+ "8": "\u0633\u062a\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u062a\u0648\u0627\u0631",
+ "1": "\u067e\u064a\u0631",
+ "2": "\u0645\u0646\u06af\u0644",
+ "3": "\u0628\u062f\u0647",
+ "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
+ "5": "\u062c\u0645\u0639\u06c1",
+ "6": "\u06c1\u0641\u062a\u06c1"
+ },
+ "SHORTMONTH": {
+ "0": "\u062c\u0646\u0648\u0631\u06cc",
+ "1": "\u0641\u0631\u0648\u0631\u06cc",
+ "2": "\u0645\u0627\u0631\u0686",
+ "3": "\u0627\u067e\u0631\u064a\u0644",
+ "4": "\u0645\u0626",
+ "5": "\u062c\u0648\u0646",
+ "6": "\u062c\u0648\u0644\u0627\u0626",
+ "7": "\u0627\u06af\u0633\u062a",
+ "8": "\u0633\u062a\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060d d\u060d MMMM y",
+ "longDate": "d\u060d MMMM y",
+ "medium": "d\u060d MMM y h:mm:ss a",
+ "mediumDate": "d\u060d MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rs",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ur-pk",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_ur.js b/1.1.5/i18n/angular-locale_ur.js
new file mode 100644
index 0000000000..51073747d7
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_ur.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u062f\u0646",
+ "1": "\u0631\u0627\u062a"
+ },
+ "DAY": {
+ "0": "\u0627\u062a\u0648\u0627\u0631",
+ "1": "\u067e\u064a\u0631",
+ "2": "\u0645\u0646\u06af\u0644",
+ "3": "\u0628\u062f\u0647",
+ "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
+ "5": "\u062c\u0645\u0639\u06c1",
+ "6": "\u06c1\u0641\u062a\u06c1"
+ },
+ "MONTH": {
+ "0": "\u062c\u0646\u0648\u0631\u06cc",
+ "1": "\u0641\u0631\u0648\u0631\u06cc",
+ "2": "\u0645\u0627\u0631\u0686",
+ "3": "\u0627\u067e\u0631\u064a\u0644",
+ "4": "\u0645\u0626",
+ "5": "\u062c\u0648\u0646",
+ "6": "\u062c\u0648\u0644\u0627\u0626",
+ "7": "\u0627\u06af\u0633\u062a",
+ "8": "\u0633\u062a\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0645\u0628\u0631"
+ },
+ "SHORTDAY": {
+ "0": "\u0627\u062a\u0648\u0627\u0631",
+ "1": "\u067e\u064a\u0631",
+ "2": "\u0645\u0646\u06af\u0644",
+ "3": "\u0628\u062f\u0647",
+ "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
+ "5": "\u062c\u0645\u0639\u06c1",
+ "6": "\u06c1\u0641\u062a\u06c1"
+ },
+ "SHORTMONTH": {
+ "0": "\u062c\u0646\u0648\u0631\u06cc",
+ "1": "\u0641\u0631\u0648\u0631\u06cc",
+ "2": "\u0645\u0627\u0631\u0686",
+ "3": "\u0627\u067e\u0631\u064a\u0644",
+ "4": "\u0645\u0626",
+ "5": "\u062c\u0648\u0646",
+ "6": "\u062c\u0648\u0644\u0627\u0626",
+ "7": "\u0627\u06af\u0633\u062a",
+ "8": "\u0633\u062a\u0645\u0628\u0631",
+ "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
+ "10": "\u0646\u0648\u0645\u0628\u0631",
+ "11": "\u062f\u0633\u0645\u0628\u0631"
+ },
+ "fullDate": "EEEE\u060d d\u060d MMMM y",
+ "longDate": "d\u060d MMMM y",
+ "medium": "d\u060d MMM y h:mm:ss a",
+ "mediumDate": "d\u060d MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "d/M/yy h:mm a",
+ "shortDate": "d/M/yy",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "Rs",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ur",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_vi-vn.js b/1.1.5/i18n/angular-locale_vi-vn.js
new file mode 100644
index 0000000000..86532b8068
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_vi-vn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "SA",
+ "1": "CH"
+ },
+ "DAY": {
+ "0": "Ch\u1ee7 nh\u1eadt",
+ "1": "Th\u1ee9 hai",
+ "2": "Th\u1ee9 ba",
+ "3": "Th\u1ee9 t\u01b0",
+ "4": "Th\u1ee9 n\u0103m",
+ "5": "Th\u1ee9 s\u00e1u",
+ "6": "Th\u1ee9 b\u1ea3y"
+ },
+ "MONTH": {
+ "0": "th\u00e1ng m\u1ed9t",
+ "1": "th\u00e1ng hai",
+ "2": "th\u00e1ng ba",
+ "3": "th\u00e1ng t\u01b0",
+ "4": "th\u00e1ng n\u0103m",
+ "5": "th\u00e1ng s\u00e1u",
+ "6": "th\u00e1ng b\u1ea3y",
+ "7": "th\u00e1ng t\u00e1m",
+ "8": "th\u00e1ng ch\u00edn",
+ "9": "th\u00e1ng m\u01b0\u1eddi",
+ "10": "th\u00e1ng m\u01b0\u1eddi m\u1ed9t",
+ "11": "th\u00e1ng m\u01b0\u1eddi hai"
+ },
+ "SHORTDAY": {
+ "0": "CN",
+ "1": "Th 2",
+ "2": "Th 3",
+ "3": "Th 4",
+ "4": "Th 5",
+ "5": "Th 6",
+ "6": "Th 7"
+ },
+ "SHORTMONTH": {
+ "0": "thg 1",
+ "1": "thg 2",
+ "2": "thg 3",
+ "3": "thg 4",
+ "4": "thg 5",
+ "5": "thg 6",
+ "6": "thg 7",
+ "7": "thg 8",
+ "8": "thg 9",
+ "9": "thg 10",
+ "10": "thg 11",
+ "11": "thg 12"
+ },
+ "fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y",
+ "longDate": "'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y",
+ "medium": "dd-MM-yyyy HH:mm:ss",
+ "mediumDate": "dd-MM-yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yyyy HH:mm",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ab",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "vi-vn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_vi.js b/1.1.5/i18n/angular-locale_vi.js
new file mode 100644
index 0000000000..9da823dce2
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_vi.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "SA",
+ "1": "CH"
+ },
+ "DAY": {
+ "0": "Ch\u1ee7 nh\u1eadt",
+ "1": "Th\u1ee9 hai",
+ "2": "Th\u1ee9 ba",
+ "3": "Th\u1ee9 t\u01b0",
+ "4": "Th\u1ee9 n\u0103m",
+ "5": "Th\u1ee9 s\u00e1u",
+ "6": "Th\u1ee9 b\u1ea3y"
+ },
+ "MONTH": {
+ "0": "th\u00e1ng m\u1ed9t",
+ "1": "th\u00e1ng hai",
+ "2": "th\u00e1ng ba",
+ "3": "th\u00e1ng t\u01b0",
+ "4": "th\u00e1ng n\u0103m",
+ "5": "th\u00e1ng s\u00e1u",
+ "6": "th\u00e1ng b\u1ea3y",
+ "7": "th\u00e1ng t\u00e1m",
+ "8": "th\u00e1ng ch\u00edn",
+ "9": "th\u00e1ng m\u01b0\u1eddi",
+ "10": "th\u00e1ng m\u01b0\u1eddi m\u1ed9t",
+ "11": "th\u00e1ng m\u01b0\u1eddi hai"
+ },
+ "SHORTDAY": {
+ "0": "CN",
+ "1": "Th 2",
+ "2": "Th 3",
+ "3": "Th 4",
+ "4": "Th 5",
+ "5": "Th 6",
+ "6": "Th 7"
+ },
+ "SHORTMONTH": {
+ "0": "thg 1",
+ "1": "thg 2",
+ "2": "thg 3",
+ "3": "thg 4",
+ "4": "thg 5",
+ "5": "thg 6",
+ "6": "thg 7",
+ "7": "thg 8",
+ "8": "thg 9",
+ "9": "thg 10",
+ "10": "thg 11",
+ "11": "thg 12"
+ },
+ "fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y",
+ "longDate": "'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y",
+ "medium": "dd-MM-yyyy HH:mm:ss",
+ "mediumDate": "dd-MM-yyyy",
+ "mediumTime": "HH:mm:ss",
+ "short": "dd/MM/yyyy HH:mm",
+ "shortDate": "dd/MM/yyyy",
+ "shortTime": "HH:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u20ab",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": ".",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "\u00a0\u00a4",
+ "posPre": "",
+ "posSuf": "\u00a0\u00a4"
+ }
+ }
+ },
+ "id": "vi",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-cn.js b/1.1.5/i18n/angular-locale_zh-cn.js
new file mode 100644
index 0000000000..47aabfbef9
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-cn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u4e0a\u5348",
+ "1": "\u4e0b\u5348"
+ },
+ "DAY": {
+ "0": "\u661f\u671f\u65e5",
+ "1": "\u661f\u671f\u4e00",
+ "2": "\u661f\u671f\u4e8c",
+ "3": "\u661f\u671f\u4e09",
+ "4": "\u661f\u671f\u56db",
+ "5": "\u661f\u671f\u4e94",
+ "6": "\u661f\u671f\u516d"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u5468\u65e5",
+ "1": "\u5468\u4e00",
+ "2": "\u5468\u4e8c",
+ "3": "\u5468\u4e09",
+ "4": "\u5468\u56db",
+ "5": "\u5468\u4e94",
+ "6": "\u5468\u516d"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "yyyy-M-d ah:mm:ss",
+ "mediumDate": "yyyy-M-d",
+ "mediumTime": "ah:mm:ss",
+ "short": "yy-M-d ah:mm",
+ "shortDate": "yy-M-d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a5",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-cn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hans-cn.js b/1.1.5/i18n/angular-locale_zh-hans-cn.js
new file mode 100644
index 0000000000..a5692a968e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hans-cn.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u4e0a\u5348",
+ "1": "\u4e0b\u5348"
+ },
+ "DAY": {
+ "0": "\u661f\u671f\u65e5",
+ "1": "\u661f\u671f\u4e00",
+ "2": "\u661f\u671f\u4e8c",
+ "3": "\u661f\u671f\u4e09",
+ "4": "\u661f\u671f\u56db",
+ "5": "\u661f\u671f\u4e94",
+ "6": "\u661f\u671f\u516d"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u5468\u65e5",
+ "1": "\u5468\u4e00",
+ "2": "\u5468\u4e8c",
+ "3": "\u5468\u4e09",
+ "4": "\u5468\u56db",
+ "5": "\u5468\u4e94",
+ "6": "\u5468\u516d"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "yyyy-M-d ah:mm:ss",
+ "mediumDate": "yyyy-M-d",
+ "mediumTime": "ah:mm:ss",
+ "short": "yy-M-d ah:mm",
+ "shortDate": "yy-M-d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a5",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hans-cn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hans-hk.js b/1.1.5/i18n/angular-locale_zh-hans-hk.js
new file mode 100644
index 0000000000..94e2b71ac4
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hans-hk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "一月",
+ "1": "二月",
+ "2": "三月",
+ "3": "四月",
+ "4": "五月",
+ "5": "六月",
+ "6": "七月",
+ "7": "八月",
+ "8": "九月",
+ "9": "十月",
+ "10": "十一月",
+ "11": "十二月"
+ },
+ "SHORTDAY": {
+ "0": "周日",
+ "1": "周一",
+ "2": "周二",
+ "3": "周三",
+ "4": "周四",
+ "5": "周五",
+ "6": "周六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "y年M月d日 ah:mm:ss",
+ "mediumDate": "y年M月d日",
+ "mediumTime": "ah:mm:ss",
+ "short": "d/M/yy ah:mm",
+ "shortDate": "d/M/yy",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hans-hk",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hans-mo.js b/1.1.5/i18n/angular-locale_zh-hans-mo.js
new file mode 100644
index 0000000000..7b669d1590
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hans-mo.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "一月",
+ "1": "二月",
+ "2": "三月",
+ "3": "四月",
+ "4": "五月",
+ "5": "六月",
+ "6": "七月",
+ "7": "八月",
+ "8": "九月",
+ "9": "十月",
+ "10": "十一月",
+ "11": "十二月"
+ },
+ "SHORTDAY": {
+ "0": "周日",
+ "1": "周一",
+ "2": "周二",
+ "3": "周三",
+ "4": "周四",
+ "5": "周五",
+ "6": "周六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "y年M月d日 ah:mm:ss",
+ "mediumDate": "y年M月d日",
+ "mediumTime": "ah:mm:ss",
+ "short": "d/M/yy ah:mm",
+ "shortDate": "d/M/yy",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hans-mo",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hans-sg.js b/1.1.5/i18n/angular-locale_zh-hans-sg.js
new file mode 100644
index 0000000000..2d48699a5e
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hans-sg.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "一月",
+ "1": "二月",
+ "2": "三月",
+ "3": "四月",
+ "4": "五月",
+ "5": "六月",
+ "6": "七月",
+ "7": "八月",
+ "8": "九月",
+ "9": "十月",
+ "10": "十一月",
+ "11": "十二月"
+ },
+ "SHORTDAY": {
+ "0": "周日",
+ "1": "周一",
+ "2": "周二",
+ "3": "周三",
+ "4": "周四",
+ "5": "周五",
+ "6": "周六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "y年M月d日 ah:mm:ss",
+ "mediumDate": "y年M月d日",
+ "mediumTime": "ah:mm:ss",
+ "short": "dd/MM/yy ahh:mm",
+ "shortDate": "dd/MM/yy",
+ "shortTime": "ahh:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hans-sg",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hans.js b/1.1.5/i18n/angular-locale_zh-hans.js
new file mode 100644
index 0000000000..00ae767929
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hans.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "SHORTDAY": {
+ "0": "周日",
+ "1": "周一",
+ "2": "周二",
+ "3": "周三",
+ "4": "周四",
+ "5": "周五",
+ "6": "周六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "yyyy-M-d ah:mm:ss",
+ "mediumDate": "yyyy-M-d",
+ "mediumTime": "ah:mm:ss",
+ "short": "yy-M-d ah:mm",
+ "shortDate": "yy-M-d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hans",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hant-hk.js b/1.1.5/i18n/angular-locale_zh-hant-hk.js
new file mode 100644
index 0000000000..86f50e02ec
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hant-hk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "SHORTDAY": {
+ "0": "週日",
+ "1": "週一",
+ "2": "週二",
+ "3": "週三",
+ "4": "週四",
+ "5": "週五",
+ "6": "週六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "y年M月d日 ahh:mm:ss",
+ "mediumDate": "y年M月d日",
+ "mediumTime": "ahh:mm:ss",
+ "short": "yy年M月d日 ah:mm",
+ "shortDate": "yy年M月d日",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hant-hk",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hant-mo.js b/1.1.5/i18n/angular-locale_zh-hant-mo.js
new file mode 100644
index 0000000000..efb88b07b1
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hant-mo.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "SHORTDAY": {
+ "0": "週日",
+ "1": "週一",
+ "2": "週二",
+ "3": "週三",
+ "4": "週四",
+ "5": "週五",
+ "6": "週六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年MM月dd日EEEE",
+ "longDate": "y年MM月dd日",
+ "medium": "y年M月d日 ahh:mm:ss",
+ "mediumDate": "y年M月d日",
+ "mediumTime": "ahh:mm:ss",
+ "short": "yy年M月d日 ah:mm",
+ "shortDate": "yy年M月d日",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hant-mo",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hant-tw.js b/1.1.5/i18n/angular-locale_zh-hant-tw.js
new file mode 100644
index 0000000000..460717d5ad
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hant-tw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "SHORTDAY": {
+ "0": "週日",
+ "1": "週一",
+ "2": "週二",
+ "3": "週三",
+ "4": "週四",
+ "5": "週五",
+ "6": "週六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "yyyy/M/d ah:mm:ss",
+ "mediumDate": "yyyy/M/d",
+ "mediumTime": "ah:mm:ss",
+ "short": "y/M/d ah:mm",
+ "shortDate": "y/M/d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hant-tw",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hant.js b/1.1.5/i18n/angular-locale_zh-hant.js
new file mode 100644
index 0000000000..4db1987dc5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hant.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "上午",
+ "1": "下午"
+ },
+ "DAY": {
+ "0": "星期日",
+ "1": "星期一",
+ "2": "星期二",
+ "3": "星期三",
+ "4": "星期四",
+ "5": "星期五",
+ "6": "星期六"
+ },
+ "MONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "SHORTDAY": {
+ "0": "週日",
+ "1": "週一",
+ "2": "週二",
+ "3": "週三",
+ "4": "週四",
+ "5": "週五",
+ "6": "週六"
+ },
+ "SHORTMONTH": {
+ "0": "1月",
+ "1": "2月",
+ "2": "3月",
+ "3": "4月",
+ "4": "5月",
+ "5": "6月",
+ "6": "7月",
+ "7": "8月",
+ "8": "9月",
+ "9": "10月",
+ "10": "11月",
+ "11": "12月"
+ },
+ "fullDate": "y年M月d日EEEE",
+ "longDate": "y年M月d日",
+ "medium": "yyyy/M/d ah:mm:ss",
+ "mediumDate": "yyyy/M/d",
+ "mediumTime": "ah:mm:ss",
+ "short": "y/M/d ah:mm",
+ "shortDate": "y/M/d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "¥",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hant",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-hk.js b/1.1.5/i18n/angular-locale_zh-hk.js
new file mode 100644
index 0000000000..2656c7c47d
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-hk.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u4e0a\u5348",
+ "1": "\u4e0b\u5348"
+ },
+ "DAY": {
+ "0": "\u661f\u671f\u65e5",
+ "1": "\u661f\u671f\u4e00",
+ "2": "\u661f\u671f\u4e8c",
+ "3": "\u661f\u671f\u4e09",
+ "4": "\u661f\u671f\u56db",
+ "5": "\u661f\u671f\u4e94",
+ "6": "\u661f\u671f\u516d"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u9031\u65e5",
+ "1": "\u9031\u4e00",
+ "2": "\u9031\u4e8c",
+ "3": "\u9031\u4e09",
+ "4": "\u9031\u56db",
+ "5": "\u9031\u4e94",
+ "6": "\u9031\u516d"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "y\u5e74M\u6708d\u65e5 ahh:mm:ss",
+ "mediumDate": "y\u5e74M\u6708d\u65e5",
+ "mediumTime": "ahh:mm:ss",
+ "short": "yy\u5e74M\u6708d\u65e5 ah:mm",
+ "shortDate": "yy\u5e74M\u6708d\u65e5",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-hk",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh-tw.js b/1.1.5/i18n/angular-locale_zh-tw.js
new file mode 100644
index 0000000000..96e6cb9dc8
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh-tw.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u4e0a\u5348",
+ "1": "\u4e0b\u5348"
+ },
+ "DAY": {
+ "0": "\u661f\u671f\u65e5",
+ "1": "\u661f\u671f\u4e00",
+ "2": "\u661f\u671f\u4e8c",
+ "3": "\u661f\u671f\u4e09",
+ "4": "\u661f\u671f\u56db",
+ "5": "\u661f\u671f\u4e94",
+ "6": "\u661f\u671f\u516d"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u9031\u65e5",
+ "1": "\u9031\u4e00",
+ "2": "\u9031\u4e8c",
+ "3": "\u9031\u4e09",
+ "4": "\u9031\u56db",
+ "5": "\u9031\u4e94",
+ "6": "\u9031\u516d"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "yyyy/M/d ah:mm:ss",
+ "mediumDate": "yyyy/M/d",
+ "mediumTime": "ah:mm:ss",
+ "short": "y/M/d ah:mm",
+ "shortDate": "y/M/d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "NT$",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "\u00a4-",
+ "negSuf": "",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh-tw",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zh.js b/1.1.5/i18n/angular-locale_zh.js
new file mode 100644
index 0000000000..805583b528
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zh.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "\u4e0a\u5348",
+ "1": "\u4e0b\u5348"
+ },
+ "DAY": {
+ "0": "\u661f\u671f\u65e5",
+ "1": "\u661f\u671f\u4e00",
+ "2": "\u661f\u671f\u4e8c",
+ "3": "\u661f\u671f\u4e09",
+ "4": "\u661f\u671f\u56db",
+ "5": "\u661f\u671f\u4e94",
+ "6": "\u661f\u671f\u516d"
+ },
+ "MONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "SHORTDAY": {
+ "0": "\u5468\u65e5",
+ "1": "\u5468\u4e00",
+ "2": "\u5468\u4e8c",
+ "3": "\u5468\u4e09",
+ "4": "\u5468\u56db",
+ "5": "\u5468\u4e94",
+ "6": "\u5468\u516d"
+ },
+ "SHORTMONTH": {
+ "0": "1\u6708",
+ "1": "2\u6708",
+ "2": "3\u6708",
+ "3": "4\u6708",
+ "4": "5\u6708",
+ "5": "6\u6708",
+ "6": "7\u6708",
+ "7": "8\u6708",
+ "8": "9\u6708",
+ "9": "10\u6708",
+ "10": "11\u6708",
+ "11": "12\u6708"
+ },
+ "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
+ "longDate": "y\u5e74M\u6708d\u65e5",
+ "medium": "yyyy-M-d ah:mm:ss",
+ "mediumDate": "yyyy-M-d",
+ "mediumTime": "ah:mm:ss",
+ "short": "yy-M-d ah:mm",
+ "shortDate": "yy-M-d",
+ "shortTime": "ah:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "\u00a5",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zh",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zu-za.js b/1.1.5/i18n/angular-locale_zu-za.js
new file mode 100644
index 0000000000..d324af5ad5
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zu-za.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sonto",
+ "1": "Msombuluko",
+ "2": "Lwesibili",
+ "3": "Lwesithathu",
+ "4": "uLwesine",
+ "5": "Lwesihlanu",
+ "6": "Mgqibelo"
+ },
+ "MONTH": {
+ "0": "Januwari",
+ "1": "Februwari",
+ "2": "Mashi",
+ "3": "Apreli",
+ "4": "Meyi",
+ "5": "Juni",
+ "6": "Julayi",
+ "7": "Agasti",
+ "8": "Septhemba",
+ "9": "Okthoba",
+ "10": "Novemba",
+ "11": "Disemba"
+ },
+ "SHORTDAY": {
+ "0": "Son",
+ "1": "Mso",
+ "2": "Bil",
+ "3": "Tha",
+ "4": "Sin",
+ "5": "Hla",
+ "6": "Mgq"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mas",
+ "3": "Apr",
+ "4": "Mey",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aga",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y h:mm:ss a",
+ "mediumDate": "d MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy-MM-dd h:mm a",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zu-za",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/i18n/angular-locale_zu.js b/1.1.5/i18n/angular-locale_zu.js
new file mode 100644
index 0000000000..164c05dd2c
--- /dev/null
+++ b/1.1.5/i18n/angular-locale_zu.js
@@ -0,0 +1,98 @@
+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": {
+ "0": "AM",
+ "1": "PM"
+ },
+ "DAY": {
+ "0": "Sonto",
+ "1": "Msombuluko",
+ "2": "Lwesibili",
+ "3": "Lwesithathu",
+ "4": "uLwesine",
+ "5": "Lwesihlanu",
+ "6": "Mgqibelo"
+ },
+ "MONTH": {
+ "0": "Januwari",
+ "1": "Februwari",
+ "2": "Mashi",
+ "3": "Apreli",
+ "4": "Meyi",
+ "5": "Juni",
+ "6": "Julayi",
+ "7": "Agasti",
+ "8": "Septhemba",
+ "9": "Okthoba",
+ "10": "Novemba",
+ "11": "Disemba"
+ },
+ "SHORTDAY": {
+ "0": "Son",
+ "1": "Mso",
+ "2": "Bil",
+ "3": "Tha",
+ "4": "Sin",
+ "5": "Hla",
+ "6": "Mgq"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mas",
+ "3": "Apr",
+ "4": "Mey",
+ "5": "Jun",
+ "6": "Jul",
+ "7": "Aga",
+ "8": "Sep",
+ "9": "Okt",
+ "10": "Nov",
+ "11": "Dis"
+ },
+ "fullDate": "EEEE dd MMMM y",
+ "longDate": "d MMMM y",
+ "medium": "d MMM y h:mm:ss a",
+ "mediumDate": "d MMM y",
+ "mediumTime": "h:mm:ss a",
+ "short": "yyyy-MM-dd h:mm a",
+ "shortDate": "yyyy-MM-dd",
+ "shortTime": "h:mm a"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "R",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00a4",
+ "negSuf": ")",
+ "posPre": "\u00a4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "zu",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.1.5/version.json b/1.1.5/version.json
new file mode 100644
index 0000000000..781b4959bb
--- /dev/null
+++ b/1.1.5/version.json
@@ -0,0 +1 @@
+{"full":"1.1.5","major":"1","minor":"1","dot":"5","codename":"triangle-squarification","cdn":"1.1.4"}
\ No newline at end of file
diff --git a/1.1.5/version.txt b/1.1.5/version.txt
new file mode 100644
index 0000000000..314c3d7175
--- /dev/null
+++ b/1.1.5/version.txt
@@ -0,0 +1 @@
+1.1.5
\ No newline at end of file