Improve this docA 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 Testacular 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 Testacular if you
+ don't have it already:
+ npm install -g testacular
+ 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 Testacular 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 Testacular if you
+ don't have it already:
+ npm install -g testacular
+
+ 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.0.6/docs/partials/tutorial/step_00.html b/1.0.6/docs/partials/tutorial/step_00.html
new file mode 100644
index 0000000000..5a3df81235
--- /dev/null
+++ b/1.0.6/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.0.6/docs/partials/tutorial/step_01.html b/1.0.6/docs/partials/tutorial/step_01.html
new file mode 100644
index 0000000000..fe06ea6c5a
--- /dev/null
+++ b/1.0.6/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.0.6/docs/partials/tutorial/step_02.html b/1.0.6/docs/partials/tutorial/step_02.html
new file mode 100644
index 0000000000..8811679d47
--- /dev/null
+++ b/1.0.6/docs/partials/tutorial/step_02.html
@@ -0,0 +1,194 @@
+
+
+
+
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 Testacular. 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 Testacular server.
+Testacular will start a new instance of Chrome browser automatically. Just ignore it and let it run in
+the background. Testacular will use this browser for test execution.
+You should see the following or similar output in the terminal:
+
+ info: Testacular 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. Testacular 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.0.6/docs/partials/tutorial/step_03.html b/1.0.6/docs/partials/tutorial/step_03.html
new file mode 100644
index 0000000000..e12788d715
--- /dev/null
+++ b/1.0.6/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 Testacular 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, Testacular 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.0.6/docs/partials/tutorial/step_04.html b/1.0.6/docs/partials/tutorial/step_04.html
new file mode 100644
index 0000000000..44d84a8b20
--- /dev/null
+++ b/1.0.6/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 Testacular 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.0.6/docs/partials/tutorial/step_05.html b/1.0.6/docs/partials/tutorial/step_05.html
new file mode 100644
index 0000000000..f48e9e0927
--- /dev/null
+++ b/1.0.6/docs/partials/tutorial/step_05.html
@@ -0,0 +1,227 @@
+
+
+
+
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;
+
+ 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 Testacular 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.0.6/docs/partials/tutorial/step_06.html b/1.0.6/docs/partials/tutorial/step_06.html
new file mode 100644
index 0000000000..f516793ff6
--- /dev/null
+++ b/1.0.6/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.0.6/docs/partials/tutorial/step_07.html b/1.0.6/docs/partials/tutorial/step_07.html
new file mode 100644
index 0000000000..d56d9f4abe
--- /dev/null
+++ b/1.0.6/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.0.6/docs/partials/tutorial/step_08.html b/1.0.6/docs/partials/tutorial/step_08.html
new file mode 100644
index 0000000000..e3ab94817d
--- /dev/null
+++ b/1.0.6/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 Testacular 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.0.6/docs/partials/tutorial/step_09.html b/1.0.6/docs/partials/tutorial/step_09.html
new file mode 100644
index 0000000000..9608e8af07
--- /dev/null
+++ b/1.0.6/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 Testacular 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.0.6/docs/partials/tutorial/step_10.html b/1.0.6/docs/partials/tutorial/step_10.html
new file mode 100644
index 0000000000..9bfd14bdcb
--- /dev/null
+++ b/1.0.6/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.0.6/docs/partials/tutorial/step_11.html b/1.0.6/docs/partials/tutorial/step_11.html
new file mode 100644
index 0000000000..99ba48e13a
--- /dev/null
+++ b/1.0.6/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 Testacular 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.0.6/docs/partials/tutorial/the_end.html b/1.0.6/docs/partials/tutorial/the_end.html
new file mode 100644
index 0000000000..abf3f975b4
--- /dev/null
+++ b/1.0.6/docs/partials/tutorial/the_end.html
@@ -0,0 +1,19 @@
+
+
+
+
Improve this docOur 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.0.6/docs/robots.txt b/1.0.6/docs/robots.txt
new file mode 100644
index 0000000000..f93b7c0634
--- /dev/null
+++ b/1.0.6/docs/robots.txt
@@ -0,0 +1 @@
+Sitemap: http://docs.angularjs.org/sitemap.xml
diff --git a/1.0.6/docs/sitemap.xml b/1.0.6/docs/sitemap.xml
new file mode 100644
index 0000000000..940205ef5c
--- /dev/null
+++ b/1.0.6/docs/sitemap.xml
@@ -0,0 +1,210 @@
+
+
+ http://docs.angularjs.org/api/indexweekly
+ http://docs.angularjs.org/api/ngweekly
+ http://docs.angularjs.org/cookbook/advancedformweekly
+ http://docs.angularjs.org/cookbook/buzzweekly
+ http://docs.angularjs.org/cookbook/deeplinkingweekly
+ http://docs.angularjs.org/cookbook/formweekly
+ http://docs.angularjs.org/cookbook/helloworldweekly
+ http://docs.angularjs.org/cookbook/indexweekly
+ http://docs.angularjs.org/cookbook/mvcweekly
+ http://docs.angularjs.org/guide/bootstrapweekly
+ http://docs.angularjs.org/guide/compilerweekly
+ http://docs.angularjs.org/guide/conceptsweekly
+ http://docs.angularjs.org/guide/dev_guide.e2e-testingweekly
+ http://docs.angularjs.org/guide/dev_guide.mvcweekly
+ 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.mvc.understanding_viewweekly
+ http://docs.angularjs.org/guide/dev_guide.services.$locationweekly
+ 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.services.testing_servicesweekly
+ http://docs.angularjs.org/guide/dev_guide.services.understanding_servicesweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.css-stylingweekly
+ http://docs.angularjs.org/guide/dev_guide.templates.databindingweekly
+ 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.templates.filters.using_filtersweekly
+ http://docs.angularjs.org/guide/dev_guide.templatesweekly
+ 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/indexweekly
+ http://docs.angularjs.org/guide/introductionweekly
+ http://docs.angularjs.org/guide/moduleweekly
+ http://docs.angularjs.org/guide/overviewweekly
+ http://docs.angularjs.org/guide/scopeweekly
+ http://docs.angularjs.org/guide/typeweekly
+ http://docs.angularjs.org/misc/contributeweekly
+ http://docs.angularjs.org/misc/downloadingweekly
+ http://docs.angularjs.org/misc/faqweekly
+ http://docs.angularjs.org/misc/startedweekly
+ http://docs.angularjs.org/tutorial/indexweekly
+ http://docs.angularjs.org/tutorial/step_00weekly
+ http://docs.angularjs.org/tutorial/step_01weekly
+ 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/tutorial/step_06weekly
+ http://docs.angularjs.org/tutorial/step_07weekly
+ http://docs.angularjs.org/tutorial/step_08weekly
+ http://docs.angularjs.org/tutorial/step_09weekly
+ http://docs.angularjs.org/tutorial/step_10weekly
+ http://docs.angularjs.org/tutorial/step_11weekly
+ http://docs.angularjs.org/tutorial/the_endweekly
+ http://docs.angularjs.org/api/angular.lowercaseweekly
+ http://docs.angularjs.org/api/angular.uppercaseweekly
+ 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/angular.Moduleweekly
+ http://docs.angularjs.org/api/angular.moduleweekly
+ http://docs.angularjs.org/api/ng.$anchorScrollweekly
+ http://docs.angularjs.org/api/ng.$cacheFactoryweekly
+ http://docs.angularjs.org/api/ng.$templateCacheweekly
+ 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.$compileweekly
+ http://docs.angularjs.org/api/ng.$compileProviderweekly
+ http://docs.angularjs.org/api/ng.$compile.directive.Attributesweekly
+ http://docs.angularjs.org/api/ng.directive:ngHrefweekly
+ http://docs.angularjs.org/api/ng.directive:ngSrcweekly
+ 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: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: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: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: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:ngSubmitweekly
+ 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.$parseweekly
+ http://docs.angularjs.org/api/ng.$qweekly
+ http://docs.angularjs.org/api/ng.$rootElementweekly
+ 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.$routeParamsweekly
+ http://docs.angularjs.org/api/ng.$routeProviderweekly
+ http://docs.angularjs.org/api/ng.$routeweekly
+ 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/ngResourceweekly
+ http://docs.angularjs.org/api/ngResource.$resourceweekly
+ http://docs.angularjs.org/api/ngSanitize.directive:ngBindHtmlweekly
+ 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.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/ngSanitize.filter:linkyweekly
+ http://docs.angularjs.org/api/ngSanitizeweekly
+ http://docs.angularjs.org/api/ngSanitize.$sanitizeweekly
+
diff --git a/1.0.6/i18n/angular-locale_af-na.js b/1.0.6/i18n/angular-locale_af-na.js
new file mode 100644
index 0000000000..cdb00eae44
--- /dev/null
+++ b/1.0.6/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": " ",
+ "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.0.6/i18n/angular-locale_af-za.js b/1.0.6/i18n/angular-locale_af-za.js
new file mode 100644
index 0000000000..59c2e28f13
--- /dev/null
+++ b/1.0.6/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": " ",
+ "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.0.6/i18n/angular-locale_af.js b/1.0.6/i18n/angular-locale_af.js
new file mode 100644
index 0000000000..b24656b5f2
--- /dev/null
+++ b/1.0.6/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": " ",
+ "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.0.6/i18n/angular-locale_am-et.js b/1.0.6/i18n/angular-locale_am-et.js
new file mode 100644
index 0000000000..85b7d0e4ab
--- /dev/null
+++ b/1.0.6/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": "ጡዋት",
+ "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": "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.0.6/i18n/angular-locale_am.js b/1.0.6/i18n/angular-locale_am.js
new file mode 100644
index 0000000000..9cad001bb7
--- /dev/null
+++ b/1.0.6/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": "ጡዋት",
+ "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": "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.0.6/i18n/angular-locale_ar-001.js b/1.0.6/i18n/angular-locale_ar-001.js
new file mode 100644
index 0000000000..a0f872a533
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-ae.js b/1.0.6/i18n/angular-locale_ar-ae.js
new file mode 100644
index 0000000000..b14c48a0f5
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-bh.js b/1.0.6/i18n/angular-locale_ar-bh.js
new file mode 100644
index 0000000000..4def4906ed
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-dz.js b/1.0.6/i18n/angular-locale_ar-dz.js
new file mode 100644
index 0000000000..8f9ec82fc9
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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": "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": "£",
+ "DECIMAL_SEP": "٫",
+ "GROUP_SEP": "٬",
+ "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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-eg.js b/1.0.6/i18n/angular-locale_ar-eg.js
new file mode 100644
index 0000000000..ddb4e5c355
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-iq.js b/1.0.6/i18n/angular-locale_ar-iq.js
new file mode 100644
index 0000000000..ba1a430bf4
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-jo.js b/1.0.6/i18n/angular-locale_ar-jo.js
new file mode 100644
index 0000000000..3196e46d5a
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-kw.js b/1.0.6/i18n/angular-locale_ar-kw.js
new file mode 100644
index 0000000000..d0cfff8677
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-lb.js b/1.0.6/i18n/angular-locale_ar-lb.js
new file mode 100644
index 0000000000..f640dcc916
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-ly.js b/1.0.6/i18n/angular-locale_ar-ly.js
new file mode 100644
index 0000000000..adc7df130f
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-ma.js b/1.0.6/i18n/angular-locale_ar-ma.js
new file mode 100644
index 0000000000..79bdfe6943
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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": "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": "£",
+ "DECIMAL_SEP": "٫",
+ "GROUP_SEP": "٬",
+ "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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-om.js b/1.0.6/i18n/angular-locale_ar-om.js
new file mode 100644
index 0000000000..701eaecc5f
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-qa.js b/1.0.6/i18n/angular-locale_ar-qa.js
new file mode 100644
index 0000000000..2fe14b233d
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-sa.js b/1.0.6/i18n/angular-locale_ar-sa.js
new file mode 100644
index 0000000000..5487dac682
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-sd.js b/1.0.6/i18n/angular-locale_ar-sd.js
new file mode 100644
index 0000000000..50a65847de
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-sy.js b/1.0.6/i18n/angular-locale_ar-sy.js
new file mode 100644
index 0000000000..d7514835b4
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-tn.js b/1.0.6/i18n/angular-locale_ar-tn.js
new file mode 100644
index 0000000000..9ad3dcfe41
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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": "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": "£",
+ "DECIMAL_SEP": "٫",
+ "GROUP_SEP": "٬",
+ "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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar-ye.js b/1.0.6/i18n/angular-locale_ar-ye.js
new file mode 100644
index 0000000000..35eebf2d68
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_ar.js b/1.0.6/i18n/angular-locale_ar.js
new file mode 100644
index 0000000000..aae0b96613
--- /dev/null
+++ b/1.0.6/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": "ص",
+ "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 a",
+ "mediumDate": "dd/MM/yyyy",
+ "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": 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 ",
+ "negSuf": "-",
+ "posPre": "\u00A4 ",
+ "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.0.6/i18n/angular-locale_bg-bg.js b/1.0.6/i18n/angular-locale_bg-bg.js
new file mode 100644
index 0000000000..6c123e226b
--- /dev/null
+++ b/1.0.6/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": "пр. об.",
+ "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": "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": " ",
+ "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": "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.0.6/i18n/angular-locale_bg.js b/1.0.6/i18n/angular-locale_bg.js
new file mode 100644
index 0000000000..d87803530b
--- /dev/null
+++ b/1.0.6/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": "пр. об.",
+ "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": "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": " ",
+ "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": "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.0.6/i18n/angular-locale_bn-bd.js b/1.0.6/i18n/angular-locale_bn-bd.js
new file mode 100644
index 0000000000..3ebe19fa07
--- /dev/null
+++ b/1.0.6/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": "রবিবার",
+ "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": "(",
+ "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.0.6/i18n/angular-locale_bn-in.js b/1.0.6/i18n/angular-locale_bn-in.js
new file mode 100644
index 0000000000..a00f9fa205
--- /dev/null
+++ b/1.0.6/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": "রবিবার",
+ "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": "(",
+ "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.0.6/i18n/angular-locale_bn.js b/1.0.6/i18n/angular-locale_bn.js
new file mode 100644
index 0000000000..2779ae824b
--- /dev/null
+++ b/1.0.6/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": "রবিবার",
+ "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": "(",
+ "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.0.6/i18n/angular-locale_ca-ad.js b/1.0.6/i18n/angular-locale_ca-ad.js
new file mode 100644
index 0000000000..79735b1a13
--- /dev/null
+++ b/1.0.6/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ç",
+ "3": "d’abril",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de juliol",
+ "7": "d’agost",
+ "8": "de setembre",
+ "9": "d’octubre",
+ "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ç",
+ "3": "d’abr.",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de jul.",
+ "7": "d’ag.",
+ "8": "de set.",
+ "9": "d’oct.",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_ca-es.js b/1.0.6/i18n/angular-locale_ca-es.js
new file mode 100644
index 0000000000..e8fb418279
--- /dev/null
+++ b/1.0.6/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ç",
+ "3": "d’abril",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de juliol",
+ "7": "d’agost",
+ "8": "de setembre",
+ "9": "d’octubre",
+ "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ç",
+ "3": "d’abr.",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de jul.",
+ "7": "d’ag.",
+ "8": "de set.",
+ "9": "d’oct.",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_ca.js b/1.0.6/i18n/angular-locale_ca.js
new file mode 100644
index 0000000000..f7a027d6f0
--- /dev/null
+++ b/1.0.6/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ç",
+ "3": "d’abril",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de juliol",
+ "7": "d’agost",
+ "8": "de setembre",
+ "9": "d’octubre",
+ "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ç",
+ "3": "d’abr.",
+ "4": "de maig",
+ "5": "de juny",
+ "6": "de jul.",
+ "7": "d’ag.",
+ "8": "de set.",
+ "9": "d’oct.",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_chr.js b/1.0.6/i18n/angular-locale_chr.js
new file mode 100644
index 0000000000..8866af3f5f
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_cs-cz.js b/1.0.6/i18n/angular-locale_cs-cz.js
new file mode 100644
index 0000000000..2c211d46f2
--- /dev/null
+++ b/1.0.6/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ěle",
+ "1": "pondělí",
+ "2": "úterý",
+ "3": "středa",
+ "4": "čtvrtek",
+ "5": "pátek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "ledna",
+ "1": "února",
+ "2": "března",
+ "3": "dubna",
+ "4": "května",
+ "5": "června",
+ "6": "července",
+ "7": "srpna",
+ "8": "září",
+ "9": "října",
+ "10": "listopadu",
+ "11": "prosince"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "út",
+ "3": "st",
+ "4": "čt",
+ "5": "pá",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "Led",
+ "1": "Úno",
+ "2": "Bře",
+ "3": "Dub",
+ "4": "Kvě",
+ "5": "Čer",
+ "6": "Čvc",
+ "7": "Srp",
+ "8": "Zář",
+ "9": "Říj",
+ "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č",
+ "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": "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.0.6/i18n/angular-locale_cs.js b/1.0.6/i18n/angular-locale_cs.js
new file mode 100644
index 0000000000..18f372757d
--- /dev/null
+++ b/1.0.6/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ěle",
+ "1": "pondělí",
+ "2": "úterý",
+ "3": "středa",
+ "4": "čtvrtek",
+ "5": "pátek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "ledna",
+ "1": "února",
+ "2": "března",
+ "3": "dubna",
+ "4": "května",
+ "5": "června",
+ "6": "července",
+ "7": "srpna",
+ "8": "září",
+ "9": "října",
+ "10": "listopadu",
+ "11": "prosince"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "út",
+ "3": "st",
+ "4": "čt",
+ "5": "pá",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "Led",
+ "1": "Úno",
+ "2": "Bře",
+ "3": "Dub",
+ "4": "Kvě",
+ "5": "Čer",
+ "6": "Čvc",
+ "7": "Srp",
+ "8": "Zář",
+ "9": "Říj",
+ "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č",
+ "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": "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.0.6/i18n/angular-locale_cy.js b/1.0.6/i18n/angular-locale_cy.js
new file mode 100644
index 0000000000..db25bc62fe
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_da-dk.js b/1.0.6/i18n/angular-locale_da-dk.js
new file mode 100644
index 0000000000..985372bc06
--- /dev/null
+++ b/1.0.6/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øndag",
+ "1": "mandag",
+ "2": "tirsdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "lørdag"
+ },
+ "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øn",
+ "1": "man",
+ "2": "tir",
+ "3": "ons",
+ "4": "tor",
+ "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 '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": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_da.js b/1.0.6/i18n/angular-locale_da.js
new file mode 100644
index 0000000000..2d7af4c3bc
--- /dev/null
+++ b/1.0.6/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øndag",
+ "1": "mandag",
+ "2": "tirsdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "lørdag"
+ },
+ "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øn",
+ "1": "man",
+ "2": "tir",
+ "3": "ons",
+ "4": "tor",
+ "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 '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": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_de-at.js b/1.0.6/i18n/angular-locale_de-at.js
new file mode 100644
index 0000000000..68a8114572
--- /dev/null
+++ b/1.0.6/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änner",
+ "1": "Februar",
+ "2": "März",
+ "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än",
+ "1": "Feb",
+ "2": "Mär",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_de-be.js b/1.0.6/i18n/angular-locale_de-be.js
new file mode 100644
index 0000000000..25e687cf78
--- /dev/null
+++ b/1.0.6/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ärz",
+ "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är",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_de-ch.js b/1.0.6/i18n/angular-locale_de-ch.js
new file mode 100644
index 0000000000..1df9abd08b
--- /dev/null
+++ b/1.0.6/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ärz",
+ "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är",
+ "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 ",
+ "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.0.6/i18n/angular-locale_de-de.js b/1.0.6/i18n/angular-locale_de-de.js
new file mode 100644
index 0000000000..9da0393451
--- /dev/null
+++ b/1.0.6/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ärz",
+ "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är",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_de-li.js b/1.0.6/i18n/angular-locale_de-li.js
new file mode 100644
index 0000000000..3a18d629fa
--- /dev/null
+++ b/1.0.6/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ärz",
+ "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är",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_de-lu.js b/1.0.6/i18n/angular-locale_de-lu.js
new file mode 100644
index 0000000000..b72cafc3d9
--- /dev/null
+++ b/1.0.6/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ärz",
+ "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är",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_de.js b/1.0.6/i18n/angular-locale_de.js
new file mode 100644
index 0000000000..b1f40313a2
--- /dev/null
+++ b/1.0.6/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ärz",
+ "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är",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_el-cy.js b/1.0.6/i18n/angular-locale_el-cy.js
new file mode 100644
index 0000000000..e94025d37f
--- /dev/null
+++ b/1.0.6/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": "π.μ.",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_el-gr.js b/1.0.6/i18n/angular-locale_el-gr.js
new file mode 100644
index 0000000000..0b658a8057
--- /dev/null
+++ b/1.0.6/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": "π.μ.",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_el-polyton.js b/1.0.6/i18n/angular-locale_el-polyton.js
new file mode 100644
index 0000000000..d480d8332e
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_el.js b/1.0.6/i18n/angular-locale_el.js
new file mode 100644
index 0000000000..7f44b6a633
--- /dev/null
+++ b/1.0.6/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": "π.μ.",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_en-as.js b/1.0.6/i18n/angular-locale_en-as.js
new file mode 100644
index 0000000000..af765486e9
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-au.js b/1.0.6/i18n/angular-locale_en-au.js
new file mode 100644
index 0000000000..09c874a12f
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-bb.js b/1.0.6/i18n/angular-locale_en-bb.js
new file mode 100644
index 0000000000..00a8121d0c
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-be.js b/1.0.6/i18n/angular-locale_en-be.js
new file mode 100644
index 0000000000..2f28965ce9
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-bm.js b/1.0.6/i18n/angular-locale_en-bm.js
new file mode 100644
index 0000000000..e9b01c612e
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-bw.js b/1.0.6/i18n/angular-locale_en-bw.js
new file mode 100644
index 0000000000..5105e94083
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-bz.js b/1.0.6/i18n/angular-locale_en-bz.js
new file mode 100644
index 0000000000..8b17431fb4
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-ca.js b/1.0.6/i18n/angular-locale_en-ca.js
new file mode 100644
index 0000000000..6ab019085f
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-dsrt-us.js b/1.0.6/i18n/angular-locale_en-dsrt-us.js
new file mode 100644
index 0000000000..c7a6271e94
--- /dev/null
+++ b/1.0.6/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": "𐐈𐐣",
+ "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, 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.0.6/i18n/angular-locale_en-dsrt.js b/1.0.6/i18n/angular-locale_en-dsrt.js
new file mode 100644
index 0000000000..53ffc19934
--- /dev/null
+++ b/1.0.6/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": "𐐈𐐣",
+ "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, 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.0.6/i18n/angular-locale_en-fm.js b/1.0.6/i18n/angular-locale_en-fm.js
new file mode 100644
index 0000000000..1b00172ae8
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-gb.js b/1.0.6/i18n/angular-locale_en-gb.js
new file mode 100644
index 0000000000..f971f12b3c
--- /dev/null
+++ b/1.0.6/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": "£",
+ "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.0.6/i18n/angular-locale_en-gu.js b/1.0.6/i18n/angular-locale_en-gu.js
new file mode 100644
index 0000000000..0f23f512ae
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-gy.js b/1.0.6/i18n/angular-locale_en-gy.js
new file mode 100644
index 0000000000..f834fd2b90
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-hk.js b/1.0.6/i18n/angular-locale_en-hk.js
new file mode 100644
index 0000000000..63c1fd242c
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-ie.js b/1.0.6/i18n/angular-locale_en-ie.js
new file mode 100644
index 0000000000..670f808ce1
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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.0.6/i18n/angular-locale_en-in.js b/1.0.6/i18n/angular-locale_en-in.js
new file mode 100644
index 0000000000..4092878573
--- /dev/null
+++ b/1.0.6/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": "₹",
+ "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": "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.0.6/i18n/angular-locale_en-iso.js b/1.0.6/i18n/angular-locale_en-iso.js
new file mode 100644
index 0000000000..720bca2b59
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-jm.js b/1.0.6/i18n/angular-locale_en-jm.js
new file mode 100644
index 0000000000..bad985acfc
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-mh.js b/1.0.6/i18n/angular-locale_en-mh.js
new file mode 100644
index 0000000000..a0d0d7c4b2
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-mp.js b/1.0.6/i18n/angular-locale_en-mp.js
new file mode 100644
index 0000000000..a9f5a1c984
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-mt.js b/1.0.6/i18n/angular-locale_en-mt.js
new file mode 100644
index 0000000000..313bc0d400
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-mu.js b/1.0.6/i18n/angular-locale_en-mu.js
new file mode 100644
index 0000000000..49a34077ec
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-na.js b/1.0.6/i18n/angular-locale_en-na.js
new file mode 100644
index 0000000000..13235ace43
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-nz.js b/1.0.6/i18n/angular-locale_en-nz.js
new file mode 100644
index 0000000000..f4d39994ac
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-ph.js b/1.0.6/i18n/angular-locale_en-ph.js
new file mode 100644
index 0000000000..57abb82bf0
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-pk.js b/1.0.6/i18n/angular-locale_en-pk.js
new file mode 100644
index 0000000000..9d9e906e9c
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-pr.js b/1.0.6/i18n/angular-locale_en-pr.js
new file mode 100644
index 0000000000..36b24919dc
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-pw.js b/1.0.6/i18n/angular-locale_en-pw.js
new file mode 100644
index 0000000000..188451f000
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-sg.js b/1.0.6/i18n/angular-locale_en-sg.js
new file mode 100644
index 0000000000..fd37a1f54d
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-tc.js b/1.0.6/i18n/angular-locale_en-tc.js
new file mode 100644
index 0000000000..86b6992371
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-tt.js b/1.0.6/i18n/angular-locale_en-tt.js
new file mode 100644
index 0000000000..285e17c55a
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-um.js b/1.0.6/i18n/angular-locale_en-um.js
new file mode 100644
index 0000000000..0004f194f0
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-us.js b/1.0.6/i18n/angular-locale_en-us.js
new file mode 100644
index 0000000000..19eda947bc
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-vg.js b/1.0.6/i18n/angular-locale_en-vg.js
new file mode 100644
index 0000000000..1649572bb1
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-vi.js b/1.0.6/i18n/angular-locale_en-vi.js
new file mode 100644
index 0000000000..6f1c95d359
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-za.js b/1.0.6/i18n/angular-locale_en-za.js
new file mode 100644
index 0000000000..9b543100a2
--- /dev/null
+++ b/1.0.6/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": " ",
+ "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.0.6/i18n/angular-locale_en-zw.js b/1.0.6/i18n/angular-locale_en-zw.js
new file mode 100644
index 0000000000..220938f719
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en-zz.js b/1.0.6/i18n/angular-locale_en-zz.js
new file mode 100644
index 0000000000..b72c592365
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_en.js b/1.0.6/i18n/angular-locale_en.js
new file mode 100644
index 0000000000..c2a3a9ec2a
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_es-419.js b/1.0.6/i18n/angular-locale_es-419.js
new file mode 100644
index 0000000000..85e6be0931
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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.0.6/i18n/angular-locale_es-ar.js b/1.0.6/i18n/angular-locale_es-ar.js
new file mode 100644
index 0000000000..87dfbdb0ab
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-bo.js b/1.0.6/i18n/angular-locale_es-bo.js
new file mode 100644
index 0000000000..2044508482
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-cl.js b/1.0.6/i18n/angular-locale_es-cl.js
new file mode 100644
index 0000000000..b23e0e3cb5
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-co.js b/1.0.6/i18n/angular-locale_es-co.js
new file mode 100644
index 0000000000..6ae6eec726
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-cr.js b/1.0.6/i18n/angular-locale_es-cr.js
new file mode 100644
index 0000000000..266ed0c7b7
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-do.js b/1.0.6/i18n/angular-locale_es-do.js
new file mode 100644
index 0000000000..dc8682a47c
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-ea.js b/1.0.6/i18n/angular-locale_es-ea.js
new file mode 100644
index 0000000000..c14edb665a
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-ec.js b/1.0.6/i18n/angular-locale_es-ec.js
new file mode 100644
index 0000000000..0b53f7986e
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-es.js b/1.0.6/i18n/angular-locale_es-es.js
new file mode 100644
index 0000000000..128af4562e
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-gq.js b/1.0.6/i18n/angular-locale_es-gq.js
new file mode 100644
index 0000000000..f7d3155b12
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-gt.js b/1.0.6/i18n/angular-locale_es-gt.js
new file mode 100644
index 0000000000..af936daa4d
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-hn.js b/1.0.6/i18n/angular-locale_es-hn.js
new file mode 100644
index 0000000000..f9bc47f133
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-ic.js b/1.0.6/i18n/angular-locale_es-ic.js
new file mode 100644
index 0000000000..6600b89af4
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-mx.js b/1.0.6/i18n/angular-locale_es-mx.js
new file mode 100644
index 0000000000..33e3ec45e0
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-ni.js b/1.0.6/i18n/angular-locale_es-ni.js
new file mode 100644
index 0000000000..3c3e7edc83
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-pa.js b/1.0.6/i18n/angular-locale_es-pa.js
new file mode 100644
index 0000000000..fa82a6eb3a
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-pe.js b/1.0.6/i18n/angular-locale_es-pe.js
new file mode 100644
index 0000000000..58fba5a8a0
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-pr.js b/1.0.6/i18n/angular-locale_es-pr.js
new file mode 100644
index 0000000000..d9a12b4b3c
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-py.js b/1.0.6/i18n/angular-locale_es-py.js
new file mode 100644
index 0000000000..b0a9be0c0b
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-sv.js b/1.0.6/i18n/angular-locale_es-sv.js
new file mode 100644
index 0000000000..cdc2c38db3
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-us.js b/1.0.6/i18n/angular-locale_es-us.js
new file mode 100644
index 0000000000..6bb08e030d
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_es-uy.js b/1.0.6/i18n/angular-locale_es-uy.js
new file mode 100644
index 0000000000..ebcba14cf7
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es-ve.js b/1.0.6/i18n/angular-locale_es-ve.js
new file mode 100644
index 0000000000..0869275be5
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_es.js b/1.0.6/i18n/angular-locale_es.js
new file mode 100644
index 0000000000..3a8d7c5cf1
--- /dev/null
+++ b/1.0.6/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ércoles",
+ "4": "jueves",
+ "5": "viernes",
+ "6": "sábado"
+ },
+ "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é",
+ "4": "jue",
+ "5": "vie",
+ "6": "sáb"
+ },
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_et-ee.js b/1.0.6/i18n/angular-locale_et-ee.js
new file mode 100644
index 0000000000..53e88aeb84
--- /dev/null
+++ b/1.0.6/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äeva",
+ "1": "pärast keskpäeva"
+ },
+ "DAY": {
+ "0": "pühapäev",
+ "1": "esmaspäev",
+ "2": "teisipäev",
+ "3": "kolmapäev",
+ "4": "neljapäev",
+ "5": "reede",
+ "6": "laupäev"
+ },
+ "MONTH": {
+ "0": "jaanuar",
+ "1": "veebruar",
+ "2": "märts",
+ "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ärts",
+ "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": "€",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": " ",
+ "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.0.6/i18n/angular-locale_et.js b/1.0.6/i18n/angular-locale_et.js
new file mode 100644
index 0000000000..bbc4375c3d
--- /dev/null
+++ b/1.0.6/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äeva",
+ "1": "pärast keskpäeva"
+ },
+ "DAY": {
+ "0": "pühapäev",
+ "1": "esmaspäev",
+ "2": "teisipäev",
+ "3": "kolmapäev",
+ "4": "neljapäev",
+ "5": "reede",
+ "6": "laupäev"
+ },
+ "MONTH": {
+ "0": "jaanuar",
+ "1": "veebruar",
+ "2": "märts",
+ "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ärts",
+ "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": "€",
+ "DECIMAL_SEP": ",",
+ "GROUP_SEP": " ",
+ "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.0.6/i18n/angular-locale_eu-es.js b/1.0.6/i18n/angular-locale_eu-es.js
new file mode 100644
index 0000000000..56e6cc23f6
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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": "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.0.6/i18n/angular-locale_eu.js b/1.0.6/i18n/angular-locale_eu.js
new file mode 100644
index 0000000000..33ee7521d3
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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": "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.0.6/i18n/angular-locale_fa-af.js b/1.0.6/i18n/angular-locale_fa-af.js
new file mode 100644
index 0000000000..8f8046ebe2
--- /dev/null
+++ b/1.0.6/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": "قبلازظهر",
+ "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",
+ "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": "٫",
+ "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": "fa-af",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_fa-ir.js b/1.0.6/i18n/angular-locale_fa-ir.js
new file mode 100644
index 0000000000..f876c54da0
--- /dev/null
+++ b/1.0.6/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": "قبلازظهر",
+ "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",
+ "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": "٫",
+ "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": "fa-ir",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_fa.js b/1.0.6/i18n/angular-locale_fa.js
new file mode 100644
index 0000000000..6c3a06bd61
--- /dev/null
+++ b/1.0.6/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": "قبلازظهر",
+ "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",
+ "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": "٫",
+ "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": "fa",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_fi-fi.js b/1.0.6/i18n/angular-locale_fi-fi.js
new file mode 100644
index 0000000000..44144ff369
--- /dev/null
+++ b/1.0.6/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äkuuta",
+ "6": "heinäkuuta",
+ "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äkuuta",
+ "6": "heinäkuuta",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_fi.js b/1.0.6/i18n/angular-locale_fi.js
new file mode 100644
index 0000000000..ee9ff926f7
--- /dev/null
+++ b/1.0.6/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äkuuta",
+ "6": "heinäkuuta",
+ "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äkuuta",
+ "6": "heinäkuuta",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_fil-ph.js b/1.0.6/i18n/angular-locale_fil-ph.js
new file mode 100644
index 0000000000..c80997c17d
--- /dev/null
+++ b/1.0.6/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": "₱",
+ "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.0.6/i18n/angular-locale_fil.js b/1.0.6/i18n/angular-locale_fil.js
new file mode 100644
index 0000000000..d9a7ed8133
--- /dev/null
+++ b/1.0.6/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": "₱",
+ "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.0.6/i18n/angular-locale_fr-be.js b/1.0.6/i18n/angular-locale_fr-be.js
new file mode 100644
index 0000000000..e896436b8e
--- /dev/null
+++ b/1.0.6/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é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": "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": "(",
+ "negSuf": " \u00A4)",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_fr-bf.js b/1.0.6/i18n/angular-locale_fr-bf.js
new file mode 100644
index 0000000000..eea1c2cdc4
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-bi.js b/1.0.6/i18n/angular-locale_fr-bi.js
new file mode 100644
index 0000000000..084d064815
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-bj.js b/1.0.6/i18n/angular-locale_fr-bj.js
new file mode 100644
index 0000000000..a800742511
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-bl.js b/1.0.6/i18n/angular-locale_fr-bl.js
new file mode 100644
index 0000000000..e59143d905
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-ca.js b/1.0.6/i18n/angular-locale_fr-ca.js
new file mode 100644
index 0000000000..3142e12b9f
--- /dev/null
+++ b/1.0.6/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é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": "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": " ",
+ "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-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.0.6/i18n/angular-locale_fr-cd.js b/1.0.6/i18n/angular-locale_fr-cd.js
new file mode 100644
index 0000000000..fe8e85611a
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-cf.js b/1.0.6/i18n/angular-locale_fr-cf.js
new file mode 100644
index 0000000000..c16122eaf6
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-cg.js b/1.0.6/i18n/angular-locale_fr-cg.js
new file mode 100644
index 0000000000..1c57b79d94
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-ch.js b/1.0.6/i18n/angular-locale_fr-ch.js
new file mode 100644
index 0000000000..20e7a59d7f
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-ci.js b/1.0.6/i18n/angular-locale_fr-ci.js
new file mode 100644
index 0000000000..9c2f774325
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-cm.js b/1.0.6/i18n/angular-locale_fr-cm.js
new file mode 100644
index 0000000000..f8c85c7fdc
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-dj.js b/1.0.6/i18n/angular-locale_fr-dj.js
new file mode 100644
index 0000000000..0faa094001
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-fr.js b/1.0.6/i18n/angular-locale_fr-fr.js
new file mode 100644
index 0000000000..a4667092b3
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-ga.js b/1.0.6/i18n/angular-locale_fr-ga.js
new file mode 100644
index 0000000000..77fa0b3ffc
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-gf.js b/1.0.6/i18n/angular-locale_fr-gf.js
new file mode 100644
index 0000000000..d9204f98e3
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-gn.js b/1.0.6/i18n/angular-locale_fr-gn.js
new file mode 100644
index 0000000000..be1dfff912
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-gp.js b/1.0.6/i18n/angular-locale_fr-gp.js
new file mode 100644
index 0000000000..8334b522bc
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-gq.js b/1.0.6/i18n/angular-locale_fr-gq.js
new file mode 100644
index 0000000000..fcec538025
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-km.js b/1.0.6/i18n/angular-locale_fr-km.js
new file mode 100644
index 0000000000..dca8c34200
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-lu.js b/1.0.6/i18n/angular-locale_fr-lu.js
new file mode 100644
index 0000000000..bd786bc63f
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-mc.js b/1.0.6/i18n/angular-locale_fr-mc.js
new file mode 100644
index 0000000000..9ab8525edb
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-mf.js b/1.0.6/i18n/angular-locale_fr-mf.js
new file mode 100644
index 0000000000..9394ec777c
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-mg.js b/1.0.6/i18n/angular-locale_fr-mg.js
new file mode 100644
index 0000000000..6b4b139a03
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-ml.js b/1.0.6/i18n/angular-locale_fr-ml.js
new file mode 100644
index 0000000000..0e9f822616
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-mq.js b/1.0.6/i18n/angular-locale_fr-mq.js
new file mode 100644
index 0000000000..e94bc1a17e
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-ne.js b/1.0.6/i18n/angular-locale_fr-ne.js
new file mode 100644
index 0000000000..2ce6cde7f9
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-re.js b/1.0.6/i18n/angular-locale_fr-re.js
new file mode 100644
index 0000000000..64f4e180c7
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-rw.js b/1.0.6/i18n/angular-locale_fr-rw.js
new file mode 100644
index 0000000000..3164315dba
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-sn.js b/1.0.6/i18n/angular-locale_fr-sn.js
new file mode 100644
index 0000000000..2ec8bec0d5
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-td.js b/1.0.6/i18n/angular-locale_fr-td.js
new file mode 100644
index 0000000000..0b5d0a375c
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr-tg.js b/1.0.6/i18n/angular-locale_fr-tg.js
new file mode 100644
index 0000000000..24b76ca97f
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_fr-yt.js b/1.0.6/i18n/angular-locale_fr-yt.js
new file mode 100644
index 0000000000..9e71b41ed0
--- /dev/null
+++ b/1.0.6/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é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-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.0.6/i18n/angular-locale_fr.js b/1.0.6/i18n/angular-locale_fr.js
new file mode 100644
index 0000000000..ac2283fdb6
--- /dev/null
+++ b/1.0.6/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é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",
+ "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.0.6/i18n/angular-locale_gl-es.js b/1.0.6/i18n/angular-locale_gl-es.js
new file mode 100644
index 0000000000..7d857275d4
--- /dev/null
+++ b/1.0.6/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ércores",
+ "4": "Xoves",
+ "5": "Venres",
+ "6": "Sábado"
+ },
+ "MONTH": {
+ "0": "Xaneiro",
+ "1": "Febreiro",
+ "2": "Marzo",
+ "3": "Abril",
+ "4": "Maio",
+ "5": "Xuño",
+ "6": "Xullo",
+ "7": "Agosto",
+ "8": "Setembro",
+ "9": "Outubro",
+ "10": "Novembro",
+ "11": "Decembro"
+ },
+ "SHORTDAY": {
+ "0": "Dom",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "Mér",
+ "4": "Xov",
+ "5": "Ven",
+ "6": "Sáb"
+ },
+ "SHORTMONTH": {
+ "0": "Xan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "Mai",
+ "5": "Xuñ",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_gl.js b/1.0.6/i18n/angular-locale_gl.js
new file mode 100644
index 0000000000..b99b780820
--- /dev/null
+++ b/1.0.6/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ércores",
+ "4": "Xoves",
+ "5": "Venres",
+ "6": "Sábado"
+ },
+ "MONTH": {
+ "0": "Xaneiro",
+ "1": "Febreiro",
+ "2": "Marzo",
+ "3": "Abril",
+ "4": "Maio",
+ "5": "Xuño",
+ "6": "Xullo",
+ "7": "Agosto",
+ "8": "Setembro",
+ "9": "Outubro",
+ "10": "Novembro",
+ "11": "Decembro"
+ },
+ "SHORTDAY": {
+ "0": "Dom",
+ "1": "Lun",
+ "2": "Mar",
+ "3": "Mér",
+ "4": "Xov",
+ "5": "Ven",
+ "6": "Sáb"
+ },
+ "SHORTMONTH": {
+ "0": "Xan",
+ "1": "Feb",
+ "2": "Mar",
+ "3": "Abr",
+ "4": "Mai",
+ "5": "Xuñ",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_gsw-ch.js b/1.0.6/i18n/angular-locale_gsw-ch.js
new file mode 100644
index 0000000000..58b2a49bb0
--- /dev/null
+++ b/1.0.6/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ääntig",
+ "2": "Ziischtig",
+ "3": "Mittwuch",
+ "4": "Dunschtig",
+ "5": "Friitig",
+ "6": "Samschtig"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "März",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Auguscht",
+ "8": "Septämber",
+ "9": "Oktoober",
+ "10": "Novämber",
+ "11": "Dezämber"
+ },
+ "SHORTDAY": {
+ "0": "Su.",
+ "1": "Mä.",
+ "2": "Zi.",
+ "3": "Mi.",
+ "4": "Du.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mär",
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_gsw.js b/1.0.6/i18n/angular-locale_gsw.js
new file mode 100644
index 0000000000..3a7c056279
--- /dev/null
+++ b/1.0.6/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ääntig",
+ "2": "Ziischtig",
+ "3": "Mittwuch",
+ "4": "Dunschtig",
+ "5": "Friitig",
+ "6": "Samschtig"
+ },
+ "MONTH": {
+ "0": "Januar",
+ "1": "Februar",
+ "2": "März",
+ "3": "April",
+ "4": "Mai",
+ "5": "Juni",
+ "6": "Juli",
+ "7": "Auguscht",
+ "8": "Septämber",
+ "9": "Oktoober",
+ "10": "Novämber",
+ "11": "Dezämber"
+ },
+ "SHORTDAY": {
+ "0": "Su.",
+ "1": "Mä.",
+ "2": "Zi.",
+ "3": "Mi.",
+ "4": "Du.",
+ "5": "Fr.",
+ "6": "Sa."
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Feb",
+ "2": "Mär",
+ "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": "-",
+ "negSuf": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_gu-in.js b/1.0.6/i18n/angular-locale_gu-in.js
new file mode 100644
index 0000000000..39402c4bdd
--- /dev/null
+++ b/1.0.6/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": "રવિવાર",
+ "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 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": "₹",
+ "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.0.6/i18n/angular-locale_gu.js b/1.0.6/i18n/angular-locale_gu.js
new file mode 100644
index 0000000000..c60d7633cf
--- /dev/null
+++ b/1.0.6/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": "રવિવાર",
+ "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 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": "₹",
+ "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.0.6/i18n/angular-locale_haw.js b/1.0.6/i18n/angular-locale_haw.js
new file mode 100644
index 0000000000..d898946c1a
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_he-il.js b/1.0.6/i18n/angular-locale_he-il.js
new file mode 100644
index 0000000000..84db8097f2
--- /dev/null
+++ b/1.0.6/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": "לפנה״צ",
+ "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 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": "₪",
+ "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": "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.0.6/i18n/angular-locale_he.js b/1.0.6/i18n/angular-locale_he.js
new file mode 100644
index 0000000000..27022f52e6
--- /dev/null
+++ b/1.0.6/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": "לפנה״צ",
+ "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 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": "₪",
+ "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": "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.0.6/i18n/angular-locale_hi-in.js b/1.0.6/i18n/angular-locale_hi-in.js
new file mode 100644
index 0000000000..92a722ff82
--- /dev/null
+++ b/1.0.6/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": "रविवार",
+ "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 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": "₹",
+ "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": "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.0.6/i18n/angular-locale_hi.js b/1.0.6/i18n/angular-locale_hi.js
new file mode 100644
index 0000000000..54446ce78d
--- /dev/null
+++ b/1.0.6/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": "रविवार",
+ "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 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": "₹",
+ "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": "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.0.6/i18n/angular-locale_hr-hr.js b/1.0.6/i18n/angular-locale_hr-hr.js
new file mode 100644
index 0000000000..20b9b1f9a5
--- /dev/null
+++ b/1.0.6/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": "četvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "siječnja",
+ "1": "veljače",
+ "2": "ožujka",
+ "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": "čet",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "sij",
+ "1": "velj",
+ "2": "ožu",
+ "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": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_hr.js b/1.0.6/i18n/angular-locale_hr.js
new file mode 100644
index 0000000000..72ef511e4b
--- /dev/null
+++ b/1.0.6/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": "četvrtak",
+ "5": "petak",
+ "6": "subota"
+ },
+ "MONTH": {
+ "0": "siječnja",
+ "1": "veljače",
+ "2": "ožujka",
+ "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": "čet",
+ "5": "pet",
+ "6": "sub"
+ },
+ "SHORTMONTH": {
+ "0": "sij",
+ "1": "velj",
+ "2": "ožu",
+ "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": " \u00A4",
+ "posPre": "",
+ "posSuf": " \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.0.6/i18n/angular-locale_hu-hu.js b/1.0.6/i18n/angular-locale_hu-hu.js
new file mode 100644
index 0000000000..d56ad388b8
--- /dev/null
+++ b/1.0.6/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árnap",
+ "1": "hétfő",
+ "2": "kedd",
+ "3": "szerda",
+ "4": "csütörtök",
+ "5": "péntek",
+ "6": "szombat"
+ },
+ "MONTH": {
+ "0": "január",
+ "1": "február",
+ "2": "március",
+ "3": "április",
+ "4": "május",
+ "5": "június",
+ "6": "július",
+ "7": "augusztus",
+ "8": "szeptember",
+ "9": "október",
+ "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árc.",
+ "3": "ápr.",
+ "4": "máj.",
+ "5": "jún.",
+ "6": "júl.",
+ "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": " ",
+ "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": "hu-hu",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_hu.js b/1.0.6/i18n/angular-locale_hu.js
new file mode 100644
index 0000000000..6403a97d09
--- /dev/null
+++ b/1.0.6/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árnap",
+ "1": "hétfő",
+ "2": "kedd",
+ "3": "szerda",
+ "4": "csütörtök",
+ "5": "péntek",
+ "6": "szombat"
+ },
+ "MONTH": {
+ "0": "január",
+ "1": "február",
+ "2": "március",
+ "3": "április",
+ "4": "május",
+ "5": "június",
+ "6": "július",
+ "7": "augusztus",
+ "8": "szeptember",
+ "9": "október",
+ "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árc.",
+ "3": "ápr.",
+ "4": "máj.",
+ "5": "jún.",
+ "6": "júl.",
+ "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": " ",
+ "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": "hu",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_id-id.js b/1.0.6/i18n/angular-locale_id-id.js
new file mode 100644
index 0000000000..69cc491364
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_id.js b/1.0.6/i18n/angular-locale_id.js
new file mode 100644
index 0000000000..6f5f61a29d
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_in.js b/1.0.6/i18n/angular-locale_in.js
new file mode 100644
index 0000000000..90fb4a2c05
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_is-is.js b/1.0.6/i18n/angular-locale_is-is.js
new file mode 100644
index 0000000000..b63a409220
--- /dev/null
+++ b/1.0.6/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ánudagur",
+ "2": "þriðjudagur",
+ "3": "miðvikudagur",
+ "4": "fimmtudagur",
+ "5": "föstudagur",
+ "6": "laugardagur"
+ },
+ "MONTH": {
+ "0": "janúar",
+ "1": "febrúar",
+ "2": "mars",
+ "3": "apríl",
+ "4": "maí",
+ "5": "júní",
+ "6": "júlí",
+ "7": "ágúst",
+ "8": "september",
+ "9": "október",
+ "10": "nóvember",
+ "11": "desember"
+ },
+ "SHORTDAY": {
+ "0": "sun",
+ "1": "mán",
+ "2": "þri",
+ "3": "mið",
+ "4": "fim",
+ "5": "fös",
+ "6": "lau"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maí",
+ "5": "jún",
+ "6": "júl",
+ "7": "ágú",
+ "8": "sep",
+ "9": "okt",
+ "10": "nóv",
+ "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.0.6/i18n/angular-locale_is.js b/1.0.6/i18n/angular-locale_is.js
new file mode 100644
index 0000000000..f012a4f770
--- /dev/null
+++ b/1.0.6/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ánudagur",
+ "2": "þriðjudagur",
+ "3": "miðvikudagur",
+ "4": "fimmtudagur",
+ "5": "föstudagur",
+ "6": "laugardagur"
+ },
+ "MONTH": {
+ "0": "janúar",
+ "1": "febrúar",
+ "2": "mars",
+ "3": "apríl",
+ "4": "maí",
+ "5": "júní",
+ "6": "júlí",
+ "7": "ágúst",
+ "8": "september",
+ "9": "október",
+ "10": "nóvember",
+ "11": "desember"
+ },
+ "SHORTDAY": {
+ "0": "sun",
+ "1": "mán",
+ "2": "þri",
+ "3": "mið",
+ "4": "fim",
+ "5": "fös",
+ "6": "lau"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "maí",
+ "5": "jún",
+ "6": "júl",
+ "7": "ágú",
+ "8": "sep",
+ "9": "okt",
+ "10": "nóv",
+ "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.0.6/i18n/angular-locale_it-ch.js b/1.0.6/i18n/angular-locale_it-ch.js
new file mode 100644
index 0000000000..8b57604983
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_it-it.js b/1.0.6/i18n/angular-locale_it-it.js
new file mode 100644
index 0000000000..4c6dcab1ec
--- /dev/null
+++ b/1.0.6/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ì",
+ "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": "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": "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.0.6/i18n/angular-locale_it-sm.js b/1.0.6/i18n/angular-locale_it-sm.js
new file mode 100644
index 0000000000..d1a6d166c8
--- /dev/null
+++ b/1.0.6/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ì",
+ "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": "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": "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.0.6/i18n/angular-locale_it.js b/1.0.6/i18n/angular-locale_it.js
new file mode 100644
index 0000000000..7333c3ff7e
--- /dev/null
+++ b/1.0.6/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ì",
+ "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": "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": "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.0.6/i18n/angular-locale_iw.js b/1.0.6/i18n/angular-locale_iw.js
new file mode 100644
index 0000000000..d60d3adbd2
--- /dev/null
+++ b/1.0.6/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": "לפנה״צ",
+ "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 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": "₪",
+ "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": "iw",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_ja-jp.js b/1.0.6/i18n/angular-locale_ja-jp.js
new file mode 100644
index 0000000000..a5cf2fcdd8
--- /dev/null
+++ b/1.0.6/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": "午前",
+ "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/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": "¥",
+ "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.0.6/i18n/angular-locale_ja.js b/1.0.6/i18n/angular-locale_ja.js
new file mode 100644
index 0000000000..d61cdb9555
--- /dev/null
+++ b/1.0.6/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": "午前",
+ "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/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": "¥",
+ "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.0.6/i18n/angular-locale_kn-in.js b/1.0.6/i18n/angular-locale_kn-in.js
new file mode 100644
index 0000000000..8198ea4bfe
--- /dev/null
+++ b/1.0.6/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": "ರವಿವಾರ",
+ "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 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": "₹",
+ "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.0.6/i18n/angular-locale_kn.js b/1.0.6/i18n/angular-locale_kn.js
new file mode 100644
index 0000000000..4c49aa6533
--- /dev/null
+++ b/1.0.6/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": "ರವಿವಾರ",
+ "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 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": "₹",
+ "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.0.6/i18n/angular-locale_ko-kr.js b/1.0.6/i18n/angular-locale_ko-kr.js
new file mode 100644
index 0000000000..a3ad4faa2d
--- /dev/null
+++ b/1.0.6/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": "오전",
+ "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. 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": "₩",
+ "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.0.6/i18n/angular-locale_ko.js b/1.0.6/i18n/angular-locale_ko.js
new file mode 100644
index 0000000000..b2abbe8362
--- /dev/null
+++ b/1.0.6/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": "오전",
+ "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. 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": "₩",
+ "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.0.6/i18n/angular-locale_ln-cd.js b/1.0.6/i18n/angular-locale_ln-cd.js
new file mode 100644
index 0000000000..ba8031b22d
--- /dev/null
+++ b/1.0.6/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ɔ́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-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.0.6/i18n/angular-locale_ln-cg.js b/1.0.6/i18n/angular-locale_ln-cg.js
new file mode 100644
index 0000000000..99942073ff
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ln.js b/1.0.6/i18n/angular-locale_ln.js
new file mode 100644
index 0000000000..88990c34d6
--- /dev/null
+++ b/1.0.6/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ɔ́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",
+ "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.0.6/i18n/angular-locale_lt-lt.js b/1.0.6/i18n/angular-locale_lt-lt.js
new file mode 100644
index 0000000000..de9f14bf39
--- /dev/null
+++ b/1.0.6/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špiet",
+ "1": "popiet"
+ },
+ "DAY": {
+ "0": "sekmadienis",
+ "1": "pirmadienis",
+ "2": "antradienis",
+ "3": "trečiadienis",
+ "4": "ketvirtadienis",
+ "5": "penktadienis",
+ "6": "šeštadienis"
+ },
+ "MONTH": {
+ "0": "sausio",
+ "1": "vasaris",
+ "2": "kovas",
+ "3": "balandis",
+ "4": "gegužė",
+ "5": "birželis",
+ "6": "liepa",
+ "7": "rugpjūtis",
+ "8": "rugsėjis",
+ "9": "spalis",
+ "10": "lapkritis",
+ "11": "gruodis"
+ },
+ "SHORTDAY": {
+ "0": "Sk",
+ "1": "Pr",
+ "2": "An",
+ "3": "Tr",
+ "4": "Kt",
+ "5": "Pn",
+ "6": "Št"
+ },
+ "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": " ",
+ "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": "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.0.6/i18n/angular-locale_lt.js b/1.0.6/i18n/angular-locale_lt.js
new file mode 100644
index 0000000000..3393559f97
--- /dev/null
+++ b/1.0.6/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špiet",
+ "1": "popiet"
+ },
+ "DAY": {
+ "0": "sekmadienis",
+ "1": "pirmadienis",
+ "2": "antradienis",
+ "3": "trečiadienis",
+ "4": "ketvirtadienis",
+ "5": "penktadienis",
+ "6": "šeštadienis"
+ },
+ "MONTH": {
+ "0": "sausio",
+ "1": "vasaris",
+ "2": "kovas",
+ "3": "balandis",
+ "4": "gegužė",
+ "5": "birželis",
+ "6": "liepa",
+ "7": "rugpjūtis",
+ "8": "rugsėjis",
+ "9": "spalis",
+ "10": "lapkritis",
+ "11": "gruodis"
+ },
+ "SHORTDAY": {
+ "0": "Sk",
+ "1": "Pr",
+ "2": "An",
+ "3": "Tr",
+ "4": "Kt",
+ "5": "Pn",
+ "6": "Št"
+ },
+ "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": " ",
+ "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": "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.0.6/i18n/angular-locale_lv-lv.js b/1.0.6/i18n/angular-locale_lv-lv.js
new file mode 100644
index 0000000000..7bb668dd66
--- /dev/null
+++ b/1.0.6/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špusdienā",
+ "1": "pēcpusdienā"
+ },
+ "DAY": {
+ "0": "svētdiena",
+ "1": "pirmdiena",
+ "2": "otrdiena",
+ "3": "trešdiena",
+ "4": "ceturtdiena",
+ "5": "piektdiena",
+ "6": "sestdiena"
+ },
+ "MONTH": {
+ "0": "janvāris",
+ "1": "februāris",
+ "2": "marts",
+ "3": "aprīlis",
+ "4": "maijs",
+ "5": "jūnijs",
+ "6": "jūlijs",
+ "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ūn.",
+ "6": "jūl.",
+ "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": " ",
+ "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.0.6/i18n/angular-locale_lv.js b/1.0.6/i18n/angular-locale_lv.js
new file mode 100644
index 0000000000..8e5e6ed2d4
--- /dev/null
+++ b/1.0.6/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špusdienā",
+ "1": "pēcpusdienā"
+ },
+ "DAY": {
+ "0": "svētdiena",
+ "1": "pirmdiena",
+ "2": "otrdiena",
+ "3": "trešdiena",
+ "4": "ceturtdiena",
+ "5": "piektdiena",
+ "6": "sestdiena"
+ },
+ "MONTH": {
+ "0": "janvāris",
+ "1": "februāris",
+ "2": "marts",
+ "3": "aprīlis",
+ "4": "maijs",
+ "5": "jūnijs",
+ "6": "jūlijs",
+ "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ūn.",
+ "6": "jūl.",
+ "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": " ",
+ "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.0.6/i18n/angular-locale_ml-in.js b/1.0.6/i18n/angular-locale_ml-in.js
new file mode 100644
index 0000000000..fb1db6469c
--- /dev/null
+++ b/1.0.6/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": "ഞായറാഴ്ച",
+ "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": "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": "₹",
+ "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.0.6/i18n/angular-locale_ml.js b/1.0.6/i18n/angular-locale_ml.js
new file mode 100644
index 0000000000..00b63bab16
--- /dev/null
+++ b/1.0.6/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": "ഞായറാഴ്ച",
+ "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": "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": "₹",
+ "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.0.6/i18n/angular-locale_mo.js b/1.0.6/i18n/angular-locale_mo.js
new file mode 100644
index 0000000000..22bc44a3f0
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_mr-in.js b/1.0.6/i18n/angular-locale_mr-in.js
new file mode 100644
index 0000000000..704a39a760
--- /dev/null
+++ b/1.0.6/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": "रविवार",
+ "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": 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.0.6/i18n/angular-locale_mr.js b/1.0.6/i18n/angular-locale_mr.js
new file mode 100644
index 0000000000..b446e4b1ad
--- /dev/null
+++ b/1.0.6/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": "रविवार",
+ "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": 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.0.6/i18n/angular-locale_ms-bn.js b/1.0.6/i18n/angular-locale_ms-bn.js
new file mode 100644
index 0000000000..4a7179f68a
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ms-my.js b/1.0.6/i18n/angular-locale_ms-my.js
new file mode 100644
index 0000000000..5d7d65d5b5
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ms.js b/1.0.6/i18n/angular-locale_ms.js
new file mode 100644
index 0000000000..e0ceb4187d
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_mt-mt.js b/1.0.6/i18n/angular-locale_mt-mt.js
new file mode 100644
index 0000000000..df05e3215f
--- /dev/null
+++ b/1.0.6/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-Ħadd",
+ "1": "It-Tnejn",
+ "2": "It-Tlieta",
+ "3": "L-Erbgħa",
+ "4": "Il-Ħamis",
+ "5": "Il-Ġimgħa",
+ "6": "Is-Sibt"
+ },
+ "MONTH": {
+ "0": "Jannar",
+ "1": "Frar",
+ "2": "Marzu",
+ "3": "April",
+ "4": "Mejju",
+ "5": "Ġunju",
+ "6": "Lulju",
+ "7": "Awwissu",
+ "8": "Settembru",
+ "9": "Ottubru",
+ "10": "Novembru",
+ "11": "Diċembru"
+ },
+ "SHORTDAY": {
+ "0": "Ħad",
+ "1": "Tne",
+ "2": "Tli",
+ "3": "Erb",
+ "4": "Ħam",
+ "5": "Ġim",
+ "6": "Sib"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Fra",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mej",
+ "5": "Ġun",
+ "6": "Lul",
+ "7": "Aww",
+ "8": "Set",
+ "9": "Ott",
+ "10": "Nov",
+ "11": "Diċ"
+ },
+ "fullDate": "EEEE, d 'ta'’ MMMM y",
+ "longDate": "d 'ta'’ 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": "€",
+ "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.0.6/i18n/angular-locale_mt.js b/1.0.6/i18n/angular-locale_mt.js
new file mode 100644
index 0000000000..56906a2b0b
--- /dev/null
+++ b/1.0.6/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-Ħadd",
+ "1": "It-Tnejn",
+ "2": "It-Tlieta",
+ "3": "L-Erbgħa",
+ "4": "Il-Ħamis",
+ "5": "Il-Ġimgħa",
+ "6": "Is-Sibt"
+ },
+ "MONTH": {
+ "0": "Jannar",
+ "1": "Frar",
+ "2": "Marzu",
+ "3": "April",
+ "4": "Mejju",
+ "5": "Ġunju",
+ "6": "Lulju",
+ "7": "Awwissu",
+ "8": "Settembru",
+ "9": "Ottubru",
+ "10": "Novembru",
+ "11": "Diċembru"
+ },
+ "SHORTDAY": {
+ "0": "Ħad",
+ "1": "Tne",
+ "2": "Tli",
+ "3": "Erb",
+ "4": "Ħam",
+ "5": "Ġim",
+ "6": "Sib"
+ },
+ "SHORTMONTH": {
+ "0": "Jan",
+ "1": "Fra",
+ "2": "Mar",
+ "3": "Apr",
+ "4": "Mej",
+ "5": "Ġun",
+ "6": "Lul",
+ "7": "Aww",
+ "8": "Set",
+ "9": "Ott",
+ "10": "Nov",
+ "11": "Diċ"
+ },
+ "fullDate": "EEEE, d 'ta'’ MMMM y",
+ "longDate": "d 'ta'’ 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": "€",
+ "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.0.6/i18n/angular-locale_nl-aw.js b/1.0.6/i18n/angular-locale_nl-aw.js
new file mode 100644
index 0000000000..c5d0d1ca47
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_nl-be.js b/1.0.6/i18n/angular-locale_nl-be.js
new file mode 100644
index 0000000000..2975b2c558
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_nl-cw.js b/1.0.6/i18n/angular-locale_nl-cw.js
new file mode 100644
index 0000000000..77a0b3d996
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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-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.0.6/i18n/angular-locale_nl-nl.js b/1.0.6/i18n/angular-locale_nl-nl.js
new file mode 100644
index 0000000000..e49d4e371d
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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-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.0.6/i18n/angular-locale_nl-sx.js b/1.0.6/i18n/angular-locale_nl-sx.js
new file mode 100644
index 0000000000..b290a73470
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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-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.0.6/i18n/angular-locale_nl.js b/1.0.6/i18n/angular-locale_nl.js
new file mode 100644
index 0000000000..a5fa2d6651
--- /dev/null
+++ b/1.0.6/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": "€",
+ "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",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_no.js b/1.0.6/i18n/angular-locale_no.js
new file mode 100644
index 0000000000..f2deff3b8d
--- /dev/null
+++ b/1.0.6/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øndag",
+ "1": "mandag",
+ "2": "tirsdag",
+ "3": "onsdag",
+ "4": "torsdag",
+ "5": "fredag",
+ "6": "lørdag"
+ },
+ "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øn.",
+ "1": "man.",
+ "2": "tir.",
+ "3": "ons.",
+ "4": "tor.",
+ "5": "fre.",
+ "6": "lør."
+ },
+ "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": " ",
+ "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": "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.0.6/i18n/angular-locale_or-in.js b/1.0.6/i18n/angular-locale_or-in.js
new file mode 100644
index 0000000000..3093350f49
--- /dev/null
+++ b/1.0.6/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": "ରବିବାର",
+ "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": "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.0.6/i18n/angular-locale_or.js b/1.0.6/i18n/angular-locale_or.js
new file mode 100644
index 0000000000..fdf822e1fa
--- /dev/null
+++ b/1.0.6/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": "ରବିବାର",
+ "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": "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.0.6/i18n/angular-locale_pl-pl.js b/1.0.6/i18n/angular-locale_pl-pl.js
new file mode 100644
index 0000000000..e7da040696
--- /dev/null
+++ b/1.0.6/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łek",
+ "2": "wtorek",
+ "3": "środa",
+ "4": "czwartek",
+ "5": "piątek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "stycznia",
+ "1": "lutego",
+ "2": "marca",
+ "3": "kwietnia",
+ "4": "maja",
+ "5": "czerwca",
+ "6": "lipca",
+ "7": "sierpnia",
+ "8": "września",
+ "9": "października",
+ "10": "listopada",
+ "11": "grudnia"
+ },
+ "SHORTDAY": {
+ "0": "niedz.",
+ "1": "pon.",
+ "2": "wt.",
+ "3": "śr.",
+ "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ź",
+ "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ł",
+ "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": "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.0.6/i18n/angular-locale_pl.js b/1.0.6/i18n/angular-locale_pl.js
new file mode 100644
index 0000000000..93397073d8
--- /dev/null
+++ b/1.0.6/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łek",
+ "2": "wtorek",
+ "3": "środa",
+ "4": "czwartek",
+ "5": "piątek",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "stycznia",
+ "1": "lutego",
+ "2": "marca",
+ "3": "kwietnia",
+ "4": "maja",
+ "5": "czerwca",
+ "6": "lipca",
+ "7": "sierpnia",
+ "8": "września",
+ "9": "października",
+ "10": "listopada",
+ "11": "grudnia"
+ },
+ "SHORTDAY": {
+ "0": "niedz.",
+ "1": "pon.",
+ "2": "wt.",
+ "3": "śr.",
+ "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ź",
+ "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ł",
+ "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": "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.0.6/i18n/angular-locale_pt-ao.js b/1.0.6/i18n/angular-locale_pt-ao.js
new file mode 100644
index 0000000000..02fbc6290a
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_pt-br.js b/1.0.6/i18n/angular-locale_pt-br.js
new file mode 100644
index 0000000000..cb06ad2e59
--- /dev/null
+++ b/1.0.6/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ç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-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.0.6/i18n/angular-locale_pt-gw.js b/1.0.6/i18n/angular-locale_pt-gw.js
new file mode 100644
index 0000000000..f3cfdf7948
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_pt-mz.js b/1.0.6/i18n/angular-locale_pt-mz.js
new file mode 100644
index 0000000000..d8b96e5ba0
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_pt-pt.js b/1.0.6/i18n/angular-locale_pt-pt.js
new file mode 100644
index 0000000000..c8f8b42e16
--- /dev/null
+++ b/1.0.6/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ç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": "€",
+ "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": "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.0.6/i18n/angular-locale_pt-st.js b/1.0.6/i18n/angular-locale_pt-st.js
new file mode 100644
index 0000000000..4423d8628f
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_pt.js b/1.0.6/i18n/angular-locale_pt.js
new file mode 100644
index 0000000000..e09850de52
--- /dev/null
+++ b/1.0.6/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ç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",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_ro-md.js b/1.0.6/i18n/angular-locale_ro-md.js
new file mode 100644
index 0000000000..17393db0c0
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ro-ro.js b/1.0.6/i18n/angular-locale_ro-ro.js
new file mode 100644
index 0000000000..6bcace1617
--- /dev/null
+++ b/1.0.6/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ă",
+ "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-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.0.6/i18n/angular-locale_ro.js b/1.0.6/i18n/angular-locale_ro.js
new file mode 100644
index 0000000000..0f55307eda
--- /dev/null
+++ b/1.0.6/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ă",
+ "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",
+ "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.0.6/i18n/angular-locale_ru-md.js b/1.0.6/i18n/angular-locale_ru-md.js
new file mode 100644
index 0000000000..76e233f8b9
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ru-ru.js b/1.0.6/i18n/angular-locale_ru-ru.js
new file mode 100644
index 0000000000..f45195c389
--- /dev/null
+++ b/1.0.6/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": "до полудня",
+ "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-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.0.6/i18n/angular-locale_ru-ua.js b/1.0.6/i18n/angular-locale_ru-ua.js
new file mode 100644
index 0000000000..0d29b4a70d
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ru.js b/1.0.6/i18n/angular-locale_ru.js
new file mode 100644
index 0000000000..908817c7da
--- /dev/null
+++ b/1.0.6/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": "до полудня",
+ "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",
+ "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.0.6/i18n/angular-locale_sk-sk.js b/1.0.6/i18n/angular-locale_sk-sk.js
new file mode 100644
index 0000000000..c45b1e97fd
--- /dev/null
+++ b/1.0.6/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í"
+ },
+ "DAY": {
+ "0": "nedeľa",
+ "1": "pondelok",
+ "2": "utorok",
+ "3": "streda",
+ "4": "štvrtok",
+ "5": "piatok",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "januára",
+ "1": "februára",
+ "2": "marca",
+ "3": "apríla",
+ "4": "mája",
+ "5": "júna",
+ "6": "júla",
+ "7": "augusta",
+ "8": "septembra",
+ "9": "októbra",
+ "10": "novembra",
+ "11": "decembra"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "ut",
+ "3": "st",
+ "4": "št",
+ "5": "pi",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "máj",
+ "5": "jún",
+ "6": "júl",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_sk.js b/1.0.6/i18n/angular-locale_sk.js
new file mode 100644
index 0000000000..5b9a32659d
--- /dev/null
+++ b/1.0.6/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í"
+ },
+ "DAY": {
+ "0": "nedeľa",
+ "1": "pondelok",
+ "2": "utorok",
+ "3": "streda",
+ "4": "štvrtok",
+ "5": "piatok",
+ "6": "sobota"
+ },
+ "MONTH": {
+ "0": "januára",
+ "1": "februára",
+ "2": "marca",
+ "3": "apríla",
+ "4": "mája",
+ "5": "júna",
+ "6": "júla",
+ "7": "augusta",
+ "8": "septembra",
+ "9": "októbra",
+ "10": "novembra",
+ "11": "decembra"
+ },
+ "SHORTDAY": {
+ "0": "ne",
+ "1": "po",
+ "2": "ut",
+ "3": "st",
+ "4": "št",
+ "5": "pi",
+ "6": "so"
+ },
+ "SHORTMONTH": {
+ "0": "jan",
+ "1": "feb",
+ "2": "mar",
+ "3": "apr",
+ "4": "máj",
+ "5": "jún",
+ "6": "júl",
+ "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": "€",
+ "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": "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.0.6/i18n/angular-locale_sl-si.js b/1.0.6/i18n/angular-locale_sl-si.js
new file mode 100644
index 0000000000..a68a068f15
--- /dev/null
+++ b/1.0.6/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": "četrtek",
+ "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": "čet.",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_sl.js b/1.0.6/i18n/angular-locale_sl.js
new file mode 100644
index 0000000000..21f3763250
--- /dev/null
+++ b/1.0.6/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": "četrtek",
+ "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": "čet.",
+ "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": "€",
+ "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.0.6/i18n/angular-locale_sq-al.js b/1.0.6/i18n/angular-locale_sq-al.js
new file mode 100644
index 0000000000..a4668f01c3
--- /dev/null
+++ b/1.0.6/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ënë",
+ "2": "e martë",
+ "3": "e mërkurë",
+ "4": "e enjte",
+ "5": "e premte",
+ "6": "e shtunë"
+ },
+ "MONTH": {
+ "0": "janar",
+ "1": "shkurt",
+ "2": "mars",
+ "3": "prill",
+ "4": "maj",
+ "5": "qershor",
+ "6": "korrik",
+ "7": "gusht",
+ "8": "shtator",
+ "9": "tetor",
+ "10": "nëntor",
+ "11": "dhjetor"
+ },
+ "SHORTDAY": {
+ "0": "Die",
+ "1": "Hën",
+ "2": "Mar",
+ "3": "Mër",
+ "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ën",
+ "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": " ",
+ "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.0.6/i18n/angular-locale_sq.js b/1.0.6/i18n/angular-locale_sq.js
new file mode 100644
index 0000000000..c0239bdc83
--- /dev/null
+++ b/1.0.6/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ënë",
+ "2": "e martë",
+ "3": "e mërkurë",
+ "4": "e enjte",
+ "5": "e premte",
+ "6": "e shtunë"
+ },
+ "MONTH": {
+ "0": "janar",
+ "1": "shkurt",
+ "2": "mars",
+ "3": "prill",
+ "4": "maj",
+ "5": "qershor",
+ "6": "korrik",
+ "7": "gusht",
+ "8": "shtator",
+ "9": "tetor",
+ "10": "nëntor",
+ "11": "dhjetor"
+ },
+ "SHORTDAY": {
+ "0": "Die",
+ "1": "Hën",
+ "2": "Mar",
+ "3": "Mër",
+ "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ën",
+ "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": " ",
+ "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.0.6/i18n/angular-locale_sr-cyrl-ba.js b/1.0.6/i18n/angular-locale_sr-cyrl-ba.js
new file mode 100644
index 0000000000..8ac4bd0b8e
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr-cyrl-me.js b/1.0.6/i18n/angular-locale_sr-cyrl-me.js
new file mode 100644
index 0000000000..28e570e870
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr-cyrl-rs.js b/1.0.6/i18n/angular-locale_sr-cyrl-rs.js
new file mode 100644
index 0000000000..3be1386911
--- /dev/null
+++ b/1.0.6/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": "пре подне",
+ "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-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.0.6/i18n/angular-locale_sr-cyrl.js b/1.0.6/i18n/angular-locale_sr-cyrl.js
new file mode 100644
index 0000000000..38647adc2b
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr-latn-ba.js b/1.0.6/i18n/angular-locale_sr-latn-ba.js
new file mode 100644
index 0000000000..c27089cf9f
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr-latn-me.js b/1.0.6/i18n/angular-locale_sr-latn-me.js
new file mode 100644
index 0000000000..bdbee28a60
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr-latn-rs.js b/1.0.6/i18n/angular-locale_sr-latn-rs.js
new file mode 100644
index 0000000000..5aa1be868d
--- /dev/null
+++ b/1.0.6/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": "č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-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.0.6/i18n/angular-locale_sr-latn.js b/1.0.6/i18n/angular-locale_sr-latn.js
new file mode 100644
index 0000000000..3e3c90cf7d
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr-rs.js b/1.0.6/i18n/angular-locale_sr-rs.js
new file mode 100644
index 0000000000..9f4fccc795
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sr.js b/1.0.6/i18n/angular-locale_sr.js
new file mode 100644
index 0000000000..ec0b100806
--- /dev/null
+++ b/1.0.6/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": "пре подне",
+ "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",
+ "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.0.6/i18n/angular-locale_sv-fi.js b/1.0.6/i18n/angular-locale_sv-fi.js
new file mode 100644
index 0000000000..a5e51b6a8b
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sv-se.js b/1.0.6/i18n/angular-locale_sv-se.js
new file mode 100644
index 0000000000..62284bb5f9
--- /dev/null
+++ b/1.0.6/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ö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-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.0.6/i18n/angular-locale_sv.js b/1.0.6/i18n/angular-locale_sv.js
new file mode 100644
index 0000000000..30edda8b30
--- /dev/null
+++ b/1.0.6/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ö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",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_sw-ke.js b/1.0.6/i18n/angular-locale_sw-ke.js
new file mode 100644
index 0000000000..dea433fb00
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sw-tz.js b/1.0.6/i18n/angular-locale_sw-tz.js
new file mode 100644
index 0000000000..32632d788d
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_sw.js b/1.0.6/i18n/angular-locale_sw.js
new file mode 100644
index 0000000000..090efcecf8
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ta-in.js b/1.0.6/i18n/angular-locale_ta-in.js
new file mode 100644
index 0000000000..e6dc831a2a
--- /dev/null
+++ b/1.0.6/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": "ஞாயிறு",
+ "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-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.0.6/i18n/angular-locale_ta-lk.js b/1.0.6/i18n/angular-locale_ta-lk.js
new file mode 100644
index 0000000000..a156bd3677
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ta.js b/1.0.6/i18n/angular-locale_ta.js
new file mode 100644
index 0000000000..8ec85fca9a
--- /dev/null
+++ b/1.0.6/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": "ஞாயிறு",
+ "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",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_te-in.js b/1.0.6/i18n/angular-locale_te-in.js
new file mode 100644
index 0000000000..2c60ef9c43
--- /dev/null
+++ b/1.0.6/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": "ఆదివారం",
+ "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": "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": "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.0.6/i18n/angular-locale_te.js b/1.0.6/i18n/angular-locale_te.js
new file mode 100644
index 0000000000..ca0824411e
--- /dev/null
+++ b/1.0.6/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": "ఆదివారం",
+ "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": "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": "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.0.6/i18n/angular-locale_th-th.js b/1.0.6/i18n/angular-locale_th-th.js
new file mode 100644
index 0000000000..fb2672d6d0
--- /dev/null
+++ b/1.0.6/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": "ก่อนเที่ยง",
+ "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 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": "฿",
+ "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.0.6/i18n/angular-locale_th.js b/1.0.6/i18n/angular-locale_th.js
new file mode 100644
index 0000000000..87be8735b7
--- /dev/null
+++ b/1.0.6/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": "ก่อนเที่ยง",
+ "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 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": "฿",
+ "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.0.6/i18n/angular-locale_tl-ph.js b/1.0.6/i18n/angular-locale_tl-ph.js
new file mode 100644
index 0000000000..2a424e181e
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_tl.js b/1.0.6/i18n/angular-locale_tl.js
new file mode 100644
index 0000000000..124765195c
--- /dev/null
+++ b/1.0.6/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": "₱",
+ "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.0.6/i18n/angular-locale_tr-tr.js b/1.0.6/i18n/angular-locale_tr-tr.js
new file mode 100644
index 0000000000..37a78663aa
--- /dev/null
+++ b/1.0.6/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ı",
+ "3": "Çarşamba",
+ "4": "Perşembe",
+ "5": "Cuma",
+ "6": "Cumartesi"
+ },
+ "MONTH": {
+ "0": "Ocak",
+ "1": "Şubat",
+ "2": "Mart",
+ "3": "Nisan",
+ "4": "Mayıs",
+ "5": "Haziran",
+ "6": "Temmuz",
+ "7": "Ağustos",
+ "8": "Eylül",
+ "9": "Ekim",
+ "10": "Kasım",
+ "11": "Aralık"
+ },
+ "SHORTDAY": {
+ "0": "Paz",
+ "1": "Pzt",
+ "2": "Sal",
+ "3": "Çar",
+ "4": "Per",
+ "5": "Cum",
+ "6": "Cmt"
+ },
+ "SHORTMONTH": {
+ "0": "Oca",
+ "1": "Şub",
+ "2": "Mar",
+ "3": "Nis",
+ "4": "May",
+ "5": "Haz",
+ "6": "Tem",
+ "7": "Ağu",
+ "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": " \u00A4)",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "tr-tr",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_tr.js b/1.0.6/i18n/angular-locale_tr.js
new file mode 100644
index 0000000000..db349af48f
--- /dev/null
+++ b/1.0.6/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ı",
+ "3": "Çarşamba",
+ "4": "Perşembe",
+ "5": "Cuma",
+ "6": "Cumartesi"
+ },
+ "MONTH": {
+ "0": "Ocak",
+ "1": "Şubat",
+ "2": "Mart",
+ "3": "Nisan",
+ "4": "Mayıs",
+ "5": "Haziran",
+ "6": "Temmuz",
+ "7": "Ağustos",
+ "8": "Eylül",
+ "9": "Ekim",
+ "10": "Kasım",
+ "11": "Aralık"
+ },
+ "SHORTDAY": {
+ "0": "Paz",
+ "1": "Pzt",
+ "2": "Sal",
+ "3": "Çar",
+ "4": "Per",
+ "5": "Cum",
+ "6": "Cmt"
+ },
+ "SHORTMONTH": {
+ "0": "Oca",
+ "1": "Şub",
+ "2": "Mar",
+ "3": "Nis",
+ "4": "May",
+ "5": "Haz",
+ "6": "Tem",
+ "7": "Ağu",
+ "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": " \u00A4)",
+ "posPre": "",
+ "posSuf": " \u00A4"
+ }
+ }
+ },
+ "id": "tr",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_uk-ua.js b/1.0.6/i18n/angular-locale_uk-ua.js
new file mode 100644
index 0000000000..8e45d0de46
--- /dev/null
+++ b/1.0.6/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": "дп",
+ "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": "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.0.6/i18n/angular-locale_uk.js b/1.0.6/i18n/angular-locale_uk.js
new file mode 100644
index 0000000000..960564b2ca
--- /dev/null
+++ b/1.0.6/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": "дп",
+ "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": "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.0.6/i18n/angular-locale_ur-in.js b/1.0.6/i18n/angular-locale_ur-in.js
new file mode 100644
index 0000000000..867fd18f86
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_ur-pk.js b/1.0.6/i18n/angular-locale_ur-pk.js
new file mode 100644
index 0000000000..a24438dbfe
--- /dev/null
+++ b/1.0.6/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": "دن",
+ "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-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.0.6/i18n/angular-locale_ur.js b/1.0.6/i18n/angular-locale_ur.js
new file mode 100644
index 0000000000..37af0da96d
--- /dev/null
+++ b/1.0.6/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": "دن",
+ "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",
+ "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_vi-vn.js b/1.0.6/i18n/angular-locale_vi-vn.js
new file mode 100644
index 0000000000..2fbb5f2225
--- /dev/null
+++ b/1.0.6/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ủ nhật",
+ "1": "Thứ hai",
+ "2": "Thứ ba",
+ "3": "Thứ tư",
+ "4": "Thứ năm",
+ "5": "Thứ sáu",
+ "6": "Thứ bảy"
+ },
+ "MONTH": {
+ "0": "tháng một",
+ "1": "tháng hai",
+ "2": "tháng ba",
+ "3": "tháng tư",
+ "4": "tháng năm",
+ "5": "tháng sáu",
+ "6": "tháng bảy",
+ "7": "tháng tám",
+ "8": "tháng chín",
+ "9": "tháng mười",
+ "10": "tháng mười một",
+ "11": "tháng mười 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ày' dd MMMM 'năm' y",
+ "longDate": "'Ngày' dd 'tháng' M 'năm' 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": "₫",
+ "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": "vi-vn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_vi.js b/1.0.6/i18n/angular-locale_vi.js
new file mode 100644
index 0000000000..73e5464921
--- /dev/null
+++ b/1.0.6/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ủ nhật",
+ "1": "Thứ hai",
+ "2": "Thứ ba",
+ "3": "Thứ tư",
+ "4": "Thứ năm",
+ "5": "Thứ sáu",
+ "6": "Thứ bảy"
+ },
+ "MONTH": {
+ "0": "tháng một",
+ "1": "tháng hai",
+ "2": "tháng ba",
+ "3": "tháng tư",
+ "4": "tháng năm",
+ "5": "tháng sáu",
+ "6": "tháng bảy",
+ "7": "tháng tám",
+ "8": "tháng chín",
+ "9": "tháng mười",
+ "10": "tháng mười một",
+ "11": "tháng mười 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ày' dd MMMM 'năm' y",
+ "longDate": "'Ngày' dd 'tháng' M 'năm' 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": "₫",
+ "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": "vi",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_zh-cn.js b/1.0.6/i18n/angular-locale_zh-cn.js
new file mode 100644
index 0000000000..a014435883
--- /dev/null
+++ b/1.0.6/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": "上午",
+ "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-cn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_zh-hans-cn.js b/1.0.6/i18n/angular-locale_zh-hans-cn.js
new file mode 100644
index 0000000000..ac9ac7d353
--- /dev/null
+++ b/1.0.6/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": "上午",
+ "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-cn",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_zh-hans-hk.js b/1.0.6/i18n/angular-locale_zh-hans-hk.js
new file mode 100644
index 0000000000..94e2b71ac4
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hans-mo.js b/1.0.6/i18n/angular-locale_zh-hans-mo.js
new file mode 100644
index 0000000000..7b669d1590
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hans-sg.js b/1.0.6/i18n/angular-locale_zh-hans-sg.js
new file mode 100644
index 0000000000..2d48699a5e
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hans.js b/1.0.6/i18n/angular-locale_zh-hans.js
new file mode 100644
index 0000000000..00ae767929
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hant-hk.js b/1.0.6/i18n/angular-locale_zh-hant-hk.js
new file mode 100644
index 0000000000..86f50e02ec
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hant-mo.js b/1.0.6/i18n/angular-locale_zh-hant-mo.js
new file mode 100644
index 0000000000..efb88b07b1
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hant-tw.js b/1.0.6/i18n/angular-locale_zh-hant-tw.js
new file mode 100644
index 0000000000..460717d5ad
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hant.js b/1.0.6/i18n/angular-locale_zh-hant.js
new file mode 100644
index 0000000000..4db1987dc5
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zh-hk.js b/1.0.6/i18n/angular-locale_zh-hk.js
new file mode 100644
index 0000000000..d72c874449
--- /dev/null
+++ b/1.0.6/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": "上午",
+ "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-hk",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_zh-tw.js b/1.0.6/i18n/angular-locale_zh-tw.js
new file mode 100644
index 0000000000..daf9b7e381
--- /dev/null
+++ b/1.0.6/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": "上午",
+ "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": "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.0.6/i18n/angular-locale_zh.js b/1.0.6/i18n/angular-locale_zh.js
new file mode 100644
index 0000000000..934197539e
--- /dev/null
+++ b/1.0.6/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": "上午",
+ "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",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
+}]);
\ No newline at end of file
diff --git a/1.0.6/i18n/angular-locale_zu-za.js b/1.0.6/i18n/angular-locale_zu-za.js
new file mode 100644
index 0000000000..473f5cc025
--- /dev/null
+++ b/1.0.6/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.0.6/i18n/angular-locale_zu.js b/1.0.6/i18n/angular-locale_zu.js
new file mode 100644
index 0000000000..cb85c61b04
--- /dev/null
+++ b/1.0.6/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.0.6/version.json b/1.0.6/version.json
new file mode 100644
index 0000000000..6f2002212b
--- /dev/null
+++ b/1.0.6/version.json
@@ -0,0 +1 @@
+{"full":"1.0.6","major":"1","minor":"0","dot":"6","codename":"universal-irreversibility","stable":"1.0.5"}
\ No newline at end of file
diff --git a/1.0.6/version.txt b/1.0.6/version.txt
new file mode 100644
index 0000000000..ece61c6012
--- /dev/null
+++ b/1.0.6/version.txt
@@ -0,0 +1 @@
+1.0.6
\ No newline at end of file