content_type
stringclasses 8
values | main_lang
stringclasses 7
values | message
stringlengths 1
50
| sha
stringlengths 40
40
| patch
stringlengths 52
962k
| file_count
int64 1
300
|
---|---|---|---|---|---|
PHP | PHP | capture the version when parsing response headers | f53e5b3872a12208d68293fa8e1aab4b73aba148 | <ide><path>lib/Cake/Network/Http/Response.php
<ide> public function __construct($headers = [], $body = '') {
<ide> protected function _parseHeaders($headers) {
<ide> foreach ($headers as $key => $value) {
<ide> if (substr($value, 0, 5) === 'HTTP/') {
<del> preg_match('/HTTP\/[\d.]+ ([0-9]+)/i', $value, $matches);
<del> $this->_code = $matches[1];
<add> preg_match('/HTTP\/([\d.]+) ([0-9]+)/i', $value, $matches);
<add> $this->_version = $matches[1];
<add> $this->_code = $matches[2];
<ide> continue;
<ide> }
<ide> list($name, $value) = explode(':', $value, 2);
<ide><path>lib/Cake/Test/TestCase/Network/Http/ResponseTest.php
<ide> class ResponseTest extends TestCase {
<ide>
<ide> public function testHeaderParsing() {
<ide> $headers = [
<del> 'HTTP/1.1 200 OK',
<add> 'HTTP/1.0 200 OK',
<ide> 'Content-Type : text/html;charset="UTF-8"',
<ide> 'date: Tue, 25 Dec 2012 04:43:47 GMT',
<ide> ];
<ide> $response = new Response($headers, 'ok');
<ide>
<add> $this->assertEquals('1.0', $response->version());
<ide> $this->assertEquals(200, $response->statusCode());
<ide> $this->assertEquals(
<ide> 'text/html;charset="UTF-8"', | 2 |
Ruby | Ruby | use concat rather than << and flatten | db0c93dbae352a3e4ab83e31d360919f1bc3b3d7 | <ide><path>Library/Homebrew/cmd/fetch.rb
<ide> def fetch
<ide> bucket = []
<ide> ARGV.formulae.each do |f|
<ide> bucket << f
<del> bucket << f.recursive_dependencies.map(&:to_formula)
<add> bucket.concat f.recursive_dependencies.map(&:to_formula)
<ide> end
<del>
<del> bucket = bucket.flatten.uniq
<add> bucket.uniq!
<ide> else
<ide> bucket = ARGV.formulae
<ide> end | 1 |
Go | Go | fix error message | c378fb774e413ba8bf5cadf655d2b67e9c94245a | <ide><path>daemon/graphdriver/devmapper/device_setup.go
<ide> type directLVMConfig struct {
<ide> var (
<ide> errThinpPercentMissing = errors.New("must set both `dm.thinp_percent` and `dm.thinp_metapercent` if either is specified")
<ide> errThinpPercentTooBig = errors.New("combined `dm.thinp_percent` and `dm.thinp_metapercent` must not be greater than 100")
<del> errMissingSetupDevice = errors.New("must provide device path in `dm.setup_device` in order to configure direct-lvm")
<add> errMissingSetupDevice = errors.New("must provide device path in `dm.directlvm_device` in order to configure direct-lvm")
<ide> )
<ide>
<ide> func validateLVMConfig(cfg directLVMConfig) error { | 1 |
Python | Python | fix broken detection of nan in comparison function | 9842632311a9e38a34c740617f308e7926fd9b71 | <ide><path>numpy/testing/utils.py
<ide> def assert_approx_equal(actual,desired,significant=7,err_msg='',verbose=True):
<ide>
<ide> def assert_array_compare(comparison, x, y, err_msg='', verbose=True,
<ide> header=''):
<del> from numpy.core import asarray, isnan
<add> from numpy.core import asarray, isnan, any
<ide> x = asarray(x)
<ide> y = asarray(y)
<ide> try:
<ide> def assert_array_compare(comparison, x, y, err_msg='', verbose=True,
<ide> verbose=verbose, header=header,
<ide> names=('x', 'y'))
<ide> assert cond, msg
<del> if isnan(x) or isnan(y):
<add> if any(isnan(x)) or any(isnan(y)):
<ide> # Handling nan: we first check that x and y have the nan at the
<ide> # same locations, and then we mask the nan and do the comparison as
<ide> # usual. | 1 |
Text | Text | add note about node_env being set automatically | 0bdcb8ddc2b63f98817915816745ee3cb2010cbf | <ide><path>readme.md
<ide> Then run `now` and enjoy!
<ide>
<ide> Next.js can be deployed to other hosting solutions too. Please have a look at the ['Deployment'](https://github.com/zeit/next.js/wiki/Deployment) section of the wiki.
<ide>
<add>Note: `NODE_ENV` is properly configured by the `next` subcommands, if absent, to maximize performance. if you’re using Next.js [programmatically](#custom-server-and-routing), it’s your responsibility to set `NODE_ENV=production` manually!
<add>
<ide> Note: we recommend putting `.next`, or your custom dist folder (Please have a look at ['Custom Config'](https://github.com/zeit/next.js#custom-configuration). You can set a custom folder in config, `.npmignore`, or `.gitignore`. Otherwise, use `files` or `now.files` to opt-into a whitelist of files you want to deploy (and obviously exclude `.next` or your custom dist folder).
<ide>
<ide> ## Static HTML export | 1 |
Javascript | Javascript | subclass the right class | 584a1a317e6a965bf95203a1d5bd06f45d82590d | <ide><path>spec/jasmine-junit-reporter.js
<ide> require('jasmine-reporters')
<ide>
<del>class JasmineJUnitReporter extends jasmine.JUnitReporter {
<add>class JasmineJUnitReporter extends jasmine.JUnitXmlReporter {
<ide> fullDescription (spec) {
<ide> let fullDescription = spec.description
<ide> let currentSuite = spec.suite | 1 |
Javascript | Javascript | fix uncaught rejection | 75c14e3674e90a9b67335b896c39d3618fb37ac1 | <ide><path>packager/src/Server/__tests__/Server-test.js
<ide> describe('processRequest', () => {
<ide> beforeEach(() => {
<ide> Bundler.prototype.bundle = jest.fn(() =>
<ide> Promise.resolve({
<add> getModules: () => [],
<ide> getSource: () => 'this is the source',
<ide> getSourceMap: () => {},
<ide> getSourceMapString: () => 'this is the source map',
<ide> describe('processRequest', () => {
<ide> bundleFunc
<ide> .mockReturnValueOnce(
<ide> Promise.resolve({
<add> getModules: () => [],
<ide> getSource: () => 'this is the first source',
<ide> getSourceMap: () => {},
<ide> getSourceMapString: () => 'this is the source map',
<ide> describe('processRequest', () => {
<ide> )
<ide> .mockReturnValue(
<ide> Promise.resolve({
<add> getModules: () => [],
<ide> getSource: () => 'this is the rebuilt source',
<ide> getSourceMap: () => {},
<ide> getSourceMapString: () => 'this is the source map',
<ide> describe('processRequest', () => {
<ide> bundleFunc
<ide> .mockReturnValueOnce(
<ide> Promise.resolve({
<add> getModules: () => [],
<ide> getSource: () => 'this is the first source',
<ide> getSourceMap: () => {},
<ide> getSourceMapString: () => 'this is the source map',
<ide> describe('processRequest', () => {
<ide> )
<ide> .mockReturnValue(
<ide> Promise.resolve({
<add> getModules: () => [],
<ide> getSource: () => 'this is the rebuilt source',
<ide> getSourceMap: () => {},
<ide> getSourceMapString: () => 'this is the source map',
<ide><path>packager/src/Server/index.js
<ide> class Server {
<ide> }
<ide>
<ide> const opts = bundleOpts(options);
<del> const building = this._bundler.bundle(opts);
<del> building.then(bundle => {
<del> const modules = bundle.getModules();
<del> const nonVirtual = modules.filter(m => !m.virtual);
<del> bundleDeps.set(bundle, {
<del> files: new Map(
<del> nonVirtual
<del> .map(({sourcePath, meta = {dependencies: []}}) =>
<del> [sourcePath, meta.dependencies])
<del> ),
<del> idToIndex: new Map(modules.map(({id}, i) => [id, i])),
<del> dependencyPairs: new Map(
<del> nonVirtual
<del> .filter(({meta}) => meta && meta.dependencyPairs)
<del> .map(m => [m.sourcePath, m.meta.dependencyPairs])
<del> ),
<del> outdated: new Set(),
<del> });
<add> return this._bundler.bundle(opts);
<add> }).then(bundle => {
<add> const modules = bundle.getModules();
<add> const nonVirtual = modules.filter(m => !m.virtual);
<add> bundleDeps.set(bundle, {
<add> files: new Map(
<add> nonVirtual
<add> .map(({sourcePath, meta = {dependencies: []}}) =>
<add> [sourcePath, meta.dependencies])
<add> ),
<add> idToIndex: new Map(modules.map(({id}, i) => [id, i])),
<add> dependencyPairs: new Map(
<add> nonVirtual
<add> .filter(({meta}) => meta && meta.dependencyPairs)
<add> .map(m => [m.sourcePath, m.meta.dependencyPairs])
<add> ),
<add> outdated: new Set(),
<ide> });
<del> return building;
<add> return bundle;
<ide> });
<ide> }
<ide> | 2 |
PHP | PHP | add tests for `queueforget()` method | c35631b524a05d87702c1363bfbf5344550389c0 | <ide><path>tests/Cookie/CookieTest.php
<ide> public function testHasQueuedWithPath(): void
<ide> $this->assertFalse($cookieJar->hasQueued('foo', '/wrongPath'));
<ide> }
<ide>
<add> public function testQueueForget()
<add> {
<add> $cookieJar = $this->getCreator();
<add> $this->assertCount(0, $cookieJar->getQueuedCookies());
<add>
<add> $cookieJar->queueForget('foobar', '/path', '/domain');
<add>
<add> $cookie = $cookieJar->queued('foobar');
<add> $this->assertEquals('foobar', $cookie->getName());
<add> $this->assertEquals(null, $cookie->getValue());
<add> $this->assertEquals('/path', $cookie->getPath());
<add> $this->assertEquals('/domain', $cookie->getDomain());
<add> $this->assertTrue($cookie->getExpiresTime() < time());
<add> $this->assertCount(1, $cookieJar->getQueuedCookies());
<add> }
<add>
<ide> public function testUnqueue()
<ide> {
<ide> $cookie = $this->getCreator(); | 1 |
Java | Java | deprecate multiple arity ‘from’ | e36e7174773a9e5d5895e8259d1f3e52bc6b4892 | <ide><path>rxjava-core/src/main/java/rx/Observable.java
<ide> public static <T> Observable<T> from(T t1) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2) {
<ide> public static <T> Observable<T> from(T t1, T t2) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7) {
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7, T t8) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7, T
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7, T t8, T t9) {
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7, T
<ide> * resulting Observable
<ide> * @return an Observable that emits each item
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#from">RxJava Wiki: from()</a>
<add> * @deprecated Use {@link #from(Iterable)} instead such as {@code from(Arrays.asList(t1))}.
<ide> */
<add> @Deprecated
<ide> @SuppressWarnings("unchecked")
<ide> // suppress unchecked because we are using varargs inside the method
<ide> public static <T> Observable<T> from(T t1, T t2, T t3, T t4, T t5, T t6, T t7, T t8, T t9, T t10) {
<ide> public static <T> Observable<T> defer(Func0<? extends Observable<? extends T>> o
<ide> * @param <T> the type of that item
<ide> * @return an Observable that emits a single item and then completes
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava Wiki: just()</a>
<add> * @deprecated Use {@link #from(T)}
<ide> */
<add> @Deprecated
<ide> public static <T> Observable<T> just(T value) {
<ide> return from(Arrays.asList((value)));
<ide> }
<ide> public static <T> Observable<T> just(T value) {
<ide> * @return an Observable that emits a single item and then completes, on a
<ide> * specified scheduler
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#just">RxJava Wiki: just()</a>
<add> * @deprecated Use {@link #from(T)}
<ide> */
<add> @Deprecated
<ide> public static <T> Observable<T> just(T value, Scheduler scheduler) {
<ide> return from(Arrays.asList((value)), scheduler);
<ide> }
<ide> public <R> Observable<R> switchMap(Func1<? super T, ? extends Observable<? exten
<ide> * @see <a href="https://github.com/Netflix/RxJava/wiki/Filtering-Observables#filter-or-where">RxJava Wiki: where()</a>
<ide> * @see #filter(Func1)
<ide> */
<add> @Deprecated
<ide> public Observable<T> where(Func1<? super T, Boolean> predicate) {
<ide> return filter(predicate);
<ide> }
<ide> public <R> Observable<R> map(Func1<? super T, ? extends R> func) {
<ide> * @see <a href="http://msdn.microsoft.com/en-us/library/hh244311.aspx">MSDN: Observable.Select</a>
<ide> * @deprecated just use zip with {@link Observable#range(int)}
<ide> */
<add> @Deprecated
<ide> public <R> Observable<R> mapWithIndex(Func2<? super T, Integer, ? extends R> func) {
<ide> return create(OperationMap.mapWithIndex(this, func));
<ide> }
<ide> public <R> Observable<R> mapWithIndex(Func2<? super T, Integer, ? extends R> fun
<ide> * @see #flatMap(Func1)
<ide> * @deprecated
<ide> */
<add> @Deprecated
<ide> public <R> Observable<R> mapMany(Func1<? super T, ? extends Observable<? extends R>> func) {
<ide> return mergeMap(func);
<ide> }
<ide> public ConnectableObservable<T> publishLast() {
<ide> * @see #reduce(Func2)
<ide> * @deprecated use #reduce(Func2)
<ide> */
<add> @Deprecated
<ide> public Observable<T> aggregate(Func2<T, T, T> accumulator) {
<ide> return reduce(accumulator);
<ide> }
<ide> public R call(R state, T value) {
<ide> * @see #reduce(Object, Func2)
<ide> * @deprecated use #reduce(Object, Func2)
<ide> */
<add> @Deprecated
<ide> public <R> Observable<R> aggregate(R initialValue, Func2<R, ? super T, R> accumulator) {
<ide> return reduce(initialValue, accumulator);
<ide> } | 1 |
Ruby | Ruby | remove useless argument in #columns | dcd74eb519c352c732fd593ecebaacce2e7560cf | <ide><path>activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
<ide> def index_exists?(table_name, column_name, options = {})
<ide>
<ide> # Returns an array of Column objects for the table specified by +table_name+.
<ide> # See the concrete implementation for details on the expected parameter values.
<del> def columns(table_name, name = nil) end
<add> def columns(table_name) end
<ide>
<ide> # Checks to see if a column exists in a given table.
<ide> #
<ide><path>activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
<ide> def indexes(table_name, name = nil) #:nodoc:
<ide> end
<ide>
<ide> # Returns an array of +Column+ objects for the table specified by +table_name+.
<del> def columns(table_name, name = nil)#:nodoc:
<add> def columns(table_name)#:nodoc:
<ide> sql = "SHOW FULL FIELDS FROM #{quote_table_name(table_name)}"
<ide> execute_and_free(sql, 'SCHEMA') do |result|
<ide> each_hash(result).map do |field|
<ide><path>activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
<ide> def indexes(table_name, name = nil)
<ide> end
<ide>
<ide> # Returns the list of all column definitions for a table.
<del> def columns(table_name, name = nil)
<add> def columns(table_name)
<ide> # Limit, precision, and scale are all handled by the superclass.
<ide> column_definitions(table_name).collect do |column_name, type, default, notnull|
<ide> PostgreSQLColumn.new(column_name, default, type, notnull == 'f')
<ide><path>activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
<ide> def table_exists?(name)
<ide> end
<ide>
<ide> # Returns an array of +SQLiteColumn+ objects for the table specified by +table_name+.
<del> def columns(table_name, name = nil) #:nodoc:
<add> def columns(table_name) #:nodoc:
<ide> table_structure(table_name).map do |field|
<ide> case field["dflt_value"]
<ide> when /^null$/i
<ide><path>activerecord/lib/active_record/reflection.rb
<ide> def counter_cache_column
<ide> end
<ide> end
<ide>
<del> def columns(tbl_name, log_msg)
<del> @columns ||= klass.connection.columns(tbl_name, log_msg)
<add> def columns(tbl_name)
<add> @columns ||= klass.connection.columns(tbl_name)
<ide> end
<ide>
<ide> def reset_column_information
<ide><path>activerecord/test/active_record/connection_adapters/fake_adapter.rb
<ide> def merge_column(table_name, name, sql_type = nil, options = {})
<ide> options[:null])
<ide> end
<ide>
<del> def columns(table_name, message)
<add> def columns(table_name)
<ide> @columns[table_name]
<ide> end
<ide> end | 6 |
Ruby | Ruby | fix missing closing <tt> tag | 680fab830898b56d70792d1f708a1bb3bac2b33a | <ide><path>railties/lib/rails/engine.rb
<ide> module Rails
<ide> #
<ide> # The <tt>Application</tt> class adds a couple more paths to this set. And as in your
<ide> # <tt>Application</tt>, all folders under +app+ are automatically added to the load path.
<del> # If you have an <tt>app/services/tt> folder for example, it will be added by default.
<add> # If you have an <tt>app/services</tt> folder for example, it will be added by default.
<ide> #
<ide> # == Endpoint
<ide> # | 1 |
PHP | PHP | add missing gettime function in job class | 7e200965988cd77530a99d7de369cb7f9b8a2cda | <ide><path>src/Illuminate/Queue/Jobs/Job.php
<ide> protected function getSeconds($delay)
<ide> }
<ide> }
<ide>
<add> /**
<add> * Get the current system time.
<add> *
<add> * @return int
<add> */
<add> protected function getTime()
<add> {
<add> return time();
<add> }
<add>
<ide> /**
<ide> * Get the name of the queued job class.
<ide> * | 1 |
Javascript | Javascript | verify ticks length | bbf298f4614c058e2ec86329566a56bfcd8bc685 | <ide><path>src/core/core.ticks.js
<ide> import {log10} from '../helpers/helpers.math';
<ide> */
<ide> const formatters = {
<ide> /**
<del> * Formatter for value labels
<del> * @method Chart.Ticks.formatters.values
<del> * @param value the value to display
<del> * @return {string|string[]} the label to display
<del> */
<add> * Formatter for value labels
<add> * @method Chart.Ticks.formatters.values
<add> * @param value the value to display
<add> * @return {string|string[]} the label to display
<add> */
<ide> values(value) {
<ide> return isArray(value) ? value : '' + value;
<ide> },
<ide>
<ide> /**
<del> * Formatter for numeric ticks
<del> * @method Chart.Ticks.formatters.numeric
<del> * @param tickValue {number} the value to be formatted
<del> * @param index {number} the position of the tickValue parameter in the ticks array
<del> * @param ticks {object[]} the list of ticks being converted
<del> * @return {string} string representation of the tickValue parameter
<del> */
<add> * Formatter for numeric ticks
<add> * @method Chart.Ticks.formatters.numeric
<add> * @param tickValue {number} the value to be formatted
<add> * @param index {number} the position of the tickValue parameter in the ticks array
<add> * @param ticks {object[]} the list of ticks being converted
<add> * @return {string} string representation of the tickValue parameter
<add> */
<ide> numeric(tickValue, index, ticks) {
<ide> if (tickValue === 0) {
<ide> return '0'; // never show decimal places for 0
<ide> }
<ide>
<ide> const locale = this.chart.options.locale;
<del>
<del> // all ticks are small or there huge numbers; use scientific notation
<del> const maxTick = Math.max(Math.abs(ticks[0].value), Math.abs(ticks[ticks.length - 1].value));
<ide> let notation;
<del> if (maxTick < 1e-4 || maxTick > 1e+15) {
<del> notation = 'scientific';
<del> }
<add> let delta = tickValue; // This is used when there are less than 2 ticks as the tick interval.
<ide>
<del> // Figure out how many digits to show
<del> // The space between the first two ticks might be smaller than normal spacing
<del> let delta = ticks.length > 3 ? ticks[2].value - ticks[1].value : ticks[1].value - ticks[0].value;
<add> if (ticks.length > 1) {
<add> // all ticks are small or there huge numbers; use scientific notation
<add> const maxTick = Math.max(Math.abs(ticks[0].value), Math.abs(ticks[ticks.length - 1].value));
<add> if (maxTick < 1e-4 || maxTick > 1e+15) {
<add> notation = 'scientific';
<add> }
<ide>
<del> // If we have a number like 2.5 as the delta, figure out how many decimal places we need
<del> if (Math.abs(delta) > 1 && tickValue !== Math.floor(tickValue)) {
<del> // not an integer
<del> delta = tickValue - Math.floor(tickValue);
<add> delta = calculateDelta(tickValue, ticks);
<ide> }
<ide>
<ide> const logDelta = log10(Math.abs(delta));
<ide> const formatters = {
<ide> Object.assign(options, this.options.ticks.format);
<ide>
<ide> return formatNumber(tickValue, locale, options);
<add> },
<add>
<add>
<add> /**
<add> * Formatter for logarithmic ticks
<add> * @method Chart.Ticks.formatters.logarithmic
<add> * @param tickValue {number} the value to be formatted
<add> * @param index {number} the position of the tickValue parameter in the ticks array
<add> * @param ticks {object[]} the list of ticks being converted
<add> * @return {string} string representation of the tickValue parameter
<add> */
<add> logarithmic(tickValue, index, ticks) {
<add> if (tickValue === 0) {
<add> return '0';
<add> }
<add> const remain = tickValue / (Math.pow(10, Math.floor(log10(tickValue))));
<add> if (remain === 1 || remain === 2 || remain === 5) {
<add> return formatters.numeric.call(this, tickValue, index, ticks);
<add> }
<add> return '';
<ide> }
<add>
<ide> };
<ide>
<del>/**
<del> * Formatter for logarithmic ticks
<del> * @method Chart.Ticks.formatters.logarithmic
<del> * @param tickValue {number} the value to be formatted
<del> * @param index {number} the position of the tickValue parameter in the ticks array
<del> * @param ticks {object[]} the list of ticks being converted
<del> * @return {string} string representation of the tickValue parameter
<del> */
<del>formatters.logarithmic = function(tickValue, index, ticks) {
<del> if (tickValue === 0) {
<del> return '0';
<del> }
<del> const remain = tickValue / (Math.pow(10, Math.floor(log10(tickValue))));
<del> if (remain === 1 || remain === 2 || remain === 5) {
<del> return formatters.numeric.call(this, tickValue, index, ticks);
<add>
<add>function calculateDelta(tickValue, ticks) {
<add> // Figure out how many digits to show
<add> // The space between the first two ticks might be smaller than normal spacing
<add> let delta = ticks.length > 3 ? ticks[2].value - ticks[1].value : ticks[1].value - ticks[0].value;
<add>
<add> // If we have a number like 2.5 as the delta, figure out how many decimal places we need
<add> if (Math.abs(delta) > 1 && tickValue !== Math.floor(tickValue)) {
<add> // not an integer
<add> delta = tickValue - Math.floor(tickValue);
<ide> }
<del> return '';
<del>};
<add> return delta;
<add>}
<ide>
<ide> /**
<ide> * Namespace to hold static tick generation functions
<ide><path>test/specs/core.ticks.tests.js
<ide> describe('Test tick generators', function() {
<ide> expect(xLabels).toEqual(['0.1', '0.2', '0.3', '0.4', '0.5', '0.6', '0.7', '0.8', '0.9', '1']);
<ide> expect(yLabels).toEqual(['0.1', '0.2', '0.3', '0.4', '0.5', '0.6', '0.7', '0.8', '0.9', '1']);
<ide> });
<add>
<add> describe('formatters.numeric', function() {
<add> it('should not fail on empty or 1 item array', function() {
<add> const scale = {chart: {options: {locale: 'en'}}, options: {ticks: {format: {}}}};
<add> expect(Chart.Ticks.formatters.numeric.apply(scale, [1, 0, []])).toEqual('1');
<add> expect(Chart.Ticks.formatters.numeric.apply(scale, [1, 0, [{value: 1}]])).toEqual('1');
<add> expect(Chart.Ticks.formatters.numeric.apply(scale, [1, 0, [{value: 1}, {value: 1.01}]])).toEqual('1.00');
<add> });
<add> });
<ide> }); | 2 |
PHP | PHP | add new json loader for translations | 1ab41fb385441494016aeb518b7b809b311e725c | <ide><path>src/Illuminate/Foundation/helpers.php
<ide> function trans_choice($id, $number, array $replace = [], $locale = null)
<ide> }
<ide> }
<ide>
<add>if (! function_exists('__')) {
<add> /**
<add> * Translate the given message.
<add> *
<add> * @param string $id
<add> * @param array $replace
<add> * @param string $locale
<add> * @return \Illuminate\Contracts\Translation\Translator|string
<add> */
<add> function __($id = null, $replace = [], $locale = null)
<add> {
<add> return app('translator')->getJson($id, $replace, $locale);
<add> }
<add>}
<add>
<ide> if (! function_exists('url')) {
<ide> /**
<ide> * Generate a url for the application.
<ide><path>src/Illuminate/Translation/FileLoader.php
<ide> public function __construct(Filesystem $files, $path)
<ide> */
<ide> public function load($locale, $group, $namespace = null)
<ide> {
<add> if ($group == '*' && $namespace == '*') {
<add> return $this->loadJson($this->path, $locale);
<add> }
<add>
<ide> if (is_null($namespace) || $namespace == '*') {
<ide> return $this->loadPath($this->path, $locale, $group);
<ide> }
<ide> protected function loadPath($path, $locale, $group)
<ide> return [];
<ide> }
<ide>
<add> /**
<add> * Load a locale from a given JSON file.
<add> *
<add> * @param string $path
<add> * @param string $locale
<add> * @return array
<add> */
<add> protected function loadJson($path, $locale)
<add> {
<add> if ($this->files->exists($full = "{$path}/{$locale}.json")) {
<add> return (array) json_decode($this->files->get($full));
<add> }
<add>
<add> return [];
<add> }
<add>
<ide> /**
<ide> * Add a new namespace to the loader.
<ide> *
<ide><path>src/Illuminate/Translation/Translator.php
<ide> public function has($key, $locale = null, $fallback = true)
<ide> return $this->get($key, [], $locale, $fallback) !== $key;
<ide> }
<ide>
<add> /**
<add> * Get the JSON translation for a given key.
<add> *
<add> * @param string $key
<add> * @param array $replace
<add> * @param string $locale
<add> * @return string
<add> */
<add> public function getJson($key, array $replace = [], $locale = null)
<add> {
<add> $locale = $locale ?: $this->locale;
<add>
<add> $this->load('*', '*', $locale);
<add>
<add> $line = Arr::get($this->loaded['*']['*'][$locale], $key);
<add>
<add> if (! isset($line)) {
<add> $alternativeLine = $this->get($key, $replace, $locale);
<add>
<add> if ($alternativeLine != $key) {
<add> return $alternativeLine;
<add> }
<add> }
<add>
<add> return $this->makeJsonReplacements($line ?: $key, $replace);
<add> }
<add>
<ide> /**
<ide> * Get the translation for the given key.
<ide> *
<ide> protected function makeReplacements($line, array $replace)
<ide> return $line;
<ide> }
<ide>
<add> /**
<add> * Make the place-holder replacements on a JSON line.
<add> *
<add> * @param string $line
<add> * @param array $replace
<add> * @return string
<add> */
<add> protected function makeJsonReplacements($line, array $replace)
<add> {
<add> preg_match_all('#:(?:[a-zA-Z1-9]*)#s', $line, $placeholders);
<add>
<add> $placeholders = $placeholders[0];
<add>
<add> foreach ($placeholders as $i => $key) {
<add> $line = str_replace_first(
<add> $key, isset($replace[$i]) ? $replace[$i] : $key, $line
<add> );
<add> }
<add>
<add> return $line;
<add> }
<add>
<ide> /**
<ide> * Sort the replacements array.
<ide> *
<ide><path>tests/Translation/TranslationFileLoaderTest.php
<ide> public function testEmptyArraysReturnedWhenFilesDontExistForNamespacedItems()
<ide>
<ide> $this->assertEquals([], $loader->load('en', 'foo', 'bar'));
<ide> }
<add>
<add> public function testLoadMethodForJSONProperlyCallsLoader()
<add> {
<add> $loader = new FileLoader($files = m::mock('Illuminate\Filesystem\Filesystem'), __DIR__);
<add> $files->shouldReceive('exists')->once()->with(__DIR__.'/en.json')->andReturn(true);
<add> $files->shouldReceive('get')->once()->with(__DIR__.'/en.json')->andReturn('{"foo":"bar"}');
<add>
<add> $this->assertEquals(['foo' => 'bar'], $loader->load('en', '*', '*'));
<add> }
<ide> }
<ide><path>tests/Translation/TranslationTranslatorTest.php
<ide> public function testChoiceMethodProperlyCountsCollectionsAndLoadsAndRetrievesIte
<ide> $t->choice('foo', $values, ['replace']);
<ide> }
<ide>
<add> public function testGetJsonMethod()
<add> {
<add> $t = new Illuminate\Translation\Translator($this->getLoader(), 'en');
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', '*', '*')->andReturn(['foo' => 'one']);
<add> $this->assertEquals('one', $t->getJson('foo'));
<add> }
<add>
<add> public function testGetJsonReplaces()
<add> {
<add> $t = new Illuminate\Translation\Translator($this->getLoader(), 'en');
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', '*', '*')->andReturn(['foo :message' => 'bar :message']);
<add> $this->assertEquals('bar baz', $t->getJson('foo :message', ['baz']));
<add> }
<add>
<add> public function testGetJsonForNonExistingJsonKeyLooksForRegularKeys()
<add> {
<add> $t = new Illuminate\Translation\Translator($this->getLoader(), 'en');
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', '*', '*')->andReturn([]);
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', 'foo', '*')->andReturn(['bar' => 'one']);
<add> $this->assertEquals('one', $t->getJson('foo.bar'));
<add> }
<add>
<add> public function testGetJsonForNonExistingJsonKeyLooksForRegularKeysAndReplace()
<add> {
<add> $t = new Illuminate\Translation\Translator($this->getLoader(), 'en');
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', '*', '*')->andReturn([]);
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', 'foo', '*')->andReturn(['bar' => 'one :message']);
<add> $this->assertEquals('one two', $t->getJson('foo.bar', ['message' => 'two']));
<add> }
<add>
<add> public function testGetJsonForNonExistingReturnsSameKey()
<add> {
<add> $t = new Illuminate\Translation\Translator($this->getLoader(), 'en');
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', '*', '*')->andReturn([]);
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', 'Foo that bar', '*')->andReturn([]);
<add> $this->assertEquals('Foo that bar', $t->getJson('Foo that bar'));
<add> }
<add>
<add> public function testGetJsonForNonExistingReturnsSameKeyAndReplaces()
<add> {
<add> $t = new Illuminate\Translation\Translator($this->getLoader(), 'en');
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', '*', '*')->andReturn([]);
<add> $t->getLoader()->shouldReceive('load')->once()->with('en', 'foo :message', '*')->andReturn([]);
<add> $this->assertEquals('foo baz', $t->getJson('foo :message', ['baz']));
<add> }
<add>
<ide> protected function getLoader()
<ide> {
<ide> return m::mock('Illuminate\Translation\LoaderInterface'); | 5 |
PHP | PHP | add deprecation warning for routing middleware | 9b48a65ce4a192ee570be292145b94a960bb189a | <ide><path>src/Routing/Middleware/RoutingMiddleware.php
<ide> class RoutingMiddleware
<ide> */
<ide> public function __construct(HttpApplicationInterface $app = null, $cacheConfig = null)
<ide> {
<add> if ($app === null) {
<add> deprecationWarning(
<add> 'RoutingMiddleware should be passed an application instance. ' .
<add> 'Failing to do so can cause plugin routes to not behave correctly.'
<add> );
<add> }
<ide> $this->app = $app;
<ide> $this->cacheConfig = $cacheConfig;
<ide> }
<ide><path>tests/TestCase/Routing/Middleware/RoutingMiddlewareTest.php
<ide> public function testRedirectResponse()
<ide> $response = new Response();
<ide> $next = function ($req, $res) {
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $response = $middleware($request, $response, $next);
<ide>
<ide> $this->assertEquals(301, $response->getStatusCode());
<ide> public function testRedirectResponseWithHeaders()
<ide> $response = new Response('php://memory', 200, ['X-testing' => 'Yes']);
<ide> $next = function ($req, $res) {
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $response = $middleware($request, $response, $next);
<ide>
<ide> $this->assertEquals(301, $response->getStatusCode());
<ide> public function testRouterSetParams()
<ide> ];
<ide> $this->assertEquals($expected, $req->getAttribute('params'));
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $middleware($request, $response, $next);
<ide> }
<ide>
<ide> public function testPreservingExistingParams()
<ide> ];
<ide> $this->assertEquals($expected, $req->getAttribute('params'));
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $middleware($request, $response, $next);
<ide> }
<ide>
<ide> public function testRouterNoopOnController()
<ide> $next = function ($req, $res) {
<ide> $this->assertEquals(['controller' => 'Articles'], $req->getAttribute('params'));
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $middleware($request, $response, $next);
<ide> }
<ide>
<ide> public function testMissingRouteNotCaught()
<ide> $response = new Response();
<ide> $next = function ($req, $res) {
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $middleware($request, $response, $next);
<ide> }
<ide>
<ide> public function testFakedRequestMethodParsed()
<ide> $this->assertEquals($expected, $req->getAttribute('params'));
<ide> $this->assertEquals('PATCH', $req->getMethod());
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $middleware($request, $response, $next);
<ide> }
<ide>
<ide> public function testInvokeScopedMiddleware()
<ide>
<ide> return $res;
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $result = $middleware($request, $response, $next);
<ide> $this->assertSame($response, $result, 'Should return result');
<ide> $this->assertSame(['second', 'first', 'last'], $this->log);
<ide> public function testInvokeScopedMiddlewareReturnResponse()
<ide> $next = function ($req, $res) {
<ide> $this->fail('Should not be invoked as first should be ignored.');
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $result = $middleware($request, $response, $next);
<ide>
<ide> $this->assertSame($response, $result, 'Should return result');
<ide> public function testInvokeScopedMiddlewareReturnResponseMainScope()
<ide> $next = function ($req, $res) {
<ide> $this->fail('Should not be invoked as second should be ignored.');
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $result = $middleware($request, $response, $next);
<ide>
<ide> $this->assertSame($response, $result, 'Should return result');
<ide> public function testInvokeScopedMiddlewareIsolatedScopes($url, $expected)
<ide>
<ide> return $res;
<ide> };
<del> $middleware = new RoutingMiddleware();
<add> $middleware = new RoutingMiddleware($this->app());
<ide> $result = $middleware($request, $response, $next);
<ide> $this->assertSame($response, $result, 'Should return result');
<ide> $this->assertSame($expected, $this->log);
<ide> public function testCacheConfigNotFound()
<ide>
<ide> Cache::drop('_cake_router_');
<ide> }
<add>
<add> /**
<add> * Create a stub application for testing.
<add> *
<add> * @return \Cake\Core\HttpApplicationInterface
<add> */
<add> protected function app()
<add> {
<add> $mock = $this->createMock(Application::class);
<add> $mock->method('routes')
<add> ->will($this->returnCallback(function ($routes) {
<add> return $routes;
<add> }));
<add>
<add> return $mock;
<add> }
<ide> }
<ide><path>tests/TestCase/TestSuite/IntegrationTestTraitTest.php
<ide> public function testAssertTemplateAfterCellRender()
<ide> public function testArrayUrls()
<ide> {
<ide> $this->post(['controller' => 'Posts', 'action' => 'index', '_method' => 'POST']);
<add> $this->assertResponseOk();
<ide> $this->assertEquals('value', $this->viewVariable('test'));
<ide> }
<ide>
<ide> public function testArrayUrlsEmptyRouter()
<ide> $this->assertFalse(Router::$initialized);
<ide>
<ide> $this->post(['controller' => 'Posts', 'action' => 'index']);
<add> $this->assertResponseOk();
<ide> $this->assertEquals('value', $this->viewVariable('test'));
<ide> }
<ide>
<ide><path>tests/test_app/TestApp/Application.php
<ide> public function console($commands)
<ide> */
<ide> public function middleware($middleware)
<ide> {
<del> $middleware->add(new RoutingMiddleware());
<add> $middleware->add(new RoutingMiddleware($this));
<ide> $middleware->add(function ($req, $res, $next) {
<ide> /** @var \Cake\Http\ServerRequest $res */
<ide> $res = $next($req, $res);
<ide> public function routes($routes)
<ide> {
<ide> $routes->scope('/app', function (RouteBuilder $routes) {
<ide> $routes->connect('/articles', ['controller' => 'Articles']);
<add> $routes->fallbacks();
<ide> });
<ide> }
<ide> } | 4 |
Javascript | Javascript | add serializer for acorn position | e9db83c6c7e5b82588975b246a6ecee2b09a79e4 | <ide><path>lib/util/registerExternalSerializer.js
<ide>
<ide> const ObjectMiddleware = require("../serialization/ObjectMiddleware");
<ide>
<add>const Position = /** @type {TODO} */ (require("acorn")).Position;
<ide> const SourceLocation = require("acorn").SourceLocation;
<ide> const CachedSource = require("webpack-sources").CachedSource;
<ide> const ConcatSource = require("webpack-sources").ConcatSource;
<ide> const ReplaceSource = require("webpack-sources").ReplaceSource;
<ide> const SourceMapSource = require("webpack-sources").SourceMapSource;
<ide>
<ide> /** @typedef {import("../Dependency").RealDependencyLocation} RealDependencyLocation */
<add>/** @typedef {import("../Dependency").SourcePosition} SourcePosition */
<ide>
<ide> const CURRENT_MODULE = "webpack/lib/util/registerExternalSerializer";
<ide>
<ide> ObjectMiddleware.register(
<ide> }()
<ide> );
<ide>
<add>ObjectMiddleware.register(
<add> Position,
<add> CURRENT_MODULE,
<add> "acorn/Position",
<add> new class PositionSerializer {
<add> /**
<add> * @param {Position} pos the position to be serialized
<add> * @param {ObjectMiddleware.ObjectSerializerContext} context context
<add> * @returns {void}
<add> */
<add> serialize(pos, { write }) {
<add> write(pos.line);
<add> write(pos.column);
<add> }
<add>
<add> /**
<add> * @param {ObjectMiddleware.ObjectDeserializerContext} context context
<add> * @returns {SourcePosition} position
<add> */
<add> deserialize({ read }) {
<add> return {
<add> line: read(),
<add> column: read()
<add> };
<add> }
<add> }()
<add>);
<add>
<ide> ObjectMiddleware.register(
<ide> SourceMapSource,
<ide> CURRENT_MODULE,
<ide><path>tooling/format-file-header.js
<ide> const schema = [
<ide> },
<ide> {
<ide> title: "imports",
<del> regexp: /(const (\{\s+\w+(,\s+\w+)*\s+\}|\w+) = require\("[^"]+"\)(\.\w+)*;\n)+\n/g,
<add> regexp: /(const (\{\s+\w+(,\s+\w+)*\s+\}|\w+) = (\/\*\* @type \{TODO\} \*\/\s\()?require\("[^"]+"\)\)?(\.\w+)*;\n)+\n/g,
<ide> updateMessage: "sort imports alphabetically",
<ide> update(content) {
<ide> const items = execToArray(
<ide> content,
<del> /const (?:\{\s+\w+(?:,\s+\w+)*\s+\}|\w+) = require\("([^"]+)"\)((?:\.\w+)*);\n/g
<add> /const (?:\{\s+\w+(?:,\s+\w+)*\s+\}|\w+) = (?:\/\*\* @type \{TODO\} \*\/\s\()?require\("([^"]+)"\)\)?((?:\.\w+)*);\n/g
<ide> );
<ide> items.sort(sortImport);
<ide> return items.map(item => item.content).join("") + "\n"; | 2 |
PHP | PHP | fix whitespace error | 3c9500a3cb54128bb438fbb17f74fa88c3be70b7 | <ide><path>lib/Cake/View/Helper/FormHelper.php
<ide> public function radio($fieldName, $options = array(), $attributes = array()) {
<ide> if ($label) {
<ide> $optTitle = $this->label($tagName, $optTitle, is_array($label) ? $label : null);
<ide> }
<del>
<add>
<ide> if (is_array($between)) {
<ide> $optTitle .= array_shift($between);
<ide> } | 1 |
Text | Text | edit n-api.md for minor improvements | 062b35d4e82663b50898f4f47e74d9d64c031379 | <ide><path>doc/api/n-api.md
<ide> for a reference is 0, all subsequent calls to
<ide> get the object associated with the reference [`napi_get_reference_value`][]
<ide> will return `NULL` for the returned `napi_value`. An attempt to call
<ide> [`napi_reference_ref`][] for a reference whose object has been collected
<del>will result in an error.
<add>results in an error.
<ide>
<ide> References must be deleted once they are no longer required by the addon. When
<del>a reference is deleted it will no longer prevent the corresponding object from
<del>being collected. Failure to delete a persistent reference will result in
<add>a reference is deleted, it will no longer prevent the corresponding object from
<add>being collected. Failure to delete a persistent reference results in
<ide> a 'memory leak' with both the native memory for the persistent reference and
<ide> the corresponding object on the heap being retained forever.
<ide>
<ide> napi_status napi_get_value_string_latin1(napi_env env,
<ide> passed in, the length of the string in bytes and excluding the null terminator
<ide> is returned in `result`.
<ide> * `[in] bufsize`: Size of the destination buffer. When this value is
<del> insufficient, the returned string will be truncated and null-terminated.
<add> insufficient, the returned string is truncated and null-terminated.
<ide> * `[out] result`: Number of bytes copied into the buffer, excluding the null
<ide> terminator.
<ide>
<ide> napi_status napi_get_value_string_utf8(napi_env env,
<ide> in, the length of the string in bytes and excluding the null terminator is
<ide> returned in `result`.
<ide> * `[in] bufsize`: Size of the destination buffer. When this value is
<del> insufficient, the returned string will be truncated and null-terminated.
<add> insufficient, the returned string is truncated and null-terminated.
<ide> * `[out] result`: Number of bytes copied into the buffer, excluding the null
<ide> terminator.
<ide>
<ide> napi_status napi_get_value_string_utf16(napi_env env,
<ide> passed in, the length of the string in 2-byte code units and excluding the
<ide> null terminator is returned.
<ide> * `[in] bufsize`: Size of the destination buffer. When this value is
<del> insufficient, the returned string will be truncated and null-terminated.
<add> insufficient, the returned string is truncated and null-terminated.
<ide> * `[out] result`: Number of 2-byte code units copied into the buffer, excluding
<ide> the null terminator.
<ide>
<ide> napi_status napi_async_init(napi_env env,
<ide> * `[in] async_resource`: Object associated with the async work
<ide> that will be passed to possible `async_hooks` [`init` hooks][].
<ide> In order to retain ABI compatibility with previous versions,
<del> passing `NULL` for `async_resource` will not result in an error, however,
<del> this will result incorrect operation of async hooks for the
<add> passing `NULL` for `async_resource` does not result in an error. However,
<add> this results in incorrect operation of async hooks for the
<ide> napi_async_context created. Potential issues include
<ide> loss of async context when using the AsyncLocalStorage API.
<ide> * `[in] async_resource_name`: Identifier for the kind of resource
<ide> NAPI_EXTERN napi_status napi_make_callback(napi_env env,
<ide> invoking the callback. This should normally be a value previously
<ide> obtained from [`napi_async_init`][].
<ide> In order to retain ABI compatibility with previous versions, passing `NULL`
<del> for `async_context` will not result in an error. However, this will result
<add> for `async_context` does not result in an error. However, this results
<ide> in incorrect operation of async hooks. Potential issues include loss of
<ide> async context when using the `AsyncLocalStorage` API.
<ide> * `[in] recv`: The `this` object passed to the called function. | 1 |
Javascript | Javascript | fix typos and minor wording tweaks on $watch | 03ebecd5eb419da79cb3bcef270cac424c4743de | <ide><path>src/ng/rootScope.js
<ide> function $RootScopeProvider(){
<ide> * reruns when it detects changes the `watchExpression` can execute multiple times per
<ide> * {@link ng.$rootScope.Scope#$digest $digest()} and should be idempotent.)
<ide> * - The `listener` is called only when the value from the current `watchExpression` and the
<del> * previous call to `watchExpression` are not equal (with the exception of the initial run
<add> * previous call to `watchExpression` are not equal (with the exception of the initial run,
<ide> * see below). The inequality is determined according to
<del> * {@link angular.equals} function. To save the value of the object for later comparison
<add> * {@link angular.equals} function. To save the value of the object for later comparison, the
<ide> * {@link angular.copy} function is used. It also means that watching complex options will
<ide> * have adverse memory and performance implications.
<ide> * - The watch `listener` may change the model, which may trigger other `listener`s to fire. This
<ide> * is achieved by rerunning the watchers until no changes are detected. The rerun iteration
<del> * limit is 100 to prevent infinity loop deadlock.
<add> * limit is 100 to prevent an infinite loop deadlock.
<ide> *
<ide> *
<ide> * If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called,
<del> * you can register an `watchExpression` function with no `listener`. (Since `watchExpression`,
<add> * you can register a `watchExpression` function with no `listener`. (Since `watchExpression`
<ide> * can execute multiple times per {@link ng.$rootScope.Scope#$digest $digest} cycle when a change is
<ide> * detected, be prepared for multiple calls to your listener.)
<ide> * | 1 |
Javascript | Javascript | tls key/cert ordering not necessary | 475b8db8354b50b971653912de82fc336001c6d3 | <ide><path>test/parallel/test-tls-multi-key.js
<ide> var fs = require('fs');
<ide>
<ide> var options = {
<ide> key: [
<add> fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem'),
<ide> fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
<del> fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem')
<ide> ],
<ide> cert: [
<ide> fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'), | 1 |
Python | Python | fix the weird boolean+advanced indexing test | fc865d8c6212b51bb03190f2cd732f1d484539dd | <ide><path>numpy/core/tests/test_indexing.py
<ide> def test_bool_as_int_argument_errors(self):
<ide> def test_boolean_indexing_weirdness(self):
<ide> # Weird boolean indexing things
<ide> a = np.ones((2, 3, 4))
<del> a[False, True, ...].shape == (0, 2, 3, 4)
<del> a[True, [0, 1], True, True, [1], [[2]]] == (1, 2)
<add> assert a[False, True, ...].shape == (0, 2, 3, 4)
<add> assert a[True, [0, 1], True, True, [1], [[2]]].shape == (1, 2)
<ide> assert_raises(IndexError, lambda: a[False, [0, 1], ...])
<ide>
<del>
<ide> def test_boolean_indexing_fast_path(self):
<ide> # These used to either give the wrong error, or incorrectly give no
<ide> # error. | 1 |
PHP | PHP | fix translator bug | d0fca1878a924a2319f5262e5f264f9d59e69418 | <ide><path>src/Illuminate/Translation/Translator.php
<ide> protected function getLine($namespace, $group, $locale, $item, array $replace)
<ide> {
<ide> $line = array_get($this->loaded[$namespace][$group][$locale], $item);
<ide>
<del> if (is_string($line)) return $this->makeReplacements($line, $replace);
<add> if (is_string($line))
<add> {
<add> return $this->makeReplacements($line, $replace);
<add> }
<add> elseif (is_array($line))
<add> {
<add> return $line;
<add> }
<ide> }
<ide>
<ide> /** | 1 |
Javascript | Javascript | use es6 in test-debugger-client.js | 56072280996f2b39328952985723f0c76a11a189 | <ide><path>test/debugger/test-debugger-client.js
<ide> 'use strict';
<ide> const common = require('../common');
<del>var assert = require('assert');
<del>var debug = require('_debugger');
<add>const assert = require('assert');
<add>const debug = require('_debugger');
<ide>
<ide> process.env.NODE_DEBUGGER_TIMEOUT = 2000;
<del>var debugPort = common.PORT;
<add>const debugPort = common.PORT;
<ide> debug.port = debugPort;
<del>var spawn = require('child_process').spawn;
<add>const spawn = require('child_process').spawn;
<ide>
<ide> setTimeout(function() {
<ide> if (nodeProcess) nodeProcess.kill('SIGTERM');
<ide> throw new Error('timeout');
<ide> }, 10000).unref();
<ide>
<ide>
<del>var resCount = 0;
<del>var p = new debug.Protocol();
<add>let resCount = 0;
<add>const p = new debug.Protocol();
<ide> p.onResponse = function(res) {
<ide> resCount++;
<ide> };
<ide> assert.strictEqual(resCount, 1);
<ide>
<ide> // Make sure split messages go in.
<ide>
<del>var parts = [];
<add>const parts = [];
<ide> parts.push('Content-Length: 336\r\n');
<ide> assert.strictEqual(parts[0].length, 21);
<ide> parts.push('\r\n');
<ide> assert.strictEqual(parts[1].length, 2);
<del>var bodyLength = 0;
<add>let bodyLength = 0;
<ide>
<ide> parts.push('{"seq":12,"type":"event","event":"break","body":' +
<ide> '{"invocationText":"#<a Server>');
<ide> bodyLength += parts[4].length;
<ide>
<ide> assert.strictEqual(bodyLength, 336);
<ide>
<del>for (var i = 0; i < parts.length; i++) {
<add>for (let i = 0; i < parts.length; i++) {
<ide> p.execute(parts[i]);
<ide> }
<ide> assert.strictEqual(resCount, 2);
<ide>
<ide>
<ide> // Make sure that if we get backed up, we still manage to get all the
<ide> // messages
<del>var d = 'Content-Length: 466\r\n\r\n' +
<del> '{"seq":10,"type":"event","event":"afterCompile","success":true,' +
<del> '"body":{"script":{"handle":1,"type":"script","name":"dns.js",' +
<del> '"id":34,"lineOffset":0,"columnOffset":0,"lineCount":241,' +
<del> '"sourceStart":"(function(module, exports, require) {' +
<del> 'var dns = process.binding(\'cares\')' +
<del> ';\\nvar ne","sourceLength":6137,"scriptType":2,"compilationType":0,' +
<del> '"context":{"ref":0},"text":"dns.js (lines: 241)"}},"refs":' +
<del> '[{"handle":0' +
<del> ',"type":"context","text":"#<a ContextMirror>"}],"running":true}' +
<del> '\r\n\r\nContent-Length: 119\r\n\r\n' +
<del> '{"seq":11,"type":"event","event":"scriptCollected","success":true,' +
<del> '"body":{"script":{"id":26}},"refs":[],"running":true}';
<add>const d = 'Content-Length: 466\r\n\r\n' +
<add> '{"seq":10,"type":"event","event":"afterCompile","success":true,' +
<add> '"body":{"script":{"handle":1,"type":"script","name":"dns.js",' +
<add> '"id":34,"lineOffset":0,"columnOffset":0,"lineCount":241,' +
<add> '"sourceStart":"(function(module, exports, require) {' +
<add> 'var dns = process.binding(\'cares\')' +
<add> ';\\nvar ne","sourceLength":6137,"scriptType":2,"compilationType"' +
<add> ':0,"context":{"ref":0},"text":"dns.js (lines: 241)"}},"refs":' +
<add> '[{"handle":0' +
<add> ',"type":"context","text":"#<a ContextMirror>"}],"running":true}' +
<add> '\r\n\r\nContent-Length: 119\r\n\r\n' +
<add> '{"seq":11,"type":"event","event":"scriptCollected","success":true' +
<add> ',"body":{"script":{"id":26}},"refs":[],"running":true}';
<ide> p.execute(d);
<ide> assert.strictEqual(resCount, 4);
<ide>
<del>var expectedConnections = 0;
<del>var tests = [];
<add>let expectedConnections = 0;
<add>const tests = [];
<ide> function addTest(cb) {
<ide> expectedConnections++;
<ide> tests.push(cb);
<ide> addTest(function(client, done) {
<ide> assert.ok(!err);
<ide> console.error('got %d scripts', Object.keys(client.scripts).length);
<ide>
<del> var foundMainScript = false;
<del> for (var k in client.scripts) {
<del> var script = client.scripts[k];
<add> let foundMainScript = false;
<add> for (const k in client.scripts) {
<add> const script = client.scripts[k];
<ide> if (script && script.name === 'node.js') {
<ide> foundMainScript = true;
<ide> break;
<ide> addTest(function(client, done) {
<ide> });
<ide>
<ide>
<del>var connectCount = 0;
<del>var script = 'setTimeout(function() { console.log("blah"); });' +
<del> 'setInterval(function() {}, 1000000);';
<add>let connectCount = 0;
<add>const script = 'setTimeout(function() { console.log("blah"); });' +
<add> 'setInterval(function() {}, 1000000);';
<ide>
<del>var nodeProcess;
<add>let nodeProcess;
<ide>
<ide> function doTest(cb, done) {
<del> var args = ['--debug=' + debugPort, '-e', script];
<add> const args = ['--debug=' + debugPort, '-e', script];
<ide> nodeProcess = spawn(process.execPath, args);
<ide>
<ide> nodeProcess.stdout.once('data', function(c) {
<ide> console.log('>>> new node process: %d', nodeProcess.pid);
<del> var failed = true;
<add> let failed = true;
<ide> try {
<ide> process._debugProcess(nodeProcess.pid);
<ide> failed = false;
<ide> function doTest(cb, done) {
<ide> console.log('>>> starting debugger session');
<ide> });
<ide>
<del> var didTryConnect = false;
<add> let didTryConnect = false;
<ide> nodeProcess.stderr.setEncoding('utf8');
<del> var b = '';
<add> let b = '';
<ide> nodeProcess.stderr.on('data', function(data) {
<ide> console.error('got stderr data %j', data);
<ide> nodeProcess.stderr.resume(); | 1 |
PHP | PHP | remove whitespace at eol | e7fa2a526ff456e5e776290d60461397f73fc464 | <ide><path>lib/Cake/Console/Command/Task/TemplateTask.php
<ide> public function initialize() {
<ide> */
<ide> protected function _findThemes() {
<ide> $paths = App::path('Console');
<del>
<add>
<ide> $plugins = App::objects('plugin');
<ide> foreach ($plugins as $plugin) {
<ide> $paths[] = $this->_pluginPath($plugin) . 'Console' . DS; | 1 |
Python | Python | fix broken tests | 4716677f8193a43659b6a467b8c8bce0e2100374 | <ide><path>celery/tests/test_worker.py
<ide> from celery.decorators import task as task_dec
<ide>
<ide>
<add>class MockEventDispatcher(object):
<add>
<add> def send(self, *args, **kwargs):
<add> pass
<add>
<add> def close(self):
<add> pass
<add>
<add>
<ide> @task_dec()
<ide> def foo_task(x, y, z, **kwargs):
<ide> return x * y * z
<ide> def setUp(self):
<ide> self.logger.setLevel(0)
<ide>
<ide> def test_connection(self):
<del> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger)
<add> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger,
<add> send_events=False)
<ide>
<ide> c = l.reset_connection()
<ide> self.assertTrue(isinstance(l.amqp_connection, BrokerConnection))
<ide> def test_connection(self):
<ide> self.assertTrue(l.task_consumer is None)
<ide>
<ide> def test_receieve_message(self):
<del> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger)
<add> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger,
<add> send_events=False)
<ide> backend = MockBackend()
<ide> m = create_message(backend, task=foo_task.name,
<ide> args=[2, 4, 8], kwargs={})
<ide>
<add> l.event_dispatcher = MockEventDispatcher()
<ide> l.receive_message(m.decode(), m)
<ide>
<ide> in_bucket = self.ready_queue.get_nowait()
<ide> def test_receieve_message(self):
<ide> self.assertTrue(self.eta_scheduler.empty())
<ide>
<ide> def test_receieve_message_not_registered(self):
<del> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger)
<add> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger,
<add> send_events=False)
<ide> backend = MockBackend()
<ide> m = create_message(backend, task="x.X.31x", args=[2, 4, 8], kwargs={})
<ide>
<add> l.event_dispatcher = MockEventDispatcher()
<ide> self.assertFalse(l.receive_message(m.decode(), m))
<ide> self.assertRaises(Empty, self.ready_queue.get_nowait)
<ide> self.assertTrue(self.eta_scheduler.empty())
<ide>
<ide> def test_receieve_message_eta(self):
<del> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger)
<add> l = CarrotListener(self.ready_queue, self.eta_scheduler, self.logger,
<add> send_events=False)
<ide> backend = MockBackend()
<ide> m = create_message(backend, task=foo_task.name,
<ide> args=[2, 4, 8], kwargs={},
<ide> eta=(datetime.now() +
<ide> timedelta(days=1)).isoformat())
<ide>
<add> l.reset_connection()
<ide> l.receive_message(m.decode(), m)
<ide>
<ide> in_hold = self.eta_scheduler.queue[0] | 1 |
Ruby | Ruby | fix typeerror in fixture creation | 7b910917d39bb7d7c5b1b7cdbfb14ff001cac7cc | <ide><path>activerecord/lib/active_record/fixtures.rb
<ide> def table_rows
<ide>
<ide> # interpolate the fixture label
<ide> row.each do |key, value|
<del> row[key] = value.gsub("$LABEL", label) if value.is_a?(String)
<add> row[key] = value.gsub("$LABEL", label.to_s) if value.is_a?(String)
<ide> end
<ide>
<ide> # generate a primary key if necessary | 1 |
Javascript | Javascript | fix more forwardref displaynames | 76eebce3c20152fdd5386ec405524d0810770eea | <ide><path>Libraries/Components/ActivityIndicator/ActivityIndicator.js
<ide> type Props = $ReadOnly<{|
<ide> * See http://facebook.github.io/react-native/docs/activityindicator.html
<ide> */
<ide> const ActivityIndicator = (
<del> props: $ReadOnly<{|
<del> ...Props,
<del> forwardedRef?: ?React.Ref<'RCTActivityIndicatorView'>,
<del> |}>,
<add> props: Props,
<add> forwardedRef?: ?React.Ref<'RCTActivityIndicatorView'>,
<ide> ) => {
<del> const {onLayout, style, forwardedRef, ...restProps} = props;
<add> const {onLayout, style, ...restProps} = props;
<ide> let sizeStyle;
<ide>
<ide> switch (props.size) {
<ide> const ActivityIndicator = (
<ide> };
<ide>
<ide> return (
<del> <View onLayout={onLayout} style={[styles.container, style]}>
<add> <View
<add> onLayout={onLayout}
<add> style={StyleSheet.compose(
<add> styles.container,
<add> style,
<add> )}>
<ide> <RCTActivityIndicator {...nativeProps} />
<ide> </View>
<ide> );
<ide> };
<ide>
<ide> // $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
<del>const ActivityIndicatorWithRef = React.forwardRef((props: Props, ref) => {
<del> return <ActivityIndicator {...props} forwardedRef={ref} />;
<del>});
<add>const ActivityIndicatorWithRef = React.forwardRef(ActivityIndicator);
<ide>
<ide> ActivityIndicatorWithRef.defaultProps = {
<ide> animating: true,
<ide> color: Platform.OS === 'ios' ? GRAY : null,
<ide> hidesWhenStopped: true,
<ide> size: 'small',
<ide> };
<del>ActivityIndicatorWithRef.displayName = 'ActivityIndicator';
<ide>
<ide> const styles = StyleSheet.create({
<ide> container: {
<ide><path>Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js
<ide> * This source code is licensed under the MIT license found in the
<ide> * LICENSE file in the root directory of this source tree.
<ide> *
<add> * @flow
<ide> * @format
<ide> */
<ide>
<ide> 'use strict';
<ide>
<del>const ColorPropType = require('ColorPropType');
<del>const PropTypes = require('prop-types');
<ide> const React = require('React');
<del>const ViewPropTypes = require('ViewPropTypes');
<ide>
<ide> const requireNativeComponent = require('requireNativeComponent');
<ide>
<del>const STYLE_ATTRIBUTES = [
<del> 'Horizontal',
<del> 'Normal',
<del> 'Small',
<del> 'Large',
<del> 'Inverse',
<del> 'SmallInverse',
<del> 'LargeInverse',
<del>];
<add>import type {NativeComponent} from 'ReactNative';
<add>import type {ViewProps} from 'ViewPropTypes';
<ide>
<del>const indeterminateType = function(props, propName, componentName, ...rest) {
<del> const checker = function() {
<del> const indeterminate = props[propName];
<del> const styleAttr = props.styleAttr;
<del> if (!indeterminate && styleAttr !== 'Horizontal') {
<del> return new Error(
<del> 'indeterminate=false is only valid for styleAttr=Horizontal',
<del> );
<del> }
<del> };
<add>const AndroidProgressBar = requireNativeComponent('AndroidProgressBar');
<ide>
<del> return PropTypes.bool(props, propName, componentName, ...rest) || checker();
<del>};
<add>type Props = $ReadOnly<{|
<add> ...ViewProps,
<add>
<add> /**
<add> * Style of the ProgressBar and whether it shows indeterminate progress (e.g. spinner).
<add> *
<add> * `indeterminate` can only be false if `styleAttr` is Horizontal, and requires a
<add> * `progress` value.
<add> */
<add> ...
<add> | {|
<add> styleAttr: 'Horizontal',
<add> indeterminate: false,
<add> progress: number,
<add> |}
<add> | {|
<add> typeAttr:
<add> | 'Horizontal'
<add> | 'Normal'
<add> | 'Small'
<add> | 'Large'
<add> | 'Inverse'
<add> | 'SmallInverse'
<add> | 'LargeInverse',
<add> indeterminate: true,
<add> |},
<add> /**
<add> * Whether to show the ProgressBar (true, the default) or hide it (false).
<add> */
<add> animating?: ?boolean,
<add> /**
<add> * Color of the progress bar.
<add> */
<add> color?: ?string,
<add> /**
<add> * Used to locate this view in end-to-end tests.
<add> */
<add> testID?: ?string,
<add>|}>;
<ide>
<ide> /**
<ide> * React component that wraps the Android-only `ProgressBar`. This component is
<ide> const indeterminateType = function(props, propName, componentName, ...rest) {
<ide> * },
<ide> * ```
<ide> */
<del>class ProgressBarAndroid extends React.Component {
<del> static propTypes = {
<del> ...ViewPropTypes,
<del>
<del> /**
<del> * Style of the ProgressBar. One of:
<del> *
<del> * - Horizontal
<del> * - Normal (default)
<del> * - Small
<del> * - Large
<del> * - Inverse
<del> * - SmallInverse
<del> * - LargeInverse
<del> */
<del> styleAttr: PropTypes.oneOf(STYLE_ATTRIBUTES),
<del> /**
<del> * Whether to show the ProgressBar (true, the default) or hide it (false).
<del> */
<del> animating: PropTypes.bool,
<del> /**
<del> * If the progress bar will show indeterminate progress. Note that this
<del> * can only be false if styleAttr is Horizontal.
<del> */
<del> indeterminate: indeterminateType,
<del> /**
<del> * The progress value (between 0 and 1).
<del> */
<del> progress: PropTypes.number,
<del> /**
<del> * Color of the progress bar.
<del> */
<del> color: ColorPropType,
<del> /**
<del> * Used to locate this view in end-to-end tests.
<del> */
<del> testID: PropTypes.string,
<del> };
<del>
<del> static defaultProps = {
<del> styleAttr: 'Normal',
<del> indeterminate: true,
<del> animating: true,
<del> };
<add>const ProgressBarAndroid = (
<add> props: Props,
<add> forwardedRef: ?React.Ref<'AndroidProgressBar'>,
<add>) => {
<add> return <AndroidProgressBar {...props} ref={forwardedRef} />;
<add>};
<ide>
<del> render() {
<del> const {forwardedRef, ...props} = this.props;
<del> return <AndroidProgressBar {...props} ref={forwardedRef} />;
<del> }
<del>}
<add>// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
<add>const ProgressBarAndroidToExport = React.forwardRef(ProgressBarAndroid);
<ide>
<del>const AndroidProgressBar = requireNativeComponent('AndroidProgressBar');
<add>ProgressBarAndroidToExport.defaultProps = {
<add> styleAttr: 'Normal',
<add> indeterminate: true,
<add> animating: true,
<add>};
<ide>
<del>module.exports = React.forwardRef((props, ref) => (
<del> <ProgressBarAndroid {...props} forwardedRef={ref} />
<del>));
<add>module.exports = (ProgressBarAndroidToExport: Class<NativeComponent<Props>>);
<ide><path>Libraries/Components/Slider/Slider.js
<ide> SliderWithRef.defaultProps = {
<ide> maximumValue: 1,
<ide> step: 0,
<ide> };
<del>SliderWithRef.displayName = 'Slider';
<ide>
<ide> let styles;
<ide> if (Platform.OS === 'ios') {
<ide><path>Libraries/Components/View/View.js
<ide> if (__DEV__) {
<ide> </TextAncestor.Consumer>
<ide> );
<ide> };
<del> View.displayName = 'View'; // TODO(T30332650) remove bug workaround
<ide> // $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
<ide> ViewToExport = React.forwardRef(View);
<ide> }
<ide><path>Libraries/Text/Text.js
<ide> const Text = (
<ide> ) => {
<ide> return <TouchableText {...props} forwardedRef={forwardedRef} />;
<ide> };
<del>Text.displayName = 'Text'; // TODO(T30332650) remove bug workaround
<ide> // $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
<ide> const TextToExport = React.forwardRef(Text);
<ide> | 5 |
PHP | PHP | slug for better result consistency | f132e3e894ea5db842ef054759c03b0088f7c955 | <ide><path>src/Illuminate/Support/Str.php
<ide> public static function slug($title, $separator = '-')
<ide> // Remove all characters that are not the separator, letters, numbers, or whitespace.
<ide> $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', mb_strtolower($title));
<ide>
<add> // Convert all dashes/undescores into separator
<add> $flip = ($separator == '-' ? '_' : '-');
<add> $title = preg_replace('!['.preg_quote($flip).']+!u', $separator, $title);
<add>
<ide> // Replace all separator characters and whitespace by a single separator
<ide> $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
<ide>
<ide> public static function startsWith($haystack, $needles)
<ide> return false;
<ide> }
<ide>
<del>}
<ide>\ No newline at end of file
<add>} | 1 |
Javascript | Javascript | handle content from loaders | f21930b588db5e7a5200439bcb41e7bb8f432106 | <ide><path>lib/asset/AssetGenerator.js
<ide> const mergeRelatedInfo = (a, b) => {
<ide> return result;
<ide> };
<ide>
<add>const encodeDataUri = (encoding, source) => {
<add> let encodedContent;
<add>
<add> switch (encoding) {
<add> case "base64": {
<add> encodedContent = source.buffer().toString("base64");
<add> break;
<add> }
<add> case false: {
<add> const content = source.source();
<add>
<add> if (typeof content !== "string") {
<add> encodedContent = content.toString("utf-8");
<add> }
<add>
<add> encodedContent = encodeURIComponent(encodedContent).replace(
<add> /[!'()*]/g,
<add> character => "%" + character.codePointAt(0).toString(16)
<add> );
<add> break;
<add> }
<add> default:
<add> throw new Error(`Unsupported encoding '${encoding}'`);
<add> }
<add>
<add> return encodedContent;
<add>};
<add>
<ide> const JS_TYPES = new Set(["javascript"]);
<ide> const JS_AND_ASSET_TYPES = new Set(["javascript", "asset"]);
<ide>
<ide> class AssetGenerator extends Generator {
<ide> );
<ide> }
<ide>
<del> let encodedContent;
<del> if (
<del> module.resourceResolveData &&
<del> module.resourceResolveData.encoding === encoding
<del> ) {
<del> encodedContent = module.resourceResolveData.encodedContent;
<del> } else {
<del> switch (encoding) {
<del> case "base64": {
<del> encodedContent = originalSource.buffer().toString("base64");
<del> break;
<del> }
<del> case false: {
<del> const content = originalSource.source();
<del>
<del> if (typeof content !== "string") {
<del> encodedContent = content.toString("utf-8");
<del> }
<del>
<del> encodedContent = encodeURIComponent(encodedContent).replace(
<del> /[!'()*]/g,
<del> character => "%" + character.codePointAt(0).toString(16)
<del> );
<del> break;
<del> }
<del> default:
<del> throw new Error(`Unsupported encoding '${encoding}'`);
<del> }
<del> }
<add> const encodedContent = encodeDataUri(encoding, originalSource);
<ide>
<ide> encodedSource = `data:${mimeType}${
<ide> encoding ? `;${encoding}` : ""
<ide><path>test/configCases/asset-modules/data-url/index.js
<ide> import dataSvg from "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53M
<ide> const urlSvg = new URL(
<ide> "data:image/svg;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MDAgNjAwIj48dGl0bGU+aWNvbi1zcXVhcmUtc21hbGw8L3RpdGxlPjxwYXRoIGZpbGw9IiNGRkYiIGQ9Ik0zMDAgLjFMNTY1IDE1MHYyOTkuOUwzMDAgNTk5LjggMzUgNDQ5LjlWMTUweiIvPjxwYXRoIGZpbGw9IiM4RUQ2RkIiIGQ9Ik01MTcuNyA0MzkuNUwzMDguOCA1NTcuOHYtOTJMNDM5IDM5NC4xbDc4LjcgNDUuNHptMTQuMy0xMi45VjE3OS40bC03Ni40IDQ0LjF2MTU5bDc2LjQgNDQuMXpNODEuNSA0MzkuNWwyMDguOSAxMTguMnYtOTJsLTEzMC4yLTcxLjYtNzguNyA0NS40em0tMTQuMy0xMi45VjE3OS40bDc2LjQgNDQuMXYxNTlsLTc2LjQgNDQuMXptOC45LTI2My4yTDI5MC40IDQyLjJ2ODlsLTEzNy4zIDc1LjUtMS4xLjYtNzUuOS00My45em00NDYuOSAwTDMwOC44IDQyLjJ2ODlMNDQ2IDIwNi44bDEuMS42IDc1LjktNDR6Ii8+PHBhdGggZmlsbD0iIzFDNzhDMCIgZD0iTTI5MC40IDQ0NC44TDE2MiAzNzQuMVYyMzQuMmwxMjguNCA3NC4xdjEzNi41em0xOC40IDBsMTI4LjQtNzAuNnYtMTQwbC0xMjguNCA3NC4xdjEzNi41ek0yOTkuNiAzMDN6bS0xMjktODVsMTI5LTcwLjlMNDI4LjUgMjE4bC0xMjguOSA3NC40LTEyOS03NC40eiIvPjwvc3ZnPgo="
<ide> );
<add>const helloWorld = new URL("data:text/plain,Hello", import.meta.url);
<ide>
<ide> it("should generate various data-url types", () => {
<ide> expect(png).toContain("data:image/png;base64,");
<ide> expect(svg).toContain("data:image/svg+xml;base64");
<ide> expect(jpg).toContain("data:image/jpeg;base64,");
<ide> expect(dataSvg).toContain("data:image/svg+xml;base64,");
<ide> expect(urlSvg.href).toContain("data:image/svg;base64,");
<add> expect(helloWorld.href).toContain("data:text/plain,Hello%2C%20World%21");
<ide> });
<ide><path>test/configCases/asset-modules/data-url/loader.js
<add>/** @type {import("../../../../").LoaderDefinition<{ f(): any }>} */
<add>module.exports = function (source) {
<add> return `${source}, World!`;
<add>};
<ide><path>test/configCases/asset-modules/data-url/webpack.config.js
<ide> module.exports = {
<ide> maxSize: Infinity
<ide> }
<ide> }
<add> },
<add> {
<add> mimetype: "text/plain",
<add> type: "asset/inline",
<add> loader: "./loader"
<ide> }
<ide> ]
<ide> }
<ide><path>test/configCases/asset-modules/input-data-url-encoding/index.js
<ide> it("should keep original encoding", () => {
<ide> import.meta.url
<ide> );
<ide> expect(url.href).toBe(
<del> "data:image/svg+xml;p=1;q=2,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke=\"%23343a40\" stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"
<add> "data:image/svg+xml;p=1;q=2,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2016%2016%27%3E%3Cpath%20fill%3D%27none%27%20stroke%3D%22%23343a40%22%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%20stroke-width%3D%272%27%20d%3D%27M2%205l6%206%206-6%27%2F%3E%3C%2Fsvg%3E"
<ide> );
<ide> });
<ide> | 5 |
Text | Text | fix syntax error in primaryapplicationrecord | b3c5db5455592f28a24a1053aa4b6a83c0fb8774 | <ide><path>guides/source/active_record_multiple_databases.md
<ide> should share a connection with.
<ide>
<ide> ```
<ide> class PrimaryApplicationRecord < ActiveRecord::Base
<del> self.primary_abstract_class
<add> self.primary_abstract_class = true
<ide> end
<ide> ```
<ide> | 1 |
Javascript | Javascript | fix alfabetic order | a136ee0fd3d9c023aa893e7b52f622d722611aaf | <ide><path>examples/files.js
<ide> var files = {
<ide> "webgl_materials_envmaps_exr",
<ide> "webgl_materials_envmaps_hdr",
<ide> "webgl_materials_envmaps_hdr_nodes",
<del> "webgl_materials_envmaps_pmrem_nodes",
<ide> "webgl_materials_envmaps_parallax",
<add> "webgl_materials_envmaps_pmrem_nodes",
<ide> "webgl_materials_grass",
<ide> "webgl_materials_lightmap",
<ide> "webgl_materials_matcap", | 1 |
Ruby | Ruby | fix variable names | b4efb2c258a3e1735f46a6874ccf67bdd40516a1 | <ide><path>Library/Homebrew/utils/notability.rb
<ide> def github_repo_data(user, repo)
<ide> @github_repo_data ||= {}
<ide> @github_repo_data["#{user}/#{repo}"] ||= GitHub.repository(user, repo)
<ide>
<del> @github_data["#{user}/#{repo}"]
<add> @github_repo_data["#{user}/#{repo}"]
<ide> rescue GitHub::HTTPNotFoundError
<ide> nil
<ide> end
<ide> def gitlab_repo_data(user, repo)
<ide> JSON.parse(out)
<ide> end
<ide>
<del> @gitlab_data["#{user}/#{repo}"]
<add> @gitlab_repo_data["#{user}/#{repo}"]
<ide> end
<ide>
<ide> def github(user, repo) | 1 |
PHP | PHP | add error highlighting to error message | c4dbab4681984f2f32f4d11e61afd7d069e2df9e | <ide><path>src/Shell/Task/ExtractTask.php
<ide> public function main() {
<ide> $this->_output = $response . DS;
<ide> break;
<ide> } else {
<del> $this->err('The directory path you supplied was not found. Please try again.');
<add> $this->err('');
<add> $this->err('<error>The directory path you supplied was ' .
<add> 'not found. Please try again.</error>');
<ide> }
<ide> $this->out();
<ide> } | 1 |
PHP | PHP | simplify repository check | f669a60c96aef6407ff934784d0d7fd0ea860cfe | <ide><path>src/ORM/Rule/LinkConstraint.php
<ide> public function __construct($association, string $requiredLinkStatus)
<ide> */
<ide> public function __invoke(EntityInterface $entity, array $options): bool
<ide> {
<del> if (
<del> !isset($options['repository']) ||
<del> !($options['repository'] instanceof Table)
<del> ) {
<add> $table = $options['repository'] ?? null;
<add> if (!($table instanceof Table)) {
<ide> throw new \InvalidArgumentException(
<ide> 'Argument 2 is expected to have a `repository` key that holds an instance of `\Cake\ORM\Table`.'
<ide> );
<ide> }
<ide>
<del> /** @var \Cake\ORM\Table $table */
<del> $table = $options['repository'];
<del>
<ide> $association = $this->_association;
<ide> if (!$association instanceof Association) {
<ide> $association = $table->getAssociation($association); | 1 |
Ruby | Ruby | add collectionproxy#build documentation | 2c62dd64dbaf1b3c758e7259fa8fefbafbbdcf81 | <ide><path>activerecord/lib/active_record/associations/collection_proxy.rb
<ide> class CollectionProxy < Relation
<ide> # another_person_without.pets.last # => nil
<ide> # another_person_without.pets.last(3) # => []
<ide>
<add> ##
<add> # :method: build
<add> #
<add> # :call-seq:
<add> # build(attributes = {}, options = {}, &block)
<add> #
<add> # Returns a new object of the collection type that has been instantiated
<add> # with +attributes+ and linked to this object, but have not yet been saved.
<add> # You can pass an array of attributes hashes, this will return an array
<add> # with the new objects.
<add> #
<add> # class Person
<add> # has_many :pets
<add> # end
<add> #
<add> # person.pets.build
<add> # # => #<Pet id: nil, name: nil, person_id: 1>
<add> #
<add> # person.pets.build(name: 'Fancy-Fancy')
<add> # # => #<Pet id: nil, name: "Fancy-Fancy", person_id: 1>
<add> #
<add> # person.pets.build([{name: 'Spook'}, {name: 'Choo-Choo'}, {name: 'Brain'}])
<add> # # => [
<add> # # #<Pet id: nil, name: "Spook", person_id: 1>,
<add> # # #<Pet id: nil, name: "Choo-Choo", person_id: 1>,
<add> # # #<Pet id: nil, name: "Brain", person_id: 1>
<add> # # ]
<add> #
<add> # person.pets.size # => 5 # size of the collection
<add> # person.pets.count # => 0 # count from database
<add>
<ide> ##
<ide> # :method: concat
<ide> # Add one or more records to the collection by setting their foreign keys | 1 |
Ruby | Ruby | improve regexp of `html_safe_translation_key?` | 30a08a898862a67502e58074ffaa8cc2338840f5 | <ide><path>actionview/lib/action_view/helpers/translation_helper.rb
<ide> def scope_key_by_partial(key)
<ide> end
<ide>
<ide> def html_safe_translation_key?(key)
<del> /(\b|_|\.)html$/.match?(key.to_s)
<add> /([_.]|\b)html\z/.match?(key.to_s)
<ide> end
<ide> end
<ide> end | 1 |
Javascript | Javascript | use node v4 syntax in common.js | 8a0b7ffac61cef1373d559b3f1d3151192949cbf | <ide><path>benchmark/common.js
<ide> Benchmark.prototype.report = function(rate, elapsed) {
<ide> });
<ide> };
<ide>
<del>exports.v8ForceOptimization = function(method, ...args) {
<add>exports.v8ForceOptimization = function(method) {
<ide> if (typeof method !== 'function')
<ide> return;
<add>
<ide> const v8 = require('v8');
<ide> v8.setFlagsFromString('--allow_natives_syntax');
<add>
<add> const args = Array.prototype.slice.call(arguments, 1);
<ide> method.apply(null, args);
<ide> eval('%OptimizeFunctionOnNextCall(method)');
<ide> method.apply(null, args); | 1 |
Python | Python | adjust parameters and explain background | 3f67151194e98f0f53d75252819cc0f08b2d9f6a | <ide><path>benchmarks/benchmarks/bench_lib.py
<ide>
<ide>
<ide> class Pad(Benchmark):
<del> """Benchmarks for `numpy.pad`."""
<add> """Benchmarks for `numpy.pad`.
<add>
<add> When benchmarking the pad function it is useful to cover scenarios where
<add> the ratio between the size of the input array and the output array differs
<add> significantly (original area vs. padded area). This allows to evaluate for
<add> which scenario a padding algorithm is optimized. Furthermore involving
<add> large range of array sizes ensures that the effects of CPU-bound caching is
<add> visible.
<add>
<add> The table below shows the sizes of the arrays involved in this benchmark:
<add>
<add> +-----------------+----------+-----------+-----------+-----------------+
<add> | shape | original | padded: 1 | padded: 8 | padded: (0, 32) |
<add> +=================+==========+===========+===========+=================+
<add> | (2 ** 22,) | 32 MiB | 32.0 MiB | 32.0 MiB | 32.0 MiB |
<add> +-----------------+----------+-----------+-----------+-----------------+
<add> | (1024, 1024) | 8 MiB | 8.03 MiB | 8.25 MiB | 8.51 MiB |
<add> +-----------------+----------+-----------+-----------+-----------------+
<add> | (256, 256, 1) | 256 KiB | 786 KiB | 5.08 MiB | 11.6 MiB |
<add> +-----------------+----------+-----------+-----------+-----------------+
<add> | (4, 4, 4, 4) | 2 KiB | 10.1 KiB | 1.22 MiB | 12.8 MiB |
<add> +-----------------+----------+-----------+-----------+-----------------+
<add> | (1, 1, 1, 1, 1) | 8 B | 1.90 MiB | 10.8 MiB | 299 MiB |
<add> +-----------------+----------+-----------+-----------+-----------------+
<add> """
<ide>
<ide> param_names = ["shape", "pad_width", "mode"]
<ide> params = [
<del> [(1000,),
<del> (10, 100),
<del> (10, 10, 10),
<del> # 50 * 512 * 512 * 64 bits = 100 MiB, corresponds to typical use cases
<del> # for large arrays which are out of cache
<del> (50, 512, 512)],
<del> [1,
<del> 3,
<del> (0, 5)],
<del> ["constant",
<del> "edge", "linear_ramp",
<del> # mean/median/minimum/maximum all use the same code path
<del> "mean",
<del> # reflect/symmetric share alot of the code path
<del> "reflect",
<del> "wrap"],
<add> # Shape of the input arrays
<add> [(2 ** 22,), (1024, 1024), (256, 128, 1),
<add> (4, 4, 4, 4), (1, 1, 1, 1, 1)],
<add> # Tested pad widths
<add> [1, 8, (0, 32)],
<add> # Tested modes: mean, median, minimum & maximum use the same code path
<add> # reflect & symmetric share a lot of their code path
<add> ["constant", "edge", "linear_ramp", "mean", "reflect", "wrap"],
<ide> ]
<ide>
<ide> def setup(self, shape, pad_width, mode): | 1 |
Python | Python | change alret global message | c26ad16dfec6dc7c014ae309de5733c2e7ed4e23 | <ide><path>glances/plugins/glances_alert.py
<ide> tree = [{'msg': 'No warning or critical alert detected',
<ide> 'thresholds': [],
<ide> 'thresholds_min': 0},
<del> {'msg': 'High CPU user mode by processes',
<add> {'msg': 'High CPU user mode',
<ide> 'thresholds': ['cpu_user'],
<ide> 'thresholds_min': 2},
<del> {'msg': 'High CPU kernel usage by processes',
<add> {'msg': 'High CPU kernel usage',
<ide> 'thresholds': ['cpu_system'],
<ide> 'thresholds_min': 2},
<del> {'msg': 'High CPU I/O waiting by processes',
<add> {'msg': 'High CPU I/O waiting',
<ide> 'thresholds': ['cpu_iowait'],
<ide> 'thresholds_min': 2},
<ide> {'msg': 'Large CPU stolen time. System running the hypervisor is too busy.',
<ide> 'thresholds': ['cpu_steal'],
<ide> 'thresholds_min': 2},
<del> {'msg': 'High CPU niced value by processes',
<add> {'msg': 'High CPU niced value',
<ide> 'thresholds': ['cpu_niced'],
<ide> 'thresholds_min': 2},
<ide> {'msg': 'System overloaded in the last 5 minutes', | 1 |
Ruby | Ruby | improve deleted message | 7e2b228460e87ad247b73859da2576d5f782315c | <ide><path>Library/Homebrew/diagnostic.rb
<ide> def check_deleted_formula
<ide> return if deleted_formulae.blank?
<ide>
<ide> <<~EOS
<del> Some installed formulae were deleted!
<add> Some installed kegs have no formulae!
<add> This means they were either deleted or installed with `brew diy`.
<ide> You should find replacements for the following formulae:
<ide> #{deleted_formulae.join("\n ")}
<ide> EOS | 1 |
Text | Text | add hints to http.request() options | 58166ae0df107cc0648e70cd8c757e0574b323c2 | <ide><path>doc/api/http.md
<ide> changes:
<ide> `hostname`. Valid values are `4` or `6`. When unspecified, both IP v4 and
<ide> v6 will be used.
<ide> * `headers` {Object} An object containing request headers.
<add> * `hints` {number} Optional [`dns.lookup()` hints][].
<ide> * `host` {string} A domain name or IP address of the server to issue the
<ide> request to. **Default:** `'localhost'`.
<ide> * `hostname` {string} Alias for `host`. To support [`url.parse()`][],
<ide> try {
<ide> [`agent.getName()`]: #http_agent_getname_options
<ide> [`destroy()`]: #http_agent_destroy
<ide> [`dns.lookup()`]: dns.md#dns_dns_lookup_hostname_options_callback
<add>[`dns.lookup()` hints]: dns.md#dns_supported_getaddrinfo_flags
<ide> [`getHeader(name)`]: #http_request_getheader_name
<ide> [`http.Agent`]: #http_class_http_agent
<ide> [`http.ClientRequest`]: #http_class_http_clientrequest | 1 |
Java | Java | expose websession on serverrequest | d724644588b77e807ce16b13ae3cd36208807055 | <ide><path>spring-web-reactive/src/main/java/org/springframework/web/reactive/function/server/DefaultServerRequest.java
<ide> /*
<del> * Copyright 2002-2016 the original author or authors.
<add> * Copyright 2002-2017 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License.
<ide> import org.springframework.web.reactive.function.BodyExtractor;
<ide> import org.springframework.web.reactive.function.BodyExtractors;
<ide> import org.springframework.web.server.ServerWebExchange;
<add>import org.springframework.web.server.WebSession;
<ide>
<ide> /**
<ide> * {@code ServerRequest} implementation based on a {@link ServerWebExchange}.
<ide> public Map<String, String> pathVariables() {
<ide> orElseGet(Collections::emptyMap);
<ide> }
<ide>
<add> @Override
<add> public Mono<WebSession> session() {
<add> return this.exchange.getSession();
<add> }
<add>
<ide> private ServerHttpRequest request() {
<ide> return this.exchange.getRequest();
<ide> }
<ide><path>spring-web-reactive/src/main/java/org/springframework/web/reactive/function/server/RequestPredicates.java
<ide> /*
<del> * Copyright 2002-2016 the original author or authors.
<add> * Copyright 2002-2017 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License.
<ide> import org.springframework.util.Assert;
<ide> import org.springframework.util.PathMatcher;
<ide> import org.springframework.web.reactive.function.BodyExtractor;
<add>import org.springframework.web.server.WebSession;
<ide>
<ide> /**
<ide> * Implementations of {@link RequestPredicate} that implement various useful request matching operations, such as
<ide> public String pathVariable(String name) {
<ide> public Map<String, String> pathVariables() {
<ide> return this.request.pathVariables();
<ide> }
<add>
<add> @Override
<add> public Mono<WebSession> session() {
<add> return this.request.session();
<add> }
<ide> }
<ide> }
<ide><path>spring-web-reactive/src/main/java/org/springframework/web/reactive/function/server/ServerRequest.java
<ide> /*
<del> * Copyright 2002-2016 the original author or authors.
<add> * Copyright 2002-2017 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License.
<ide> import org.springframework.http.codec.json.AbstractJackson2Codec;
<ide> import org.springframework.http.server.reactive.ServerHttpRequest;
<ide> import org.springframework.web.reactive.function.BodyExtractor;
<add>import org.springframework.web.server.WebSession;
<ide>
<ide> /**
<ide> * Represents a server-side HTTP request, as handled by a {@code HandlerFunction}.
<ide> default String pathVariable(String name) {
<ide> */
<ide> Map<String, String> pathVariables();
<ide>
<add> /**
<add> * Return the web session for the current request. Always guaranteed to
<add> * return an instance either matching to the session id requested by the
<add> * client, or with a new session id either because the client did not
<add> * specify one or because the underlying session had expired. Use of this
<add> * method does not automatically create a session.
<add> */
<add> Mono<WebSession> session();
<add>
<ide>
<ide> /**
<ide> * Represents the headers of the HTTP request.
<ide><path>spring-web-reactive/src/main/java/org/springframework/web/reactive/function/server/support/ServerRequestWrapper.java
<ide> /*
<del> * Copyright 2002-2016 the original author or authors.
<add> * Copyright 2002-2017 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License.
<ide> import org.springframework.web.reactive.function.BodyExtractor;
<ide> import org.springframework.web.reactive.function.server.HandlerFunction;
<ide> import org.springframework.web.reactive.function.server.ServerRequest;
<add>import org.springframework.web.server.WebSession;
<ide>
<ide> /**
<ide> * Implementation of the {@link ServerRequest} interface that can be subclassed to adapt the request to a
<ide> public Map<String, String> pathVariables() {
<ide> return this.request.pathVariables();
<ide> }
<ide>
<add> @Override
<add> public Mono<WebSession> session() {
<add> return this.request.session();
<add> }
<add>
<ide> /**
<ide> * Implementation of the {@link Headers} interface that can be subclassed to adapt the headers to a
<ide> * {@link HandlerFunction handler function}. All methods default to calling through to the wrapped headers.
<ide><path>spring-web-reactive/src/test/java/org/springframework/web/reactive/function/server/DefaultServerRequestTests.java
<ide> /*
<del> * Copyright 2002-2016 the original author or authors.
<add> * Copyright 2002-2017 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License.
<ide> import org.springframework.util.LinkedMultiValueMap;
<ide> import org.springframework.util.MultiValueMap;
<ide> import org.springframework.web.server.ServerWebExchange;
<add>import org.springframework.web.server.WebSession;
<ide>
<ide> import static org.junit.Assert.assertEquals;
<ide> import static org.mockito.Mockito.mock;
<ide> public void pathVariables() throws Exception {
<ide> assertEquals(pathVariables, defaultRequest.pathVariables());
<ide> }
<ide>
<add> @Test
<add> public void session() throws Exception {
<add> WebSession session = mock(WebSession.class);
<add> when(mockExchange.getSession()).thenReturn(Mono.just(session));
<add>
<add> assertEquals(session, defaultRequest.session().block());
<add> }
<add>
<ide> @Test
<ide> public void header() throws Exception {
<ide> HttpHeaders httpHeaders = new HttpHeaders();
<ide><path>spring-web-reactive/src/test/java/org/springframework/web/reactive/function/server/MockServerRequest.java
<ide> /*
<del> * Copyright 2002-2016 the original author or authors.
<add> * Copyright 2002-2017 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License.
<ide> import org.springframework.util.LinkedMultiValueMap;
<ide> import org.springframework.util.MultiValueMap;
<ide> import org.springframework.web.reactive.function.BodyExtractor;
<add>import org.springframework.web.server.WebSession;
<ide>
<ide> /**
<ide> * @author Arjen Poutsma
<ide> public class MockServerRequest implements ServerRequest {
<ide>
<ide> private final Map<String, String> pathVariables;
<ide>
<add> private final WebSession session;
<add>
<ide> private MockServerRequest(HttpMethod method, URI uri,
<ide> MockHeaders headers, Object body, Map<String, Object> attributes,
<ide> MultiValueMap<String, String> queryParams,
<del> Map<String, String> pathVariables) {
<add> Map<String, String> pathVariables, WebSession session) {
<ide> this.method = method;
<ide> this.uri = uri;
<ide> this.headers = headers;
<ide> this.body = body;
<ide> this.attributes = attributes;
<ide> this.queryParams = queryParams;
<ide> this.pathVariables = pathVariables;
<add> this.session = session;
<ide> }
<ide>
<ide> public static Builder builder() {
<ide> public Map<String, String> pathVariables() {
<ide> return Collections.unmodifiableMap(this.pathVariables);
<ide> }
<ide>
<add> @Override
<add> public Mono<WebSession> session() {
<add> return Mono.justOrEmpty(this.session);
<add> }
<add>
<ide> public interface Builder {
<ide>
<ide> Builder method(HttpMethod method);
<ide> public interface Builder {
<ide>
<ide> Builder pathVariables(Map<String, String> pathVariables);
<ide>
<add> Builder session(WebSession session);
<add>
<ide> MockServerRequest body(Object body);
<ide>
<ide> MockServerRequest build();
<ide> private static class BuilderImpl implements Builder {
<ide>
<ide> private Map<String, String> pathVariables = new LinkedHashMap<>();
<ide>
<add> private WebSession session;
<add>
<ide> @Override
<ide> public Builder method(HttpMethod method) {
<ide> Assert.notNull(method, "'method' must not be null");
<ide> public Builder pathVariables(Map<String, String> pathVariables) {
<ide> return this;
<ide> }
<ide>
<add> @Override
<add> public Builder session(WebSession session) {
<add> Assert.notNull(session, "'session' must not be null");
<add> this.session = session;
<add> return this;
<add> }
<add>
<ide> @Override
<ide> public MockServerRequest body(Object body) {
<ide> this.body = body;
<ide> return new MockServerRequest(this.method, this.uri, this.headers, this.body,
<del> this.attributes, this.queryParams, this.pathVariables);
<add> this.attributes, this.queryParams, this.pathVariables, this.session);
<ide> }
<ide>
<ide> @Override
<ide> public MockServerRequest build() {
<ide> return new MockServerRequest(this.method, this.uri, this.headers, null,
<del> this.attributes, this.queryParams, this.pathVariables);
<add> this.attributes, this.queryParams, this.pathVariables, this.session);
<ide> }
<ide>
<ide> } | 6 |
PHP | PHP | fix phpstan warning | a53de2a6bed0d861dfd20359a95071ab86ff1799 | <ide><path>src/Database/Statement/BufferedStatement.php
<ide> public function lastInsertId($table = null, $column = null)
<ide> * @param string $type The type to fetch.
<ide> * @return array|false
<ide> */
<del> public function fetch($type = parent::FETCH_TYPE_NUM)
<add> public function fetch($type = self::FETCH_TYPE_NUM)
<ide> {
<ide> if ($this->_allFetched) {
<ide> $row = false; | 1 |
Go | Go | forbid syscalls in tests, add 2 new unit tests | bc82940a575944e4686db203356a8a3fb3a75217 | <ide><path>graphdriver/devmapper/driver.go
<ide> type Driver struct {
<ide> home string
<ide> }
<ide>
<del>func Init(home string) (graphdriver.Driver, error) {
<add>var Init = func(home string) (graphdriver.Driver, error) {
<ide> deviceSet, err := NewDeviceSet(home, true)
<ide> if err != nil {
<ide> return nil, err
<ide> func (d *Driver) Cleanup() error {
<ide> return d.DeviceSet.Shutdown()
<ide> }
<ide>
<del>func (d *Driver) Create(id string, parent string) error {
<add>func (d *Driver) Create(id, parent string) error {
<ide> if err := d.DeviceSet.AddDevice(id, parent); err != nil {
<ide> return err
<ide> }
<ide><path>graphdriver/devmapper/driver_test.go
<ide> package devmapper
<ide>
<ide> import (
<ide> "fmt"
<add> "github.com/dotcloud/docker/graphdriver"
<ide> "io/ioutil"
<ide> "path"
<ide> "runtime"
<ide> "strings"
<add> "syscall"
<ide> "testing"
<ide> )
<ide>
<ide> func denyAllDevmapper() {
<ide> }
<ide> }
<ide>
<add>func denyAllSyscall() {
<add> sysMount = func(source, target, fstype string, flags uintptr, data string) (err error) {
<add> panic("sysMount: this method should not be called here")
<add> }
<add> sysUnmount = func(target string, flags int) (err error) {
<add> panic("sysUnmount: this method should not be called here")
<add> }
<add> sysCloseOnExec = func(fd int) {
<add> panic("sysCloseOnExec: this method should not be called here")
<add> }
<add> sysSyscall = func(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {
<add> panic("sysSyscall: this method should not be called here")
<add> }
<add> // Not a syscall, but forbidding it here anyway
<add> Mounted = func(mnt string) (bool, error) {
<add> panic("devmapper.Mounted: this method should not be called here")
<add> }
<add> // osOpenFile = os.OpenFile
<add> // osNewFile = os.NewFile
<add> // osCreate = os.Create
<add> // osStat = os.Stat
<add> // osIsNotExist = os.IsNotExist
<add> // osIsExist = os.IsExist
<add> // osMkdirAll = os.MkdirAll
<add> // osRemoveAll = os.RemoveAll
<add> // osRename = os.Rename
<add> // osReadlink = os.Readlink
<add>
<add> // execRun = func(name string, args ...string) error {
<add> // return exec.Command(name, args...).Run()
<add> // }
<add>}
<add>
<ide> func mkTestDirectory(t *testing.T) string {
<ide> dir, err := ioutil.TempDir("", "docker-test-devmapper-")
<ide> if err != nil {
<ide> func (r Set) Assert(t *testing.T, names ...string) {
<ide> }
<ide>
<ide> func TestInit(t *testing.T) {
<del> home := mkTestDirectory(t)
<add> var (
<add> calls = make(Set)
<add> devicesAttached = make(Set)
<add> taskMessages = make(Set)
<add> taskTypes = make(Set)
<add> home = mkTestDirectory(t)
<add> )
<ide> defer osRemoveAll(home)
<del> calls := make(Set)
<del> devicesAttached := make(Set)
<del> taskMessages := make(Set)
<del> taskTypes := make(Set)
<add>
<ide> func() {
<ide> denyAllDevmapper()
<ide> DmSetDevDir = func(dir string) int {
<ide> func TestInit(t *testing.T) {
<ide> }
<ide> }()
<ide> }()
<add> // Put all tests in a funciton to make sure the garbage collection will
<add> // occur.
<ide>
<add> // Call GC to cleanup runtime.Finalizers
<ide> runtime.GC()
<add>
<ide> calls.Assert(t,
<ide> "DmSetDevDir",
<ide> "DmLogWithErrnoInit",
<ide> func TestInit(t *testing.T) {
<ide> taskMessages.Assert(t, "create_thin 0", "set_transaction_id 0 1")
<ide> }
<ide>
<add>func fakeInit() func(home string) (graphdriver.Driver, error) {
<add> oldInit := Init
<add> Init = func(home string) (graphdriver.Driver, error) {
<add> return &Driver{
<add> home: home,
<add> }, nil
<add> }
<add> return oldInit
<add>}
<add>
<add>func restoreInit(init func(home string) (graphdriver.Driver, error)) {
<add> Init = init
<add>}
<add>
<add>func mockAllDevmapper(calls Set) {
<add> DmSetDevDir = func(dir string) int {
<add> calls["DmSetDevDir"] = true
<add> return 0
<add> }
<add> LogWithErrnoInit = func() {
<add> calls["DmLogWithErrnoInit"] = true
<add> }
<add> DmTaskCreate = func(taskType int) *CDmTask {
<add> calls["DmTaskCreate"] = true
<add> return &CDmTask{}
<add> }
<add> DmTaskSetName = func(task *CDmTask, name string) int {
<add> calls["DmTaskSetName"] = true
<add> return 1
<add> }
<add> DmTaskRun = func(task *CDmTask) int {
<add> calls["DmTaskRun"] = true
<add> return 1
<add> }
<add> DmTaskGetInfo = func(task *CDmTask, info *Info) int {
<add> calls["DmTaskGetInfo"] = true
<add> return 1
<add> }
<add> DmTaskSetSector = func(task *CDmTask, sector uint64) int {
<add> calls["DmTaskSetSector"] = true
<add> return 1
<add> }
<add> DmTaskSetMessage = func(task *CDmTask, message string) int {
<add> calls["DmTaskSetMessage"] = true
<add> return 1
<add> }
<add> DmAttachLoopDevice = func(filename string, fd *int) string {
<add> calls["DmAttachLoopDevice"] = true
<add> return "/dev/loop42"
<add> }
<add> DmTaskDestroy = func(task *CDmTask) {
<add> calls["DmTaskDestroy"] = true
<add> }
<add> DmGetBlockSize = func(fd uintptr) (int64, sysErrno) {
<add> calls["DmGetBlockSize"] = true
<add> return int64(4242 * 512), 0
<add> }
<add> DmTaskAddTarget = func(task *CDmTask, start, size uint64, ttype, params string) int {
<add> calls["DmTaskSetTarget"] = true
<add> return 1
<add> }
<add> DmTaskSetCookie = func(task *CDmTask, cookie *uint, flags uint16) int {
<add> calls["DmTaskSetCookie"] = true
<add> return 1
<add> }
<add> DmUdevWait = func(cookie uint) int {
<add> calls["DmUdevWait"] = true
<add> return 1
<add> }
<add> DmTaskSetAddNode = func(task *CDmTask, addNode AddNodeType) int {
<add> calls["DmTaskSetAddNode"] = true
<add> return 1
<add> }
<add> execRun = func(name string, args ...string) error {
<add> calls["execRun"] = true
<add> return nil
<add> }
<add>}
<add>
<ide> func TestDriverName(t *testing.T) {
<del> t.Skip("FIXME: not a unit test")
<del> d := newDriver(t)
<del> defer cleanup(d)
<add> denyAllDevmapper()
<add> defer denyAllDevmapper()
<ide>
<add> oldInit := fakeInit()
<add> defer restoreInit(oldInit)
<add>
<add> d := newDriver(t)
<ide> if d.String() != "devicemapper" {
<ide> t.Fatalf("Expected driver name to be devicemapper got %s", d.String())
<ide> }
<ide> }
<ide>
<ide> func TestDriverCreate(t *testing.T) {
<del> t.Skip("FIXME: not a unit test")
<del> d := newDriver(t)
<del> defer cleanup(d)
<add> denyAllDevmapper()
<add> denyAllSyscall()
<add> defer denyAllSyscall()
<add> defer denyAllDevmapper()
<ide>
<del> if err := d.Create("1", ""); err != nil {
<del> t.Fatal(err)
<add> calls := make(Set)
<add> mockAllDevmapper(calls)
<add>
<add> sysMount = func(source, target, fstype string, flags uintptr, data string) (err error) {
<add> calls["sysMount"] = true
<add> // FIXME: compare the exact source and target strings (inodes + devname)
<add> if expectedSource := "/dev/mapper/docker-"; !strings.HasPrefix(source, expectedSource) {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedSource, source)
<add> }
<add> if expectedTarget := "/tmp/docker-test-devmapper-"; !strings.HasPrefix(target, expectedTarget) {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedTarget, target)
<add> }
<add> if expectedFstype := "ext4"; fstype != expectedFstype {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedFstype, fstype)
<add> }
<add> if expectedFlags := uintptr(3236757504); flags != expectedFlags {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedFlags, flags)
<add> }
<add> return nil
<add> }
<add>
<add> Mounted = func(mnt string) (bool, error) {
<add> calls["Mounted"] = true
<add> if !strings.HasPrefix(mnt, "/tmp/docker-test-devmapper-") || !strings.HasSuffix(mnt, "/mnt/1") {
<add> t.Fatalf("Wrong mounted call\nExpected: Mounted(%v)\nReceived: Mounted(%v)\n", "/tmp/docker-test-devmapper-.../mnt/1", mnt)
<add> }
<add> return false, nil
<ide> }
<add>
<add> func() {
<add> d := newDriver(t)
<add>
<add> calls.Assert(t,
<add> "DmSetDevDir",
<add> "DmLogWithErrnoInit",
<add> "DmTaskSetName",
<add> "DmTaskRun",
<add> "DmTaskGetInfo",
<add> "DmAttachLoopDevice",
<add> "execRun",
<add> "DmTaskCreate",
<add> "DmGetBlockSize",
<add> "DmTaskSetTarget",
<add> "DmTaskSetCookie",
<add> "DmUdevWait",
<add> "DmTaskSetSector",
<add> "DmTaskSetMessage",
<add> "DmTaskSetAddNode",
<add> )
<add>
<add> if err := d.Create("1", ""); err != nil {
<add> t.Fatal(err)
<add> }
<add> calls.Assert(t,
<add> "DmTaskCreate",
<add> "DmTaskGetInfo",
<add> "sysMount",
<add> "Mounted",
<add> "DmTaskRun",
<add> "DmTaskSetTarget",
<add> "DmTaskSetSector",
<add> "DmTaskSetCookie",
<add> "DmUdevWait",
<add> "DmTaskSetName",
<add> "DmTaskSetMessage",
<add> "DmTaskSetAddNode",
<add> )
<add>
<add> }()
<add>
<add> runtime.GC()
<add>
<add> calls.Assert(t,
<add> "DmTaskDestroy",
<add> )
<ide> }
<ide>
<ide> func TestDriverRemove(t *testing.T) {
<del> t.Skip("FIXME: not a unit test")
<del> d := newDriver(t)
<del> defer cleanup(d)
<add> denyAllDevmapper()
<add> denyAllSyscall()
<add> defer denyAllSyscall()
<add> defer denyAllDevmapper()
<ide>
<del> if err := d.Create("1", ""); err != nil {
<del> t.Fatal(err)
<del> }
<add> calls := make(Set)
<add> mockAllDevmapper(calls)
<ide>
<del> if err := d.Remove("1"); err != nil {
<del> t.Fatal(err)
<add> sysMount = func(source, target, fstype string, flags uintptr, data string) (err error) {
<add> calls["sysMount"] = true
<add> // FIXME: compare the exact source and target strings (inodes + devname)
<add> if expectedSource := "/dev/mapper/docker-"; !strings.HasPrefix(source, expectedSource) {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedSource, source)
<add> }
<add> if expectedTarget := "/tmp/docker-test-devmapper-"; !strings.HasPrefix(target, expectedTarget) {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedTarget, target)
<add> }
<add> if expectedFstype := "ext4"; fstype != expectedFstype {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedFstype, fstype)
<add> }
<add> if expectedFlags := uintptr(3236757504); flags != expectedFlags {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedFlags, flags)
<add> }
<add> return nil
<add> }
<add> sysUnmount = func(target string, flags int) (err error) {
<add> calls["sysUnmount"] = true
<add> // FIXME: compare the exact source and target strings (inodes + devname)
<add> if expectedTarget := "/tmp/docker-test-devmapper-"; !strings.HasPrefix(target, expectedTarget) {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedTarget, target)
<add> }
<add> if expectedFlags := 0; flags != expectedFlags {
<add> t.Fatalf("Wrong syscall call\nExpected: Mount(%v)\nReceived: Mount(%v)\n", expectedFlags, flags)
<add> }
<add> return nil
<ide> }
<add> Mounted = func(mnt string) (bool, error) {
<add> calls["Mounted"] = true
<add> return false, nil
<add> }
<add>
<add> func() {
<add> d := newDriver(t)
<add>
<add> calls.Assert(t,
<add> "DmSetDevDir",
<add> "DmLogWithErrnoInit",
<add> "DmTaskSetName",
<add> "DmTaskRun",
<add> "DmTaskGetInfo",
<add> "DmAttachLoopDevice",
<add> "execRun",
<add> "DmTaskCreate",
<add> "DmGetBlockSize",
<add> "DmTaskSetTarget",
<add> "DmTaskSetCookie",
<add> "DmUdevWait",
<add> "DmTaskSetSector",
<add> "DmTaskSetMessage",
<add> "DmTaskSetAddNode",
<add> )
<add>
<add> if err := d.Create("1", ""); err != nil {
<add> t.Fatal(err)
<add> }
<add>
<add> calls.Assert(t,
<add> "DmTaskCreate",
<add> "DmTaskGetInfo",
<add> "sysMount",
<add> "Mounted",
<add> "DmTaskRun",
<add> "DmTaskSetTarget",
<add> "DmTaskSetSector",
<add> "DmTaskSetCookie",
<add> "DmUdevWait",
<add> "DmTaskSetName",
<add> "DmTaskSetMessage",
<add> "DmTaskSetAddNode",
<add> )
<add>
<add> Mounted = func(mnt string) (bool, error) {
<add> calls["Mounted"] = true
<add> return true, nil
<add> }
<add>
<add> if err := d.Remove("1"); err != nil {
<add> t.Fatal(err)
<add> }
<add>
<add> calls.Assert(t,
<add> "DmTaskRun",
<add> "DmTaskSetSector",
<add> "DmTaskSetName",
<add> "DmTaskSetMessage",
<add> "DmTaskCreate",
<add> "DmTaskGetInfo",
<add> "Mounted",
<add> "sysUnmount",
<add> )
<add> }()
<add> runtime.GC()
<add>
<add> calls.Assert(t,
<add> "DmTaskDestroy",
<add> )
<ide> }
<ide>
<ide> func TestCleanup(t *testing.T) {
<ide><path>graphdriver/devmapper/mount.go
<ide> import (
<ide> // FIXME: this is copy-pasted from the aufs driver.
<ide> // It should be moved into the core.
<ide>
<del>func Mounted(mountpoint string) (bool, error) {
<add>var Mounted = func(mountpoint string) (bool, error) {
<ide> mntpoint, err := osStat(mountpoint)
<ide> if err != nil {
<ide> if osIsNotExist(err) { | 3 |
Text | Text | add reformer to notebooks | 223084e42b57cd0d8e78de38e15a42d5d6b04391 | <ide><path>notebooks/README.md
<ide> Pull Request so it can be included under the Community notebooks.
<ide> | [How to generate text](https://github.com/huggingface/blog/blob/master/notebooks/02_how_to_generate.ipynb)| How to use different decoding methods for language generation with transformers | [](https://colab.research.google.com/github/huggingface/blog/blob/master/notebooks/02_how_to_generate.ipynb)|
<ide> | [How to export model to ONNX](https://github.com/huggingface/transformers/blob/master/notebooks/04-onnx-export.ipynb) | Highlight how to export and run inference workloads through ONNX |
<ide> | [How to use Benchmarks](https://github.com/huggingface/transformers/blob/master/notebooks/05-benchmark.ipynb) | How to benchmark models with transformers | [](https://colab.research.google.com/github/huggingface/transformers/blob/master/notebooks/05-benchmark.ipynb)|
<add>| [Reformer](https://github.com/huggingface/blog/blob/master/notebooks/03_reformer.ipynb) | How Reformer pushes the limits of language modeling | [](https://colab.research.google.com/github/patrickvonplaten/blog/blob/master/notebooks/03_reformer.ipynb)|
<ide>
<ide>
<ide> ## Community notebooks: | 1 |
Python | Python | eliminate test for longfloat | 937e4dbfa532e14e1da0dbc091b83ab0031913af | <ide><path>numpy/core/tests/test_regression.py
<ide> def check_arange_endian(self,level=rlevel):
<ide> x = N.arange(10,dtype='>f8')
<ide> assert_array_equal(ref,x)
<ide>
<del> def check_longfloat_repr(self,level=rlevel):
<del> """Ticket #112"""
<del> if N.longfloat(0).itemsize > 8:
<del> a = N.exp(N.array([1000],dtype=N.longfloat))
<del> assert(str(a)[1:9] == str(a[0])[:8])
<add># Longfloat support is not consistent enough across
<add># platforms for this test to be meaningful.
<add># def check_longfloat_repr(self,level=rlevel):
<add># """Ticket #112"""
<add># if N.longfloat(0).itemsize > 8:
<add># a = N.exp(N.array([1000],dtype=N.longfloat))
<add># assert(str(a)[1:9] == str(a[0])[:8])
<ide>
<ide> def check_argmax(self,level=rlevel):
<ide> """Ticket #119""" | 1 |
Python | Python | add usage example to np.char.center docstring | 60f1d14f155b5409113060287a089f44a10ba353 | <ide><path>numpy/core/defchararray.py
<ide> def center(a, width, fillchar=' '):
<ide> See Also
<ide> --------
<ide> str.center
<add>
<add> Notes
<add> -----
<add> This function is intended to work with arrays of strings. The
<add> fill character is not applied to numeric types.
<add>
<add> Examples
<add> --------
<add> >>> c = np.array(['a1b2','1b2a','b2a1','2a1b']); c
<add> array(['a1b2', '1b2a', 'b2a1', '2a1b'], dtype='<U4')
<add> >>> np.char.center(c, width=9)
<add> array([' a1b2 ', ' 1b2a ', ' b2a1 ', ' 2a1b '], dtype='<U9')
<add> >>> np.char.center(c, width=9, fillchar='*')
<add> array(['***a1b2**', '***1b2a**', '***b2a1**', '***2a1b**'], dtype='<U9')
<add> >>> np.char.center(c, width=1)
<add> array(['a', '1', 'b', '2'], dtype='<U1')
<ide>
<ide> """
<ide> a_arr = numpy.asarray(a) | 1 |
Python | Python | update volumes with type hints + some refactoring | 1cc817bcc961061941fddcd081ab2dc19da6b877 | <ide><path>maths/volume.py
<ide>
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Volume
<ide> """
<add>from typing import Union
<add>from math import pi, pow
<ide>
<del>from math import pi
<ide>
<add>def vol_cube(side_length: Union[int, float]) -> float:
<add> """
<add> Calculate the Volume of a Cube.
<ide>
<del>def vol_cube(side_length):
<del> """Calculate the Volume of a Cube."""
<del> # Cube side_length.
<del> return float(side_length ** 3)
<add> >>> vol_cube(1)
<add> 1.0
<add> >>> vol_cube(3)
<add> 27.0
<add> """
<add> return pow(side_length, 3)
<ide>
<ide>
<del>def vol_cuboid(width, height, length):
<del> """Calculate the Volume of a Cuboid."""
<del> # Multiply lengths together.
<add>def vol_cuboid(width: float, height: float, length: float) -> float:
<add> """
<add> Calculate the Volume of a Cuboid.
<add> :return multiple of width, length and height
<add>
<add> >>> vol_cuboid(1, 1, 1)
<add> 1.0
<add> >>> vol_cuboid(1, 2, 3)
<add> 6.0
<add> """
<ide> return float(width * height * length)
<ide>
<ide>
<del>def vol_cone(area_of_base, height):
<add>def vol_cone(area_of_base: float, height: float) -> float:
<ide> """
<ide> Calculate the Volume of a Cone.
<ide>
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Cone
<del> volume = (1/3) * area_of_base * height
<add> :return (1/3) * area_of_base * height
<add>
<add> >>> vol_cone(10, 3)
<add> 10.0
<add> >>> vol_cone(1, 1)
<add> 0.3333333333333333
<ide> """
<del> return (float(1) / 3) * area_of_base * height
<add> return area_of_base * height / 3.0
<ide>
<ide>
<del>def vol_right_circ_cone(radius, height):
<add>def vol_right_circ_cone(radius: float, height: float) -> float:
<ide> """
<ide> Calculate the Volume of a Right Circular Cone.
<ide>
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Cone
<del> volume = (1/3) * pi * radius^2 * height
<del> """
<add> :return (1/3) * pi * radius^2 * height
<ide>
<del> return (float(1) / 3) * pi * (radius ** 2) * height
<add> >>> vol_right_circ_cone(2, 3)
<add> 12.566370614359172
<add> """
<add> return pi * pow(radius, 2) * height / 3.0
<ide>
<ide>
<del>def vol_prism(area_of_base, height):
<add>def vol_prism(area_of_base: float, height: float) -> float:
<ide> """
<ide> Calculate the Volume of a Prism.
<del>
<del> V = Bh
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Prism_(geometry)
<add> :return V = Bh
<add>
<add> >>> vol_prism(10, 2)
<add> 20.0
<add> >>> vol_prism(11, 1)
<add> 11.0
<ide> """
<ide> return float(area_of_base * height)
<ide>
<ide>
<del>def vol_pyramid(area_of_base, height):
<add>def vol_pyramid(area_of_base: float, height: float) -> float:
<ide> """
<del> Calculate the Volume of a Prism.
<del>
<del> V = (1/3) * Bh
<add> Calculate the Volume of a Pyramid.
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Pyramid_(geometry)
<add> :return (1/3) * Bh
<add>
<add> >>> vol_pyramid(10, 3)
<add> 10.0
<add> >>> vol_pyramid(1.5, 3)
<add> 1.5
<ide> """
<del> return (float(1) / 3) * area_of_base * height
<add> return area_of_base * height / 3.0
<ide>
<ide>
<del>def vol_sphere(radius):
<add>def vol_sphere(radius: float) -> float:
<ide> """
<ide> Calculate the Volume of a Sphere.
<del>
<del> V = (4/3) * pi * r^3
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Sphere
<add> :return (4/3) * pi * r^3
<add>
<add> >>> vol_sphere(5)
<add> 523.5987755982989
<add> >>> vol_sphere(1)
<add> 4.1887902047863905
<ide> """
<del> return (float(4) / 3) * pi * radius ** 3
<add> return 4 / 3 * pi * pow(radius, 3)
<ide>
<ide>
<del>def vol_circular_cylinder(radius, height):
<add>def vol_circular_cylinder(radius: float, height: float) -> float:
<ide> """Calculate the Volume of a Circular Cylinder.
<del>
<ide> Wikipedia reference: https://en.wikipedia.org/wiki/Cylinder
<del> volume = pi * radius^2 * height
<add> :return pi * radius^2 * height
<add>
<add> >>> vol_circular_cylinder(1, 1)
<add> 3.141592653589793
<add> >>> vol_circular_cylinder(4, 3)
<add> 150.79644737231007
<ide> """
<del> return pi * radius ** 2 * height
<add> return pi * pow(radius, 2) * height
<ide>
<ide>
<ide> def main(): | 1 |
PHP | PHP | move the test case to its own method | 044cf60b69563ce60e73c60cac7f1361a5b346e4 | <ide><path>lib/Cake/Test/Case/View/Helper/FormHelperTest.php
<ide> public function testInputOverridingMagicSelectType() {
<ide> $this->assertTags($result, $expected);
<ide> }
<ide>
<add>/**
<add> * Test that magic input() selects are created for type=number
<add> *
<add> * @return void
<add> */
<add> public function testInputMagicSelectForTypeNumber() {
<add> $this->View->viewVars['balances'] = array(0 => 'nothing', 1 => 'some', 100 => 'a lot');
<add> $this->Form->request->data = array('ValidateUser' => array('balance' => 1));
<add> $result = $this->Form->input('ValidateUser.balance');
<add> $expected = array(
<add> 'div' => array('class' => 'input select'),
<add> 'label' => array('for' => 'ValidateUserBalance'),
<add> 'Balance',
<add> '/label',
<add> 'select' => array('name' => 'data[ValidateUser][balance]', 'id' => 'ValidateUserBalance'),
<add> array('option' => array('value' => '0')),
<add> 'nothing',
<add> '/option',
<add> array('option' => array('value' => '1', 'selected' => 'selected')),
<add> 'some',
<add> '/option',
<add> array('option' => array('value' => '100')),
<add> 'a lot',
<add> '/option',
<add> '/select',
<add> '/div'
<add> );
<add> $this->assertTags($result, $expected);
<add> }
<add>
<ide> /**
<ide> * Test that magic input() selects can easily be converted into radio types without error.
<ide> *
<ide> public function testInputWithMatchingFieldAndModelName() {
<ide> '/div'
<ide> );
<ide> $this->assertTags($result, $expected);
<del>
<del> $this->View->viewVars['balances'] = array(0 => 'nothing', 1 => 'some', 100 => 'a lot');
<del> $this->Form->request->data = array('ValidateUser' => array('balance' => 1));
<del> $result = $this->Form->input('ValidateUser.balance');
<del> $expected = array(
<del> 'div' => array('class' => 'input select'),
<del> 'label' => array('for' => 'ValidateUserBalance'),
<del> 'Balance',
<del> '/label',
<del> 'select' => array('name' => 'data[ValidateUser][balance]', 'id' => 'ValidateUserBalance'),
<del> array('option' => array('value' => '0')),
<del> 'nothing',
<del> '/option',
<del> array('option' => array('value' => '1', 'selected' => 'selected')),
<del> 'some',
<del> '/option',
<del> array('option' => array('value' => '100')),
<del> 'a lot',
<del> '/option',
<del> '/select',
<del> '/div'
<del> );
<del> $this->assertTags($result, $expected);
<ide> }
<ide>
<ide> /** | 1 |
PHP | PHP | avoid deprecation error on php 8.2 | 4a00af3b747bc3d87cb0f7bb97bdb781e9312ac0 | <ide><path>tests/TestCase/Validation/ValidationTest.php
<ide> public function testNotBlankIso88591AppEncoding(): void
<ide> $this->assertTrue(Validation::notBlank('fooo' . chr(243) . 'blabla'));
<ide> $this->assertTrue(Validation::notBlank('abçďĕʑʘπй'));
<ide> $this->assertTrue(Validation::notBlank('José'));
<del> $this->assertTrue(Validation::notBlank(utf8_decode('José')));
<add> $this->assertTrue(Validation::notBlank(mb_convert_encoding('José', 'ISO-8859-1', 'UTF-8')));
<ide> $this->assertFalse(Validation::notBlank("\t "));
<ide> $this->assertFalse(Validation::notBlank(''));
<ide> } | 1 |
Ruby | Ruby | recommend sha1 over md5 | 0b3327b862bc4404a7cf2dd1ff2549346e5068fb | <ide><path>Library/Homebrew/cmd/audit.rb
<ide> def audit_specs
<ide> when :sha256 then 64
<ide> end
<ide>
<add> problem "md5 is broken, deprecated: use sha1 instead" if cksum.hash_type == :md5
<add>
<ide> if cksum.empty?
<ide> problem "#{cksum.hash_type} is empty"
<ide> else | 1 |
Python | Python | make savetxt work with filenames | 13918161ec7dfe6f7ce1fb871cf978a564d80df3 | <ide><path>numpy/lib/npyio.py
<ide> else:
<ide> from cStringIO import StringIO as BytesIO
<ide>
<del>_file = open
<ide> _string_like = _is_string_like
<ide>
<ide> def seek_gzip_factory(f):
<ide> def load(file, mmap_mode=None):
<ide> import gzip
<ide>
<ide> if isinstance(file, basestring):
<del> fid = _file(file, "rb")
<add> fid = open(file, "rb")
<ide> elif isinstance(file, gzip.GzipFile):
<ide> fid = seek_gzip_factory(file)
<ide> else:
<ide> def savetxt(fname, X, fmt='%.18e', delimiter=' ', newline='\n'):
<ide> fh = gzip.open(fname, 'wb')
<ide> else:
<ide> if sys.version_info[0] >= 3:
<del> fh = file(fname, 'wb')
<add> fh = open(fname, 'wb')
<ide> else:
<del> fh = file(fname, 'w')
<add> fh = open(fname, 'w')
<ide> elif hasattr(fname, 'seek'):
<ide> fh = fname
<ide> else:
<ide><path>numpy/lib/tests/test_io.py
<ide> def test_format(self):
<ide> lines = c.readlines()
<ide> assert_equal(lines, asbytes_nested(['01 : 2.0\n', '03 : 4.0\n']))
<ide>
<add> def test_file_roundtrip(self):
<add> f, name = mkstemp()
<add> os.close(f)
<add> try:
<add> a = np.array([(1, 2), (3, 4)])
<add> np.savetxt(name, a)
<add> b = np.loadtxt(name)
<add> assert_array_equal(a, b)
<add> finally:
<add> os.unlink(name)
<add>
<ide>
<ide> class TestLoadTxt(TestCase):
<ide> def test_record(self): | 2 |
PHP | PHP | remove class loader from aliases | c58286aa250d6fe0e347ddb1800f96e62e24de08 | <ide><path>app/config/app.php
<ide> 'Auth' => 'Illuminate\Support\Facades\Auth',
<ide> 'Blade' => 'Illuminate\Support\Facades\Blade',
<ide> 'Cache' => 'Illuminate\Support\Facades\Cache',
<del> 'ClassLoader' => 'Illuminate\Support\ClassLoader',
<ide> 'Config' => 'Illuminate\Support\Facades\Config',
<ide> 'Controller' => 'Illuminate\Routing\Controller',
<ide> 'Cookie' => 'Illuminate\Support\Facades\Cookie',
<ide><path>bootstrap/autoload.php
<ide> require $compiled;
<ide> }
<ide>
<del>/*
<del>|--------------------------------------------------------------------------
<del>| Register The Laravel Auto Loader
<del>|--------------------------------------------------------------------------
<del>|
<del>| We register an auto-loader "behind" the Composer loader that can load
<del>| model classes on the fly, even if the autoload files have not been
<del>| regenerated for the application. We'll add it to the stack here.
<del>|
<del>*/
<del>
<del>Illuminate\Support\ClassLoader::register();
<del>
<ide> /*
<ide> |--------------------------------------------------------------------------
<ide> | Register The Workbench Loaders | 2 |
Go | Go | fix unused variables | 63a0e88e8a61b5c0d5f698d5baf37f568ee01d50 | <ide><path>integration-cli/docker_api_build_test.go
<ide> COPY file /file`
<ide> assert.Equal(c, http.StatusOK, res.StatusCode)
<ide>
<ide> out, err := request.ReadBody(body)
<add> require.NoError(c, err)
<ide>
<ide> ids := getImageIDsFromBuild(c, out)
<ide> return ids[len(ids)-1]
<ide> ADD file /file`
<ide> assert.Equal(c, http.StatusOK, res.StatusCode)
<ide>
<ide> out, err := request.ReadBody(body)
<add> require.NoError(c, err)
<ide>
<ide> ids := getImageIDsFromBuild(c, out)
<ide> return ids[len(ids)-1]
<ide><path>integration-cli/docker_api_swarm_test.go
<ide> func (s *DockerSwarmSuite) TestAPINetworkInspectWithScope(c *check.C) {
<ide> v := url.Values{}
<ide> v.Set("scope", "local")
<ide>
<del> status, body, err = d.SockRequest("GET", "/networks/"+name+"?"+v.Encode(), nil)
<add> status, _, err = d.SockRequest("GET", "/networks/"+name+"?"+v.Encode(), nil)
<ide> c.Assert(err, checker.IsNil, check.Commentf(string(out)))
<ide> c.Assert(status, checker.Equals, http.StatusNotFound, check.Commentf(string(out)))
<ide> }
<ide><path>integration-cli/docker_cli_daemon_test.go
<ide> func (s *DockerDaemonSuite) TestDaemonIPv6HostMode(c *check.C) {
<ide> c.Assert(err, checker.IsNil, check.Commentf("Could not run container: %s, %v", out, err))
<ide>
<ide> out, err = s.d.Cmd("exec", "hostcnt", "ip", "-6", "addr", "show", "docker0")
<del> out = strings.Trim(out, " \r\n'")
<del>
<del> c.Assert(out, checker.Contains, "2001:db8:2::1")
<add> c.Assert(err, checker.IsNil)
<add> c.Assert(strings.Trim(out, " \r\n'"), checker.Contains, "2001:db8:2::1")
<ide> }
<ide>
<ide> func (s *DockerDaemonSuite) TestDaemonLogLevelWrong(c *check.C) { | 3 |
Go | Go | unlock os threads | c3a6de9ec80d03aa0b0a7493d787eb706d2e2b11 | <ide><path>daemon/logger/journald/read.go
<ide> func waitUntilFlushedImpl(s *journald) error {
<ide> go func() {
<ide> defer close(flushed)
<ide> runtime.LockOSThread()
<add> defer runtime.UnlockOSThread()
<ide>
<ide> var (
<ide> j *sdjournal.Journal | 1 |
Javascript | Javascript | escape all chars above \u007f in locale files | 695c54c17b3299cd6170c45878b41cb46a577cd2 | <ide><path>i18n/spec/closureI18nExtractorSpec.js
<ide> describe("pluralExtractor", function() {
<ide> })
<ide> });
<ide>
<add>describe("serializeContent", function() {
<add> it("should not make any modifications to the content of the locale", function() {
<add> var serializedContent = closureI18nExtractor.serializeContent(newTestLocaleInfo());
<add> expect(eval("(" + serializedContent + ")")).toEqual(newTestLocaleInfo());
<add> });
<add> it("should only have ascii characters", function() {
<add> var serializedContent = closureI18nExtractor.serializeContent(newTestLocaleInfo());
<add> expect((/[^\u0001-\u007f]/).test(serializedContent)).toBe(false);
<add> });
<add>});
<add>
<ide><path>i18n/src/closureI18nExtractor.js
<ide> exports.pluralExtractor = pluralExtractor;
<ide> exports.outputLocale = outputLocale;
<ide> exports.correctedLocaleId = correctedLocaleId;
<ide> exports.findLocaleId = findLocaleId;
<add>exports.serializeContent = serializeContent;
<ide>
<ide> var goog = { provide: function() {},
<ide> require: function() {},
<ide> function canonicalizeForJsonStringify(unused_key, object) {
<ide> return result;
<ide> }
<ide>
<add>function serializeContent(localeObj) {
<add> return JSON.stringify(localeObj, canonicalizeForJsonStringify, ' ')
<add> .replace(new RegExp('[\\u007f-\\uffff]', 'g'), function(c) { return '\\u'+('0000'+c.charCodeAt(0).toString(16)).slice(-4); })
<add> .replace(/""/g, '');
<add>}
<add>
<ide> function outputLocale(localeInfo, localeID) {
<ide> var fallBackID = localeID.match(/[A-Za-z]+/)[0],
<ide> localeObj = localeInfo[localeID],
<ide> function outputLocale(localeInfo, localeID) {
<ide> id: localeObj.id
<ide> };
<ide>
<del> var content = JSON.stringify(localeInfo[localeID], canonicalizeForJsonStringify, ' ')
<del> .replace(/\¤/g, '\\u00A4')
<del> .replace(/""/g, '');
<add> var content = serializeContent(localeInfo[localeID]);
<ide>
<ide> return prefix + content + suffix;
<ide> }
<ide><path>src/ngLocale/angular-locale_af-na.js
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "R",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_af-za.js
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "R",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_af.js
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "R",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_am-et.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ጡዋት",
<del> "1": "ከሳዓት"
<add> "0": "\u1321\u12cb\u1275",
<add> "1": "\u12a8\u1233\u12d3\u1275"
<ide> },
<ide> "DAY": {
<del> "0": "እሑድ",
<del> "1": "ሰኞ",
<del> "2": "ማክሰኞ",
<del> "3": "ረቡዕ",
<del> "4": "ሐሙስ",
<del> "5": "ዓርብ",
<del> "6": "ቅዳሜ"
<add> "0": "\u12a5\u1211\u12f5",
<add> "1": "\u1230\u129e",
<add> "2": "\u121b\u12ad\u1230\u129e",
<add> "3": "\u1228\u1261\u12d5",
<add> "4": "\u1210\u1219\u1235",
<add> "5": "\u12d3\u122d\u1265",
<add> "6": "\u1245\u12f3\u121c"
<ide> },
<ide> "MONTH": {
<del> "0": "ጃንዩወሪ",
<del> "1": "ፌብሩወሪ",
<del> "2": "ማርች",
<del> "3": "ኤፕረል",
<del> "4": "ሜይ",
<del> "5": "ጁን",
<del> "6": "ጁላይ",
<del> "7": "ኦገስት",
<del> "8": "ሴፕቴምበር",
<del> "9": "ኦክተውበር",
<del> "10": "ኖቬምበር",
<del> "11": "ዲሴምበር"
<add> "0": "\u1303\u1295\u12e9\u12c8\u122a",
<add> "1": "\u134c\u1265\u1229\u12c8\u122a",
<add> "2": "\u121b\u122d\u127d",
<add> "3": "\u12a4\u1355\u1228\u120d",
<add> "4": "\u121c\u12ed",
<add> "5": "\u1301\u1295",
<add> "6": "\u1301\u120b\u12ed",
<add> "7": "\u12a6\u1308\u1235\u1275",
<add> "8": "\u1234\u1355\u1274\u121d\u1260\u122d",
<add> "9": "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
<add> "10": "\u1296\u126c\u121d\u1260\u122d",
<add> "11": "\u12f2\u1234\u121d\u1260\u122d"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "እሑድ",
<del> "1": "ሰኞ",
<del> "2": "ማክሰ",
<del> "3": "ረቡዕ",
<del> "4": "ሐሙስ",
<del> "5": "ዓርብ",
<del> "6": "ቅዳሜ"
<add> "0": "\u12a5\u1211\u12f5",
<add> "1": "\u1230\u129e",
<add> "2": "\u121b\u12ad\u1230",
<add> "3": "\u1228\u1261\u12d5",
<add> "4": "\u1210\u1219\u1235",
<add> "5": "\u12d3\u122d\u1265",
<add> "6": "\u1245\u12f3\u121c"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ጃንዩ",
<del> "1": "ፌብሩ",
<del> "2": "ማርች",
<del> "3": "ኤፕረ",
<del> "4": "ሜይ",
<del> "5": "ጁን",
<del> "6": "ጁላይ",
<del> "7": "ኦገስ",
<del> "8": "ሴፕቴ",
<del> "9": "ኦክተ",
<del> "10": "ኖቬም",
<del> "11": "ዲሴም"
<add> "0": "\u1303\u1295\u12e9",
<add> "1": "\u134c\u1265\u1229",
<add> "2": "\u121b\u122d\u127d",
<add> "3": "\u12a4\u1355\u1228",
<add> "4": "\u121c\u12ed",
<add> "5": "\u1301\u1295",
<add> "6": "\u1301\u120b\u12ed",
<add> "7": "\u12a6\u1308\u1235",
<add> "8": "\u1234\u1355\u1274",
<add> "9": "\u12a6\u12ad\u1270",
<add> "10": "\u1296\u126c\u121d",
<add> "11": "\u12f2\u1234\u121d"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_am.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ጡዋት",
<del> "1": "ከሳዓት"
<add> "0": "\u1321\u12cb\u1275",
<add> "1": "\u12a8\u1233\u12d3\u1275"
<ide> },
<ide> "DAY": {
<del> "0": "እሑድ",
<del> "1": "ሰኞ",
<del> "2": "ማክሰኞ",
<del> "3": "ረቡዕ",
<del> "4": "ሐሙስ",
<del> "5": "ዓርብ",
<del> "6": "ቅዳሜ"
<add> "0": "\u12a5\u1211\u12f5",
<add> "1": "\u1230\u129e",
<add> "2": "\u121b\u12ad\u1230\u129e",
<add> "3": "\u1228\u1261\u12d5",
<add> "4": "\u1210\u1219\u1235",
<add> "5": "\u12d3\u122d\u1265",
<add> "6": "\u1245\u12f3\u121c"
<ide> },
<ide> "MONTH": {
<del> "0": "ጃንዩወሪ",
<del> "1": "ፌብሩወሪ",
<del> "2": "ማርች",
<del> "3": "ኤፕረል",
<del> "4": "ሜይ",
<del> "5": "ጁን",
<del> "6": "ጁላይ",
<del> "7": "ኦገስት",
<del> "8": "ሴፕቴምበር",
<del> "9": "ኦክተውበር",
<del> "10": "ኖቬምበር",
<del> "11": "ዲሴምበር"
<add> "0": "\u1303\u1295\u12e9\u12c8\u122a",
<add> "1": "\u134c\u1265\u1229\u12c8\u122a",
<add> "2": "\u121b\u122d\u127d",
<add> "3": "\u12a4\u1355\u1228\u120d",
<add> "4": "\u121c\u12ed",
<add> "5": "\u1301\u1295",
<add> "6": "\u1301\u120b\u12ed",
<add> "7": "\u12a6\u1308\u1235\u1275",
<add> "8": "\u1234\u1355\u1274\u121d\u1260\u122d",
<add> "9": "\u12a6\u12ad\u1270\u12cd\u1260\u122d",
<add> "10": "\u1296\u126c\u121d\u1260\u122d",
<add> "11": "\u12f2\u1234\u121d\u1260\u122d"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "እሑድ",
<del> "1": "ሰኞ",
<del> "2": "ማክሰ",
<del> "3": "ረቡዕ",
<del> "4": "ሐሙስ",
<del> "5": "ዓርብ",
<del> "6": "ቅዳሜ"
<add> "0": "\u12a5\u1211\u12f5",
<add> "1": "\u1230\u129e",
<add> "2": "\u121b\u12ad\u1230",
<add> "3": "\u1228\u1261\u12d5",
<add> "4": "\u1210\u1219\u1235",
<add> "5": "\u12d3\u122d\u1265",
<add> "6": "\u1245\u12f3\u121c"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ጃንዩ",
<del> "1": "ፌብሩ",
<del> "2": "ማርች",
<del> "3": "ኤፕረ",
<del> "4": "ሜይ",
<del> "5": "ጁን",
<del> "6": "ጁላይ",
<del> "7": "ኦገስ",
<del> "8": "ሴፕቴ",
<del> "9": "ኦክተ",
<del> "10": "ኖቬም",
<del> "11": "ዲሴም"
<add> "0": "\u1303\u1295\u12e9",
<add> "1": "\u134c\u1265\u1229",
<add> "2": "\u121b\u122d\u127d",
<add> "3": "\u12a4\u1355\u1228",
<add> "4": "\u121c\u12ed",
<add> "5": "\u1301\u1295",
<add> "6": "\u1301\u120b\u12ed",
<add> "7": "\u12a6\u1308\u1235",
<add> "8": "\u1234\u1355\u1274",
<add> "9": "\u12a6\u12ad\u1270",
<add> "10": "\u1296\u126c\u121d",
<add> "11": "\u12f2\u1234\u121d"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-001.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-ae.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-bh.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-dz.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<ide> "medium": "yyyy/MM/dd h:mm:ss a",
<ide> "mediumDate": "yyyy/MM/dd",
<ide> "mediumTime": "h:mm:ss a",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-eg.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-iq.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-jo.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "كانون الثاني",
<del> "1": "شباط",
<del> "2": "آذار",
<del> "3": "نيسان",
<del> "4": "أيار",
<del> "5": "حزيران",
<del> "6": "تموز",
<del> "7": "آب",
<del> "8": "أيلول",
<del> "9": "تشرين الأول",
<del> "10": "تشرين الثاني",
<del> "11": "كانون الأول"
<add> "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "1": "\u0634\u0628\u0627\u0637",
<add> "2": "\u0622\u0630\u0627\u0631",
<add> "3": "\u0646\u064a\u0633\u0627\u0646",
<add> "4": "\u0623\u064a\u0627\u0631",
<add> "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
<add> "6": "\u062a\u0645\u0648\u0632",
<add> "7": "\u0622\u0628",
<add> "8": "\u0623\u064a\u0644\u0648\u0644",
<add> "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
<add> "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "كانون الثاني",
<del> "1": "شباط",
<del> "2": "آذار",
<del> "3": "نيسان",
<del> "4": "أيار",
<del> "5": "حزيران",
<del> "6": "تموز",
<del> "7": "آب",
<del> "8": "أيلول",
<del> "9": "تشرين الأول",
<del> "10": "تشرين الثاني",
<del> "11": "كانون الأول"
<add> "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "1": "\u0634\u0628\u0627\u0637",
<add> "2": "\u0622\u0630\u0627\u0631",
<add> "3": "\u0646\u064a\u0633\u0627\u0646",
<add> "4": "\u0623\u064a\u0627\u0631",
<add> "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
<add> "6": "\u062a\u0645\u0648\u0632",
<add> "7": "\u0622\u0628",
<add> "8": "\u0623\u064a\u0644\u0648\u0644",
<add> "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
<add> "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-kw.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-lb.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "كانون الثاني",
<del> "1": "شباط",
<del> "2": "آذار",
<del> "3": "نيسان",
<del> "4": "أيار",
<del> "5": "حزيران",
<del> "6": "تموز",
<del> "7": "آب",
<del> "8": "أيلول",
<del> "9": "تشرين الأول",
<del> "10": "تشرين الثاني",
<del> "11": "كانون الأول"
<add> "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "1": "\u0634\u0628\u0627\u0637",
<add> "2": "\u0622\u0630\u0627\u0631",
<add> "3": "\u0646\u064a\u0633\u0627\u0646",
<add> "4": "\u0623\u064a\u0627\u0631",
<add> "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
<add> "6": "\u062a\u0645\u0648\u0632",
<add> "7": "\u0622\u0628",
<add> "8": "\u0623\u064a\u0644\u0648\u0644",
<add> "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
<add> "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "كانون الثاني",
<del> "1": "شباط",
<del> "2": "آذار",
<del> "3": "نيسان",
<del> "4": "أيار",
<del> "5": "حزيران",
<del> "6": "تموز",
<del> "7": "آب",
<del> "8": "أيلول",
<del> "9": "تشرين الأول",
<del> "10": "تشرين الثاني",
<del> "11": "كانون الأول"
<add> "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "1": "\u0634\u0628\u0627\u0637",
<add> "2": "\u0622\u0630\u0627\u0631",
<add> "3": "\u0646\u064a\u0633\u0627\u0646",
<add> "4": "\u0623\u064a\u0627\u0631",
<add> "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
<add> "6": "\u062a\u0645\u0648\u0632",
<add> "7": "\u0622\u0628",
<add> "8": "\u0623\u064a\u0644\u0648\u0644",
<add> "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
<add> "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-ly.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-ma.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<ide> "medium": "yyyy/MM/dd h:mm:ss a",
<ide> "mediumDate": "yyyy/MM/dd",
<ide> "mediumTime": "h:mm:ss a",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-om.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-qa.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-sa.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-sd.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-sy.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "كانون الثاني",
<del> "1": "شباط",
<del> "2": "آذار",
<del> "3": "نيسان",
<del> "4": "أيار",
<del> "5": "حزيران",
<del> "6": "تموز",
<del> "7": "آب",
<del> "8": "أيلول",
<del> "9": "تشرين الأول",
<del> "10": "تشرين الثاني",
<del> "11": "كانون الأول"
<add> "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "1": "\u0634\u0628\u0627\u0637",
<add> "2": "\u0622\u0630\u0627\u0631",
<add> "3": "\u0646\u064a\u0633\u0627\u0646",
<add> "4": "\u0623\u064a\u0627\u0631",
<add> "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
<add> "6": "\u062a\u0645\u0648\u0632",
<add> "7": "\u0622\u0628",
<add> "8": "\u0623\u064a\u0644\u0648\u0644",
<add> "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
<add> "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "كانون الثاني",
<del> "1": "شباط",
<del> "2": "آذار",
<del> "3": "نيسان",
<del> "4": "أيار",
<del> "5": "حزيران",
<del> "6": "تموز",
<del> "7": "آب",
<del> "8": "أيلول",
<del> "9": "تشرين الأول",
<del> "10": "تشرين الثاني",
<del> "11": "كانون الأول"
<add> "0": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "1": "\u0634\u0628\u0627\u0637",
<add> "2": "\u0622\u0630\u0627\u0631",
<add> "3": "\u0646\u064a\u0633\u0627\u0646",
<add> "4": "\u0623\u064a\u0627\u0631",
<add> "5": "\u062d\u0632\u064a\u0631\u0627\u0646",
<add> "6": "\u062a\u0645\u0648\u0632",
<add> "7": "\u0622\u0628",
<add> "8": "\u0623\u064a\u0644\u0648\u0644",
<add> "9": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
<add> "10": "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
<add> "11": "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-tn.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<ide> "medium": "yyyy/MM/dd h:mm:ss a",
<ide> "mediumDate": "yyyy/MM/dd",
<ide> "mediumTime": "h:mm:ss a",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar-ye.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ar.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ص",
<del> "1": "م"
<add> "0": "\u0635",
<add> "1": "\u0645"
<ide> },
<ide> "DAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "MONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "الأحد",
<del> "1": "الاثنين",
<del> "2": "الثلاثاء",
<del> "3": "الأربعاء",
<del> "4": "الخميس",
<del> "5": "الجمعة",
<del> "6": "السبت"
<add> "0": "\u0627\u0644\u0623\u062d\u062f",
<add> "1": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
<add> "2": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
<add> "3": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
<add> "4": "\u0627\u0644\u062e\u0645\u064a\u0633",
<add> "5": "\u0627\u0644\u062c\u0645\u0639\u0629",
<add> "6": "\u0627\u0644\u0633\u0628\u062a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "يناير",
<del> "1": "فبراير",
<del> "2": "مارس",
<del> "3": "أبريل",
<del> "4": "مايو",
<del> "5": "يونيو",
<del> "6": "يوليو",
<del> "7": "أغسطس",
<del> "8": "سبتمبر",
<del> "9": "أكتوبر",
<del> "10": "نوفمبر",
<del> "11": "ديسمبر"
<add> "0": "\u064a\u0646\u0627\u064a\u0631",
<add> "1": "\u0641\u0628\u0631\u0627\u064a\u0631",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0623\u0628\u0631\u064a\u0644",
<add> "4": "\u0645\u0627\u064a\u0648",
<add> "5": "\u064a\u0648\u0646\u064a\u0648",
<add> "6": "\u064a\u0648\u0644\u064a\u0648",
<add> "7": "\u0623\u063a\u0633\u0637\u0633",
<add> "8": "\u0633\u0628\u062a\u0645\u0628\u0631",
<add> "9": "\u0623\u0643\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0641\u0645\u0628\u0631",
<add> "11": "\u062f\u064a\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE، d MMMM، y",
<del> "longDate": "d MMMM، y",
<del> "medium": "dd/MM/yyyy h:mm:ss a",
<del> "mediumDate": "dd/MM/yyyy",
<add> "fullDate": "EEEE\u060c d MMMM\u060c y",
<add> "longDate": "d MMMM\u060c y",
<add> "medium": "dd\u200f/MM\u200f/yyyy h:mm:ss a",
<add> "mediumDate": "dd\u200f/MM\u200f/yyyy",
<ide> "mediumTime": "h:mm:ss a",
<del> "short": "d/M/yyyy h:mm a",
<del> "shortDate": "d/M/yyyy",
<add> "short": "d\u200f/M\u200f/yyyy h:mm a",
<add> "shortDate": "d\u200f/M\u200f/yyyy",
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "CURRENCY_SYM": "\u00a3",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 0,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_bg-bg.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "пр. об.",
<del> "1": "сл. об."
<add> "0": "\u043f\u0440. \u043e\u0431.",
<add> "1": "\u0441\u043b. \u043e\u0431."
<ide> },
<ide> "DAY": {
<del> "0": "неделя",
<del> "1": "понеделник",
<del> "2": "вторник",
<del> "3": "сряда",
<del> "4": "четвъртък",
<del> "5": "петък",
<del> "6": "събота"
<add> "0": "\u043d\u0435\u0434\u0435\u043b\u044f",
<add> "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
<add> "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
<add> "3": "\u0441\u0440\u044f\u0434\u0430",
<add> "4": "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
<add> "5": "\u043f\u0435\u0442\u044a\u043a",
<add> "6": "\u0441\u044a\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "януари",
<del> "1": "февруари",
<del> "2": "март",
<del> "3": "април",
<del> "4": "май",
<del> "5": "юни",
<del> "6": "юли",
<del> "7": "август",
<del> "8": "септември",
<del> "9": "октомври",
<del> "10": "ноември",
<del> "11": "декември"
<add> "0": "\u044f\u043d\u0443\u0430\u0440\u0438",
<add> "1": "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
<add> "2": "\u043c\u0430\u0440\u0442",
<add> "3": "\u0430\u043f\u0440\u0438\u043b",
<add> "4": "\u043c\u0430\u0439",
<add> "5": "\u044e\u043d\u0438",
<add> "6": "\u044e\u043b\u0438",
<add> "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
<add> "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
<add> "9": "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
<add> "10": "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
<add> "11": "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "нд",
<del> "1": "пн",
<del> "2": "вт",
<del> "3": "ср",
<del> "4": "чт",
<del> "5": "пт",
<del> "6": "сб"
<add> "0": "\u043d\u0434",
<add> "1": "\u043f\u043d",
<add> "2": "\u0432\u0442",
<add> "3": "\u0441\u0440",
<add> "4": "\u0447\u0442",
<add> "5": "\u043f\u0442",
<add> "6": "\u0441\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ян.",
<del> "1": "февр.",
<del> "2": "март",
<del> "3": "апр.",
<del> "4": "май",
<del> "5": "юни",
<del> "6": "юли",
<del> "7": "авг.",
<del> "8": "септ.",
<del> "9": "окт.",
<del> "10": "ноем.",
<del> "11": "дек."
<add> "0": "\u044f\u043d.",
<add> "1": "\u0444\u0435\u0432\u0440.",
<add> "2": "\u043c\u0430\u0440\u0442",
<add> "3": "\u0430\u043f\u0440.",
<add> "4": "\u043c\u0430\u0439",
<add> "5": "\u044e\u043d\u0438",
<add> "6": "\u044e\u043b\u0438",
<add> "7": "\u0430\u0432\u0433.",
<add> "8": "\u0441\u0435\u043f\u0442.",
<add> "9": "\u043e\u043a\u0442.",
<add> "10": "\u043d\u043e\u0435\u043c.",
<add> "11": "\u0434\u0435\u043a."
<ide> },
<ide> "fullDate": "dd MMMM y, EEEE",
<ide> "longDate": "dd MMMM y",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "lev",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_bg.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "пр. об.",
<del> "1": "сл. об."
<add> "0": "\u043f\u0440. \u043e\u0431.",
<add> "1": "\u0441\u043b. \u043e\u0431."
<ide> },
<ide> "DAY": {
<del> "0": "неделя",
<del> "1": "понеделник",
<del> "2": "вторник",
<del> "3": "сряда",
<del> "4": "четвъртък",
<del> "5": "петък",
<del> "6": "събота"
<add> "0": "\u043d\u0435\u0434\u0435\u043b\u044f",
<add> "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
<add> "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
<add> "3": "\u0441\u0440\u044f\u0434\u0430",
<add> "4": "\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
<add> "5": "\u043f\u0435\u0442\u044a\u043a",
<add> "6": "\u0441\u044a\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "януари",
<del> "1": "февруари",
<del> "2": "март",
<del> "3": "април",
<del> "4": "май",
<del> "5": "юни",
<del> "6": "юли",
<del> "7": "август",
<del> "8": "септември",
<del> "9": "октомври",
<del> "10": "ноември",
<del> "11": "декември"
<add> "0": "\u044f\u043d\u0443\u0430\u0440\u0438",
<add> "1": "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
<add> "2": "\u043c\u0430\u0440\u0442",
<add> "3": "\u0430\u043f\u0440\u0438\u043b",
<add> "4": "\u043c\u0430\u0439",
<add> "5": "\u044e\u043d\u0438",
<add> "6": "\u044e\u043b\u0438",
<add> "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
<add> "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
<add> "9": "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
<add> "10": "\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
<add> "11": "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "нд",
<del> "1": "пн",
<del> "2": "вт",
<del> "3": "ср",
<del> "4": "чт",
<del> "5": "пт",
<del> "6": "сб"
<add> "0": "\u043d\u0434",
<add> "1": "\u043f\u043d",
<add> "2": "\u0432\u0442",
<add> "3": "\u0441\u0440",
<add> "4": "\u0447\u0442",
<add> "5": "\u043f\u0442",
<add> "6": "\u0441\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ян.",
<del> "1": "февр.",
<del> "2": "март",
<del> "3": "апр.",
<del> "4": "май",
<del> "5": "юни",
<del> "6": "юли",
<del> "7": "авг.",
<del> "8": "септ.",
<del> "9": "окт.",
<del> "10": "ноем.",
<del> "11": "дек."
<add> "0": "\u044f\u043d.",
<add> "1": "\u0444\u0435\u0432\u0440.",
<add> "2": "\u043c\u0430\u0440\u0442",
<add> "3": "\u0430\u043f\u0440.",
<add> "4": "\u043c\u0430\u0439",
<add> "5": "\u044e\u043d\u0438",
<add> "6": "\u044e\u043b\u0438",
<add> "7": "\u0430\u0432\u0433.",
<add> "8": "\u0441\u0435\u043f\u0442.",
<add> "9": "\u043e\u043a\u0442.",
<add> "10": "\u043d\u043e\u0435\u043c.",
<add> "11": "\u0434\u0435\u043a."
<ide> },
<ide> "fullDate": "dd MMMM y, EEEE",
<ide> "longDate": "dd MMMM y",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "lev",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_bn-bd.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "রবিবার",
<del> "1": "সোমবার",
<del> "2": "মঙ্গলবার",
<del> "3": "বুধবার",
<del> "4": "বৃহষ্পতিবার",
<del> "5": "শুক্রবার",
<del> "6": "শনিবার"
<add> "0": "\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
<add> "1": "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
<add> "2": "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
<add> "3": "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
<add> "4": "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
<add> "5": "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
<add> "6": "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
<ide> },
<ide> "MONTH": {
<del> "0": "জানুয়ারী",
<del> "1": "ফেব্রুয়ারী",
<del> "2": "মার্চ",
<del> "3": "এপ্রিল",
<del> "4": "মে",
<del> "5": "জুন",
<del> "6": "জুলাই",
<del> "7": "আগস্ট",
<del> "8": "সেপ্টেম্বর",
<del> "9": "অক্টোবর",
<del> "10": "নভেম্বর",
<del> "11": "ডিসেম্বর"
<add> "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "2": "\u09ae\u09be\u09b0\u09cd\u099a",
<add> "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
<add> "4": "\u09ae\u09c7",
<add> "5": "\u099c\u09c1\u09a8",
<add> "6": "\u099c\u09c1\u09b2\u09be\u0987",
<add> "7": "\u0986\u0997\u09b8\u09cd\u099f",
<add> "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
<add> "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "রবি",
<del> "1": "সোম",
<del> "2": "মঙ্গল",
<del> "3": "বুধ",
<del> "4": "বৃহস্পতি",
<del> "5": "শুক্র",
<del> "6": "শনি"
<add> "0": "\u09b0\u09ac\u09bf",
<add> "1": "\u09b8\u09cb\u09ae",
<add> "2": "\u09ae\u0999\u09cd\u0997\u09b2",
<add> "3": "\u09ac\u09c1\u09a7",
<add> "4": "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
<add> "5": "\u09b6\u09c1\u0995\u09cd\u09b0",
<add> "6": "\u09b6\u09a8\u09bf"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "জানুয়ারী",
<del> "1": "ফেব্রুয়ারী",
<del> "2": "মার্চ",
<del> "3": "এপ্রিল",
<del> "4": "মে",
<del> "5": "জুন",
<del> "6": "জুলাই",
<del> "7": "আগস্ট",
<del> "8": "সেপ্টেম্বর",
<del> "9": "অক্টোবর",
<del> "10": "নভেম্বর",
<del> "11": "ডিসেম্বর"
<add> "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "2": "\u09ae\u09be\u09b0\u09cd\u099a",
<add> "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
<add> "4": "\u09ae\u09c7",
<add> "5": "\u099c\u09c1\u09a8",
<add> "6": "\u099c\u09c1\u09b2\u09be\u0987",
<add> "7": "\u0986\u0997\u09b8\u09cd\u099f",
<add> "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
<add> "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "৳",
<add> "CURRENCY_SYM": "\u09f3",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": "\u00A4)",
<add> "negSuf": "\u00a4)",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_bn-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "রবিবার",
<del> "1": "সোমবার",
<del> "2": "মঙ্গলবার",
<del> "3": "বুধবার",
<del> "4": "বৃহষ্পতিবার",
<del> "5": "শুক্রবার",
<del> "6": "শনিবার"
<add> "0": "\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
<add> "1": "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
<add> "2": "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
<add> "3": "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
<add> "4": "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
<add> "5": "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
<add> "6": "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
<ide> },
<ide> "MONTH": {
<del> "0": "জানুয়ারী",
<del> "1": "ফেব্রুয়ারী",
<del> "2": "মার্চ",
<del> "3": "এপ্রিল",
<del> "4": "মে",
<del> "5": "জুন",
<del> "6": "জুলাই",
<del> "7": "আগস্ট",
<del> "8": "সেপ্টেম্বর",
<del> "9": "অক্টোবর",
<del> "10": "নভেম্বর",
<del> "11": "ডিসেম্বর"
<add> "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "2": "\u09ae\u09be\u09b0\u09cd\u099a",
<add> "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
<add> "4": "\u09ae\u09c7",
<add> "5": "\u099c\u09c1\u09a8",
<add> "6": "\u099c\u09c1\u09b2\u09be\u0987",
<add> "7": "\u0986\u0997\u09b8\u09cd\u099f",
<add> "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
<add> "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "রবি",
<del> "1": "সোম",
<del> "2": "মঙ্গল",
<del> "3": "বুধ",
<del> "4": "বৃহস্পতি",
<del> "5": "শুক্র",
<del> "6": "শনি"
<add> "0": "\u09b0\u09ac\u09bf",
<add> "1": "\u09b8\u09cb\u09ae",
<add> "2": "\u09ae\u0999\u09cd\u0997\u09b2",
<add> "3": "\u09ac\u09c1\u09a7",
<add> "4": "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
<add> "5": "\u09b6\u09c1\u0995\u09cd\u09b0",
<add> "6": "\u09b6\u09a8\u09bf"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "জানুয়ারী",
<del> "1": "ফেব্রুয়ারী",
<del> "2": "মার্চ",
<del> "3": "এপ্রিল",
<del> "4": "মে",
<del> "5": "জুন",
<del> "6": "জুলাই",
<del> "7": "আগস্ট",
<del> "8": "সেপ্টেম্বর",
<del> "9": "অক্টোবর",
<del> "10": "নভেম্বর",
<del> "11": "ডিসেম্বর"
<add> "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "2": "\u09ae\u09be\u09b0\u09cd\u099a",
<add> "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
<add> "4": "\u09ae\u09c7",
<add> "5": "\u099c\u09c1\u09a8",
<add> "6": "\u099c\u09c1\u09b2\u09be\u0987",
<add> "7": "\u0986\u0997\u09b8\u09cd\u099f",
<add> "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
<add> "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "৳",
<add> "CURRENCY_SYM": "\u09f3",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": "\u00A4)",
<add> "negSuf": "\u00a4)",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_bn.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "রবিবার",
<del> "1": "সোমবার",
<del> "2": "মঙ্গলবার",
<del> "3": "বুধবার",
<del> "4": "বৃহষ্পতিবার",
<del> "5": "শুক্রবার",
<del> "6": "শনিবার"
<add> "0": "\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
<add> "1": "\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
<add> "2": "\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
<add> "3": "\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
<add> "4": "\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
<add> "5": "\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
<add> "6": "\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"
<ide> },
<ide> "MONTH": {
<del> "0": "জানুয়ারী",
<del> "1": "ফেব্রুয়ারী",
<del> "2": "মার্চ",
<del> "3": "এপ্রিল",
<del> "4": "মে",
<del> "5": "জুন",
<del> "6": "জুলাই",
<del> "7": "আগস্ট",
<del> "8": "সেপ্টেম্বর",
<del> "9": "অক্টোবর",
<del> "10": "নভেম্বর",
<del> "11": "ডিসেম্বর"
<add> "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "2": "\u09ae\u09be\u09b0\u09cd\u099a",
<add> "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
<add> "4": "\u09ae\u09c7",
<add> "5": "\u099c\u09c1\u09a8",
<add> "6": "\u099c\u09c1\u09b2\u09be\u0987",
<add> "7": "\u0986\u0997\u09b8\u09cd\u099f",
<add> "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
<add> "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "রবি",
<del> "1": "সোম",
<del> "2": "মঙ্গল",
<del> "3": "বুধ",
<del> "4": "বৃহস্পতি",
<del> "5": "শুক্র",
<del> "6": "শনি"
<add> "0": "\u09b0\u09ac\u09bf",
<add> "1": "\u09b8\u09cb\u09ae",
<add> "2": "\u09ae\u0999\u09cd\u0997\u09b2",
<add> "3": "\u09ac\u09c1\u09a7",
<add> "4": "\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
<add> "5": "\u09b6\u09c1\u0995\u09cd\u09b0",
<add> "6": "\u09b6\u09a8\u09bf"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "জানুয়ারী",
<del> "1": "ফেব্রুয়ারী",
<del> "2": "মার্চ",
<del> "3": "এপ্রিল",
<del> "4": "মে",
<del> "5": "জুন",
<del> "6": "জুলাই",
<del> "7": "আগস্ট",
<del> "8": "সেপ্টেম্বর",
<del> "9": "অক্টোবর",
<del> "10": "নভেম্বর",
<del> "11": "ডিসেম্বর"
<add> "0": "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "1": "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
<add> "2": "\u09ae\u09be\u09b0\u09cd\u099a",
<add> "3": "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
<add> "4": "\u09ae\u09c7",
<add> "5": "\u099c\u09c1\u09a8",
<add> "6": "\u099c\u09c1\u09b2\u09be\u0987",
<add> "7": "\u0986\u0997\u09b8\u09cd\u099f",
<add> "8": "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "9": "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
<add> "10": "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
<add> "11": "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "৳",
<add> "CURRENCY_SYM": "\u09f3",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": "\u00A4)",
<add> "negSuf": "\u00a4)",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ca-ad.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "de gener",
<ide> "1": "de febrer",
<del> "2": "de març",
<del> "3": "d’abril",
<add> "2": "de mar\u00e7",
<add> "3": "d\u2019abril",
<ide> "4": "de maig",
<ide> "5": "de juny",
<ide> "6": "de juliol",
<del> "7": "d’agost",
<add> "7": "d\u2019agost",
<ide> "8": "de setembre",
<del> "9": "d’octubre",
<add> "9": "d\u2019octubre",
<ide> "10": "de novembre",
<ide> "11": "de desembre"
<ide> },
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "de gen.",
<ide> "1": "de febr.",
<del> "2": "de març",
<del> "3": "d’abr.",
<add> "2": "de mar\u00e7",
<add> "3": "d\u2019abr.",
<ide> "4": "de maig",
<ide> "5": "de juny",
<ide> "6": "de jul.",
<del> "7": "d’ag.",
<add> "7": "d\u2019ag.",
<ide> "8": "de set.",
<del> "9": "d’oct.",
<add> "9": "d\u2019oct.",
<ide> "10": "de nov.",
<ide> "11": "de des."
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ca-es.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "de gener",
<ide> "1": "de febrer",
<del> "2": "de març",
<del> "3": "d’abril",
<add> "2": "de mar\u00e7",
<add> "3": "d\u2019abril",
<ide> "4": "de maig",
<ide> "5": "de juny",
<ide> "6": "de juliol",
<del> "7": "d’agost",
<add> "7": "d\u2019agost",
<ide> "8": "de setembre",
<del> "9": "d’octubre",
<add> "9": "d\u2019octubre",
<ide> "10": "de novembre",
<ide> "11": "de desembre"
<ide> },
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "de gen.",
<ide> "1": "de febr.",
<del> "2": "de març",
<del> "3": "d’abr.",
<add> "2": "de mar\u00e7",
<add> "3": "d\u2019abr.",
<ide> "4": "de maig",
<ide> "5": "de juny",
<ide> "6": "de jul.",
<del> "7": "d’ag.",
<add> "7": "d\u2019ag.",
<ide> "8": "de set.",
<del> "9": "d’oct.",
<add> "9": "d\u2019oct.",
<ide> "10": "de nov.",
<ide> "11": "de des."
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ca.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "de gener",
<ide> "1": "de febrer",
<del> "2": "de març",
<del> "3": "d’abril",
<add> "2": "de mar\u00e7",
<add> "3": "d\u2019abril",
<ide> "4": "de maig",
<ide> "5": "de juny",
<ide> "6": "de juliol",
<del> "7": "d’agost",
<add> "7": "d\u2019agost",
<ide> "8": "de setembre",
<del> "9": "d’octubre",
<add> "9": "d\u2019octubre",
<ide> "10": "de novembre",
<ide> "11": "de desembre"
<ide> },
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "de gen.",
<ide> "1": "de febr.",
<del> "2": "de març",
<del> "3": "d’abr.",
<add> "2": "de mar\u00e7",
<add> "3": "d\u2019abr.",
<ide> "4": "de maig",
<ide> "5": "de juny",
<ide> "6": "de jul.",
<del> "7": "d’ag.",
<add> "7": "d\u2019ag.",
<ide> "8": "de set.",
<del> "9": "d’oct.",
<add> "9": "d\u2019oct.",
<ide> "10": "de nov.",
<ide> "11": "de des."
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_cs-cz.js
<ide> $provide.value("$locale", {
<ide> "1": "odp."
<ide> },
<ide> "DAY": {
<del> "0": "neděle",
<del> "1": "pondělí",
<del> "2": "úterý",
<del> "3": "středa",
<del> "4": "čtvrtek",
<del> "5": "pátek",
<add> "0": "ned\u011ble",
<add> "1": "pond\u011bl\u00ed",
<add> "2": "\u00fater\u00fd",
<add> "3": "st\u0159eda",
<add> "4": "\u010dtvrtek",
<add> "5": "p\u00e1tek",
<ide> "6": "sobota"
<ide> },
<ide> "MONTH": {
<ide> "0": "ledna",
<del> "1": "února",
<del> "2": "března",
<add> "1": "\u00fanora",
<add> "2": "b\u0159ezna",
<ide> "3": "dubna",
<del> "4": "května",
<del> "5": "června",
<del> "6": "července",
<add> "4": "kv\u011btna",
<add> "5": "\u010dervna",
<add> "6": "\u010dervence",
<ide> "7": "srpna",
<del> "8": "září",
<del> "9": "října",
<add> "8": "z\u00e1\u0159\u00ed",
<add> "9": "\u0159\u00edjna",
<ide> "10": "listopadu",
<ide> "11": "prosince"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "ne",
<ide> "1": "po",
<del> "2": "út",
<add> "2": "\u00fat",
<ide> "3": "st",
<del> "4": "čt",
<del> "5": "pá",
<add> "4": "\u010dt",
<add> "5": "p\u00e1",
<ide> "6": "so"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Led",
<del> "1": "Úno",
<del> "2": "Bře",
<add> "1": "\u00dano",
<add> "2": "B\u0159e",
<ide> "3": "Dub",
<del> "4": "Kvě",
<del> "5": "Čer",
<del> "6": "Čvc",
<add> "4": "Kv\u011b",
<add> "5": "\u010cer",
<add> "6": "\u010cvc",
<ide> "7": "Srp",
<del> "8": "Zář",
<del> "9": "Říj",
<add> "8": "Z\u00e1\u0159",
<add> "9": "\u0158\u00edj",
<ide> "10": "Lis",
<ide> "11": "Pro"
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "Kč",
<add> "CURRENCY_SYM": "K\u010d",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_cs.js
<ide> $provide.value("$locale", {
<ide> "1": "odp."
<ide> },
<ide> "DAY": {
<del> "0": "neděle",
<del> "1": "pondělí",
<del> "2": "úterý",
<del> "3": "středa",
<del> "4": "čtvrtek",
<del> "5": "pátek",
<add> "0": "ned\u011ble",
<add> "1": "pond\u011bl\u00ed",
<add> "2": "\u00fater\u00fd",
<add> "3": "st\u0159eda",
<add> "4": "\u010dtvrtek",
<add> "5": "p\u00e1tek",
<ide> "6": "sobota"
<ide> },
<ide> "MONTH": {
<ide> "0": "ledna",
<del> "1": "února",
<del> "2": "března",
<add> "1": "\u00fanora",
<add> "2": "b\u0159ezna",
<ide> "3": "dubna",
<del> "4": "května",
<del> "5": "června",
<del> "6": "července",
<add> "4": "kv\u011btna",
<add> "5": "\u010dervna",
<add> "6": "\u010dervence",
<ide> "7": "srpna",
<del> "8": "září",
<del> "9": "října",
<add> "8": "z\u00e1\u0159\u00ed",
<add> "9": "\u0159\u00edjna",
<ide> "10": "listopadu",
<ide> "11": "prosince"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "ne",
<ide> "1": "po",
<del> "2": "út",
<add> "2": "\u00fat",
<ide> "3": "st",
<del> "4": "čt",
<del> "5": "pá",
<add> "4": "\u010dt",
<add> "5": "p\u00e1",
<ide> "6": "so"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Led",
<del> "1": "Úno",
<del> "2": "Bře",
<add> "1": "\u00dano",
<add> "2": "B\u0159e",
<ide> "3": "Dub",
<del> "4": "Kvě",
<del> "5": "Čer",
<del> "6": "Čvc",
<add> "4": "Kv\u011b",
<add> "5": "\u010cer",
<add> "6": "\u010cvc",
<ide> "7": "Srp",
<del> "8": "Zář",
<del> "9": "Říj",
<add> "8": "Z\u00e1\u0159",
<add> "9": "\u0158\u00edj",
<ide> "10": "Lis",
<ide> "11": "Pro"
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "Kč",
<add> "CURRENCY_SYM": "K\u010d",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_da-dk.js
<ide> $provide.value("$locale", {
<ide> "1": "e.m."
<ide> },
<ide> "DAY": {
<del> "0": "søndag",
<add> "0": "s\u00f8ndag",
<ide> "1": "mandag",
<ide> "2": "tirsdag",
<ide> "3": "onsdag",
<ide> "4": "torsdag",
<ide> "5": "fredag",
<del> "6": "lørdag"
<add> "6": "l\u00f8rdag"
<ide> },
<ide> "MONTH": {
<ide> "0": "januar",
<ide> $provide.value("$locale", {
<ide> "11": "december"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "søn",
<add> "0": "s\u00f8n",
<ide> "1": "man",
<ide> "2": "tir",
<ide> "3": "ons",
<ide> "4": "tor",
<ide> "5": "fre",
<del> "6": "lør"
<add> "6": "l\u00f8r"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan.",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_da.js
<ide> $provide.value("$locale", {
<ide> "1": "e.m."
<ide> },
<ide> "DAY": {
<del> "0": "søndag",
<add> "0": "s\u00f8ndag",
<ide> "1": "mandag",
<ide> "2": "tirsdag",
<ide> "3": "onsdag",
<ide> "4": "torsdag",
<ide> "5": "fredag",
<del> "6": "lørdag"
<add> "6": "l\u00f8rdag"
<ide> },
<ide> "MONTH": {
<ide> "0": "januar",
<ide> $provide.value("$locale", {
<ide> "11": "december"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "søn",
<add> "0": "s\u00f8n",
<ide> "1": "man",
<ide> "2": "tir",
<ide> "3": "ons",
<ide> "4": "tor",
<ide> "5": "fre",
<del> "6": "lør"
<add> "6": "l\u00f8r"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan.",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_de-at.js
<ide> $provide.value("$locale", {
<ide> "6": "Samstag"
<ide> },
<ide> "MONTH": {
<del> "0": "Jänner",
<add> "0": "J\u00e4nner",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "6": "Sa."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "Jän",
<add> "0": "J\u00e4n",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_de-be.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_de-ch.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_de-de.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_de-li.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_de-lu.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_de.js
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_el-cy.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "π.μ.",
<del> "1": "μ.μ."
<add> "0": "\u03c0.\u03bc.",
<add> "1": "\u03bc.\u03bc."
<ide> },
<ide> "DAY": {
<del> "0": "Κυριακή",
<del> "1": "Δευτέρα",
<del> "2": "Τρίτη",
<del> "3": "Τετάρτη",
<del> "4": "Πέμπτη",
<del> "5": "Παρασκευή",
<del> "6": "Σάββατο"
<add> "0": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
<add> "1": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
<add> "2": "\u03a4\u03c1\u03af\u03c4\u03b7",
<add> "3": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
<add> "4": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
<add> "5": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
<add> "6": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"
<ide> },
<ide> "MONTH": {
<del> "0": "Ιανουαρίου",
<del> "1": "Φεβρουαρίου",
<del> "2": "Μαρτίου",
<del> "3": "Απριλίου",
<del> "4": "Μαΐου",
<del> "5": "Ιουνίου",
<del> "6": "Ιουλίου",
<del> "7": "Αυγούστου",
<del> "8": "Σεπτεμβρίου",
<del> "9": "Οκτωβρίου",
<del> "10": "Νοεμβρίου",
<del> "11": "Δεκεμβρίου"
<add> "0": "\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
<add> "1": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
<add> "2": "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
<add> "3": "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
<add> "4": "\u039c\u03b1\u0390\u03bf\u03c5",
<add> "5": "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
<add> "6": "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
<add> "7": "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
<add> "8": "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "9": "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "10": "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "11": "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Κυρ",
<del> "1": "Δευ",
<del> "2": "Τρι",
<del> "3": "Τετ",
<del> "4": "Πεμ",
<del> "5": "Παρ",
<del> "6": "Σαβ"
<add> "0": "\u039a\u03c5\u03c1",
<add> "1": "\u0394\u03b5\u03c5",
<add> "2": "\u03a4\u03c1\u03b9",
<add> "3": "\u03a4\u03b5\u03c4",
<add> "4": "\u03a0\u03b5\u03bc",
<add> "5": "\u03a0\u03b1\u03c1",
<add> "6": "\u03a3\u03b1\u03b2"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "Ιαν",
<del> "1": "Φεβ",
<del> "2": "Μαρ",
<del> "3": "Απρ",
<del> "4": "Μαϊ",
<del> "5": "Ιουν",
<del> "6": "Ιουλ",
<del> "7": "Αυγ",
<del> "8": "Σεπ",
<del> "9": "Οκτ",
<del> "10": "Νοε",
<del> "11": "Δεκ"
<add> "0": "\u0399\u03b1\u03bd",
<add> "1": "\u03a6\u03b5\u03b2",
<add> "2": "\u039c\u03b1\u03c1",
<add> "3": "\u0391\u03c0\u03c1",
<add> "4": "\u039c\u03b1\u03ca",
<add> "5": "\u0399\u03bf\u03c5\u03bd",
<add> "6": "\u0399\u03bf\u03c5\u03bb",
<add> "7": "\u0391\u03c5\u03b3",
<add> "8": "\u03a3\u03b5\u03c0",
<add> "9": "\u039f\u03ba\u03c4",
<add> "10": "\u039d\u03bf\u03b5",
<add> "11": "\u0394\u03b5\u03ba"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_el-gr.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "π.μ.",
<del> "1": "μ.μ."
<add> "0": "\u03c0.\u03bc.",
<add> "1": "\u03bc.\u03bc."
<ide> },
<ide> "DAY": {
<del> "0": "Κυριακή",
<del> "1": "Δευτέρα",
<del> "2": "Τρίτη",
<del> "3": "Τετάρτη",
<del> "4": "Πέμπτη",
<del> "5": "Παρασκευή",
<del> "6": "Σάββατο"
<add> "0": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
<add> "1": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
<add> "2": "\u03a4\u03c1\u03af\u03c4\u03b7",
<add> "3": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
<add> "4": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
<add> "5": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
<add> "6": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"
<ide> },
<ide> "MONTH": {
<del> "0": "Ιανουαρίου",
<del> "1": "Φεβρουαρίου",
<del> "2": "Μαρτίου",
<del> "3": "Απριλίου",
<del> "4": "Μαΐου",
<del> "5": "Ιουνίου",
<del> "6": "Ιουλίου",
<del> "7": "Αυγούστου",
<del> "8": "Σεπτεμβρίου",
<del> "9": "Οκτωβρίου",
<del> "10": "Νοεμβρίου",
<del> "11": "Δεκεμβρίου"
<add> "0": "\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
<add> "1": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
<add> "2": "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
<add> "3": "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
<add> "4": "\u039c\u03b1\u0390\u03bf\u03c5",
<add> "5": "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
<add> "6": "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
<add> "7": "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
<add> "8": "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "9": "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "10": "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "11": "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Κυρ",
<del> "1": "Δευ",
<del> "2": "Τρι",
<del> "3": "Τετ",
<del> "4": "Πεμ",
<del> "5": "Παρ",
<del> "6": "Σαβ"
<add> "0": "\u039a\u03c5\u03c1",
<add> "1": "\u0394\u03b5\u03c5",
<add> "2": "\u03a4\u03c1\u03b9",
<add> "3": "\u03a4\u03b5\u03c4",
<add> "4": "\u03a0\u03b5\u03bc",
<add> "5": "\u03a0\u03b1\u03c1",
<add> "6": "\u03a3\u03b1\u03b2"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "Ιαν",
<del> "1": "Φεβ",
<del> "2": "Μαρ",
<del> "3": "Απρ",
<del> "4": "Μαϊ",
<del> "5": "Ιουν",
<del> "6": "Ιουλ",
<del> "7": "Αυγ",
<del> "8": "Σεπ",
<del> "9": "Οκτ",
<del> "10": "Νοε",
<del> "11": "Δεκ"
<add> "0": "\u0399\u03b1\u03bd",
<add> "1": "\u03a6\u03b5\u03b2",
<add> "2": "\u039c\u03b1\u03c1",
<add> "3": "\u0391\u03c0\u03c1",
<add> "4": "\u039c\u03b1\u03ca",
<add> "5": "\u0399\u03bf\u03c5\u03bd",
<add> "6": "\u0399\u03bf\u03c5\u03bb",
<add> "7": "\u0391\u03c5\u03b3",
<add> "8": "\u03a3\u03b5\u03c0",
<add> "9": "\u039f\u03ba\u03c4",
<add> "10": "\u039d\u03bf\u03b5",
<add> "11": "\u0394\u03b5\u03ba"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_el.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "π.μ.",
<del> "1": "μ.μ."
<add> "0": "\u03c0.\u03bc.",
<add> "1": "\u03bc.\u03bc."
<ide> },
<ide> "DAY": {
<del> "0": "Κυριακή",
<del> "1": "Δευτέρα",
<del> "2": "Τρίτη",
<del> "3": "Τετάρτη",
<del> "4": "Πέμπτη",
<del> "5": "Παρασκευή",
<del> "6": "Σάββατο"
<add> "0": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
<add> "1": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
<add> "2": "\u03a4\u03c1\u03af\u03c4\u03b7",
<add> "3": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
<add> "4": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
<add> "5": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
<add> "6": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"
<ide> },
<ide> "MONTH": {
<del> "0": "Ιανουαρίου",
<del> "1": "Φεβρουαρίου",
<del> "2": "Μαρτίου",
<del> "3": "Απριλίου",
<del> "4": "Μαΐου",
<del> "5": "Ιουνίου",
<del> "6": "Ιουλίου",
<del> "7": "Αυγούστου",
<del> "8": "Σεπτεμβρίου",
<del> "9": "Οκτωβρίου",
<del> "10": "Νοεμβρίου",
<del> "11": "Δεκεμβρίου"
<add> "0": "\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
<add> "1": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
<add> "2": "\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
<add> "3": "\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
<add> "4": "\u039c\u03b1\u0390\u03bf\u03c5",
<add> "5": "\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
<add> "6": "\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
<add> "7": "\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
<add> "8": "\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "9": "\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "10": "\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
<add> "11": "\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Κυρ",
<del> "1": "Δευ",
<del> "2": "Τρι",
<del> "3": "Τετ",
<del> "4": "Πεμ",
<del> "5": "Παρ",
<del> "6": "Σαβ"
<add> "0": "\u039a\u03c5\u03c1",
<add> "1": "\u0394\u03b5\u03c5",
<add> "2": "\u03a4\u03c1\u03b9",
<add> "3": "\u03a4\u03b5\u03c4",
<add> "4": "\u03a0\u03b5\u03bc",
<add> "5": "\u03a0\u03b1\u03c1",
<add> "6": "\u03a3\u03b1\u03b2"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "Ιαν",
<del> "1": "Φεβ",
<del> "2": "Μαρ",
<del> "3": "Απρ",
<del> "4": "Μαϊ",
<del> "5": "Ιουν",
<del> "6": "Ιουλ",
<del> "7": "Αυγ",
<del> "8": "Σεπ",
<del> "9": "Οκτ",
<del> "10": "Νοε",
<del> "11": "Δεκ"
<add> "0": "\u0399\u03b1\u03bd",
<add> "1": "\u03a6\u03b5\u03b2",
<add> "2": "\u039c\u03b1\u03c1",
<add> "3": "\u0391\u03c0\u03c1",
<add> "4": "\u039c\u03b1\u03ca",
<add> "5": "\u0399\u03bf\u03c5\u03bd",
<add> "6": "\u0399\u03bf\u03c5\u03bb",
<add> "7": "\u0391\u03c5\u03b3",
<add> "8": "\u03a3\u03b5\u03c0",
<add> "9": "\u039f\u03ba\u03c4",
<add> "10": "\u039d\u03bf\u03b5",
<add> "11": "\u0394\u03b5\u03ba"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_en-as.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-au.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-bb.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-be.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-bm.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-bw.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-bz.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-ca.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-dsrt-us.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "𐐈𐐣",
<del> "1": "𐐑𐐣"
<add> "0": "\ud801\udc08\ud801\udc23",
<add> "1": "\ud801\udc11\ud801\udc23"
<ide> },
<ide> "DAY": {
<del> "0": "𐐝𐐲𐑌𐐼𐐩",
<del> "1": "𐐣𐐲𐑌𐐼𐐩",
<del> "2": "𐐓𐐭𐑆𐐼𐐩",
<del> "3": "𐐎𐐯𐑌𐑆𐐼𐐩",
<del> "4": "𐐛𐐲𐑉𐑆𐐼𐐩",
<del> "5": "𐐙𐑉𐐴𐐼𐐩",
<del> "6": "𐐝𐐰𐐻𐐲𐑉𐐼𐐩"
<add> "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
<add> "1": "\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
<add> "2": "\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29",
<add> "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29",
<add> "4": "\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29",
<add> "5": "\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29",
<add> "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29"
<ide> },
<ide> "MONTH": {
<del> "0": "𐐖𐐰𐑌𐐷𐐭𐐯𐑉𐐨",
<del> "1": "𐐙𐐯𐐺𐑉𐐭𐐯𐑉𐐨",
<del> "2": "𐐣𐐪𐑉𐐽",
<del> "3": "𐐁𐐹𐑉𐐮𐑊",
<del> "4": "𐐣𐐩",
<del> "5": "𐐖𐐭𐑌",
<del> "6": "𐐖𐐭𐑊𐐴",
<del> "7": "𐐂𐑀𐐲𐑅𐐻",
<del> "8": "𐐝𐐯𐐹𐐻𐐯𐑋𐐺𐐲𐑉",
<del> "9": "𐐉𐐿𐐻𐐬𐐺𐐲𐑉",
<del> "10": "𐐤𐐬𐑂𐐯𐑋𐐺𐐲𐑉",
<del> "11": "𐐔𐐨𐑅𐐯𐑋𐐺𐐲𐑉"
<add> "0": "\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
<add> "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
<add> "2": "\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d",
<add> "3": "\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a",
<add> "4": "\ud801\udc23\ud801\udc29",
<add> "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
<add> "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34",
<add> "7": "\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b",
<add> "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
<add> "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49",
<add> "10": "\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
<add> "11": "\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "𐐝𐐲𐑌",
<del> "1": "𐐣𐐲𐑌",
<del> "2": "𐐓𐐭𐑆",
<del> "3": "𐐎𐐯𐑌",
<del> "4": "𐐛𐐲𐑉",
<del> "5": "𐐙𐑉𐐴",
<del> "6": "𐐝𐐰𐐻"
<add> "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c",
<add> "1": "\ud801\udc23\ud801\udc32\ud801\udc4c",
<add> "2": "\ud801\udc13\ud801\udc2d\ud801\udc46",
<add> "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c",
<add> "4": "\ud801\udc1b\ud801\udc32\ud801\udc49",
<add> "5": "\ud801\udc19\ud801\udc49\ud801\udc34",
<add> "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "𐐖𐐰𐑌",
<del> "1": "𐐙𐐯𐐺",
<del> "2": "𐐣𐐪𐑉",
<del> "3": "𐐁𐐹𐑉",
<del> "4": "𐐣𐐩",
<del> "5": "𐐖𐐭𐑌",
<del> "6": "𐐖𐐭𐑊",
<del> "7": "𐐂𐑀",
<del> "8": "𐐝𐐯𐐹",
<del> "9": "𐐉𐐿𐐻",
<del> "10": "𐐤𐐬𐑂",
<del> "11": "𐐔𐐨𐑅"
<add> "0": "\ud801\udc16\ud801\udc30\ud801\udc4c",
<add> "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a",
<add> "2": "\ud801\udc23\ud801\udc2a\ud801\udc49",
<add> "3": "\ud801\udc01\ud801\udc39\ud801\udc49",
<add> "4": "\ud801\udc23\ud801\udc29",
<add> "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
<add> "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a",
<add> "7": "\ud801\udc02\ud801\udc40",
<add> "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39",
<add> "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b",
<add> "10": "\ud801\udc24\ud801\udc2c\ud801\udc42",
<add> "11": "\ud801\udc14\ud801\udc28\ud801\udc45"
<ide> },
<ide> "fullDate": "EEEE, MMMM d, y",
<ide> "longDate": "MMMM d, y",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-dsrt.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "𐐈𐐣",
<del> "1": "𐐑𐐣"
<add> "0": "\ud801\udc08\ud801\udc23",
<add> "1": "\ud801\udc11\ud801\udc23"
<ide> },
<ide> "DAY": {
<del> "0": "𐐝𐐲𐑌𐐼𐐩",
<del> "1": "𐐣𐐲𐑌𐐼𐐩",
<del> "2": "𐐓𐐭𐑆𐐼𐐩",
<del> "3": "𐐎𐐯𐑌𐑆𐐼𐐩",
<del> "4": "𐐛𐐲𐑉𐑆𐐼𐐩",
<del> "5": "𐐙𐑉𐐴𐐼𐐩",
<del> "6": "𐐝𐐰𐐻𐐲𐑉𐐼𐐩"
<add> "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
<add> "1": "\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
<add> "2": "\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29",
<add> "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29",
<add> "4": "\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29",
<add> "5": "\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29",
<add> "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29"
<ide> },
<ide> "MONTH": {
<del> "0": "𐐖𐐰𐑌𐐷𐐭𐐯𐑉𐐨",
<del> "1": "𐐙𐐯𐐺𐑉𐐭𐐯𐑉𐐨",
<del> "2": "𐐣𐐪𐑉𐐽",
<del> "3": "𐐁𐐹𐑉𐐮𐑊",
<del> "4": "𐐣𐐩",
<del> "5": "𐐖𐐭𐑌",
<del> "6": "𐐖𐐭𐑊𐐴",
<del> "7": "𐐂𐑀𐐲𐑅𐐻",
<del> "8": "𐐝𐐯𐐹𐐻𐐯𐑋𐐺𐐲𐑉",
<del> "9": "𐐉𐐿𐐻𐐬𐐺𐐲𐑉",
<del> "10": "𐐤𐐬𐑂𐐯𐑋𐐺𐐲𐑉",
<del> "11": "𐐔𐐨𐑅𐐯𐑋𐐺𐐲𐑉"
<add> "0": "\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
<add> "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
<add> "2": "\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d",
<add> "3": "\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a",
<add> "4": "\ud801\udc23\ud801\udc29",
<add> "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
<add> "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34",
<add> "7": "\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b",
<add> "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
<add> "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49",
<add> "10": "\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
<add> "11": "\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "𐐝𐐲𐑌",
<del> "1": "𐐣𐐲𐑌",
<del> "2": "𐐓𐐭𐑆",
<del> "3": "𐐎𐐯𐑌",
<del> "4": "𐐛𐐲𐑉",
<del> "5": "𐐙𐑉𐐴",
<del> "6": "𐐝𐐰𐐻"
<add> "0": "\ud801\udc1d\ud801\udc32\ud801\udc4c",
<add> "1": "\ud801\udc23\ud801\udc32\ud801\udc4c",
<add> "2": "\ud801\udc13\ud801\udc2d\ud801\udc46",
<add> "3": "\ud801\udc0e\ud801\udc2f\ud801\udc4c",
<add> "4": "\ud801\udc1b\ud801\udc32\ud801\udc49",
<add> "5": "\ud801\udc19\ud801\udc49\ud801\udc34",
<add> "6": "\ud801\udc1d\ud801\udc30\ud801\udc3b"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "𐐖𐐰𐑌",
<del> "1": "𐐙𐐯𐐺",
<del> "2": "𐐣𐐪𐑉",
<del> "3": "𐐁𐐹𐑉",
<del> "4": "𐐣𐐩",
<del> "5": "𐐖𐐭𐑌",
<del> "6": "𐐖𐐭𐑊",
<del> "7": "𐐂𐑀",
<del> "8": "𐐝𐐯𐐹",
<del> "9": "𐐉𐐿𐐻",
<del> "10": "𐐤𐐬𐑂",
<del> "11": "𐐔𐐨𐑅"
<add> "0": "\ud801\udc16\ud801\udc30\ud801\udc4c",
<add> "1": "\ud801\udc19\ud801\udc2f\ud801\udc3a",
<add> "2": "\ud801\udc23\ud801\udc2a\ud801\udc49",
<add> "3": "\ud801\udc01\ud801\udc39\ud801\udc49",
<add> "4": "\ud801\udc23\ud801\udc29",
<add> "5": "\ud801\udc16\ud801\udc2d\ud801\udc4c",
<add> "6": "\ud801\udc16\ud801\udc2d\ud801\udc4a",
<add> "7": "\ud801\udc02\ud801\udc40",
<add> "8": "\ud801\udc1d\ud801\udc2f\ud801\udc39",
<add> "9": "\ud801\udc09\ud801\udc3f\ud801\udc3b",
<add> "10": "\ud801\udc24\ud801\udc2c\ud801\udc42",
<add> "11": "\ud801\udc14\ud801\udc28\ud801\udc45"
<ide> },
<ide> "fullDate": "EEEE, MMMM d, y",
<ide> "longDate": "MMMM d, y",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-fm.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-gb.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "£",
<add> "CURRENCY_SYM": "\u00a3",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-gu.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-gy.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-hk.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-ie.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-in.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-iso.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-jm.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-mh.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-mp.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-mt.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-mu.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-na.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-nz.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-ph.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-pk.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-pr.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-pw.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-sg.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-tc.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-tt.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-um.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-us.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-vg.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-vi.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-za.js
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "R",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en-zw.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_en.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_es-419.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_es-ar.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-bo.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-cl.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-co.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-cr.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-do.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-ea.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-ec.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-es.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-gq.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-gt.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-hn.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-ic.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-mx.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-ni.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-pa.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-pe.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-pr.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-py.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-sv.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-us.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-uy.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es-ve.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_es.js
<ide> $provide.value("$locale", {
<ide> "0": "domingo",
<ide> "1": "lunes",
<ide> "2": "martes",
<del> "3": "miércoles",
<add> "3": "mi\u00e9rcoles",
<ide> "4": "jueves",
<ide> "5": "viernes",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "enero",
<ide> $provide.value("$locale", {
<ide> "0": "dom",
<ide> "1": "lun",
<ide> "2": "mar",
<del> "3": "mié",
<add> "3": "mi\u00e9",
<ide> "4": "jue",
<ide> "5": "vie",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ene",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_et-ee.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "enne keskpäeva",
<del> "1": "pärast keskpäeva"
<add> "0": "enne keskp\u00e4eva",
<add> "1": "p\u00e4rast keskp\u00e4eva"
<ide> },
<ide> "DAY": {
<del> "0": "pühapäev",
<del> "1": "esmaspäev",
<del> "2": "teisipäev",
<del> "3": "kolmapäev",
<del> "4": "neljapäev",
<add> "0": "p\u00fchap\u00e4ev",
<add> "1": "esmasp\u00e4ev",
<add> "2": "teisip\u00e4ev",
<add> "3": "kolmap\u00e4ev",
<add> "4": "neljap\u00e4ev",
<ide> "5": "reede",
<del> "6": "laupäev"
<add> "6": "laup\u00e4ev"
<ide> },
<ide> "MONTH": {
<ide> "0": "jaanuar",
<ide> "1": "veebruar",
<del> "2": "märts",
<add> "2": "m\u00e4rts",
<ide> "3": "aprill",
<ide> "4": "mai",
<ide> "5": "juuni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "jaan",
<ide> "1": "veebr",
<del> "2": "märts",
<add> "2": "m\u00e4rts",
<ide> "3": "apr",
<ide> "4": "mai",
<ide> "5": "juuni",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": "\u00A4)",
<add> "negSuf": "\u00a4)",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_et.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "enne keskpäeva",
<del> "1": "pärast keskpäeva"
<add> "0": "enne keskp\u00e4eva",
<add> "1": "p\u00e4rast keskp\u00e4eva"
<ide> },
<ide> "DAY": {
<del> "0": "pühapäev",
<del> "1": "esmaspäev",
<del> "2": "teisipäev",
<del> "3": "kolmapäev",
<del> "4": "neljapäev",
<add> "0": "p\u00fchap\u00e4ev",
<add> "1": "esmasp\u00e4ev",
<add> "2": "teisip\u00e4ev",
<add> "3": "kolmap\u00e4ev",
<add> "4": "neljap\u00e4ev",
<ide> "5": "reede",
<del> "6": "laupäev"
<add> "6": "laup\u00e4ev"
<ide> },
<ide> "MONTH": {
<ide> "0": "jaanuar",
<ide> "1": "veebruar",
<del> "2": "märts",
<add> "2": "m\u00e4rts",
<ide> "3": "aprill",
<ide> "4": "mai",
<ide> "5": "juuni",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "jaan",
<ide> "1": "veebr",
<del> "2": "märts",
<add> "2": "m\u00e4rts",
<ide> "3": "apr",
<ide> "4": "mai",
<ide> "5": "juuni",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": "\u00A4)",
<add> "negSuf": "\u00a4)",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_eu-es.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_eu.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fa-af.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "قبلازظهر",
<del> "1": "بعدازظهر"
<add> "0": "\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
<add> "1": "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
<ide> },
<ide> "DAY": {
<del> "0": "یکشنبه",
<del> "1": "دوشنبه",
<del> "2": "سهشنبه",
<del> "3": "چهارشنبه",
<del> "4": "پنجشنبه",
<del> "5": "جمعه",
<del> "6": "شنبه"
<add> "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
<add> "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
<add> "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
<add> "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
<add> "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
<add> "5": "\u062c\u0645\u0639\u0647",
<add> "6": "\u0634\u0646\u0628\u0647"
<ide> },
<ide> "MONTH": {
<del> "0": "جنوری",
<del> "1": "فبروری",
<del> "2": "مارچ",
<del> "3": "اپریل",
<del> "4": "می",
<del> "5": "جون",
<del> "6": "جولای",
<del> "7": "اگست",
<del> "8": "سپتمبر",
<del> "9": "اکتوبر",
<del> "10": "نومبر",
<del> "11": "دسمبر"
<add> "0": "\u062c\u0646\u0648\u0631\u06cc",
<add> "1": "\u0641\u0628\u0631\u0648\u0631\u06cc",
<add> "2": "\u0645\u0627\u0631\u0686",
<add> "3": "\u0627\u067e\u0631\u06cc\u0644",
<add> "4": "\u0645\u06cc",
<add> "5": "\u062c\u0648\u0646",
<add> "6": "\u062c\u0648\u0644\u0627\u06cc",
<add> "7": "\u0627\u06af\u0633\u062a",
<add> "8": "\u0633\u067e\u062a\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "یکشنبه",
<del> "1": "دوشنبه",
<del> "2": "سهشنبه",
<del> "3": "چهارشنبه",
<del> "4": "پنجشنبه",
<del> "5": "جمعه",
<del> "6": "شنبه"
<add> "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
<add> "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
<add> "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
<add> "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
<add> "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
<add> "5": "\u062c\u0645\u0639\u0647",
<add> "6": "\u0634\u0646\u0628\u0647"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "جنو",
<del> "1": "فوریهٔ",
<del> "2": "مارس",
<del> "3": "آوریل",
<del> "4": "مـی",
<del> "5": "ژوئن",
<del> "6": "جول",
<del> "7": "اوت",
<del> "8": "سپتامبر",
<del> "9": "اکتبر",
<del> "10": "نوامبر",
<del> "11": "دسم"
<add> "0": "\u062c\u0646\u0648",
<add> "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0622\u0648\u0631\u06cc\u0644",
<add> "4": "\u0645\u0640\u06cc",
<add> "5": "\u0698\u0648\u0626\u0646",
<add> "6": "\u062c\u0648\u0644",
<add> "7": "\u0627\u0648\u062a",
<add> "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0628\u0631",
<add> "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0645"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> },
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Rial",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "\u200e(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u200e\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_fa-ir.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "قبلازظهر",
<del> "1": "بعدازظهر"
<add> "0": "\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
<add> "1": "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
<ide> },
<ide> "DAY": {
<del> "0": "یکشنبه",
<del> "1": "دوشنبه",
<del> "2": "سهشنبه",
<del> "3": "چهارشنبه",
<del> "4": "پنجشنبه",
<del> "5": "جمعه",
<del> "6": "شنبه"
<add> "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
<add> "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
<add> "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
<add> "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
<add> "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
<add> "5": "\u062c\u0645\u0639\u0647",
<add> "6": "\u0634\u0646\u0628\u0647"
<ide> },
<ide> "MONTH": {
<del> "0": "ژانویهٔ",
<del> "1": "فوریهٔ",
<del> "2": "مارس",
<del> "3": "آوریل",
<del> "4": "مهٔ",
<del> "5": "ژوئن",
<del> "6": "ژوئیهٔ",
<del> "7": "اوت",
<del> "8": "سپتامبر",
<del> "9": "اکتبر",
<del> "10": "نوامبر",
<del> "11": "دسامبر"
<add> "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
<add> "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0622\u0648\u0631\u06cc\u0644",
<add> "4": "\u0645\u0647\u0654",
<add> "5": "\u0698\u0648\u0626\u0646",
<add> "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
<add> "7": "\u0627\u0648\u062a",
<add> "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0628\u0631",
<add> "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "یکشنبه",
<del> "1": "دوشنبه",
<del> "2": "سهشنبه",
<del> "3": "چهارشنبه",
<del> "4": "پنجشنبه",
<del> "5": "جمعه",
<del> "6": "شنبه"
<add> "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
<add> "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
<add> "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
<add> "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
<add> "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
<add> "5": "\u062c\u0645\u0639\u0647",
<add> "6": "\u0634\u0646\u0628\u0647"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ژانویهٔ",
<del> "1": "فوریهٔ",
<del> "2": "مارس",
<del> "3": "آوریل",
<del> "4": "مهٔ",
<del> "5": "ژوئن",
<del> "6": "ژوئیهٔ",
<del> "7": "اوت",
<del> "8": "سپتامبر",
<del> "9": "اکتبر",
<del> "10": "نوامبر",
<del> "11": "دسامبر"
<add> "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
<add> "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0622\u0648\u0631\u06cc\u0644",
<add> "4": "\u0645\u0647\u0654",
<add> "5": "\u0698\u0648\u0626\u0646",
<add> "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
<add> "7": "\u0627\u0648\u062a",
<add> "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0628\u0631",
<add> "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> },
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Rial",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "\u200e(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u200e\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_fa.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "قبلازظهر",
<del> "1": "بعدازظهر"
<add> "0": "\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631",
<add> "1": "\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"
<ide> },
<ide> "DAY": {
<del> "0": "یکشنبه",
<del> "1": "دوشنبه",
<del> "2": "سهشنبه",
<del> "3": "چهارشنبه",
<del> "4": "پنجشنبه",
<del> "5": "جمعه",
<del> "6": "شنبه"
<add> "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
<add> "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
<add> "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
<add> "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
<add> "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
<add> "5": "\u062c\u0645\u0639\u0647",
<add> "6": "\u0634\u0646\u0628\u0647"
<ide> },
<ide> "MONTH": {
<del> "0": "ژانویهٔ",
<del> "1": "فوریهٔ",
<del> "2": "مارس",
<del> "3": "آوریل",
<del> "4": "مهٔ",
<del> "5": "ژوئن",
<del> "6": "ژوئیهٔ",
<del> "7": "اوت",
<del> "8": "سپتامبر",
<del> "9": "اکتبر",
<del> "10": "نوامبر",
<del> "11": "دسامبر"
<add> "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
<add> "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0622\u0648\u0631\u06cc\u0644",
<add> "4": "\u0645\u0647\u0654",
<add> "5": "\u0698\u0648\u0626\u0646",
<add> "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
<add> "7": "\u0627\u0648\u062a",
<add> "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0628\u0631",
<add> "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "یکشنبه",
<del> "1": "دوشنبه",
<del> "2": "سهشنبه",
<del> "3": "چهارشنبه",
<del> "4": "پنجشنبه",
<del> "5": "جمعه",
<del> "6": "شنبه"
<add> "0": "\u06cc\u06a9\u0634\u0646\u0628\u0647",
<add> "1": "\u062f\u0648\u0634\u0646\u0628\u0647",
<add> "2": "\u0633\u0647\u200c\u0634\u0646\u0628\u0647",
<add> "3": "\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647",
<add> "4": "\u067e\u0646\u062c\u0634\u0646\u0628\u0647",
<add> "5": "\u062c\u0645\u0639\u0647",
<add> "6": "\u0634\u0646\u0628\u0647"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ژانویهٔ",
<del> "1": "فوریهٔ",
<del> "2": "مارس",
<del> "3": "آوریل",
<del> "4": "مهٔ",
<del> "5": "ژوئن",
<del> "6": "ژوئیهٔ",
<del> "7": "اوت",
<del> "8": "سپتامبر",
<del> "9": "اکتبر",
<del> "10": "نوامبر",
<del> "11": "دسامبر"
<add> "0": "\u0698\u0627\u0646\u0648\u06cc\u0647\u0654",
<add> "1": "\u0641\u0648\u0631\u06cc\u0647\u0654",
<add> "2": "\u0645\u0627\u0631\u0633",
<add> "3": "\u0622\u0648\u0631\u06cc\u0644",
<add> "4": "\u0645\u0647\u0654",
<add> "5": "\u0698\u0648\u0626\u0646",
<add> "6": "\u0698\u0648\u0626\u06cc\u0647\u0654",
<add> "7": "\u0627\u0648\u062a",
<add> "8": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0628\u0631",
<add> "10": "\u0646\u0648\u0627\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0627\u0645\u0628\u0631"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> },
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Rial",
<del> "DECIMAL_SEP": "٫",
<del> "GROUP_SEP": "٬",
<add> "DECIMAL_SEP": "\u066b",
<add> "GROUP_SEP": "\u066c",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "\u200e(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u200e\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_fi-fi.js
<ide> $provide.value("$locale", {
<ide> "2": "maaliskuuta",
<ide> "3": "huhtikuuta",
<ide> "4": "toukokuuta",
<del> "5": "kesäkuuta",
<del> "6": "heinäkuuta",
<add> "5": "kes\u00e4kuuta",
<add> "6": "hein\u00e4kuuta",
<ide> "7": "elokuuta",
<ide> "8": "syyskuuta",
<ide> "9": "lokakuuta",
<ide> $provide.value("$locale", {
<ide> "2": "maaliskuuta",
<ide> "3": "huhtikuuta",
<ide> "4": "toukokuuta",
<del> "5": "kesäkuuta",
<del> "6": "heinäkuuta",
<add> "5": "kes\u00e4kuuta",
<add> "6": "hein\u00e4kuuta",
<ide> "7": "elokuuta",
<ide> "8": "syyskuuta",
<ide> "9": "lokakuuta",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H.mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fi.js
<ide> $provide.value("$locale", {
<ide> "2": "maaliskuuta",
<ide> "3": "huhtikuuta",
<ide> "4": "toukokuuta",
<del> "5": "kesäkuuta",
<del> "6": "heinäkuuta",
<add> "5": "kes\u00e4kuuta",
<add> "6": "hein\u00e4kuuta",
<ide> "7": "elokuuta",
<ide> "8": "syyskuuta",
<ide> "9": "lokakuuta",
<ide> $provide.value("$locale", {
<ide> "2": "maaliskuuta",
<ide> "3": "huhtikuuta",
<ide> "4": "toukokuuta",
<del> "5": "kesäkuuta",
<del> "6": "heinäkuuta",
<add> "5": "kes\u00e4kuuta",
<add> "6": "hein\u00e4kuuta",
<ide> "7": "elokuuta",
<ide> "8": "syyskuuta",
<ide> "9": "lokakuuta",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H.mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fil-ph.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₱",
<add> "CURRENCY_SYM": "\u20b1",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_fil.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₱",
<add> "CURRENCY_SYM": "\u20b1",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_fr-be.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-bf.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-bi.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-bj.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-bl.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-ca.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "$",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-cd.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-cf.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-cg.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-ch.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-ci.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-cm.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-dj.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-fr.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-ga.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-gf.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-gn.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-gp.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-gq.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-km.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-lu.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-mc.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-mf.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-mg.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-ml.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-mq.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-ne.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-re.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-rw.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-sn.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-td.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr-yt.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_fr.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "MONTH": {
<ide> "0": "janvier",
<del> "1": "février",
<add> "1": "f\u00e9vrier",
<ide> "2": "mars",
<ide> "3": "avril",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juillet",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "septembre",
<ide> "9": "octobre",
<ide> "10": "novembre",
<del> "11": "décembre"
<add> "11": "d\u00e9cembre"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "dim.",
<ide> $provide.value("$locale", {
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "janv.",
<del> "1": "févr.",
<add> "1": "f\u00e9vr.",
<ide> "2": "mars",
<ide> "3": "avr.",
<ide> "4": "mai",
<ide> "5": "juin",
<ide> "6": "juil.",
<del> "7": "août",
<add> "7": "ao\u00fbt",
<ide> "8": "sept.",
<ide> "9": "oct.",
<ide> "10": "nov.",
<del> "11": "déc."
<add> "11": "d\u00e9c."
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_gl-es.js
<ide> $provide.value("$locale", {
<ide> "0": "Domingo",
<ide> "1": "Luns",
<ide> "2": "Martes",
<del> "3": "Mércores",
<add> "3": "M\u00e9rcores",
<ide> "4": "Xoves",
<ide> "5": "Venres",
<del> "6": "Sábado"
<add> "6": "S\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "Xaneiro",
<ide> "1": "Febreiro",
<ide> "2": "Marzo",
<ide> "3": "Abril",
<ide> "4": "Maio",
<del> "5": "Xuño",
<add> "5": "Xu\u00f1o",
<ide> "6": "Xullo",
<ide> "7": "Agosto",
<ide> "8": "Setembro",
<ide> $provide.value("$locale", {
<ide> "0": "Dom",
<ide> "1": "Lun",
<ide> "2": "Mar",
<del> "3": "Mér",
<add> "3": "M\u00e9r",
<ide> "4": "Xov",
<ide> "5": "Ven",
<del> "6": "Sáb"
<add> "6": "S\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Xan",
<ide> "1": "Feb",
<ide> "2": "Mar",
<ide> "3": "Abr",
<ide> "4": "Mai",
<del> "5": "Xuñ",
<add> "5": "Xu\u00f1",
<ide> "6": "Xul",
<ide> "7": "Ago",
<ide> "8": "Set",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_gl.js
<ide> $provide.value("$locale", {
<ide> "0": "Domingo",
<ide> "1": "Luns",
<ide> "2": "Martes",
<del> "3": "Mércores",
<add> "3": "M\u00e9rcores",
<ide> "4": "Xoves",
<ide> "5": "Venres",
<del> "6": "Sábado"
<add> "6": "S\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "Xaneiro",
<ide> "1": "Febreiro",
<ide> "2": "Marzo",
<ide> "3": "Abril",
<ide> "4": "Maio",
<del> "5": "Xuño",
<add> "5": "Xu\u00f1o",
<ide> "6": "Xullo",
<ide> "7": "Agosto",
<ide> "8": "Setembro",
<ide> $provide.value("$locale", {
<ide> "0": "Dom",
<ide> "1": "Lun",
<ide> "2": "Mar",
<del> "3": "Mér",
<add> "3": "M\u00e9r",
<ide> "4": "Xov",
<ide> "5": "Ven",
<del> "6": "Sáb"
<add> "6": "S\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Xan",
<ide> "1": "Feb",
<ide> "2": "Mar",
<ide> "3": "Abr",
<ide> "4": "Mai",
<del> "5": "Xuñ",
<add> "5": "Xu\u00f1",
<ide> "6": "Xul",
<ide> "7": "Ago",
<ide> "8": "Set",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_gsw-ch.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "Sunntig",
<del> "1": "Määntig",
<add> "1": "M\u00e4\u00e4ntig",
<ide> "2": "Ziischtig",
<ide> "3": "Mittwuch",
<ide> "4": "Dunschtig",
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> "6": "Juli",
<ide> "7": "Auguscht",
<del> "8": "Septämber",
<add> "8": "Sept\u00e4mber",
<ide> "9": "Oktoober",
<del> "10": "Novämber",
<del> "11": "Dezämber"
<add> "10": "Nov\u00e4mber",
<add> "11": "Dez\u00e4mber"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "Su.",
<del> "1": "Mä.",
<add> "1": "M\u00e4.",
<ide> "2": "Zi.",
<ide> "3": "Mi.",
<ide> "4": "Du.",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "CHF",
<ide> "DECIMAL_SEP": ".",
<del> "GROUP_SEP": "’",
<add> "GROUP_SEP": "\u2019",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_gsw.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "Sunntig",
<del> "1": "Määntig",
<add> "1": "M\u00e4\u00e4ntig",
<ide> "2": "Ziischtig",
<ide> "3": "Mittwuch",
<ide> "4": "Dunschtig",
<ide> $provide.value("$locale", {
<ide> "MONTH": {
<ide> "0": "Januar",
<ide> "1": "Februar",
<del> "2": "März",
<add> "2": "M\u00e4rz",
<ide> "3": "April",
<ide> "4": "Mai",
<ide> "5": "Juni",
<ide> "6": "Juli",
<ide> "7": "Auguscht",
<del> "8": "Septämber",
<add> "8": "Sept\u00e4mber",
<ide> "9": "Oktoober",
<del> "10": "Novämber",
<del> "11": "Dezämber"
<add> "10": "Nov\u00e4mber",
<add> "11": "Dez\u00e4mber"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "Su.",
<del> "1": "Mä.",
<add> "1": "M\u00e4.",
<ide> "2": "Zi.",
<ide> "3": "Mi.",
<ide> "4": "Du.",
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> "1": "Feb",
<del> "2": "Mär",
<add> "2": "M\u00e4r",
<ide> "3": "Apr",
<ide> "4": "Mai",
<ide> "5": "Jun",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "CHF",
<ide> "DECIMAL_SEP": ".",
<del> "GROUP_SEP": "’",
<add> "GROUP_SEP": "\u2019",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_gu-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "રવિવાર",
<del> "1": "સોમવાર",
<del> "2": "મંગળવાર",
<del> "3": "બુધવાર",
<del> "4": "ગુરુવાર",
<del> "5": "શુક્રવાર",
<del> "6": "શનિવાર"
<add> "0": "\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0",
<add> "1": "\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0",
<add> "2": "\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0",
<add> "3": "\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0",
<add> "4": "\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0",
<add> "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0",
<add> "6": "\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"
<ide> },
<ide> "MONTH": {
<del> "0": "જાન્યુઆરી",
<del> "1": "ફેબ્રુઆરી",
<del> "2": "માર્ચ",
<del> "3": "એપ્રિલ",
<del> "4": "મે",
<del> "5": "જૂન",
<del> "6": "જુલાઈ",
<del> "7": "ઑગસ્ટ",
<del> "8": "સપ્ટેમ્બર",
<del> "9": "ઑક્ટોબર",
<del> "10": "નવેમ્બર",
<del> "11": "ડિસેમ્બર"
<add> "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0",
<add> "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0",
<add> "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
<add> "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
<add> "4": "\u0aae\u0ac7",
<add> "5": "\u0a9c\u0ac2\u0aa8",
<add> "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
<add> "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
<add> "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0",
<add> "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0",
<add> "10": "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0",
<add> "11": "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "રવિ",
<del> "1": "સોમ",
<del> "2": "મંગળ",
<del> "3": "બુધ",
<del> "4": "ગુરુ",
<del> "5": "શુક્ર",
<del> "6": "શનિ"
<add> "0": "\u0ab0\u0ab5\u0abf",
<add> "1": "\u0ab8\u0acb\u0aae",
<add> "2": "\u0aae\u0a82\u0a97\u0ab3",
<add> "3": "\u0aac\u0ac1\u0aa7",
<add> "4": "\u0a97\u0ac1\u0ab0\u0ac1",
<add> "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0",
<add> "6": "\u0ab6\u0aa8\u0abf"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "જાન્યુ",
<del> "1": "ફેબ્રુ",
<del> "2": "માર્ચ",
<del> "3": "એપ્રિલ",
<del> "4": "મે",
<del> "5": "જૂન",
<del> "6": "જુલાઈ",
<del> "7": "ઑગસ્ટ",
<del> "8": "સપ્ટે",
<del> "9": "ઑક્ટો",
<del> "10": "નવે",
<del> "11": "ડિસે"
<add> "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1",
<add> "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1",
<add> "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
<add> "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
<add> "4": "\u0aae\u0ac7",
<add> "5": "\u0a9c\u0ac2\u0aa8",
<add> "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
<add> "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
<add> "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7",
<add> "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb",
<add> "10": "\u0aa8\u0ab5\u0ac7",
<add> "11": "\u0aa1\u0abf\u0ab8\u0ac7"
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "hh:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_gu.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "રવિવાર",
<del> "1": "સોમવાર",
<del> "2": "મંગળવાર",
<del> "3": "બુધવાર",
<del> "4": "ગુરુવાર",
<del> "5": "શુક્રવાર",
<del> "6": "શનિવાર"
<add> "0": "\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0",
<add> "1": "\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0",
<add> "2": "\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0",
<add> "3": "\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0",
<add> "4": "\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0",
<add> "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0",
<add> "6": "\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"
<ide> },
<ide> "MONTH": {
<del> "0": "જાન્યુઆરી",
<del> "1": "ફેબ્રુઆરી",
<del> "2": "માર્ચ",
<del> "3": "એપ્રિલ",
<del> "4": "મે",
<del> "5": "જૂન",
<del> "6": "જુલાઈ",
<del> "7": "ઑગસ્ટ",
<del> "8": "સપ્ટેમ્બર",
<del> "9": "ઑક્ટોબર",
<del> "10": "નવેમ્બર",
<del> "11": "ડિસેમ્બર"
<add> "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0",
<add> "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0",
<add> "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
<add> "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
<add> "4": "\u0aae\u0ac7",
<add> "5": "\u0a9c\u0ac2\u0aa8",
<add> "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
<add> "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
<add> "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0",
<add> "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0",
<add> "10": "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0",
<add> "11": "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "રવિ",
<del> "1": "સોમ",
<del> "2": "મંગળ",
<del> "3": "બુધ",
<del> "4": "ગુરુ",
<del> "5": "શુક્ર",
<del> "6": "શનિ"
<add> "0": "\u0ab0\u0ab5\u0abf",
<add> "1": "\u0ab8\u0acb\u0aae",
<add> "2": "\u0aae\u0a82\u0a97\u0ab3",
<add> "3": "\u0aac\u0ac1\u0aa7",
<add> "4": "\u0a97\u0ac1\u0ab0\u0ac1",
<add> "5": "\u0ab6\u0ac1\u0a95\u0acd\u0ab0",
<add> "6": "\u0ab6\u0aa8\u0abf"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "જાન્યુ",
<del> "1": "ફેબ્રુ",
<del> "2": "માર્ચ",
<del> "3": "એપ્રિલ",
<del> "4": "મે",
<del> "5": "જૂન",
<del> "6": "જુલાઈ",
<del> "7": "ઑગસ્ટ",
<del> "8": "સપ્ટે",
<del> "9": "ઑક્ટો",
<del> "10": "નવે",
<del> "11": "ડિસે"
<add> "0": "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1",
<add> "1": "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1",
<add> "2": "\u0aae\u0abe\u0ab0\u0acd\u0a9a",
<add> "3": "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2",
<add> "4": "\u0aae\u0ac7",
<add> "5": "\u0a9c\u0ac2\u0aa8",
<add> "6": "\u0a9c\u0ac1\u0ab2\u0abe\u0a88",
<add> "7": "\u0a91\u0a97\u0ab8\u0acd\u0a9f",
<add> "8": "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7",
<add> "9": "\u0a91\u0a95\u0acd\u0a9f\u0acb",
<add> "10": "\u0aa8\u0ab5\u0ac7",
<add> "11": "\u0aa1\u0abf\u0ab8\u0ac7"
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "hh:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_he-il.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "לפנה״צ",
<del> "1": "אחה״צ"
<add> "0": "\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
<add> "1": "\u05d0\u05d7\u05d4\u05f4\u05e6"
<ide> },
<ide> "DAY": {
<del> "0": "יום ראשון",
<del> "1": "יום שני",
<del> "2": "יום שלישי",
<del> "3": "יום רביעי",
<del> "4": "יום חמישי",
<del> "5": "יום שישי",
<del> "6": "יום שבת"
<add> "0": "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
<add> "1": "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
<add> "2": "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
<add> "3": "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
<add> "4": "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
<add> "5": "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
<add> "6": "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"
<ide> },
<ide> "MONTH": {
<del> "0": "ינואר",
<del> "1": "פברואר",
<del> "2": "מרץ",
<del> "3": "אפריל",
<del> "4": "מאי",
<del> "5": "יוני",
<del> "6": "יולי",
<del> "7": "אוגוסט",
<del> "8": "ספטמבר",
<del> "9": "אוקטובר",
<del> "10": "נובמבר",
<del> "11": "דצמבר"
<add> "0": "\u05d9\u05e0\u05d5\u05d0\u05e8",
<add> "1": "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
<add> "2": "\u05de\u05e8\u05e5",
<add> "3": "\u05d0\u05e4\u05e8\u05d9\u05dc",
<add> "4": "\u05de\u05d0\u05d9",
<add> "5": "\u05d9\u05d5\u05e0\u05d9",
<add> "6": "\u05d9\u05d5\u05dc\u05d9",
<add> "7": "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
<add> "8": "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
<add> "9": "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
<add> "10": "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
<add> "11": "\u05d3\u05e6\u05de\u05d1\u05e8"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "יום א׳",
<del> "1": "יום ב׳",
<del> "2": "יום ג׳",
<del> "3": "יום ד׳",
<del> "4": "יום ה׳",
<del> "5": "יום ו׳",
<del> "6": "שבת"
<add> "0": "\u05d9\u05d5\u05dd \u05d0\u05f3",
<add> "1": "\u05d9\u05d5\u05dd \u05d1\u05f3",
<add> "2": "\u05d9\u05d5\u05dd \u05d2\u05f3",
<add> "3": "\u05d9\u05d5\u05dd \u05d3\u05f3",
<add> "4": "\u05d9\u05d5\u05dd \u05d4\u05f3",
<add> "5": "\u05d9\u05d5\u05dd \u05d5\u05f3",
<add> "6": "\u05e9\u05d1\u05ea"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ינו",
<del> "1": "פבר",
<del> "2": "מרץ",
<del> "3": "אפר",
<del> "4": "מאי",
<del> "5": "יונ",
<del> "6": "יול",
<del> "7": "אוג",
<del> "8": "ספט",
<del> "9": "אוק",
<del> "10": "נוב",
<del> "11": "דצמ"
<add> "0": "\u05d9\u05e0\u05d5",
<add> "1": "\u05e4\u05d1\u05e8",
<add> "2": "\u05de\u05e8\u05e5",
<add> "3": "\u05d0\u05e4\u05e8",
<add> "4": "\u05de\u05d0\u05d9",
<add> "5": "\u05d9\u05d5\u05e0",
<add> "6": "\u05d9\u05d5\u05dc",
<add> "7": "\u05d0\u05d5\u05d2",
<add> "8": "\u05e1\u05e4\u05d8",
<add> "9": "\u05d0\u05d5\u05e7",
<add> "10": "\u05e0\u05d5\u05d1",
<add> "11": "\u05d3\u05e6\u05de"
<ide> },
<del> "fullDate": "EEEE, d בMMMM y",
<del> "longDate": "d בMMMM y",
<del> "medium": "d בMMM yyyy HH:mm:ss",
<del> "mediumDate": "d בMMM yyyy",
<add> "fullDate": "EEEE, d \u05d1MMMM y",
<add> "longDate": "d \u05d1MMMM y",
<add> "medium": "d \u05d1MMM yyyy HH:mm:ss",
<add> "mediumDate": "d \u05d1MMM yyyy",
<ide> "mediumTime": "HH:mm:ss",
<ide> "short": "dd/MM/yy HH:mm",
<ide> "shortDate": "dd/MM/yy",
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₪",
<add> "CURRENCY_SYM": "\u20aa",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_he.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "לפנה״צ",
<del> "1": "אחה״צ"
<add> "0": "\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
<add> "1": "\u05d0\u05d7\u05d4\u05f4\u05e6"
<ide> },
<ide> "DAY": {
<del> "0": "יום ראשון",
<del> "1": "יום שני",
<del> "2": "יום שלישי",
<del> "3": "יום רביעי",
<del> "4": "יום חמישי",
<del> "5": "יום שישי",
<del> "6": "יום שבת"
<add> "0": "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
<add> "1": "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
<add> "2": "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
<add> "3": "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
<add> "4": "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
<add> "5": "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
<add> "6": "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"
<ide> },
<ide> "MONTH": {
<del> "0": "ינואר",
<del> "1": "פברואר",
<del> "2": "מרץ",
<del> "3": "אפריל",
<del> "4": "מאי",
<del> "5": "יוני",
<del> "6": "יולי",
<del> "7": "אוגוסט",
<del> "8": "ספטמבר",
<del> "9": "אוקטובר",
<del> "10": "נובמבר",
<del> "11": "דצמבר"
<add> "0": "\u05d9\u05e0\u05d5\u05d0\u05e8",
<add> "1": "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
<add> "2": "\u05de\u05e8\u05e5",
<add> "3": "\u05d0\u05e4\u05e8\u05d9\u05dc",
<add> "4": "\u05de\u05d0\u05d9",
<add> "5": "\u05d9\u05d5\u05e0\u05d9",
<add> "6": "\u05d9\u05d5\u05dc\u05d9",
<add> "7": "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
<add> "8": "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
<add> "9": "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
<add> "10": "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
<add> "11": "\u05d3\u05e6\u05de\u05d1\u05e8"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "יום א׳",
<del> "1": "יום ב׳",
<del> "2": "יום ג׳",
<del> "3": "יום ד׳",
<del> "4": "יום ה׳",
<del> "5": "יום ו׳",
<del> "6": "שבת"
<add> "0": "\u05d9\u05d5\u05dd \u05d0\u05f3",
<add> "1": "\u05d9\u05d5\u05dd \u05d1\u05f3",
<add> "2": "\u05d9\u05d5\u05dd \u05d2\u05f3",
<add> "3": "\u05d9\u05d5\u05dd \u05d3\u05f3",
<add> "4": "\u05d9\u05d5\u05dd \u05d4\u05f3",
<add> "5": "\u05d9\u05d5\u05dd \u05d5\u05f3",
<add> "6": "\u05e9\u05d1\u05ea"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ינו",
<del> "1": "פבר",
<del> "2": "מרץ",
<del> "3": "אפר",
<del> "4": "מאי",
<del> "5": "יונ",
<del> "6": "יול",
<del> "7": "אוג",
<del> "8": "ספט",
<del> "9": "אוק",
<del> "10": "נוב",
<del> "11": "דצמ"
<add> "0": "\u05d9\u05e0\u05d5",
<add> "1": "\u05e4\u05d1\u05e8",
<add> "2": "\u05de\u05e8\u05e5",
<add> "3": "\u05d0\u05e4\u05e8",
<add> "4": "\u05de\u05d0\u05d9",
<add> "5": "\u05d9\u05d5\u05e0",
<add> "6": "\u05d9\u05d5\u05dc",
<add> "7": "\u05d0\u05d5\u05d2",
<add> "8": "\u05e1\u05e4\u05d8",
<add> "9": "\u05d0\u05d5\u05e7",
<add> "10": "\u05e0\u05d5\u05d1",
<add> "11": "\u05d3\u05e6\u05de"
<ide> },
<del> "fullDate": "EEEE, d בMMMM y",
<del> "longDate": "d בMMMM y",
<del> "medium": "d בMMM yyyy HH:mm:ss",
<del> "mediumDate": "d בMMM yyyy",
<add> "fullDate": "EEEE, d \u05d1MMMM y",
<add> "longDate": "d \u05d1MMMM y",
<add> "medium": "d \u05d1MMM yyyy HH:mm:ss",
<add> "mediumDate": "d \u05d1MMM yyyy",
<ide> "mediumTime": "HH:mm:ss",
<ide> "short": "dd/MM/yy HH:mm",
<ide> "shortDate": "dd/MM/yy",
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₪",
<add> "CURRENCY_SYM": "\u20aa",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_hi-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "रविवार",
<del> "1": "सोमवार",
<del> "2": "मंगलवार",
<del> "3": "बुधवार",
<del> "4": "बृहस्पतिवार",
<del> "5": "शुक्रवार",
<del> "6": "शनिवार"
<add> "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
<add> "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
<add> "2": "\u092e\u0902\u0917\u0932\u0935\u093e\u0930",
<add> "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
<add> "4": "\u092c\u0943\u0939\u0938\u094d\u092a\u0924\u093f\u0935\u093e\u0930",
<add> "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
<add> "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
<ide> },
<ide> "MONTH": {
<del> "0": "जनवरी",
<del> "1": "फरवरी",
<del> "2": "मार्च",
<del> "3": "अप्रैल",
<del> "4": "मई",
<del> "5": "जून",
<del> "6": "जुलाई",
<del> "7": "अगस्त",
<del> "8": "सितम्बर",
<del> "9": "अक्तूबर",
<del> "10": "नवम्बर",
<del> "11": "दिसम्बर"
<add> "0": "\u091c\u0928\u0935\u0930\u0940",
<add> "1": "\u092b\u0930\u0935\u0930\u0940",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
<add> "4": "\u092e\u0908",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u093e\u0908",
<add> "7": "\u0905\u0917\u0938\u094d\u0924",
<add> "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
<add> "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
<add> "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
<add> "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "रवि.",
<del> "1": "सोम.",
<del> "2": "मंगल.",
<del> "3": "बुध.",
<del> "4": "बृह.",
<del> "5": "शुक्र.",
<del> "6": "शनि."
<add> "0": "\u0930\u0935\u093f.",
<add> "1": "\u0938\u094b\u092e.",
<add> "2": "\u092e\u0902\u0917\u0932.",
<add> "3": "\u092c\u0941\u0927.",
<add> "4": "\u092c\u0943\u0939.",
<add> "5": "\u0936\u0941\u0915\u094d\u0930.",
<add> "6": "\u0936\u0928\u093f."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "जनवरी",
<del> "1": "फरवरी",
<del> "2": "मार्च",
<del> "3": "अप्रैल",
<del> "4": "मई",
<del> "5": "जून",
<del> "6": "जुलाई",
<del> "7": "अगस्त",
<del> "8": "सितम्बर",
<del> "9": "अक्तूबर",
<del> "10": "नवम्बर",
<del> "11": "दिसम्बर"
<add> "0": "\u091c\u0928\u0935\u0930\u0940",
<add> "1": "\u092b\u0930\u0935\u0930\u0940",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
<add> "4": "\u092e\u0908",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u093e\u0908",
<add> "7": "\u0905\u0917\u0938\u094d\u0924",
<add> "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
<add> "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
<add> "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
<add> "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_hi.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "रविवार",
<del> "1": "सोमवार",
<del> "2": "मंगलवार",
<del> "3": "बुधवार",
<del> "4": "बृहस्पतिवार",
<del> "5": "शुक्रवार",
<del> "6": "शनिवार"
<add> "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
<add> "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
<add> "2": "\u092e\u0902\u0917\u0932\u0935\u093e\u0930",
<add> "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
<add> "4": "\u092c\u0943\u0939\u0938\u094d\u092a\u0924\u093f\u0935\u093e\u0930",
<add> "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
<add> "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
<ide> },
<ide> "MONTH": {
<del> "0": "जनवरी",
<del> "1": "फरवरी",
<del> "2": "मार्च",
<del> "3": "अप्रैल",
<del> "4": "मई",
<del> "5": "जून",
<del> "6": "जुलाई",
<del> "7": "अगस्त",
<del> "8": "सितम्बर",
<del> "9": "अक्तूबर",
<del> "10": "नवम्बर",
<del> "11": "दिसम्बर"
<add> "0": "\u091c\u0928\u0935\u0930\u0940",
<add> "1": "\u092b\u0930\u0935\u0930\u0940",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
<add> "4": "\u092e\u0908",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u093e\u0908",
<add> "7": "\u0905\u0917\u0938\u094d\u0924",
<add> "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
<add> "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
<add> "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
<add> "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "रवि.",
<del> "1": "सोम.",
<del> "2": "मंगल.",
<del> "3": "बुध.",
<del> "4": "बृह.",
<del> "5": "शुक्र.",
<del> "6": "शनि."
<add> "0": "\u0930\u0935\u093f.",
<add> "1": "\u0938\u094b\u092e.",
<add> "2": "\u092e\u0902\u0917\u0932.",
<add> "3": "\u092c\u0941\u0927.",
<add> "4": "\u092c\u0943\u0939.",
<add> "5": "\u0936\u0941\u0915\u094d\u0930.",
<add> "6": "\u0936\u0928\u093f."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "जनवरी",
<del> "1": "फरवरी",
<del> "2": "मार्च",
<del> "3": "अप्रैल",
<del> "4": "मई",
<del> "5": "जून",
<del> "6": "जुलाई",
<del> "7": "अगस्त",
<del> "8": "सितम्बर",
<del> "9": "अक्तूबर",
<del> "10": "नवम्बर",
<del> "11": "दिसम्बर"
<add> "0": "\u091c\u0928\u0935\u0930\u0940",
<add> "1": "\u092b\u0930\u0935\u0930\u0940",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u0905\u092a\u094d\u0930\u0948\u0932",
<add> "4": "\u092e\u0908",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u093e\u0908",
<add> "7": "\u0905\u0917\u0938\u094d\u0924",
<add> "8": "\u0938\u093f\u0924\u092e\u094d\u092c\u0930",
<add> "9": "\u0905\u0915\u094d\u0924\u0942\u092c\u0930",
<add> "10": "\u0928\u0935\u092e\u094d\u092c\u0930",
<add> "11": "\u0926\u093f\u0938\u092e\u094d\u092c\u0930"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_hr-hr.js
<ide> $provide.value("$locale", {
<ide> "1": "ponedjeljak",
<ide> "2": "utorak",
<ide> "3": "srijeda",
<del> "4": "četvrtak",
<add> "4": "\u010detvrtak",
<ide> "5": "petak",
<ide> "6": "subota"
<ide> },
<ide> "MONTH": {
<del> "0": "siječnja",
<del> "1": "veljače",
<del> "2": "ožujka",
<add> "0": "sije\u010dnja",
<add> "1": "velja\u010de",
<add> "2": "o\u017eujka",
<ide> "3": "travnja",
<ide> "4": "svibnja",
<ide> "5": "lipnja",
<ide> $provide.value("$locale", {
<ide> "1": "pon",
<ide> "2": "uto",
<ide> "3": "sri",
<del> "4": "čet",
<add> "4": "\u010det",
<ide> "5": "pet",
<ide> "6": "sub"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "sij",
<ide> "1": "velj",
<del> "2": "ožu",
<add> "2": "o\u017eu",
<ide> "3": "tra",
<ide> "4": "svi",
<ide> "5": "lip",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_hr.js
<ide> $provide.value("$locale", {
<ide> "1": "ponedjeljak",
<ide> "2": "utorak",
<ide> "3": "srijeda",
<del> "4": "četvrtak",
<add> "4": "\u010detvrtak",
<ide> "5": "petak",
<ide> "6": "subota"
<ide> },
<ide> "MONTH": {
<del> "0": "siječnja",
<del> "1": "veljače",
<del> "2": "ožujka",
<add> "0": "sije\u010dnja",
<add> "1": "velja\u010de",
<add> "2": "o\u017eujka",
<ide> "3": "travnja",
<ide> "4": "svibnja",
<ide> "5": "lipnja",
<ide> $provide.value("$locale", {
<ide> "1": "pon",
<ide> "2": "uto",
<ide> "3": "sri",
<del> "4": "čet",
<add> "4": "\u010det",
<ide> "5": "pet",
<ide> "6": "sub"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "sij",
<ide> "1": "velj",
<del> "2": "ožu",
<add> "2": "o\u017eu",
<ide> "3": "tra",
<ide> "4": "svi",
<ide> "5": "lip",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_hu-hu.js
<ide> $provide.value("$locale", {
<ide> "1": "du."
<ide> },
<ide> "DAY": {
<del> "0": "vasárnap",
<del> "1": "hétfő",
<add> "0": "vas\u00e1rnap",
<add> "1": "h\u00e9tf\u0151",
<ide> "2": "kedd",
<ide> "3": "szerda",
<del> "4": "csütörtök",
<del> "5": "péntek",
<add> "4": "cs\u00fct\u00f6rt\u00f6k",
<add> "5": "p\u00e9ntek",
<ide> "6": "szombat"
<ide> },
<ide> "MONTH": {
<del> "0": "január",
<del> "1": "február",
<del> "2": "március",
<del> "3": "április",
<del> "4": "május",
<del> "5": "június",
<del> "6": "július",
<add> "0": "janu\u00e1r",
<add> "1": "febru\u00e1r",
<add> "2": "m\u00e1rcius",
<add> "3": "\u00e1prilis",
<add> "4": "m\u00e1jus",
<add> "5": "j\u00fanius",
<add> "6": "j\u00falius",
<ide> "7": "augusztus",
<ide> "8": "szeptember",
<del> "9": "október",
<add> "9": "okt\u00f3ber",
<ide> "10": "november",
<ide> "11": "december"
<ide> },
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "jan.",
<ide> "1": "febr.",
<del> "2": "márc.",
<del> "3": "ápr.",
<del> "4": "máj.",
<del> "5": "jún.",
<del> "6": "júl.",
<add> "2": "m\u00e1rc.",
<add> "3": "\u00e1pr.",
<add> "4": "m\u00e1j.",
<add> "5": "j\u00fan.",
<add> "6": "j\u00fal.",
<ide> "7": "aug.",
<ide> "8": "szept.",
<ide> "9": "okt.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Ft",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_hu.js
<ide> $provide.value("$locale", {
<ide> "1": "du."
<ide> },
<ide> "DAY": {
<del> "0": "vasárnap",
<del> "1": "hétfő",
<add> "0": "vas\u00e1rnap",
<add> "1": "h\u00e9tf\u0151",
<ide> "2": "kedd",
<ide> "3": "szerda",
<del> "4": "csütörtök",
<del> "5": "péntek",
<add> "4": "cs\u00fct\u00f6rt\u00f6k",
<add> "5": "p\u00e9ntek",
<ide> "6": "szombat"
<ide> },
<ide> "MONTH": {
<del> "0": "január",
<del> "1": "február",
<del> "2": "március",
<del> "3": "április",
<del> "4": "május",
<del> "5": "június",
<del> "6": "július",
<add> "0": "janu\u00e1r",
<add> "1": "febru\u00e1r",
<add> "2": "m\u00e1rcius",
<add> "3": "\u00e1prilis",
<add> "4": "m\u00e1jus",
<add> "5": "j\u00fanius",
<add> "6": "j\u00falius",
<ide> "7": "augusztus",
<ide> "8": "szeptember",
<del> "9": "október",
<add> "9": "okt\u00f3ber",
<ide> "10": "november",
<ide> "11": "december"
<ide> },
<ide> $provide.value("$locale", {
<ide> "SHORTMONTH": {
<ide> "0": "jan.",
<ide> "1": "febr.",
<del> "2": "márc.",
<del> "3": "ápr.",
<del> "4": "máj.",
<del> "5": "jún.",
<del> "6": "júl.",
<add> "2": "m\u00e1rc.",
<add> "3": "\u00e1pr.",
<add> "4": "m\u00e1j.",
<add> "5": "j\u00fan.",
<add> "6": "j\u00fal.",
<ide> "7": "aug.",
<ide> "8": "szept.",
<ide> "9": "okt.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Ft",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_id-id.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_id.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_in.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_is-is.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "sunnudagur",
<del> "1": "mánudagur",
<del> "2": "þriðjudagur",
<del> "3": "miðvikudagur",
<add> "1": "m\u00e1nudagur",
<add> "2": "\u00feri\u00f0judagur",
<add> "3": "mi\u00f0vikudagur",
<ide> "4": "fimmtudagur",
<del> "5": "föstudagur",
<add> "5": "f\u00f6studagur",
<ide> "6": "laugardagur"
<ide> },
<ide> "MONTH": {
<del> "0": "janúar",
<del> "1": "febrúar",
<add> "0": "jan\u00faar",
<add> "1": "febr\u00faar",
<ide> "2": "mars",
<del> "3": "apríl",
<del> "4": "maí",
<del> "5": "júní",
<del> "6": "júlí",
<del> "7": "ágúst",
<add> "3": "apr\u00edl",
<add> "4": "ma\u00ed",
<add> "5": "j\u00fan\u00ed",
<add> "6": "j\u00fal\u00ed",
<add> "7": "\u00e1g\u00fast",
<ide> "8": "september",
<del> "9": "október",
<del> "10": "nóvember",
<add> "9": "okt\u00f3ber",
<add> "10": "n\u00f3vember",
<ide> "11": "desember"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "sun",
<del> "1": "mán",
<del> "2": "þri",
<del> "3": "mið",
<add> "1": "m\u00e1n",
<add> "2": "\u00feri",
<add> "3": "mi\u00f0",
<ide> "4": "fim",
<del> "5": "fös",
<add> "5": "f\u00f6s",
<ide> "6": "lau"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan",
<ide> "1": "feb",
<ide> "2": "mar",
<ide> "3": "apr",
<del> "4": "maí",
<del> "5": "jún",
<del> "6": "júl",
<del> "7": "ágú",
<add> "4": "ma\u00ed",
<add> "5": "j\u00fan",
<add> "6": "j\u00fal",
<add> "7": "\u00e1g\u00fa",
<ide> "8": "sep",
<ide> "9": "okt",
<del> "10": "nóv",
<add> "10": "n\u00f3v",
<ide> "11": "des"
<ide> },
<ide> "fullDate": "EEEE, d. MMMM y",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_is.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "sunnudagur",
<del> "1": "mánudagur",
<del> "2": "þriðjudagur",
<del> "3": "miðvikudagur",
<add> "1": "m\u00e1nudagur",
<add> "2": "\u00feri\u00f0judagur",
<add> "3": "mi\u00f0vikudagur",
<ide> "4": "fimmtudagur",
<del> "5": "föstudagur",
<add> "5": "f\u00f6studagur",
<ide> "6": "laugardagur"
<ide> },
<ide> "MONTH": {
<del> "0": "janúar",
<del> "1": "febrúar",
<add> "0": "jan\u00faar",
<add> "1": "febr\u00faar",
<ide> "2": "mars",
<del> "3": "apríl",
<del> "4": "maí",
<del> "5": "júní",
<del> "6": "júlí",
<del> "7": "ágúst",
<add> "3": "apr\u00edl",
<add> "4": "ma\u00ed",
<add> "5": "j\u00fan\u00ed",
<add> "6": "j\u00fal\u00ed",
<add> "7": "\u00e1g\u00fast",
<ide> "8": "september",
<del> "9": "október",
<del> "10": "nóvember",
<add> "9": "okt\u00f3ber",
<add> "10": "n\u00f3vember",
<ide> "11": "desember"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "sun",
<del> "1": "mán",
<del> "2": "þri",
<del> "3": "mið",
<add> "1": "m\u00e1n",
<add> "2": "\u00feri",
<add> "3": "mi\u00f0",
<ide> "4": "fim",
<del> "5": "fös",
<add> "5": "f\u00f6s",
<ide> "6": "lau"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan",
<ide> "1": "feb",
<ide> "2": "mar",
<ide> "3": "apr",
<del> "4": "maí",
<del> "5": "jún",
<del> "6": "júl",
<del> "7": "ágú",
<add> "4": "ma\u00ed",
<add> "5": "j\u00fan",
<add> "6": "j\u00fal",
<add> "7": "\u00e1g\u00fa",
<ide> "8": "sep",
<ide> "9": "okt",
<del> "10": "nóv",
<add> "10": "n\u00f3v",
<ide> "11": "des"
<ide> },
<ide> "fullDate": "EEEE, d. MMMM y",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_it-it.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "domenica",
<del> "1": "lunedì",
<del> "2": "martedì",
<del> "3": "mercoledì",
<del> "4": "giovedì",
<del> "5": "venerdì",
<add> "1": "luned\u00ec",
<add> "2": "marted\u00ec",
<add> "3": "mercoled\u00ec",
<add> "4": "gioved\u00ec",
<add> "5": "venerd\u00ec",
<ide> "6": "sabato"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_it-sm.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "domenica",
<del> "1": "lunedì",
<del> "2": "martedì",
<del> "3": "mercoledì",
<del> "4": "giovedì",
<del> "5": "venerdì",
<add> "1": "luned\u00ec",
<add> "2": "marted\u00ec",
<add> "3": "mercoled\u00ec",
<add> "4": "gioved\u00ec",
<add> "5": "venerd\u00ec",
<ide> "6": "sabato"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_it.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "domenica",
<del> "1": "lunedì",
<del> "2": "martedì",
<del> "3": "mercoledì",
<del> "4": "giovedì",
<del> "5": "venerdì",
<add> "1": "luned\u00ec",
<add> "2": "marted\u00ec",
<add> "3": "mercoled\u00ec",
<add> "4": "gioved\u00ec",
<add> "5": "venerd\u00ec",
<ide> "6": "sabato"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_iw.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "לפנה״צ",
<del> "1": "אחה״צ"
<add> "0": "\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6",
<add> "1": "\u05d0\u05d7\u05d4\u05f4\u05e6"
<ide> },
<ide> "DAY": {
<del> "0": "יום ראשון",
<del> "1": "יום שני",
<del> "2": "יום שלישי",
<del> "3": "יום רביעי",
<del> "4": "יום חמישי",
<del> "5": "יום שישי",
<del> "6": "יום שבת"
<add> "0": "\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df",
<add> "1": "\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9",
<add> "2": "\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9",
<add> "3": "\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9",
<add> "4": "\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9",
<add> "5": "\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9",
<add> "6": "\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"
<ide> },
<ide> "MONTH": {
<del> "0": "ינואר",
<del> "1": "פברואר",
<del> "2": "מרץ",
<del> "3": "אפריל",
<del> "4": "מאי",
<del> "5": "יוני",
<del> "6": "יולי",
<del> "7": "אוגוסט",
<del> "8": "ספטמבר",
<del> "9": "אוקטובר",
<del> "10": "נובמבר",
<del> "11": "דצמבר"
<add> "0": "\u05d9\u05e0\u05d5\u05d0\u05e8",
<add> "1": "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8",
<add> "2": "\u05de\u05e8\u05e5",
<add> "3": "\u05d0\u05e4\u05e8\u05d9\u05dc",
<add> "4": "\u05de\u05d0\u05d9",
<add> "5": "\u05d9\u05d5\u05e0\u05d9",
<add> "6": "\u05d9\u05d5\u05dc\u05d9",
<add> "7": "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8",
<add> "8": "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8",
<add> "9": "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8",
<add> "10": "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8",
<add> "11": "\u05d3\u05e6\u05de\u05d1\u05e8"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "יום א׳",
<del> "1": "יום ב׳",
<del> "2": "יום ג׳",
<del> "3": "יום ד׳",
<del> "4": "יום ה׳",
<del> "5": "יום ו׳",
<del> "6": "שבת"
<add> "0": "\u05d9\u05d5\u05dd \u05d0\u05f3",
<add> "1": "\u05d9\u05d5\u05dd \u05d1\u05f3",
<add> "2": "\u05d9\u05d5\u05dd \u05d2\u05f3",
<add> "3": "\u05d9\u05d5\u05dd \u05d3\u05f3",
<add> "4": "\u05d9\u05d5\u05dd \u05d4\u05f3",
<add> "5": "\u05d9\u05d5\u05dd \u05d5\u05f3",
<add> "6": "\u05e9\u05d1\u05ea"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ינו",
<del> "1": "פבר",
<del> "2": "מרץ",
<del> "3": "אפר",
<del> "4": "מאי",
<del> "5": "יונ",
<del> "6": "יול",
<del> "7": "אוג",
<del> "8": "ספט",
<del> "9": "אוק",
<del> "10": "נוב",
<del> "11": "דצמ"
<add> "0": "\u05d9\u05e0\u05d5",
<add> "1": "\u05e4\u05d1\u05e8",
<add> "2": "\u05de\u05e8\u05e5",
<add> "3": "\u05d0\u05e4\u05e8",
<add> "4": "\u05de\u05d0\u05d9",
<add> "5": "\u05d9\u05d5\u05e0",
<add> "6": "\u05d9\u05d5\u05dc",
<add> "7": "\u05d0\u05d5\u05d2",
<add> "8": "\u05e1\u05e4\u05d8",
<add> "9": "\u05d0\u05d5\u05e7",
<add> "10": "\u05e0\u05d5\u05d1",
<add> "11": "\u05d3\u05e6\u05de"
<ide> },
<del> "fullDate": "EEEE, d בMMMM y",
<del> "longDate": "d בMMMM y",
<del> "medium": "d בMMM yyyy HH:mm:ss",
<del> "mediumDate": "d בMMM yyyy",
<add> "fullDate": "EEEE, d \u05d1MMMM y",
<add> "longDate": "d \u05d1MMMM y",
<add> "medium": "d \u05d1MMM yyyy HH:mm:ss",
<add> "mediumDate": "d \u05d1MMM yyyy",
<ide> "mediumTime": "HH:mm:ss",
<ide> "short": "dd/MM/yy HH:mm",
<ide> "shortDate": "dd/MM/yy",
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₪",
<add> "CURRENCY_SYM": "\u20aa",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ja-jp.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "午前",
<del> "1": "午後"
<add> "0": "\u5348\u524d",
<add> "1": "\u5348\u5f8c"
<ide> },
<ide> "DAY": {
<del> "0": "日曜日",
<del> "1": "月曜日",
<del> "2": "火曜日",
<del> "3": "水曜日",
<del> "4": "木曜日",
<del> "5": "金曜日",
<del> "6": "土曜日"
<add> "0": "\u65e5\u66dc\u65e5",
<add> "1": "\u6708\u66dc\u65e5",
<add> "2": "\u706b\u66dc\u65e5",
<add> "3": "\u6c34\u66dc\u65e5",
<add> "4": "\u6728\u66dc\u65e5",
<add> "5": "\u91d1\u66dc\u65e5",
<add> "6": "\u571f\u66dc\u65e5"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "日",
<del> "1": "月",
<del> "2": "火",
<del> "3": "水",
<del> "4": "木",
<del> "5": "金",
<del> "6": "土"
<add> "0": "\u65e5",
<add> "1": "\u6708",
<add> "2": "\u706b",
<add> "3": "\u6c34",
<add> "4": "\u6728",
<add> "5": "\u91d1",
<add> "6": "\u571f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<ide> "medium": "yyyy/MM/dd H:mm:ss",
<ide> "mediumDate": "yyyy/MM/dd",
<ide> "mediumTime": "H:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "¥",
<add> "CURRENCY_SYM": "\u00a5",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ja.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "午前",
<del> "1": "午後"
<add> "0": "\u5348\u524d",
<add> "1": "\u5348\u5f8c"
<ide> },
<ide> "DAY": {
<del> "0": "日曜日",
<del> "1": "月曜日",
<del> "2": "火曜日",
<del> "3": "水曜日",
<del> "4": "木曜日",
<del> "5": "金曜日",
<del> "6": "土曜日"
<add> "0": "\u65e5\u66dc\u65e5",
<add> "1": "\u6708\u66dc\u65e5",
<add> "2": "\u706b\u66dc\u65e5",
<add> "3": "\u6c34\u66dc\u65e5",
<add> "4": "\u6728\u66dc\u65e5",
<add> "5": "\u91d1\u66dc\u65e5",
<add> "6": "\u571f\u66dc\u65e5"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "日",
<del> "1": "月",
<del> "2": "火",
<del> "3": "水",
<del> "4": "木",
<del> "5": "金",
<del> "6": "土"
<add> "0": "\u65e5",
<add> "1": "\u6708",
<add> "2": "\u706b",
<add> "3": "\u6c34",
<add> "4": "\u6728",
<add> "5": "\u91d1",
<add> "6": "\u571f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<ide> "medium": "yyyy/MM/dd H:mm:ss",
<ide> "mediumDate": "yyyy/MM/dd",
<ide> "mediumTime": "H:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "¥",
<add> "CURRENCY_SYM": "\u00a5",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_kn-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ರವಿವಾರ",
<del> "1": "ಸೋಮವಾರ",
<del> "2": "ಮಂಗಳವಾರ",
<del> "3": "ಬುಧವಾರ",
<del> "4": "ಗುರುವಾರ",
<del> "5": "ಶುಕ್ರವಾರ",
<del> "6": "ಶನಿವಾರ"
<add> "0": "\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
<add> "1": "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
<add> "2": "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
<add> "3": "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
<add> "4": "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
<add> "5": "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
<add> "6": "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
<ide> },
<ide> "MONTH": {
<del> "0": "ಜನವರೀ",
<del> "1": "ಫೆಬ್ರವರೀ",
<del> "2": "ಮಾರ್ಚ್",
<del> "3": "ಎಪ್ರಿಲ್",
<del> "4": "ಮೆ",
<del> "5": "ಜೂನ್",
<del> "6": "ಜುಲೈ",
<del> "7": "ಆಗಸ್ಟ್",
<del> "8": "ಸಪ್ಟೆಂಬರ್",
<del> "9": "ಅಕ್ಟೋಬರ್",
<del> "10": "ನವೆಂಬರ್",
<del> "11": "ಡಿಸೆಂಬರ್"
<add> "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
<add> "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
<add> "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
<add> "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
<add> "4": "\u0cae\u0cc6",
<add> "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
<add> "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
<add> "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
<add> "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
<add> "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ರ.",
<del> "1": "ಸೋ.",
<del> "2": "ಮಂ.",
<del> "3": "ಬು.",
<del> "4": "ಗು.",
<del> "5": "ಶು.",
<del> "6": "ಶನಿ."
<add> "0": "\u0cb0.",
<add> "1": "\u0cb8\u0ccb.",
<add> "2": "\u0cae\u0c82.",
<add> "3": "\u0cac\u0cc1.",
<add> "4": "\u0c97\u0cc1.",
<add> "5": "\u0cb6\u0cc1.",
<add> "6": "\u0cb6\u0ca8\u0cbf."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ಜನವರೀ",
<del> "1": "ಫೆಬ್ರವರೀ",
<del> "2": "ಮಾರ್ಚ್",
<del> "3": "ಎಪ್ರಿಲ್",
<del> "4": "ಮೆ",
<del> "5": "ಜೂನ್",
<del> "6": "ಜುಲೈ",
<del> "7": "ಆಗಸ್ಟ್",
<del> "8": "ಸಪ್ಟೆಂಬರ್",
<del> "9": "ಅಕ್ಟೋಬರ್",
<del> "10": "ನವೆಂಬರ್",
<del> "11": "ಡಿಸೆಂಬರ್"
<add> "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
<add> "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
<add> "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
<add> "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
<add> "4": "\u0cae\u0cc6",
<add> "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
<add> "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
<add> "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
<add> "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
<add> "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "hh:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_kn.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ರವಿವಾರ",
<del> "1": "ಸೋಮವಾರ",
<del> "2": "ಮಂಗಳವಾರ",
<del> "3": "ಬುಧವಾರ",
<del> "4": "ಗುರುವಾರ",
<del> "5": "ಶುಕ್ರವಾರ",
<del> "6": "ಶನಿವಾರ"
<add> "0": "\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
<add> "1": "\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
<add> "2": "\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
<add> "3": "\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
<add> "4": "\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
<add> "5": "\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
<add> "6": "\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
<ide> },
<ide> "MONTH": {
<del> "0": "ಜನವರೀ",
<del> "1": "ಫೆಬ್ರವರೀ",
<del> "2": "ಮಾರ್ಚ್",
<del> "3": "ಎಪ್ರಿಲ್",
<del> "4": "ಮೆ",
<del> "5": "ಜೂನ್",
<del> "6": "ಜುಲೈ",
<del> "7": "ಆಗಸ್ಟ್",
<del> "8": "ಸಪ್ಟೆಂಬರ್",
<del> "9": "ಅಕ್ಟೋಬರ್",
<del> "10": "ನವೆಂಬರ್",
<del> "11": "ಡಿಸೆಂಬರ್"
<add> "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
<add> "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
<add> "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
<add> "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
<add> "4": "\u0cae\u0cc6",
<add> "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
<add> "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
<add> "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
<add> "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
<add> "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ರ.",
<del> "1": "ಸೋ.",
<del> "2": "ಮಂ.",
<del> "3": "ಬು.",
<del> "4": "ಗು.",
<del> "5": "ಶು.",
<del> "6": "ಶನಿ."
<add> "0": "\u0cb0.",
<add> "1": "\u0cb8\u0ccb.",
<add> "2": "\u0cae\u0c82.",
<add> "3": "\u0cac\u0cc1.",
<add> "4": "\u0c97\u0cc1.",
<add> "5": "\u0cb6\u0cc1.",
<add> "6": "\u0cb6\u0ca8\u0cbf."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ಜನವರೀ",
<del> "1": "ಫೆಬ್ರವರೀ",
<del> "2": "ಮಾರ್ಚ್",
<del> "3": "ಎಪ್ರಿಲ್",
<del> "4": "ಮೆ",
<del> "5": "ಜೂನ್",
<del> "6": "ಜುಲೈ",
<del> "7": "ಆಗಸ್ಟ್",
<del> "8": "ಸಪ್ಟೆಂಬರ್",
<del> "9": "ಅಕ್ಟೋಬರ್",
<del> "10": "ನವೆಂಬರ್",
<del> "11": "ಡಿಸೆಂಬರ್"
<add> "0": "\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
<add> "1": "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
<add> "2": "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
<add> "3": "\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
<add> "4": "\u0cae\u0cc6",
<add> "5": "\u0c9c\u0cc2\u0ca8\u0ccd",
<add> "6": "\u0c9c\u0cc1\u0cb2\u0cc8",
<add> "7": "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
<add> "8": "\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "9": "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
<add> "10": "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
<add> "11": "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "hh:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ko-kr.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "오전",
<del> "1": "오후"
<add> "0": "\uc624\uc804",
<add> "1": "\uc624\ud6c4"
<ide> },
<ide> "DAY": {
<del> "0": "일요일",
<del> "1": "월요일",
<del> "2": "화요일",
<del> "3": "수요일",
<del> "4": "목요일",
<del> "5": "금요일",
<del> "6": "토요일"
<add> "0": "\uc77c\uc694\uc77c",
<add> "1": "\uc6d4\uc694\uc77c",
<add> "2": "\ud654\uc694\uc77c",
<add> "3": "\uc218\uc694\uc77c",
<add> "4": "\ubaa9\uc694\uc77c",
<add> "5": "\uae08\uc694\uc77c",
<add> "6": "\ud1a0\uc694\uc77c"
<ide> },
<ide> "MONTH": {
<del> "0": "1월",
<del> "1": "2월",
<del> "2": "3월",
<del> "3": "4월",
<del> "4": "5월",
<del> "5": "6월",
<del> "6": "7월",
<del> "7": "8월",
<del> "8": "9월",
<del> "9": "10월",
<del> "10": "11월",
<del> "11": "12월"
<add> "0": "1\uc6d4",
<add> "1": "2\uc6d4",
<add> "2": "3\uc6d4",
<add> "3": "4\uc6d4",
<add> "4": "5\uc6d4",
<add> "5": "6\uc6d4",
<add> "6": "7\uc6d4",
<add> "7": "8\uc6d4",
<add> "8": "9\uc6d4",
<add> "9": "10\uc6d4",
<add> "10": "11\uc6d4",
<add> "11": "12\uc6d4"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "일",
<del> "1": "월",
<del> "2": "화",
<del> "3": "수",
<del> "4": "목",
<del> "5": "금",
<del> "6": "토"
<add> "0": "\uc77c",
<add> "1": "\uc6d4",
<add> "2": "\ud654",
<add> "3": "\uc218",
<add> "4": "\ubaa9",
<add> "5": "\uae08",
<add> "6": "\ud1a0"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1월",
<del> "1": "2월",
<del> "2": "3월",
<del> "3": "4월",
<del> "4": "5월",
<del> "5": "6월",
<del> "6": "7월",
<del> "7": "8월",
<del> "8": "9월",
<del> "9": "10월",
<del> "10": "11월",
<del> "11": "12월"
<add> "0": "1\uc6d4",
<add> "1": "2\uc6d4",
<add> "2": "3\uc6d4",
<add> "3": "4\uc6d4",
<add> "4": "5\uc6d4",
<add> "5": "6\uc6d4",
<add> "6": "7\uc6d4",
<add> "7": "8\uc6d4",
<add> "8": "9\uc6d4",
<add> "9": "10\uc6d4",
<add> "10": "11\uc6d4",
<add> "11": "12\uc6d4"
<ide> },
<del> "fullDate": "y년 M월 d일 EEEE",
<del> "longDate": "y년 M월 d일",
<add> "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
<add> "longDate": "y\ub144 M\uc6d4 d\uc77c",
<ide> "medium": "yyyy. M. d. a h:mm:ss",
<ide> "mediumDate": "yyyy. M. d.",
<ide> "mediumTime": "a h:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "a h:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₩",
<add> "CURRENCY_SYM": "\u20a9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ko.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "오전",
<del> "1": "오후"
<add> "0": "\uc624\uc804",
<add> "1": "\uc624\ud6c4"
<ide> },
<ide> "DAY": {
<del> "0": "일요일",
<del> "1": "월요일",
<del> "2": "화요일",
<del> "3": "수요일",
<del> "4": "목요일",
<del> "5": "금요일",
<del> "6": "토요일"
<add> "0": "\uc77c\uc694\uc77c",
<add> "1": "\uc6d4\uc694\uc77c",
<add> "2": "\ud654\uc694\uc77c",
<add> "3": "\uc218\uc694\uc77c",
<add> "4": "\ubaa9\uc694\uc77c",
<add> "5": "\uae08\uc694\uc77c",
<add> "6": "\ud1a0\uc694\uc77c"
<ide> },
<ide> "MONTH": {
<del> "0": "1월",
<del> "1": "2월",
<del> "2": "3월",
<del> "3": "4월",
<del> "4": "5월",
<del> "5": "6월",
<del> "6": "7월",
<del> "7": "8월",
<del> "8": "9월",
<del> "9": "10월",
<del> "10": "11월",
<del> "11": "12월"
<add> "0": "1\uc6d4",
<add> "1": "2\uc6d4",
<add> "2": "3\uc6d4",
<add> "3": "4\uc6d4",
<add> "4": "5\uc6d4",
<add> "5": "6\uc6d4",
<add> "6": "7\uc6d4",
<add> "7": "8\uc6d4",
<add> "8": "9\uc6d4",
<add> "9": "10\uc6d4",
<add> "10": "11\uc6d4",
<add> "11": "12\uc6d4"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "일",
<del> "1": "월",
<del> "2": "화",
<del> "3": "수",
<del> "4": "목",
<del> "5": "금",
<del> "6": "토"
<add> "0": "\uc77c",
<add> "1": "\uc6d4",
<add> "2": "\ud654",
<add> "3": "\uc218",
<add> "4": "\ubaa9",
<add> "5": "\uae08",
<add> "6": "\ud1a0"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1월",
<del> "1": "2월",
<del> "2": "3월",
<del> "3": "4월",
<del> "4": "5월",
<del> "5": "6월",
<del> "6": "7월",
<del> "7": "8월",
<del> "8": "9월",
<del> "9": "10월",
<del> "10": "11월",
<del> "11": "12월"
<add> "0": "1\uc6d4",
<add> "1": "2\uc6d4",
<add> "2": "3\uc6d4",
<add> "3": "4\uc6d4",
<add> "4": "5\uc6d4",
<add> "5": "6\uc6d4",
<add> "6": "7\uc6d4",
<add> "7": "8\uc6d4",
<add> "8": "9\uc6d4",
<add> "9": "10\uc6d4",
<add> "10": "11\uc6d4",
<add> "11": "12\uc6d4"
<ide> },
<del> "fullDate": "y년 M월 d일 EEEE",
<del> "longDate": "y년 M월 d일",
<add> "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
<add> "longDate": "y\ub144 M\uc6d4 d\uc77c",
<ide> "medium": "yyyy. M. d. a h:mm:ss",
<ide> "mediumDate": "yyyy. M. d.",
<ide> "mediumTime": "a h:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "a h:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₩",
<add> "CURRENCY_SYM": "\u20a9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ln-cd.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ntɔ́ngɔ́",
<del> "1": "mpókwa"
<add> "0": "nt\u0254\u0301ng\u0254\u0301",
<add> "1": "mp\u00f3kwa"
<ide> },
<ide> "DAY": {
<ide> "0": "eyenga",
<del> "1": "mokɔlɔ mwa yambo",
<del> "2": "mokɔlɔ mwa míbalé",
<del> "3": "mokɔlɔ mwa mísáto",
<del> "4": "mokɔlɔ ya mínéi",
<del> "5": "mokɔlɔ ya mítáno",
<del> "6": "mpɔ́sɔ"
<add> "1": "mok\u0254l\u0254 mwa yambo",
<add> "2": "mok\u0254l\u0254 mwa m\u00edbal\u00e9",
<add> "3": "mok\u0254l\u0254 mwa m\u00eds\u00e1to",
<add> "4": "mok\u0254l\u0254 ya m\u00edn\u00e9i",
<add> "5": "mok\u0254l\u0254 ya m\u00edt\u00e1no",
<add> "6": "mp\u0254\u0301s\u0254"
<ide> },
<ide> "MONTH": {
<del> "0": "sánzá ya yambo",
<del> "1": "sánzá ya míbalé",
<del> "2": "sánzá ya mísáto",
<del> "3": "sánzá ya mínei",
<del> "4": "sánzá ya mítáno",
<del> "5": "sánzá ya motóbá",
<del> "6": "sánzá ya nsambo",
<del> "7": "sánzá ya mwambe",
<del> "8": "sánzá ya libwa",
<del> "9": "sánzá ya zómi",
<del> "10": "sánzá ya zómi na mɔ̌kɔ́",
<del> "11": "sánzá ya zómi na míbalé"
<add> "0": "s\u00e1nz\u00e1 ya yambo",
<add> "1": "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
<add> "2": "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
<add> "3": "s\u00e1nz\u00e1 ya m\u00ednei",
<add> "4": "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
<add> "5": "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
<add> "6": "s\u00e1nz\u00e1 ya nsambo",
<add> "7": "s\u00e1nz\u00e1 ya mwambe",
<add> "8": "s\u00e1nz\u00e1 ya libwa",
<add> "9": "s\u00e1nz\u00e1 ya z\u00f3mi",
<add> "10": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
<add> "11": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "eye",
<ide> $provide.value("$locale", {
<ide> "6": "yul",
<ide> "7": "agt",
<ide> "8": "stb",
<del> "9": "ɔtb",
<add> "9": "\u0254tb",
<ide> "10": "nvb",
<ide> "11": "dsb"
<ide> },
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ln.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ntɔ́ngɔ́",
<del> "1": "mpókwa"
<add> "0": "nt\u0254\u0301ng\u0254\u0301",
<add> "1": "mp\u00f3kwa"
<ide> },
<ide> "DAY": {
<ide> "0": "eyenga",
<del> "1": "mokɔlɔ mwa yambo",
<del> "2": "mokɔlɔ mwa míbalé",
<del> "3": "mokɔlɔ mwa mísáto",
<del> "4": "mokɔlɔ ya mínéi",
<del> "5": "mokɔlɔ ya mítáno",
<del> "6": "mpɔ́sɔ"
<add> "1": "mok\u0254l\u0254 mwa yambo",
<add> "2": "mok\u0254l\u0254 mwa m\u00edbal\u00e9",
<add> "3": "mok\u0254l\u0254 mwa m\u00eds\u00e1to",
<add> "4": "mok\u0254l\u0254 ya m\u00edn\u00e9i",
<add> "5": "mok\u0254l\u0254 ya m\u00edt\u00e1no",
<add> "6": "mp\u0254\u0301s\u0254"
<ide> },
<ide> "MONTH": {
<del> "0": "sánzá ya yambo",
<del> "1": "sánzá ya míbalé",
<del> "2": "sánzá ya mísáto",
<del> "3": "sánzá ya mínei",
<del> "4": "sánzá ya mítáno",
<del> "5": "sánzá ya motóbá",
<del> "6": "sánzá ya nsambo",
<del> "7": "sánzá ya mwambe",
<del> "8": "sánzá ya libwa",
<del> "9": "sánzá ya zómi",
<del> "10": "sánzá ya zómi na mɔ̌kɔ́",
<del> "11": "sánzá ya zómi na míbalé"
<add> "0": "s\u00e1nz\u00e1 ya yambo",
<add> "1": "s\u00e1nz\u00e1 ya m\u00edbal\u00e9",
<add> "2": "s\u00e1nz\u00e1 ya m\u00eds\u00e1to",
<add> "3": "s\u00e1nz\u00e1 ya m\u00ednei",
<add> "4": "s\u00e1nz\u00e1 ya m\u00edt\u00e1no",
<add> "5": "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1",
<add> "6": "s\u00e1nz\u00e1 ya nsambo",
<add> "7": "s\u00e1nz\u00e1 ya mwambe",
<add> "8": "s\u00e1nz\u00e1 ya libwa",
<add> "9": "s\u00e1nz\u00e1 ya z\u00f3mi",
<add> "10": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301",
<add> "11": "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "eye",
<ide> $provide.value("$locale", {
<ide> "6": "yul",
<ide> "7": "agt",
<ide> "8": "stb",
<del> "9": "ɔtb",
<add> "9": "\u0254tb",
<ide> "10": "nvb",
<ide> "11": "dsb"
<ide> },
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_lt-lt.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "priešpiet",
<add> "0": "prie\u0161piet",
<ide> "1": "popiet"
<ide> },
<ide> "DAY": {
<ide> "0": "sekmadienis",
<ide> "1": "pirmadienis",
<ide> "2": "antradienis",
<del> "3": "trečiadienis",
<add> "3": "tre\u010diadienis",
<ide> "4": "ketvirtadienis",
<ide> "5": "penktadienis",
<del> "6": "šeštadienis"
<add> "6": "\u0161e\u0161tadienis"
<ide> },
<ide> "MONTH": {
<ide> "0": "sausio",
<ide> "1": "vasaris",
<ide> "2": "kovas",
<ide> "3": "balandis",
<del> "4": "gegužė",
<del> "5": "birželis",
<add> "4": "gegu\u017e\u0117",
<add> "5": "bir\u017eelis",
<ide> "6": "liepa",
<del> "7": "rugpjūtis",
<del> "8": "rugsėjis",
<add> "7": "rugpj\u016btis",
<add> "8": "rugs\u0117jis",
<ide> "9": "spalis",
<ide> "10": "lapkritis",
<ide> "11": "gruodis"
<ide> $provide.value("$locale", {
<ide> "3": "Tr",
<ide> "4": "Kt",
<ide> "5": "Pn",
<del> "6": "Št"
<add> "6": "\u0160t"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Saus.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Lt",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_lt.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "priešpiet",
<add> "0": "prie\u0161piet",
<ide> "1": "popiet"
<ide> },
<ide> "DAY": {
<ide> "0": "sekmadienis",
<ide> "1": "pirmadienis",
<ide> "2": "antradienis",
<del> "3": "trečiadienis",
<add> "3": "tre\u010diadienis",
<ide> "4": "ketvirtadienis",
<ide> "5": "penktadienis",
<del> "6": "šeštadienis"
<add> "6": "\u0161e\u0161tadienis"
<ide> },
<ide> "MONTH": {
<ide> "0": "sausio",
<ide> "1": "vasaris",
<ide> "2": "kovas",
<ide> "3": "balandis",
<del> "4": "gegužė",
<del> "5": "birželis",
<add> "4": "gegu\u017e\u0117",
<add> "5": "bir\u017eelis",
<ide> "6": "liepa",
<del> "7": "rugpjūtis",
<del> "8": "rugsėjis",
<add> "7": "rugpj\u016btis",
<add> "8": "rugs\u0117jis",
<ide> "9": "spalis",
<ide> "10": "lapkritis",
<ide> "11": "gruodis"
<ide> $provide.value("$locale", {
<ide> "3": "Tr",
<ide> "4": "Kt",
<ide> "5": "Pn",
<del> "6": "Št"
<add> "6": "\u0160t"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Saus.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Lt",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_lv-lv.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "priekšpusdienā",
<del> "1": "pēcpusdienā"
<add> "0": "priek\u0161pusdien\u0101",
<add> "1": "p\u0113cpusdien\u0101"
<ide> },
<ide> "DAY": {
<del> "0": "svētdiena",
<add> "0": "sv\u0113tdiena",
<ide> "1": "pirmdiena",
<ide> "2": "otrdiena",
<del> "3": "trešdiena",
<add> "3": "tre\u0161diena",
<ide> "4": "ceturtdiena",
<ide> "5": "piektdiena",
<ide> "6": "sestdiena"
<ide> },
<ide> "MONTH": {
<del> "0": "janvāris",
<del> "1": "februāris",
<add> "0": "janv\u0101ris",
<add> "1": "febru\u0101ris",
<ide> "2": "marts",
<del> "3": "aprīlis",
<add> "3": "apr\u012blis",
<ide> "4": "maijs",
<del> "5": "jūnijs",
<del> "6": "jūlijs",
<add> "5": "j\u016bnijs",
<add> "6": "j\u016blijs",
<ide> "7": "augusts",
<ide> "8": "septembris",
<ide> "9": "oktobris",
<ide> $provide.value("$locale", {
<ide> "2": "marts",
<ide> "3": "apr.",
<ide> "4": "maijs",
<del> "5": "jūn.",
<del> "6": "jūl.",
<add> "5": "j\u016bn.",
<add> "6": "j\u016bl.",
<ide> "7": "aug.",
<ide> "8": "sept.",
<ide> "9": "okt.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Ls",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_lv.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "priekšpusdienā",
<del> "1": "pēcpusdienā"
<add> "0": "priek\u0161pusdien\u0101",
<add> "1": "p\u0113cpusdien\u0101"
<ide> },
<ide> "DAY": {
<del> "0": "svētdiena",
<add> "0": "sv\u0113tdiena",
<ide> "1": "pirmdiena",
<ide> "2": "otrdiena",
<del> "3": "trešdiena",
<add> "3": "tre\u0161diena",
<ide> "4": "ceturtdiena",
<ide> "5": "piektdiena",
<ide> "6": "sestdiena"
<ide> },
<ide> "MONTH": {
<del> "0": "janvāris",
<del> "1": "februāris",
<add> "0": "janv\u0101ris",
<add> "1": "febru\u0101ris",
<ide> "2": "marts",
<del> "3": "aprīlis",
<add> "3": "apr\u012blis",
<ide> "4": "maijs",
<del> "5": "jūnijs",
<del> "6": "jūlijs",
<add> "5": "j\u016bnijs",
<add> "6": "j\u016blijs",
<ide> "7": "augusts",
<ide> "8": "septembris",
<ide> "9": "oktobris",
<ide> $provide.value("$locale", {
<ide> "2": "marts",
<ide> "3": "apr.",
<ide> "4": "maijs",
<del> "5": "jūn.",
<del> "6": "jūl.",
<add> "5": "j\u016bn.",
<add> "6": "j\u016bl.",
<ide> "7": "aug.",
<ide> "8": "sept.",
<ide> "9": "okt.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Ls",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ml-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ഞായറാഴ്ച",
<del> "1": "തിങ്കളാഴ്ച",
<del> "2": "ചൊവ്വാഴ്ച",
<del> "3": "ബുധനാഴ്ച",
<del> "4": "വ്യാഴാഴ്ച",
<del> "5": "വെള്ളിയാഴ്ച",
<del> "6": "ശനിയാഴ്ച"
<add> "0": "\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a",
<add> "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a",
<add> "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a",
<add> "3": "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a",
<add> "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a",
<add> "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a",
<add> "6": "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a"
<ide> },
<ide> "MONTH": {
<del> "0": "ജനുവരി",
<del> "1": "ഫെബ്രുവരി",
<del> "2": "മാര്ച്ച്",
<del> "3": "ഏപ്രില്",
<del> "4": "മേയ്",
<del> "5": "ജൂണ്",
<del> "6": "ജൂലൈ",
<del> "7": "ആഗസ്റ്റ്",
<del> "8": "സെപ്റ്റംബര്",
<del> "9": "ഒക്ടോബര്",
<del> "10": "നവംബര്",
<del> "11": "ഡിസംബര്"
<add> "0": "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f",
<add> "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f",
<add> "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d\u0d1a\u0d4d\u0d1a\u0d4d",
<add> "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d32\u0d4d\u200d",
<add> "4": "\u0d2e\u0d47\u0d2f\u0d4d",
<add> "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
<add> "6": "\u0d1c\u0d42\u0d32\u0d48",
<add> "7": "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
<add> "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d30\u0d4d\u200d",
<add> "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d30\u0d4d\u200d",
<add> "10": "\u0d28\u0d35\u0d02\u0d2c\u0d30\u0d4d\u200d",
<add> "11": "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d30\u0d4d\u200d"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ഞായര്",
<del> "1": "തിങ്കള്",
<del> "2": "ചൊവ്വ",
<del> "3": "ബുധന്",
<del> "4": "വ്യാഴം",
<del> "5": "വെള്ളി",
<del> "6": "ശനി"
<add> "0": "\u0d1e\u0d3e\u0d2f\u0d30\u0d4d\u200d",
<add> "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d4d\u200d",
<add> "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35",
<add> "3": "\u0d2c\u0d41\u0d27\u0d28\u0d4d\u200d",
<add> "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02",
<add> "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f",
<add> "6": "\u0d36\u0d28\u0d3f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ജനു",
<del> "1": "ഫെബ്രു",
<del> "2": "മാര്",
<del> "3": "ഏപ്രി",
<del> "4": "മേയ്",
<del> "5": "ജൂണ്",
<del> "6": "ജൂലൈ",
<del> "7": "ഓഗ",
<del> "8": "സെപ്റ്റം",
<del> "9": "ഒക്ടോ",
<del> "10": "നവം",
<del> "11": "ഡിസം"
<add> "0": "\u0d1c\u0d28\u0d41",
<add> "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41",
<add> "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d",
<add> "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f",
<add> "4": "\u0d2e\u0d47\u0d2f\u0d4d",
<add> "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
<add> "6": "\u0d1c\u0d42\u0d32\u0d48",
<add> "7": "\u0d13\u0d17",
<add> "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02",
<add> "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b",
<add> "10": "\u0d28\u0d35\u0d02",
<add> "11": "\u0d21\u0d3f\u0d38\u0d02"
<ide> },
<ide> "fullDate": "y, MMMM d, EEEE",
<ide> "longDate": "y, MMMM d",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": "\u00A4",
<add> "negSuf": "\u00a4",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ml.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ഞായറാഴ്ച",
<del> "1": "തിങ്കളാഴ്ച",
<del> "2": "ചൊവ്വാഴ്ച",
<del> "3": "ബുധനാഴ്ച",
<del> "4": "വ്യാഴാഴ്ച",
<del> "5": "വെള്ളിയാഴ്ച",
<del> "6": "ശനിയാഴ്ച"
<add> "0": "\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u0d1a",
<add> "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u0d1a",
<add> "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a",
<add> "3": "\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u0d1a",
<add> "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u0d1a",
<add> "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a",
<add> "6": "\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u0d1a"
<ide> },
<ide> "MONTH": {
<del> "0": "ജനുവരി",
<del> "1": "ഫെബ്രുവരി",
<del> "2": "മാര്ച്ച്",
<del> "3": "ഏപ്രില്",
<del> "4": "മേയ്",
<del> "5": "ജൂണ്",
<del> "6": "ജൂലൈ",
<del> "7": "ആഗസ്റ്റ്",
<del> "8": "സെപ്റ്റംബര്",
<del> "9": "ഒക്ടോബര്",
<del> "10": "നവംബര്",
<del> "11": "ഡിസംബര്"
<add> "0": "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f",
<add> "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f",
<add> "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d\u0d1a\u0d4d\u0d1a\u0d4d",
<add> "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d32\u0d4d\u200d",
<add> "4": "\u0d2e\u0d47\u0d2f\u0d4d",
<add> "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
<add> "6": "\u0d1c\u0d42\u0d32\u0d48",
<add> "7": "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d",
<add> "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d30\u0d4d\u200d",
<add> "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b\u0d2c\u0d30\u0d4d\u200d",
<add> "10": "\u0d28\u0d35\u0d02\u0d2c\u0d30\u0d4d\u200d",
<add> "11": "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d30\u0d4d\u200d"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ഞായര്",
<del> "1": "തിങ്കള്",
<del> "2": "ചൊവ്വ",
<del> "3": "ബുധന്",
<del> "4": "വ്യാഴം",
<del> "5": "വെള്ളി",
<del> "6": "ശനി"
<add> "0": "\u0d1e\u0d3e\u0d2f\u0d30\u0d4d\u200d",
<add> "1": "\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d4d\u200d",
<add> "2": "\u0d1a\u0d4a\u0d35\u0d4d\u0d35",
<add> "3": "\u0d2c\u0d41\u0d27\u0d28\u0d4d\u200d",
<add> "4": "\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02",
<add> "5": "\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f",
<add> "6": "\u0d36\u0d28\u0d3f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ജനു",
<del> "1": "ഫെബ്രു",
<del> "2": "മാര്",
<del> "3": "ഏപ്രി",
<del> "4": "മേയ്",
<del> "5": "ജൂണ്",
<del> "6": "ജൂലൈ",
<del> "7": "ഓഗ",
<del> "8": "സെപ്റ്റം",
<del> "9": "ഒക്ടോ",
<del> "10": "നവം",
<del> "11": "ഡിസം"
<add> "0": "\u0d1c\u0d28\u0d41",
<add> "1": "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41",
<add> "2": "\u0d2e\u0d3e\u0d30\u0d4d\u200d",
<add> "3": "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f",
<add> "4": "\u0d2e\u0d47\u0d2f\u0d4d",
<add> "5": "\u0d1c\u0d42\u0d23\u0d4d\u200d",
<add> "6": "\u0d1c\u0d42\u0d32\u0d48",
<add> "7": "\u0d13\u0d17",
<add> "8": "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02",
<add> "9": "\u0d12\u0d15\u0d4d\u0d1f\u0d4b",
<add> "10": "\u0d28\u0d35\u0d02",
<add> "11": "\u0d21\u0d3f\u0d38\u0d02"
<ide> },
<ide> "fullDate": "y, MMMM d, EEEE",
<ide> "longDate": "y, MMMM d",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": "\u00A4",
<add> "negSuf": "\u00a4",
<ide> "posPre": "",
<del> "posSuf": "\u00A4"
<add> "posSuf": "\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_mr-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "रविवार",
<del> "1": "सोमवार",
<del> "2": "मंगळवार",
<del> "3": "बुधवार",
<del> "4": "गुरुवार",
<del> "5": "शुक्रवार",
<del> "6": "शनिवार"
<add> "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
<add> "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
<add> "2": "\u092e\u0902\u0917\u0933\u0935\u093e\u0930",
<add> "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
<add> "4": "\u0917\u0941\u0930\u0941\u0935\u093e\u0930",
<add> "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
<add> "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
<ide> },
<ide> "MONTH": {
<del> "0": "जानेवारी",
<del> "1": "फेब्रुवारी",
<del> "2": "मार्च",
<del> "3": "एप्रिल",
<del> "4": "मे",
<del> "5": "जून",
<del> "6": "जुलै",
<del> "7": "ऑगस्ट",
<del> "8": "सप्टेंबर",
<del> "9": "ऑक्टोबर",
<del> "10": "नोव्हेंबर",
<del> "11": "डिसेंबर"
<add> "0": "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
<add> "1": "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u090f\u092a\u094d\u0930\u093f\u0932",
<add> "4": "\u092e\u0947",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u0948",
<add> "7": "\u0911\u0917\u0938\u094d\u091f",
<add> "8": "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
<add> "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
<add> "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
<add> "11": "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "रवि",
<del> "1": "सोम",
<del> "2": "मंगळ",
<del> "3": "बुध",
<del> "4": "गुरु",
<del> "5": "शुक्र",
<del> "6": "शनि"
<add> "0": "\u0930\u0935\u093f",
<add> "1": "\u0938\u094b\u092e",
<add> "2": "\u092e\u0902\u0917\u0933",
<add> "3": "\u092c\u0941\u0927",
<add> "4": "\u0917\u0941\u0930\u0941",
<add> "5": "\u0936\u0941\u0915\u094d\u0930",
<add> "6": "\u0936\u0928\u093f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "जाने",
<del> "1": "फेब्रु",
<del> "2": "मार्च",
<del> "3": "एप्रि",
<del> "4": "मे",
<del> "5": "जून",
<del> "6": "जुलै",
<del> "7": "ऑग",
<del> "8": "सेप्टें",
<del> "9": "ऑक्टोबर",
<del> "10": "नोव्हें",
<del> "11": "डिसें"
<add> "0": "\u091c\u093e\u0928\u0947",
<add> "1": "\u092b\u0947\u092c\u094d\u0930\u0941",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u090f\u092a\u094d\u0930\u093f",
<add> "4": "\u092e\u0947",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u0948",
<add> "7": "\u0911\u0917",
<add> "8": "\u0938\u0947\u092a\u094d\u091f\u0947\u0902",
<add> "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
<add> "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902",
<add> "11": "\u0921\u093f\u0938\u0947\u0902"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h-mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_mr.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "रविवार",
<del> "1": "सोमवार",
<del> "2": "मंगळवार",
<del> "3": "बुधवार",
<del> "4": "गुरुवार",
<del> "5": "शुक्रवार",
<del> "6": "शनिवार"
<add> "0": "\u0930\u0935\u093f\u0935\u093e\u0930",
<add> "1": "\u0938\u094b\u092e\u0935\u093e\u0930",
<add> "2": "\u092e\u0902\u0917\u0933\u0935\u093e\u0930",
<add> "3": "\u092c\u0941\u0927\u0935\u093e\u0930",
<add> "4": "\u0917\u0941\u0930\u0941\u0935\u093e\u0930",
<add> "5": "\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930",
<add> "6": "\u0936\u0928\u093f\u0935\u093e\u0930"
<ide> },
<ide> "MONTH": {
<del> "0": "जानेवारी",
<del> "1": "फेब्रुवारी",
<del> "2": "मार्च",
<del> "3": "एप्रिल",
<del> "4": "मे",
<del> "5": "जून",
<del> "6": "जुलै",
<del> "7": "ऑगस्ट",
<del> "8": "सप्टेंबर",
<del> "9": "ऑक्टोबर",
<del> "10": "नोव्हेंबर",
<del> "11": "डिसेंबर"
<add> "0": "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940",
<add> "1": "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u090f\u092a\u094d\u0930\u093f\u0932",
<add> "4": "\u092e\u0947",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u0948",
<add> "7": "\u0911\u0917\u0938\u094d\u091f",
<add> "8": "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930",
<add> "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
<add> "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930",
<add> "11": "\u0921\u093f\u0938\u0947\u0902\u092c\u0930"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "रवि",
<del> "1": "सोम",
<del> "2": "मंगळ",
<del> "3": "बुध",
<del> "4": "गुरु",
<del> "5": "शुक्र",
<del> "6": "शनि"
<add> "0": "\u0930\u0935\u093f",
<add> "1": "\u0938\u094b\u092e",
<add> "2": "\u092e\u0902\u0917\u0933",
<add> "3": "\u092c\u0941\u0927",
<add> "4": "\u0917\u0941\u0930\u0941",
<add> "5": "\u0936\u0941\u0915\u094d\u0930",
<add> "6": "\u0936\u0928\u093f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "जाने",
<del> "1": "फेब्रु",
<del> "2": "मार्च",
<del> "3": "एप्रि",
<del> "4": "मे",
<del> "5": "जून",
<del> "6": "जुलै",
<del> "7": "ऑग",
<del> "8": "सेप्टें",
<del> "9": "ऑक्टोबर",
<del> "10": "नोव्हें",
<del> "11": "डिसें"
<add> "0": "\u091c\u093e\u0928\u0947",
<add> "1": "\u092b\u0947\u092c\u094d\u0930\u0941",
<add> "2": "\u092e\u093e\u0930\u094d\u091a",
<add> "3": "\u090f\u092a\u094d\u0930\u093f",
<add> "4": "\u092e\u0947",
<add> "5": "\u091c\u0942\u0928",
<add> "6": "\u091c\u0941\u0932\u0948",
<add> "7": "\u0911\u0917",
<add> "8": "\u0938\u0947\u092a\u094d\u091f\u0947\u0902",
<add> "9": "\u0911\u0915\u094d\u091f\u094b\u092c\u0930",
<add> "10": "\u0928\u094b\u0935\u094d\u0939\u0947\u0902",
<add> "11": "\u0921\u093f\u0938\u0947\u0902"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h-mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ms-my.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ms.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_mt-mt.js
<ide> $provide.value("$locale", {
<ide> "1": "WN"
<ide> },
<ide> "DAY": {
<del> "0": "Il-Ħadd",
<add> "0": "Il-\u0126add",
<ide> "1": "It-Tnejn",
<ide> "2": "It-Tlieta",
<del> "3": "L-Erbgħa",
<del> "4": "Il-Ħamis",
<del> "5": "Il-Ġimgħa",
<add> "3": "L-Erbg\u0127a",
<add> "4": "Il-\u0126amis",
<add> "5": "Il-\u0120img\u0127a",
<ide> "6": "Is-Sibt"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "2": "Marzu",
<ide> "3": "April",
<ide> "4": "Mejju",
<del> "5": "Ġunju",
<add> "5": "\u0120unju",
<ide> "6": "Lulju",
<ide> "7": "Awwissu",
<ide> "8": "Settembru",
<ide> "9": "Ottubru",
<ide> "10": "Novembru",
<del> "11": "Diċembru"
<add> "11": "Di\u010bembru"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Ħad",
<add> "0": "\u0126ad",
<ide> "1": "Tne",
<ide> "2": "Tli",
<ide> "3": "Erb",
<del> "4": "Ħam",
<del> "5": "Ġim",
<add> "4": "\u0126am",
<add> "5": "\u0120im",
<ide> "6": "Sib"
<ide> },
<ide> "SHORTMONTH": {
<ide> $provide.value("$locale", {
<ide> "2": "Mar",
<ide> "3": "Apr",
<ide> "4": "Mej",
<del> "5": "Ġun",
<add> "5": "\u0120un",
<ide> "6": "Lul",
<ide> "7": "Aww",
<ide> "8": "Set",
<ide> "9": "Ott",
<ide> "10": "Nov",
<del> "11": "Diċ"
<add> "11": "Di\u010b"
<ide> },
<del> "fullDate": "EEEE, d 'ta'’ MMMM y",
<del> "longDate": "d 'ta'’ MMMM y",
<add> "fullDate": "EEEE, d 'ta'\u2019 MMMM y",
<add> "longDate": "d 'ta'\u2019 MMMM y",
<ide> "medium": "dd MMM y HH:mm:ss",
<ide> "mediumDate": "dd MMM y",
<ide> "mediumTime": "HH:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_mt.js
<ide> $provide.value("$locale", {
<ide> "1": "WN"
<ide> },
<ide> "DAY": {
<del> "0": "Il-Ħadd",
<add> "0": "Il-\u0126add",
<ide> "1": "It-Tnejn",
<ide> "2": "It-Tlieta",
<del> "3": "L-Erbgħa",
<del> "4": "Il-Ħamis",
<del> "5": "Il-Ġimgħa",
<add> "3": "L-Erbg\u0127a",
<add> "4": "Il-\u0126amis",
<add> "5": "Il-\u0120img\u0127a",
<ide> "6": "Is-Sibt"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "2": "Marzu",
<ide> "3": "April",
<ide> "4": "Mejju",
<del> "5": "Ġunju",
<add> "5": "\u0120unju",
<ide> "6": "Lulju",
<ide> "7": "Awwissu",
<ide> "8": "Settembru",
<ide> "9": "Ottubru",
<ide> "10": "Novembru",
<del> "11": "Diċembru"
<add> "11": "Di\u010bembru"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Ħad",
<add> "0": "\u0126ad",
<ide> "1": "Tne",
<ide> "2": "Tli",
<ide> "3": "Erb",
<del> "4": "Ħam",
<del> "5": "Ġim",
<add> "4": "\u0126am",
<add> "5": "\u0120im",
<ide> "6": "Sib"
<ide> },
<ide> "SHORTMONTH": {
<ide> $provide.value("$locale", {
<ide> "2": "Mar",
<ide> "3": "Apr",
<ide> "4": "Mej",
<del> "5": "Ġun",
<add> "5": "\u0120un",
<ide> "6": "Lul",
<ide> "7": "Aww",
<ide> "8": "Set",
<ide> "9": "Ott",
<ide> "10": "Nov",
<del> "11": "Diċ"
<add> "11": "Di\u010b"
<ide> },
<del> "fullDate": "EEEE, d 'ta'’ MMMM y",
<del> "longDate": "d 'ta'’ MMMM y",
<add> "fullDate": "EEEE, d 'ta'\u2019 MMMM y",
<add> "longDate": "d 'ta'\u2019 MMMM y",
<ide> "medium": "dd MMM y HH:mm:ss",
<ide> "mediumDate": "dd MMM y",
<ide> "mediumTime": "HH:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_nl-cw.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_nl-nl.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_nl-sx.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_nl.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 ",
<add> "negPre": "\u00a4\u00a0",
<ide> "negSuf": "-",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_no.js
<ide> $provide.value("$locale", {
<ide> "1": "PM"
<ide> },
<ide> "DAY": {
<del> "0": "søndag",
<add> "0": "s\u00f8ndag",
<ide> "1": "mandag",
<ide> "2": "tirsdag",
<ide> "3": "onsdag",
<ide> "4": "torsdag",
<ide> "5": "fredag",
<del> "6": "lørdag"
<add> "6": "l\u00f8rdag"
<ide> },
<ide> "MONTH": {
<ide> "0": "januar",
<ide> $provide.value("$locale", {
<ide> "11": "desember"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "søn.",
<add> "0": "s\u00f8n.",
<ide> "1": "man.",
<ide> "2": "tir.",
<ide> "3": "ons.",
<ide> "4": "tor.",
<ide> "5": "fre.",
<del> "6": "lør."
<add> "6": "l\u00f8r."
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan.",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "kr",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_or-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ରବିବାର",
<del> "1": "ସୋମବାର",
<del> "2": "ମଙ୍ଗଳବାର",
<del> "3": "ବୁଧବାର",
<del> "4": "ଗୁରୁବାର",
<del> "5": "ଶୁକ୍ରବାର",
<del> "6": "ଶନିବାର"
<add> "0": "\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30",
<add> "1": "\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30",
<add> "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30",
<add> "3": "\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30",
<add> "4": "\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30",
<add> "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30",
<add> "6": "\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"
<ide> },
<ide> "MONTH": {
<del> "0": "ଜାନୁଆରୀ",
<del> "1": "ଫେବ୍ରୁୟାରୀ",
<del> "2": "ମାର୍ଚ୍ଚ",
<del> "3": "ଅପ୍ରେଲ",
<del> "4": "ମେ",
<del> "5": "ଜୁନ",
<del> "6": "ଜୁଲାଇ",
<del> "7": "ଅଗଷ୍ଟ",
<del> "8": "ସେପ୍ଟେମ୍ବର",
<del> "9": "ଅକ୍ଟୋବର",
<del> "10": "ନଭେମ୍ବର",
<del> "11": "ଡିସେମ୍ବର"
<add> "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
<add> "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
<add> "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
<add> "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
<add> "4": "\u0b2e\u0b47",
<add> "5": "\u0b1c\u0b41\u0b28",
<add> "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
<add> "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
<add> "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
<add> "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ରବି",
<del> "1": "ସୋମ",
<del> "2": "ମଙ୍ଗଳ",
<del> "3": "ବୁଧ",
<del> "4": "ଗୁରୁ",
<del> "5": "ଶୁକ୍ର",
<del> "6": "ଶନି"
<add> "0": "\u0b30\u0b2c\u0b3f",
<add> "1": "\u0b38\u0b4b\u0b2e",
<add> "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33",
<add> "3": "\u0b2c\u0b41\u0b27",
<add> "4": "\u0b17\u0b41\u0b30\u0b41",
<add> "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30",
<add> "6": "\u0b36\u0b28\u0b3f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ଜାନୁଆରୀ",
<del> "1": "ଫେବ୍ରୁୟାରୀ",
<del> "2": "ମାର୍ଚ୍ଚ",
<del> "3": "ଅପ୍ରେଲ",
<del> "4": "ମେ",
<del> "5": "ଜୁନ",
<del> "6": "ଜୁଲାଇ",
<del> "7": "ଅଗଷ୍ଟ",
<del> "8": "ସେପ୍ଟେମ୍ବର",
<del> "9": "ଅକ୍ଟୋବର",
<del> "10": "ନଭେମ୍ବର",
<del> "11": "ଡିସେମ୍ବର"
<add> "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
<add> "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
<add> "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
<add> "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
<add> "4": "\u0b2e\u0b47",
<add> "5": "\u0b1c\u0b41\u0b28",
<add> "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
<add> "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
<add> "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
<add> "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_or.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ରବିବାର",
<del> "1": "ସୋମବାର",
<del> "2": "ମଙ୍ଗଳବାର",
<del> "3": "ବୁଧବାର",
<del> "4": "ଗୁରୁବାର",
<del> "5": "ଶୁକ୍ରବାର",
<del> "6": "ଶନିବାର"
<add> "0": "\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30",
<add> "1": "\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30",
<add> "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30",
<add> "3": "\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30",
<add> "4": "\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30",
<add> "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30",
<add> "6": "\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"
<ide> },
<ide> "MONTH": {
<del> "0": "ଜାନୁଆରୀ",
<del> "1": "ଫେବ୍ରୁୟାରୀ",
<del> "2": "ମାର୍ଚ୍ଚ",
<del> "3": "ଅପ୍ରେଲ",
<del> "4": "ମେ",
<del> "5": "ଜୁନ",
<del> "6": "ଜୁଲାଇ",
<del> "7": "ଅଗଷ୍ଟ",
<del> "8": "ସେପ୍ଟେମ୍ବର",
<del> "9": "ଅକ୍ଟୋବର",
<del> "10": "ନଭେମ୍ବର",
<del> "11": "ଡିସେମ୍ବର"
<add> "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
<add> "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
<add> "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
<add> "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
<add> "4": "\u0b2e\u0b47",
<add> "5": "\u0b1c\u0b41\u0b28",
<add> "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
<add> "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
<add> "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
<add> "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ରବି",
<del> "1": "ସୋମ",
<del> "2": "ମଙ୍ଗଳ",
<del> "3": "ବୁଧ",
<del> "4": "ଗୁରୁ",
<del> "5": "ଶୁକ୍ର",
<del> "6": "ଶନି"
<add> "0": "\u0b30\u0b2c\u0b3f",
<add> "1": "\u0b38\u0b4b\u0b2e",
<add> "2": "\u0b2e\u0b19\u0b4d\u0b17\u0b33",
<add> "3": "\u0b2c\u0b41\u0b27",
<add> "4": "\u0b17\u0b41\u0b30\u0b41",
<add> "5": "\u0b36\u0b41\u0b15\u0b4d\u0b30",
<add> "6": "\u0b36\u0b28\u0b3f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ଜାନୁଆରୀ",
<del> "1": "ଫେବ୍ରୁୟାରୀ",
<del> "2": "ମାର୍ଚ୍ଚ",
<del> "3": "ଅପ୍ରେଲ",
<del> "4": "ମେ",
<del> "5": "ଜୁନ",
<del> "6": "ଜୁଲାଇ",
<del> "7": "ଅଗଷ୍ଟ",
<del> "8": "ସେପ୍ଟେମ୍ବର",
<del> "9": "ଅକ୍ଟୋବର",
<del> "10": "ନଭେମ୍ବର",
<del> "11": "ଡିସେମ୍ବର"
<add> "0": "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40",
<add> "1": "\u0b2b\u0b47\u0b2c\u0b4d\u0b30\u0b41\u0b5f\u0b3e\u0b30\u0b40",
<add> "2": "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a",
<add> "3": "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32",
<add> "4": "\u0b2e\u0b47",
<add> "5": "\u0b1c\u0b41\u0b28",
<add> "6": "\u0b1c\u0b41\u0b32\u0b3e\u0b07",
<add> "7": "\u0b05\u0b17\u0b37\u0b4d\u0b1f",
<add> "8": "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "9": "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30",
<add> "10": "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30",
<add> "11": "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"
<ide> },
<ide> "fullDate": "EEEE, d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_pl-pl.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "niedziela",
<del> "1": "poniedziałek",
<add> "1": "poniedzia\u0142ek",
<ide> "2": "wtorek",
<del> "3": "środa",
<add> "3": "\u015broda",
<ide> "4": "czwartek",
<del> "5": "piątek",
<add> "5": "pi\u0105tek",
<ide> "6": "sobota"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "5": "czerwca",
<ide> "6": "lipca",
<ide> "7": "sierpnia",
<del> "8": "września",
<del> "9": "października",
<add> "8": "wrze\u015bnia",
<add> "9": "pa\u017adziernika",
<ide> "10": "listopada",
<ide> "11": "grudnia"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "niedz.",
<ide> "1": "pon.",
<ide> "2": "wt.",
<del> "3": "śr.",
<add> "3": "\u015br.",
<ide> "4": "czw.",
<ide> "5": "pt.",
<ide> "6": "sob."
<ide> $provide.value("$locale", {
<ide> "6": "lip",
<ide> "7": "sie",
<ide> "8": "wrz",
<del> "9": "paź",
<add> "9": "pa\u017a",
<ide> "10": "lis",
<ide> "11": "gru"
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "zł",
<add> "CURRENCY_SYM": "z\u0142",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_pl.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "niedziela",
<del> "1": "poniedziałek",
<add> "1": "poniedzia\u0142ek",
<ide> "2": "wtorek",
<del> "3": "środa",
<add> "3": "\u015broda",
<ide> "4": "czwartek",
<del> "5": "piątek",
<add> "5": "pi\u0105tek",
<ide> "6": "sobota"
<ide> },
<ide> "MONTH": {
<ide> $provide.value("$locale", {
<ide> "5": "czerwca",
<ide> "6": "lipca",
<ide> "7": "sierpnia",
<del> "8": "września",
<del> "9": "października",
<add> "8": "wrze\u015bnia",
<add> "9": "pa\u017adziernika",
<ide> "10": "listopada",
<ide> "11": "grudnia"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "niedz.",
<ide> "1": "pon.",
<ide> "2": "wt.",
<del> "3": "śr.",
<add> "3": "\u015br.",
<ide> "4": "czw.",
<ide> "5": "pt.",
<ide> "6": "sob."
<ide> $provide.value("$locale", {
<ide> "6": "lip",
<ide> "7": "sie",
<ide> "8": "wrz",
<del> "9": "paź",
<add> "9": "pa\u017a",
<ide> "10": "lis",
<ide> "11": "gru"
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "zł",
<add> "CURRENCY_SYM": "z\u0142",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_pt-br.js
<ide> $provide.value("$locale", {
<ide> "DAY": {
<ide> "0": "domingo",
<ide> "1": "segunda-feira",
<del> "2": "terça-feira",
<add> "2": "ter\u00e7a-feira",
<ide> "3": "quarta-feira",
<ide> "4": "quinta-feira",
<ide> "5": "sexta-feira",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "janeiro",
<ide> "1": "fevereiro",
<del> "2": "março",
<add> "2": "mar\u00e7o",
<ide> "3": "abril",
<ide> "4": "maio",
<ide> "5": "junho",
<ide> $provide.value("$locale", {
<ide> "3": "qua",
<ide> "4": "qui",
<ide> "5": "sex",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_pt-pt.js
<ide> $provide.value("$locale", {
<ide> "DAY": {
<ide> "0": "Domingo",
<ide> "1": "Segunda-feira",
<del> "2": "Terça-feira",
<add> "2": "Ter\u00e7a-feira",
<ide> "3": "Quarta-feira",
<ide> "4": "Quinta-feira",
<ide> "5": "Sexta-feira",
<del> "6": "Sábado"
<add> "6": "S\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "Janeiro",
<ide> "1": "Fevereiro",
<del> "2": "Março",
<add> "2": "Mar\u00e7o",
<ide> "3": "Abril",
<ide> "4": "Maio",
<ide> "5": "Junho",
<ide> $provide.value("$locale", {
<ide> "3": "qua",
<ide> "4": "qui",
<ide> "5": "sex",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Jan",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_pt.js
<ide> $provide.value("$locale", {
<ide> "DAY": {
<ide> "0": "domingo",
<ide> "1": "segunda-feira",
<del> "2": "terça-feira",
<add> "2": "ter\u00e7a-feira",
<ide> "3": "quarta-feira",
<ide> "4": "quinta-feira",
<ide> "5": "sexta-feira",
<del> "6": "sábado"
<add> "6": "s\u00e1bado"
<ide> },
<ide> "MONTH": {
<ide> "0": "janeiro",
<ide> "1": "fevereiro",
<del> "2": "março",
<add> "2": "mar\u00e7o",
<ide> "3": "abril",
<ide> "4": "maio",
<ide> "5": "junho",
<ide> $provide.value("$locale", {
<ide> "3": "qua",
<ide> "4": "qui",
<ide> "5": "sex",
<del> "6": "sáb"
<add> "6": "s\u00e1b"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ro-ro.js
<ide> $provide.value("$locale", {
<ide> "1": "PM"
<ide> },
<ide> "DAY": {
<del> "0": "duminică",
<add> "0": "duminic\u0103",
<ide> "1": "luni",
<del> "2": "marți",
<add> "2": "mar\u021bi",
<ide> "3": "miercuri",
<ide> "4": "joi",
<ide> "5": "vineri",
<del> "6": "sâmbătă"
<add> "6": "s\u00e2mb\u0103t\u0103"
<ide> },
<ide> "MONTH": {
<ide> "0": "ianuarie",
<ide> $provide.value("$locale", {
<ide> "3": "Mi",
<ide> "4": "Jo",
<ide> "5": "Vi",
<del> "6": "Sâ"
<add> "6": "S\u00e2"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ian.",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ro.js
<ide> $provide.value("$locale", {
<ide> "1": "PM"
<ide> },
<ide> "DAY": {
<del> "0": "duminică",
<add> "0": "duminic\u0103",
<ide> "1": "luni",
<del> "2": "marți",
<add> "2": "mar\u021bi",
<ide> "3": "miercuri",
<ide> "4": "joi",
<ide> "5": "vineri",
<del> "6": "sâmbătă"
<add> "6": "s\u00e2mb\u0103t\u0103"
<ide> },
<ide> "MONTH": {
<ide> "0": "ianuarie",
<ide> $provide.value("$locale", {
<ide> "3": "Mi",
<ide> "4": "Jo",
<ide> "5": "Vi",
<del> "6": "Sâ"
<add> "6": "S\u00e2"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "ian.",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ru-ru.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "до полудня",
<del> "1": "после полудня"
<add> "0": "\u0434\u043e \u043f\u043e\u043b\u0443\u0434\u043d\u044f",
<add> "1": "\u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0434\u043d\u044f"
<ide> },
<ide> "DAY": {
<del> "0": "воскресенье",
<del> "1": "понедельник",
<del> "2": "вторник",
<del> "3": "среда",
<del> "4": "четверг",
<del> "5": "пятница",
<del> "6": "суббота"
<add> "0": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",
<add> "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a",
<add> "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
<add> "3": "\u0441\u0440\u0435\u0434\u0430",
<add> "4": "\u0447\u0435\u0442\u0432\u0435\u0440\u0433",
<add> "5": "\u043f\u044f\u0442\u043d\u0438\u0446\u0430",
<add> "6": "\u0441\u0443\u0431\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "января",
<del> "1": "февраля",
<del> "2": "марта",
<del> "3": "апреля",
<del> "4": "мая",
<del> "5": "июня",
<del> "6": "июля",
<del> "7": "августа",
<del> "8": "сентября",
<del> "9": "октября",
<del> "10": "ноября",
<del> "11": "декабря"
<add> "0": "\u044f\u043d\u0432\u0430\u0440\u044f",
<add> "1": "\u0444\u0435\u0432\u0440\u0430\u043b\u044f",
<add> "2": "\u043c\u0430\u0440\u0442\u0430",
<add> "3": "\u0430\u043f\u0440\u0435\u043b\u044f",
<add> "4": "\u043c\u0430\u044f",
<add> "5": "\u0438\u044e\u043d\u044f",
<add> "6": "\u0438\u044e\u043b\u044f",
<add> "7": "\u0430\u0432\u0433\u0443\u0441\u0442\u0430",
<add> "8": "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f",
<add> "9": "\u043e\u043a\u0442\u044f\u0431\u0440\u044f",
<add> "10": "\u043d\u043e\u044f\u0431\u0440\u044f",
<add> "11": "\u0434\u0435\u043a\u0430\u0431\u0440\u044f"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "вс",
<del> "1": "пн",
<del> "2": "вт",
<del> "3": "ср",
<del> "4": "чт",
<del> "5": "пт",
<del> "6": "сб"
<add> "0": "\u0432\u0441",
<add> "1": "\u043f\u043d",
<add> "2": "\u0432\u0442",
<add> "3": "\u0441\u0440",
<add> "4": "\u0447\u0442",
<add> "5": "\u043f\u0442",
<add> "6": "\u0441\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "янв.",
<del> "1": "февр.",
<del> "2": "марта",
<del> "3": "апр.",
<del> "4": "мая",
<del> "5": "июня",
<del> "6": "июля",
<del> "7": "авг.",
<del> "8": "сент.",
<del> "9": "окт.",
<del> "10": "нояб.",
<del> "11": "дек."
<add> "0": "\u044f\u043d\u0432.",
<add> "1": "\u0444\u0435\u0432\u0440.",
<add> "2": "\u043c\u0430\u0440\u0442\u0430",
<add> "3": "\u0430\u043f\u0440.",
<add> "4": "\u043c\u0430\u044f",
<add> "5": "\u0438\u044e\u043d\u044f",
<add> "6": "\u0438\u044e\u043b\u044f",
<add> "7": "\u0430\u0432\u0433.",
<add> "8": "\u0441\u0435\u043d\u0442.",
<add> "9": "\u043e\u043a\u0442.",
<add> "10": "\u043d\u043e\u044f\u0431.",
<add> "11": "\u0434\u0435\u043a."
<ide> },
<del> "fullDate": "EEEE, d MMMM y 'г'.",
<del> "longDate": "d MMMM y 'г'.",
<add> "fullDate": "EEEE, d MMMM y\u00a0'\u0433'.",
<add> "longDate": "d MMMM y\u00a0'\u0433'.",
<ide> "medium": "dd.MM.yyyy H:mm:ss",
<ide> "mediumDate": "dd.MM.yyyy",
<ide> "mediumTime": "H:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "руб.",
<add> "CURRENCY_SYM": "\u0440\u0443\u0431.",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ru.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "до полудня",
<del> "1": "после полудня"
<add> "0": "\u0434\u043e \u043f\u043e\u043b\u0443\u0434\u043d\u044f",
<add> "1": "\u043f\u043e\u0441\u043b\u0435 \u043f\u043e\u043b\u0443\u0434\u043d\u044f"
<ide> },
<ide> "DAY": {
<del> "0": "воскресенье",
<del> "1": "понедельник",
<del> "2": "вторник",
<del> "3": "среда",
<del> "4": "четверг",
<del> "5": "пятница",
<del> "6": "суббота"
<add> "0": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",
<add> "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a",
<add> "2": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
<add> "3": "\u0441\u0440\u0435\u0434\u0430",
<add> "4": "\u0447\u0435\u0442\u0432\u0435\u0440\u0433",
<add> "5": "\u043f\u044f\u0442\u043d\u0438\u0446\u0430",
<add> "6": "\u0441\u0443\u0431\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "января",
<del> "1": "февраля",
<del> "2": "марта",
<del> "3": "апреля",
<del> "4": "мая",
<del> "5": "июня",
<del> "6": "июля",
<del> "7": "августа",
<del> "8": "сентября",
<del> "9": "октября",
<del> "10": "ноября",
<del> "11": "декабря"
<add> "0": "\u044f\u043d\u0432\u0430\u0440\u044f",
<add> "1": "\u0444\u0435\u0432\u0440\u0430\u043b\u044f",
<add> "2": "\u043c\u0430\u0440\u0442\u0430",
<add> "3": "\u0430\u043f\u0440\u0435\u043b\u044f",
<add> "4": "\u043c\u0430\u044f",
<add> "5": "\u0438\u044e\u043d\u044f",
<add> "6": "\u0438\u044e\u043b\u044f",
<add> "7": "\u0430\u0432\u0433\u0443\u0441\u0442\u0430",
<add> "8": "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f",
<add> "9": "\u043e\u043a\u0442\u044f\u0431\u0440\u044f",
<add> "10": "\u043d\u043e\u044f\u0431\u0440\u044f",
<add> "11": "\u0434\u0435\u043a\u0430\u0431\u0440\u044f"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "вс",
<del> "1": "пн",
<del> "2": "вт",
<del> "3": "ср",
<del> "4": "чт",
<del> "5": "пт",
<del> "6": "сб"
<add> "0": "\u0432\u0441",
<add> "1": "\u043f\u043d",
<add> "2": "\u0432\u0442",
<add> "3": "\u0441\u0440",
<add> "4": "\u0447\u0442",
<add> "5": "\u043f\u0442",
<add> "6": "\u0441\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "янв.",
<del> "1": "февр.",
<del> "2": "марта",
<del> "3": "апр.",
<del> "4": "мая",
<del> "5": "июня",
<del> "6": "июля",
<del> "7": "авг.",
<del> "8": "сент.",
<del> "9": "окт.",
<del> "10": "нояб.",
<del> "11": "дек."
<add> "0": "\u044f\u043d\u0432.",
<add> "1": "\u0444\u0435\u0432\u0440.",
<add> "2": "\u043c\u0430\u0440\u0442\u0430",
<add> "3": "\u0430\u043f\u0440.",
<add> "4": "\u043c\u0430\u044f",
<add> "5": "\u0438\u044e\u043d\u044f",
<add> "6": "\u0438\u044e\u043b\u044f",
<add> "7": "\u0430\u0432\u0433.",
<add> "8": "\u0441\u0435\u043d\u0442.",
<add> "9": "\u043e\u043a\u0442.",
<add> "10": "\u043d\u043e\u044f\u0431.",
<add> "11": "\u0434\u0435\u043a."
<ide> },
<del> "fullDate": "EEEE, d MMMM y 'г'.",
<del> "longDate": "d MMMM y 'г'.",
<add> "fullDate": "EEEE, d MMMM y\u00a0'\u0433'.",
<add> "longDate": "d MMMM y\u00a0'\u0433'.",
<ide> "medium": "dd.MM.yyyy H:mm:ss",
<ide> "mediumDate": "dd.MM.yyyy",
<ide> "mediumTime": "H:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "руб.",
<add> "CURRENCY_SYM": "\u0440\u0443\u0431.",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sk-sk.js
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<ide> "0": "dopoludnia",
<del> "1": "popoludní"
<add> "1": "popoludn\u00ed"
<ide> },
<ide> "DAY": {
<del> "0": "nedeľa",
<add> "0": "nede\u013ea",
<ide> "1": "pondelok",
<ide> "2": "utorok",
<ide> "3": "streda",
<del> "4": "štvrtok",
<add> "4": "\u0161tvrtok",
<ide> "5": "piatok",
<ide> "6": "sobota"
<ide> },
<ide> "MONTH": {
<del> "0": "januára",
<del> "1": "februára",
<add> "0": "janu\u00e1ra",
<add> "1": "febru\u00e1ra",
<ide> "2": "marca",
<del> "3": "apríla",
<del> "4": "mája",
<del> "5": "júna",
<del> "6": "júla",
<add> "3": "apr\u00edla",
<add> "4": "m\u00e1ja",
<add> "5": "j\u00fana",
<add> "6": "j\u00fala",
<ide> "7": "augusta",
<ide> "8": "septembra",
<del> "9": "októbra",
<add> "9": "okt\u00f3bra",
<ide> "10": "novembra",
<ide> "11": "decembra"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "po",
<ide> "2": "ut",
<ide> "3": "st",
<del> "4": "št",
<add> "4": "\u0161t",
<ide> "5": "pi",
<ide> "6": "so"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "feb",
<ide> "2": "mar",
<ide> "3": "apr",
<del> "4": "máj",
<del> "5": "jún",
<del> "6": "júl",
<add> "4": "m\u00e1j",
<add> "5": "j\u00fan",
<add> "6": "j\u00fal",
<ide> "7": "aug",
<ide> "8": "sep",
<ide> "9": "okt",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sk.js
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<ide> "0": "dopoludnia",
<del> "1": "popoludní"
<add> "1": "popoludn\u00ed"
<ide> },
<ide> "DAY": {
<del> "0": "nedeľa",
<add> "0": "nede\u013ea",
<ide> "1": "pondelok",
<ide> "2": "utorok",
<ide> "3": "streda",
<del> "4": "štvrtok",
<add> "4": "\u0161tvrtok",
<ide> "5": "piatok",
<ide> "6": "sobota"
<ide> },
<ide> "MONTH": {
<del> "0": "januára",
<del> "1": "februára",
<add> "0": "janu\u00e1ra",
<add> "1": "febru\u00e1ra",
<ide> "2": "marca",
<del> "3": "apríla",
<del> "4": "mája",
<del> "5": "júna",
<del> "6": "júla",
<add> "3": "apr\u00edla",
<add> "4": "m\u00e1ja",
<add> "5": "j\u00fana",
<add> "6": "j\u00fala",
<ide> "7": "augusta",
<ide> "8": "septembra",
<del> "9": "októbra",
<add> "9": "okt\u00f3bra",
<ide> "10": "novembra",
<ide> "11": "decembra"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "po",
<ide> "2": "ut",
<ide> "3": "st",
<del> "4": "št",
<add> "4": "\u0161t",
<ide> "5": "pi",
<ide> "6": "so"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "feb",
<ide> "2": "mar",
<ide> "3": "apr",
<del> "4": "máj",
<del> "5": "jún",
<del> "6": "júl",
<add> "4": "m\u00e1j",
<add> "5": "j\u00fan",
<add> "6": "j\u00fal",
<ide> "7": "aug",
<ide> "8": "sep",
<ide> "9": "okt",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sl-si.js
<ide> $provide.value("$locale", {
<ide> "1": "ponedeljek",
<ide> "2": "torek",
<ide> "3": "sreda",
<del> "4": "četrtek",
<add> "4": "\u010detrtek",
<ide> "5": "petek",
<ide> "6": "sobota"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "pon.",
<ide> "2": "tor.",
<ide> "3": "sre.",
<del> "4": "čet.",
<add> "4": "\u010det.",
<ide> "5": "pet.",
<ide> "6": "sob."
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_sl.js
<ide> $provide.value("$locale", {
<ide> "1": "ponedeljek",
<ide> "2": "torek",
<ide> "3": "sreda",
<del> "4": "četrtek",
<add> "4": "\u010detrtek",
<ide> "5": "petek",
<ide> "6": "sobota"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "pon.",
<ide> "2": "tor.",
<ide> "3": "sre.",
<del> "4": "čet.",
<add> "4": "\u010det.",
<ide> "5": "pet.",
<ide> "6": "sob."
<ide> },
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "€",
<add> "CURRENCY_SYM": "\u20ac",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_sq-al.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "e diel",
<del> "1": "e hënë",
<del> "2": "e martë",
<del> "3": "e mërkurë",
<add> "1": "e h\u00ebn\u00eb",
<add> "2": "e mart\u00eb",
<add> "3": "e m\u00ebrkur\u00eb",
<ide> "4": "e enjte",
<ide> "5": "e premte",
<del> "6": "e shtunë"
<add> "6": "e shtun\u00eb"
<ide> },
<ide> "MONTH": {
<ide> "0": "janar",
<ide> $provide.value("$locale", {
<ide> "7": "gusht",
<ide> "8": "shtator",
<ide> "9": "tetor",
<del> "10": "nëntor",
<add> "10": "n\u00ebntor",
<ide> "11": "dhjetor"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "Die",
<del> "1": "Hën",
<add> "1": "H\u00ebn",
<ide> "2": "Mar",
<del> "3": "Mër",
<add> "3": "M\u00ebr",
<ide> "4": "Enj",
<ide> "5": "Pre",
<ide> "6": "Sht"
<ide> $provide.value("$locale", {
<ide> "7": "Gsh",
<ide> "8": "Sht",
<ide> "9": "Tet",
<del> "10": "Nën",
<add> "10": "N\u00ebn",
<ide> "11": "Dhj"
<ide> },
<ide> "fullDate": "EEEE, dd MMMM y",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Lek",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_sq.js
<ide> $provide.value("$locale", {
<ide> },
<ide> "DAY": {
<ide> "0": "e diel",
<del> "1": "e hënë",
<del> "2": "e martë",
<del> "3": "e mërkurë",
<add> "1": "e h\u00ebn\u00eb",
<add> "2": "e mart\u00eb",
<add> "3": "e m\u00ebrkur\u00eb",
<ide> "4": "e enjte",
<ide> "5": "e premte",
<del> "6": "e shtunë"
<add> "6": "e shtun\u00eb"
<ide> },
<ide> "MONTH": {
<ide> "0": "janar",
<ide> $provide.value("$locale", {
<ide> "7": "gusht",
<ide> "8": "shtator",
<ide> "9": "tetor",
<del> "10": "nëntor",
<add> "10": "n\u00ebntor",
<ide> "11": "dhjetor"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "Die",
<del> "1": "Hën",
<add> "1": "H\u00ebn",
<ide> "2": "Mar",
<del> "3": "Mër",
<add> "3": "M\u00ebr",
<ide> "4": "Enj",
<ide> "5": "Pre",
<ide> "6": "Sht"
<ide> $provide.value("$locale", {
<ide> "7": "Gsh",
<ide> "8": "Sht",
<ide> "9": "Tet",
<del> "10": "Nën",
<add> "10": "N\u00ebn",
<ide> "11": "Dhj"
<ide> },
<ide> "fullDate": "EEEE, dd MMMM y",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "Lek",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_sr-cyrl-rs.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "пре подне",
<del> "1": "поподне"
<add> "0": "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
<add> "1": "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
<ide> },
<ide> "DAY": {
<del> "0": "недеља",
<del> "1": "понедељак",
<del> "2": "уторак",
<del> "3": "среда",
<del> "4": "четвртак",
<del> "5": "петак",
<del> "6": "субота"
<add> "0": "\u043d\u0435\u0434\u0435\u0459\u0430",
<add> "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a",
<add> "2": "\u0443\u0442\u043e\u0440\u0430\u043a",
<add> "3": "\u0441\u0440\u0435\u0434\u0430",
<add> "4": "\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a",
<add> "5": "\u043f\u0435\u0442\u0430\u043a",
<add> "6": "\u0441\u0443\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "јануар",
<del> "1": "фебруар",
<del> "2": "март",
<del> "3": "април",
<del> "4": "мај",
<del> "5": "јун",
<del> "6": "јул",
<del> "7": "август",
<del> "8": "септембар",
<del> "9": "октобар",
<del> "10": "новембар",
<del> "11": "децембар"
<add> "0": "\u0458\u0430\u043d\u0443\u0430\u0440",
<add> "1": "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
<add> "2": "\u043c\u0430\u0440\u0442",
<add> "3": "\u0430\u043f\u0440\u0438\u043b",
<add> "4": "\u043c\u0430\u0458",
<add> "5": "\u0458\u0443\u043d",
<add> "6": "\u0458\u0443\u043b",
<add> "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
<add> "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
<add> "9": "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
<add> "10": "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
<add> "11": "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "нед",
<del> "1": "пон",
<del> "2": "уто",
<del> "3": "сре",
<del> "4": "чет",
<del> "5": "пет",
<del> "6": "суб"
<add> "0": "\u043d\u0435\u0434",
<add> "1": "\u043f\u043e\u043d",
<add> "2": "\u0443\u0442\u043e",
<add> "3": "\u0441\u0440\u0435",
<add> "4": "\u0447\u0435\u0442",
<add> "5": "\u043f\u0435\u0442",
<add> "6": "\u0441\u0443\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "јан",
<del> "1": "феб",
<del> "2": "мар",
<del> "3": "апр",
<del> "4": "мај",
<del> "5": "јун",
<del> "6": "јул",
<del> "7": "авг",
<del> "8": "сеп",
<del> "9": "окт",
<del> "10": "нов",
<del> "11": "дец"
<add> "0": "\u0458\u0430\u043d",
<add> "1": "\u0444\u0435\u0431",
<add> "2": "\u043c\u0430\u0440",
<add> "3": "\u0430\u043f\u0440",
<add> "4": "\u043c\u0430\u0458",
<add> "5": "\u0458\u0443\u043d",
<add> "6": "\u0458\u0443\u043b",
<add> "7": "\u0430\u0432\u0433",
<add> "8": "\u0441\u0435\u043f",
<add> "9": "\u043e\u043a\u0442",
<add> "10": "\u043d\u043e\u0432",
<add> "11": "\u0434\u0435\u0446"
<ide> },
<ide> "fullDate": "EEEE, dd. MMMM y.",
<ide> "longDate": "dd. MMMM y.",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sr-latn-rs.js
<ide> $provide.value("$locale", {
<ide> "1": "ponedeljak",
<ide> "2": "utorak",
<ide> "3": "sreda",
<del> "4": "četvrtak",
<add> "4": "\u010detvrtak",
<ide> "5": "petak",
<ide> "6": "subota"
<ide> },
<ide> $provide.value("$locale", {
<ide> "1": "pon",
<ide> "2": "uto",
<ide> "3": "sre",
<del> "4": "čet",
<add> "4": "\u010det",
<ide> "5": "pet",
<ide> "6": "sub"
<ide> },
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sr.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "пре подне",
<del> "1": "поподне"
<add> "0": "\u043f\u0440\u0435 \u043f\u043e\u0434\u043d\u0435",
<add> "1": "\u043f\u043e\u043f\u043e\u0434\u043d\u0435"
<ide> },
<ide> "DAY": {
<del> "0": "недеља",
<del> "1": "понедељак",
<del> "2": "уторак",
<del> "3": "среда",
<del> "4": "четвртак",
<del> "5": "петак",
<del> "6": "субота"
<add> "0": "\u043d\u0435\u0434\u0435\u0459\u0430",
<add> "1": "\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a",
<add> "2": "\u0443\u0442\u043e\u0440\u0430\u043a",
<add> "3": "\u0441\u0440\u0435\u0434\u0430",
<add> "4": "\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a",
<add> "5": "\u043f\u0435\u0442\u0430\u043a",
<add> "6": "\u0441\u0443\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "јануар",
<del> "1": "фебруар",
<del> "2": "март",
<del> "3": "април",
<del> "4": "мај",
<del> "5": "јун",
<del> "6": "јул",
<del> "7": "август",
<del> "8": "септембар",
<del> "9": "октобар",
<del> "10": "новембар",
<del> "11": "децембар"
<add> "0": "\u0458\u0430\u043d\u0443\u0430\u0440",
<add> "1": "\u0444\u0435\u0431\u0440\u0443\u0430\u0440",
<add> "2": "\u043c\u0430\u0440\u0442",
<add> "3": "\u0430\u043f\u0440\u0438\u043b",
<add> "4": "\u043c\u0430\u0458",
<add> "5": "\u0458\u0443\u043d",
<add> "6": "\u0458\u0443\u043b",
<add> "7": "\u0430\u0432\u0433\u0443\u0441\u0442",
<add> "8": "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440",
<add> "9": "\u043e\u043a\u0442\u043e\u0431\u0430\u0440",
<add> "10": "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440",
<add> "11": "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "нед",
<del> "1": "пон",
<del> "2": "уто",
<del> "3": "сре",
<del> "4": "чет",
<del> "5": "пет",
<del> "6": "суб"
<add> "0": "\u043d\u0435\u0434",
<add> "1": "\u043f\u043e\u043d",
<add> "2": "\u0443\u0442\u043e",
<add> "3": "\u0441\u0440\u0435",
<add> "4": "\u0447\u0435\u0442",
<add> "5": "\u043f\u0435\u0442",
<add> "6": "\u0441\u0443\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "јан",
<del> "1": "феб",
<del> "2": "мар",
<del> "3": "апр",
<del> "4": "мај",
<del> "5": "јун",
<del> "6": "јул",
<del> "7": "авг",
<del> "8": "сеп",
<del> "9": "окт",
<del> "10": "нов",
<del> "11": "дец"
<add> "0": "\u0458\u0430\u043d",
<add> "1": "\u0444\u0435\u0431",
<add> "2": "\u043c\u0430\u0440",
<add> "3": "\u0430\u043f\u0440",
<add> "4": "\u043c\u0430\u0458",
<add> "5": "\u0458\u0443\u043d",
<add> "6": "\u0458\u0443\u043b",
<add> "7": "\u0430\u0432\u0433",
<add> "8": "\u0441\u0435\u043f",
<add> "9": "\u043e\u043a\u0442",
<add> "10": "\u043d\u043e\u0432",
<add> "11": "\u0434\u0435\u0446"
<ide> },
<ide> "fullDate": "EEEE, dd. MMMM y.",
<ide> "longDate": "dd. MMMM y.",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sv-se.js
<ide> $provide.value("$locale", {
<ide> "1": "em"
<ide> },
<ide> "DAY": {
<del> "0": "söndag",
<del> "1": "måndag",
<add> "0": "s\u00f6ndag",
<add> "1": "m\u00e5ndag",
<ide> "2": "tisdag",
<ide> "3": "onsdag",
<ide> "4": "torsdag",
<ide> "5": "fredag",
<del> "6": "lördag"
<add> "6": "l\u00f6rdag"
<ide> },
<ide> "MONTH": {
<ide> "0": "januari",
<ide> $provide.value("$locale", {
<ide> "11": "december"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "sön",
<del> "1": "mån",
<add> "0": "s\u00f6n",
<add> "1": "m\u00e5n",
<ide> "2": "tis",
<ide> "3": "ons",
<ide> "4": "tors",
<ide> "5": "fre",
<del> "6": "lör"
<add> "6": "l\u00f6r"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "kr",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sv.js
<ide> $provide.value("$locale", {
<ide> "1": "em"
<ide> },
<ide> "DAY": {
<del> "0": "söndag",
<del> "1": "måndag",
<add> "0": "s\u00f6ndag",
<add> "1": "m\u00e5ndag",
<ide> "2": "tisdag",
<ide> "3": "onsdag",
<ide> "4": "torsdag",
<ide> "5": "fredag",
<del> "6": "lördag"
<add> "6": "l\u00f6rdag"
<ide> },
<ide> "MONTH": {
<ide> "0": "januari",
<ide> $provide.value("$locale", {
<ide> "11": "december"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "sön",
<del> "1": "mån",
<add> "0": "s\u00f6n",
<add> "1": "m\u00e5n",
<ide> "2": "tis",
<ide> "3": "ons",
<ide> "4": "tors",
<ide> "5": "fre",
<del> "6": "lör"
<add> "6": "l\u00f6r"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "jan",
<ide> $provide.value("$locale", {
<ide> "NUMBER_FORMATS": {
<ide> "CURRENCY_SYM": "kr",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_sw-tz.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_sw.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ta-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ஞாயிறு",
<del> "1": "திங்கள்",
<del> "2": "செவ்வாய்",
<del> "3": "புதன்",
<del> "4": "வியாழன்",
<del> "5": "வெள்ளி",
<del> "6": "சனி"
<add> "0": "\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1",
<add> "1": "\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
<add> "2": "\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd",
<add> "3": "\u0baa\u0bc1\u0ba4\u0ba9\u0bcd",
<add> "4": "\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd",
<add> "5": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf",
<add> "6": "\u0b9a\u0ba9\u0bbf"
<ide> },
<ide> "MONTH": {
<del> "0": "ஜனவரி",
<del> "1": "பிப்ரவரி",
<del> "2": "மார்ச்",
<del> "3": "ஏப்ரல்",
<del> "4": "மே",
<del> "5": "ஜூன்",
<del> "6": "ஜூலை",
<del> "7": "ஆகஸ்ட்",
<del> "8": "செப்டம்பர்",
<del> "9": "அக்டோபர்",
<del> "10": "நவம்பர்",
<del> "11": "டிசம்பர்"
<add> "0": "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
<add> "1": "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
<add> "2": "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
<add> "3": "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
<add> "4": "\u0bae\u0bc7",
<add> "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
<add> "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
<add> "7": "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd",
<add> "8": "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
<add> "9": "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
<add> "10": "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
<add> "11": "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ஞா",
<del> "1": "தி",
<del> "2": "செ",
<del> "3": "பு",
<del> "4": "வி",
<del> "5": "வெ",
<del> "6": "ச"
<add> "0": "\u0b9e\u0bbe",
<add> "1": "\u0ba4\u0bbf",
<add> "2": "\u0b9a\u0bc6",
<add> "3": "\u0baa\u0bc1",
<add> "4": "\u0bb5\u0bbf",
<add> "5": "\u0bb5\u0bc6",
<add> "6": "\u0b9a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ஜன.",
<del> "1": "பிப்.",
<del> "2": "மார்.",
<del> "3": "ஏப்.",
<del> "4": "மே",
<del> "5": "ஜூன்",
<del> "6": "ஜூலை",
<del> "7": "ஆக.",
<del> "8": "செப்.",
<del> "9": "அக்.",
<del> "10": "நவ.",
<del> "11": "டிச."
<add> "0": "\u0b9c\u0ba9.",
<add> "1": "\u0baa\u0bbf\u0baa\u0bcd.",
<add> "2": "\u0bae\u0bbe\u0bb0\u0bcd.",
<add> "3": "\u0b8f\u0baa\u0bcd.",
<add> "4": "\u0bae\u0bc7",
<add> "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
<add> "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
<add> "7": "\u0b86\u0b95.",
<add> "8": "\u0b9a\u0bc6\u0baa\u0bcd.",
<add> "9": "\u0b85\u0b95\u0bcd.",
<add> "10": "\u0ba8\u0bb5.",
<add> "11": "\u0b9f\u0bbf\u0b9a."
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ta.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ஞாயிறு",
<del> "1": "திங்கள்",
<del> "2": "செவ்வாய்",
<del> "3": "புதன்",
<del> "4": "வியாழன்",
<del> "5": "வெள்ளி",
<del> "6": "சனி"
<add> "0": "\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1",
<add> "1": "\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd",
<add> "2": "\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd",
<add> "3": "\u0baa\u0bc1\u0ba4\u0ba9\u0bcd",
<add> "4": "\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd",
<add> "5": "\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf",
<add> "6": "\u0b9a\u0ba9\u0bbf"
<ide> },
<ide> "MONTH": {
<del> "0": "ஜனவரி",
<del> "1": "பிப்ரவரி",
<del> "2": "மார்ச்",
<del> "3": "ஏப்ரல்",
<del> "4": "மே",
<del> "5": "ஜூன்",
<del> "6": "ஜூலை",
<del> "7": "ஆகஸ்ட்",
<del> "8": "செப்டம்பர்",
<del> "9": "அக்டோபர்",
<del> "10": "நவம்பர்",
<del> "11": "டிசம்பர்"
<add> "0": "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf",
<add> "1": "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf",
<add> "2": "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd",
<add> "3": "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd",
<add> "4": "\u0bae\u0bc7",
<add> "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
<add> "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
<add> "7": "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd",
<add> "8": "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
<add> "9": "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd",
<add> "10": "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd",
<add> "11": "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ஞா",
<del> "1": "தி",
<del> "2": "செ",
<del> "3": "பு",
<del> "4": "வி",
<del> "5": "வெ",
<del> "6": "ச"
<add> "0": "\u0b9e\u0bbe",
<add> "1": "\u0ba4\u0bbf",
<add> "2": "\u0b9a\u0bc6",
<add> "3": "\u0baa\u0bc1",
<add> "4": "\u0bb5\u0bbf",
<add> "5": "\u0bb5\u0bc6",
<add> "6": "\u0b9a"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ஜன.",
<del> "1": "பிப்.",
<del> "2": "மார்.",
<del> "3": "ஏப்.",
<del> "4": "மே",
<del> "5": "ஜூன்",
<del> "6": "ஜூலை",
<del> "7": "ஆக.",
<del> "8": "செப்.",
<del> "9": "அக்.",
<del> "10": "நவ.",
<del> "11": "டிச."
<add> "0": "\u0b9c\u0ba9.",
<add> "1": "\u0baa\u0bbf\u0baa\u0bcd.",
<add> "2": "\u0bae\u0bbe\u0bb0\u0bcd.",
<add> "3": "\u0b8f\u0baa\u0bcd.",
<add> "4": "\u0bae\u0bc7",
<add> "5": "\u0b9c\u0bc2\u0ba9\u0bcd",
<add> "6": "\u0b9c\u0bc2\u0bb2\u0bc8",
<add> "7": "\u0b86\u0b95.",
<add> "8": "\u0b9a\u0bc6\u0baa\u0bcd.",
<add> "9": "\u0b85\u0b95\u0bcd.",
<add> "10": "\u0ba8\u0bb5.",
<add> "11": "\u0b9f\u0bbf\u0b9a."
<ide> },
<ide> "fullDate": "EEEE, d MMMM, y",
<ide> "longDate": "d MMMM, y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4 -",
<add> "negPre": "\u00a4\u00a0-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4 ",
<add> "posPre": "\u00a4\u00a0",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_te-in.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ఆదివారం",
<del> "1": "సోమవారం",
<del> "2": "మంగళవారం",
<del> "3": "బుధవారం",
<del> "4": "గురువారం",
<del> "5": "శుక్రవారం",
<del> "6": "శనివారం"
<add> "0": "\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
<add> "1": "\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02",
<add> "2": "\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02",
<add> "3": "\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02",
<add> "4": "\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02",
<add> "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02",
<add> "6": "\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"
<ide> },
<ide> "MONTH": {
<del> "0": "జనవరి",
<del> "1": "ఫిబ్రవరి",
<del> "2": "మార్చి",
<del> "3": "ఎప్రిల్",
<del> "4": "మే",
<del> "5": "జూన్",
<del> "6": "జూలై",
<del> "7": "ఆగస్టు",
<del> "8": "సెప్టెంబర్",
<del> "9": "అక్టోబర్",
<del> "10": "నవంబర్",
<del> "11": "డిసెంబర్"
<add> "0": "\u0c1c\u0c28\u0c35\u0c30\u0c3f",
<add> "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
<add> "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
<add> "3": "\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
<add> "4": "\u0c2e\u0c47",
<add> "5": "\u0c1c\u0c42\u0c28\u0c4d",
<add> "6": "\u0c1c\u0c42\u0c32\u0c48",
<add> "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
<add> "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
<add> "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
<add> "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
<add> "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ఆది",
<del> "1": "సోమ",
<del> "2": "మంగళ",
<del> "3": "బుధ",
<del> "4": "గురు",
<del> "5": "శుక్ర",
<del> "6": "శని"
<add> "0": "\u0c06\u0c26\u0c3f",
<add> "1": "\u0c38\u0c4b\u0c2e",
<add> "2": "\u0c2e\u0c02\u0c17\u0c33",
<add> "3": "\u0c2c\u0c41\u0c27",
<add> "4": "\u0c17\u0c41\u0c30\u0c41",
<add> "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30",
<add> "6": "\u0c36\u0c28\u0c3f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "జన",
<del> "1": "ఫిబ్ర",
<del> "2": "మార్చి",
<del> "3": "ఏప్రి",
<del> "4": "మే",
<del> "5": "జూన్",
<del> "6": "జూలై",
<del> "7": "ఆగస్టు",
<del> "8": "సెప్టెంబర్",
<del> "9": "అక్టోబర్",
<del> "10": "నవంబర్",
<del> "11": "డిసెంబర్"
<add> "0": "\u0c1c\u0c28",
<add> "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30",
<add> "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
<add> "3": "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f",
<add> "4": "\u0c2e\u0c47",
<add> "5": "\u0c1c\u0c42\u0c28\u0c4d",
<add> "6": "\u0c1c\u0c42\u0c32\u0c48",
<add> "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
<add> "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
<add> "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
<add> "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
<add> "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_te.js
<ide> $provide.value("$locale", {
<ide> "1": "pm"
<ide> },
<ide> "DAY": {
<del> "0": "ఆదివారం",
<del> "1": "సోమవారం",
<del> "2": "మంగళవారం",
<del> "3": "బుధవారం",
<del> "4": "గురువారం",
<del> "5": "శుక్రవారం",
<del> "6": "శనివారం"
<add> "0": "\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
<add> "1": "\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02",
<add> "2": "\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02",
<add> "3": "\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02",
<add> "4": "\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02",
<add> "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02",
<add> "6": "\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"
<ide> },
<ide> "MONTH": {
<del> "0": "జనవరి",
<del> "1": "ఫిబ్రవరి",
<del> "2": "మార్చి",
<del> "3": "ఎప్రిల్",
<del> "4": "మే",
<del> "5": "జూన్",
<del> "6": "జూలై",
<del> "7": "ఆగస్టు",
<del> "8": "సెప్టెంబర్",
<del> "9": "అక్టోబర్",
<del> "10": "నవంబర్",
<del> "11": "డిసెంబర్"
<add> "0": "\u0c1c\u0c28\u0c35\u0c30\u0c3f",
<add> "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
<add> "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
<add> "3": "\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
<add> "4": "\u0c2e\u0c47",
<add> "5": "\u0c1c\u0c42\u0c28\u0c4d",
<add> "6": "\u0c1c\u0c42\u0c32\u0c48",
<add> "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
<add> "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
<add> "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
<add> "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
<add> "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "ఆది",
<del> "1": "సోమ",
<del> "2": "మంగళ",
<del> "3": "బుధ",
<del> "4": "గురు",
<del> "5": "శుక్ర",
<del> "6": "శని"
<add> "0": "\u0c06\u0c26\u0c3f",
<add> "1": "\u0c38\u0c4b\u0c2e",
<add> "2": "\u0c2e\u0c02\u0c17\u0c33",
<add> "3": "\u0c2c\u0c41\u0c27",
<add> "4": "\u0c17\u0c41\u0c30\u0c41",
<add> "5": "\u0c36\u0c41\u0c15\u0c4d\u0c30",
<add> "6": "\u0c36\u0c28\u0c3f"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "జన",
<del> "1": "ఫిబ్ర",
<del> "2": "మార్చి",
<del> "3": "ఏప్రి",
<del> "4": "మే",
<del> "5": "జూన్",
<del> "6": "జూలై",
<del> "7": "ఆగస్టు",
<del> "8": "సెప్టెంబర్",
<del> "9": "అక్టోబర్",
<del> "10": "నవంబర్",
<del> "11": "డిసెంబర్"
<add> "0": "\u0c1c\u0c28",
<add> "1": "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30",
<add> "2": "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
<add> "3": "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f",
<add> "4": "\u0c2e\u0c47",
<add> "5": "\u0c1c\u0c42\u0c28\u0c4d",
<add> "6": "\u0c1c\u0c42\u0c32\u0c48",
<add> "7": "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
<add> "8": "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
<add> "9": "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
<add> "10": "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
<add> "11": "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
<ide> },
<ide> "fullDate": "EEEE d MMMM y",
<ide> "longDate": "d MMMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "h:mm a"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₹",
<add> "CURRENCY_SYM": "\u20b9",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_th-th.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ก่อนเที่ยง",
<del> "1": "หลังเที่ยง"
<add> "0": "\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
<add> "1": "\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"
<ide> },
<ide> "DAY": {
<del> "0": "วันอาทิตย์",
<del> "1": "วันจันทร์",
<del> "2": "วันอังคาร",
<del> "3": "วันพุธ",
<del> "4": "วันพฤหัสบดี",
<del> "5": "วันศุกร์",
<del> "6": "วันเสาร์"
<add> "0": "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c",
<add> "1": "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c",
<add> "2": "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23",
<add> "3": "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18",
<add> "4": "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35",
<add> "5": "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c",
<add> "6": "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"
<ide> },
<ide> "MONTH": {
<del> "0": "มกราคม",
<del> "1": "กุมภาพันธ์",
<del> "2": "มีนาคม",
<del> "3": "เมษายน",
<del> "4": "พฤษภาคม",
<del> "5": "มิถุนายน",
<del> "6": "กรกฎาคม",
<del> "7": "สิงหาคม",
<del> "8": "กันยายน",
<del> "9": "ตุลาคม",
<del> "10": "พฤศจิกายน",
<del> "11": "ธันวาคม"
<add> "0": "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
<add> "1": "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
<add> "2": "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
<add> "3": "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
<add> "4": "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
<add> "5": "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
<add> "6": "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
<add> "7": "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
<add> "8": "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
<add> "9": "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
<add> "10": "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
<add> "11": "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "อา.",
<del> "1": "จ.",
<del> "2": "อ.",
<del> "3": "พ.",
<del> "4": "พฤ.",
<del> "5": "ศ.",
<del> "6": "ส."
<add> "0": "\u0e2d\u0e32.",
<add> "1": "\u0e08.",
<add> "2": "\u0e2d.",
<add> "3": "\u0e1e.",
<add> "4": "\u0e1e\u0e24.",
<add> "5": "\u0e28.",
<add> "6": "\u0e2a."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ม.ค.",
<del> "1": "ก.พ.",
<del> "2": "มี.ค.",
<del> "3": "เม.ย.",
<del> "4": "พ.ค.",
<del> "5": "มิ.ย.",
<del> "6": "ก.ค.",
<del> "7": "ส.ค.",
<del> "8": "ก.ย.",
<del> "9": "ต.ค.",
<del> "10": "พ.ย.",
<del> "11": "ธ.ค."
<add> "0": "\u0e21.\u0e04.",
<add> "1": "\u0e01.\u0e1e.",
<add> "2": "\u0e21\u0e35.\u0e04.",
<add> "3": "\u0e40\u0e21.\u0e22.",
<add> "4": "\u0e1e.\u0e04.",
<add> "5": "\u0e21\u0e34.\u0e22.",
<add> "6": "\u0e01.\u0e04.",
<add> "7": "\u0e2a.\u0e04.",
<add> "8": "\u0e01.\u0e22.",
<add> "9": "\u0e15.\u0e04.",
<add> "10": "\u0e1e.\u0e22.",
<add> "11": "\u0e18.\u0e04."
<ide> },
<del> "fullDate": "EEEEที่ d MMMM G y",
<add> "fullDate": "EEEE\u0e17\u0e35\u0e48 d MMMM G y",
<ide> "longDate": "d MMMM y",
<ide> "medium": "d MMM y H:mm:ss",
<ide> "mediumDate": "d MMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "฿",
<add> "CURRENCY_SYM": "\u0e3f",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_th.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "ก่อนเที่ยง",
<del> "1": "หลังเที่ยง"
<add> "0": "\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07",
<add> "1": "\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"
<ide> },
<ide> "DAY": {
<del> "0": "วันอาทิตย์",
<del> "1": "วันจันทร์",
<del> "2": "วันอังคาร",
<del> "3": "วันพุธ",
<del> "4": "วันพฤหัสบดี",
<del> "5": "วันศุกร์",
<del> "6": "วันเสาร์"
<add> "0": "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c",
<add> "1": "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c",
<add> "2": "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23",
<add> "3": "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18",
<add> "4": "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35",
<add> "5": "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c",
<add> "6": "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"
<ide> },
<ide> "MONTH": {
<del> "0": "มกราคม",
<del> "1": "กุมภาพันธ์",
<del> "2": "มีนาคม",
<del> "3": "เมษายน",
<del> "4": "พฤษภาคม",
<del> "5": "มิถุนายน",
<del> "6": "กรกฎาคม",
<del> "7": "สิงหาคม",
<del> "8": "กันยายน",
<del> "9": "ตุลาคม",
<del> "10": "พฤศจิกายน",
<del> "11": "ธันวาคม"
<add> "0": "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
<add> "1": "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
<add> "2": "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
<add> "3": "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
<add> "4": "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
<add> "5": "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
<add> "6": "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
<add> "7": "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
<add> "8": "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
<add> "9": "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
<add> "10": "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
<add> "11": "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "อา.",
<del> "1": "จ.",
<del> "2": "อ.",
<del> "3": "พ.",
<del> "4": "พฤ.",
<del> "5": "ศ.",
<del> "6": "ส."
<add> "0": "\u0e2d\u0e32.",
<add> "1": "\u0e08.",
<add> "2": "\u0e2d.",
<add> "3": "\u0e1e.",
<add> "4": "\u0e1e\u0e24.",
<add> "5": "\u0e28.",
<add> "6": "\u0e2a."
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "ม.ค.",
<del> "1": "ก.พ.",
<del> "2": "มี.ค.",
<del> "3": "เม.ย.",
<del> "4": "พ.ค.",
<del> "5": "มิ.ย.",
<del> "6": "ก.ค.",
<del> "7": "ส.ค.",
<del> "8": "ก.ย.",
<del> "9": "ต.ค.",
<del> "10": "พ.ย.",
<del> "11": "ธ.ค."
<add> "0": "\u0e21.\u0e04.",
<add> "1": "\u0e01.\u0e1e.",
<add> "2": "\u0e21\u0e35.\u0e04.",
<add> "3": "\u0e40\u0e21.\u0e22.",
<add> "4": "\u0e1e.\u0e04.",
<add> "5": "\u0e21\u0e34.\u0e22.",
<add> "6": "\u0e01.\u0e04.",
<add> "7": "\u0e2a.\u0e04.",
<add> "8": "\u0e01.\u0e22.",
<add> "9": "\u0e15.\u0e04.",
<add> "10": "\u0e1e.\u0e22.",
<add> "11": "\u0e18.\u0e04."
<ide> },
<del> "fullDate": "EEEEที่ d MMMM G y",
<add> "fullDate": "EEEE\u0e17\u0e35\u0e48 d MMMM G y",
<ide> "longDate": "d MMMM y",
<ide> "medium": "d MMM y H:mm:ss",
<ide> "mediumDate": "d MMM y",
<ide> $provide.value("$locale", {
<ide> "shortTime": "H:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "฿",
<add> "CURRENCY_SYM": "\u0e3f",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_tl.js
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₱",
<add> "CURRENCY_SYM": "\u20b1",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_tr-tr.js
<ide> $provide.value("$locale", {
<ide> "DAY": {
<ide> "0": "Pazar",
<ide> "1": "Pazartesi",
<del> "2": "Salı",
<del> "3": "Çarşamba",
<del> "4": "Perşembe",
<add> "2": "Sal\u0131",
<add> "3": "\u00c7ar\u015famba",
<add> "4": "Per\u015fembe",
<ide> "5": "Cuma",
<ide> "6": "Cumartesi"
<ide> },
<ide> "MONTH": {
<ide> "0": "Ocak",
<del> "1": "Şubat",
<add> "1": "\u015eubat",
<ide> "2": "Mart",
<ide> "3": "Nisan",
<del> "4": "Mayıs",
<add> "4": "May\u0131s",
<ide> "5": "Haziran",
<ide> "6": "Temmuz",
<del> "7": "Ağustos",
<del> "8": "Eylül",
<add> "7": "A\u011fustos",
<add> "8": "Eyl\u00fcl",
<ide> "9": "Ekim",
<del> "10": "Kasım",
<del> "11": "Aralık"
<add> "10": "Kas\u0131m",
<add> "11": "Aral\u0131k"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "Paz",
<ide> "1": "Pzt",
<ide> "2": "Sal",
<del> "3": "Çar",
<add> "3": "\u00c7ar",
<ide> "4": "Per",
<ide> "5": "Cum",
<ide> "6": "Cmt"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Oca",
<del> "1": "Şub",
<add> "1": "\u015eub",
<ide> "2": "Mar",
<ide> "3": "Nis",
<ide> "4": "May",
<ide> "5": "Haz",
<ide> "6": "Tem",
<del> "7": "Ağu",
<add> "7": "A\u011fu",
<ide> "8": "Eyl",
<ide> "9": "Eki",
<ide> "10": "Kas",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_tr.js
<ide> $provide.value("$locale", {
<ide> "DAY": {
<ide> "0": "Pazar",
<ide> "1": "Pazartesi",
<del> "2": "Salı",
<del> "3": "Çarşamba",
<del> "4": "Perşembe",
<add> "2": "Sal\u0131",
<add> "3": "\u00c7ar\u015famba",
<add> "4": "Per\u015fembe",
<ide> "5": "Cuma",
<ide> "6": "Cumartesi"
<ide> },
<ide> "MONTH": {
<ide> "0": "Ocak",
<del> "1": "Şubat",
<add> "1": "\u015eubat",
<ide> "2": "Mart",
<ide> "3": "Nisan",
<del> "4": "Mayıs",
<add> "4": "May\u0131s",
<ide> "5": "Haziran",
<ide> "6": "Temmuz",
<del> "7": "Ağustos",
<del> "8": "Eylül",
<add> "7": "A\u011fustos",
<add> "8": "Eyl\u00fcl",
<ide> "9": "Ekim",
<del> "10": "Kasım",
<del> "11": "Aralık"
<add> "10": "Kas\u0131m",
<add> "11": "Aral\u0131k"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "Paz",
<ide> "1": "Pzt",
<ide> "2": "Sal",
<del> "3": "Çar",
<add> "3": "\u00c7ar",
<ide> "4": "Per",
<ide> "5": "Cum",
<ide> "6": "Cmt"
<ide> },
<ide> "SHORTMONTH": {
<ide> "0": "Oca",
<del> "1": "Şub",
<add> "1": "\u015eub",
<ide> "2": "Mar",
<ide> "3": "Nis",
<ide> "4": "May",
<ide> "5": "Haz",
<ide> "6": "Tem",
<del> "7": "Ağu",
<add> "7": "A\u011fu",
<ide> "8": "Eyl",
<ide> "9": "Eki",
<ide> "10": "Kas",
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "(",
<del> "negSuf": " \u00A4)",
<add> "negSuf": "\u00a0\u00a4)",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_uk-ua.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "дп",
<del> "1": "пп"
<add> "0": "\u0434\u043f",
<add> "1": "\u043f\u043f"
<ide> },
<ide> "DAY": {
<del> "0": "Неділя",
<del> "1": "Понеділок",
<del> "2": "Вівторок",
<del> "3": "Середа",
<del> "4": "Четвер",
<del> "5": "Пʼятниця",
<del> "6": "Субота"
<add> "0": "\u041d\u0435\u0434\u0456\u043b\u044f",
<add> "1": "\u041f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a",
<add> "2": "\u0412\u0456\u0432\u0442\u043e\u0440\u043e\u043a",
<add> "3": "\u0421\u0435\u0440\u0435\u0434\u0430",
<add> "4": "\u0427\u0435\u0442\u0432\u0435\u0440",
<add> "5": "\u041f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f",
<add> "6": "\u0421\u0443\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "січня",
<del> "1": "лютого",
<del> "2": "березня",
<del> "3": "квітня",
<del> "4": "травня",
<del> "5": "червня",
<del> "6": "липня",
<del> "7": "серпня",
<del> "8": "вересня",
<del> "9": "жовтня",
<del> "10": "листопада",
<del> "11": "грудня"
<add> "0": "\u0441\u0456\u0447\u043d\u044f",
<add> "1": "\u043b\u044e\u0442\u043e\u0433\u043e",
<add> "2": "\u0431\u0435\u0440\u0435\u0437\u043d\u044f",
<add> "3": "\u043a\u0432\u0456\u0442\u043d\u044f",
<add> "4": "\u0442\u0440\u0430\u0432\u043d\u044f",
<add> "5": "\u0447\u0435\u0440\u0432\u043d\u044f",
<add> "6": "\u043b\u0438\u043f\u043d\u044f",
<add> "7": "\u0441\u0435\u0440\u043f\u043d\u044f",
<add> "8": "\u0432\u0435\u0440\u0435\u0441\u043d\u044f",
<add> "9": "\u0436\u043e\u0432\u0442\u043d\u044f",
<add> "10": "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430",
<add> "11": "\u0433\u0440\u0443\u0434\u043d\u044f"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Нд",
<del> "1": "Пн",
<del> "2": "Вт",
<del> "3": "Ср",
<del> "4": "Чт",
<del> "5": "Пт",
<del> "6": "Сб"
<add> "0": "\u041d\u0434",
<add> "1": "\u041f\u043d",
<add> "2": "\u0412\u0442",
<add> "3": "\u0421\u0440",
<add> "4": "\u0427\u0442",
<add> "5": "\u041f\u0442",
<add> "6": "\u0421\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "січ.",
<del> "1": "лют.",
<del> "2": "бер.",
<del> "3": "квіт.",
<del> "4": "трав.",
<del> "5": "черв.",
<del> "6": "лип.",
<del> "7": "серп.",
<del> "8": "вер.",
<del> "9": "жовт.",
<del> "10": "лист.",
<del> "11": "груд."
<add> "0": "\u0441\u0456\u0447.",
<add> "1": "\u043b\u044e\u0442.",
<add> "2": "\u0431\u0435\u0440.",
<add> "3": "\u043a\u0432\u0456\u0442.",
<add> "4": "\u0442\u0440\u0430\u0432.",
<add> "5": "\u0447\u0435\u0440\u0432.",
<add> "6": "\u043b\u0438\u043f.",
<add> "7": "\u0441\u0435\u0440\u043f.",
<add> "8": "\u0432\u0435\u0440.",
<add> "9": "\u0436\u043e\u0432\u0442.",
<add> "10": "\u043b\u0438\u0441\u0442.",
<add> "11": "\u0433\u0440\u0443\u0434."
<ide> },
<del> "fullDate": "EEEE, d MMMM y 'р'.",
<del> "longDate": "d MMMM y 'р'.",
<add> "fullDate": "EEEE, d MMMM y '\u0440'.",
<add> "longDate": "d MMMM y '\u0440'.",
<ide> "medium": "d MMM y HH:mm:ss",
<ide> "mediumDate": "d MMM y",
<ide> "mediumTime": "HH:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₴",
<add> "CURRENCY_SYM": "\u20b4",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_uk.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "дп",
<del> "1": "пп"
<add> "0": "\u0434\u043f",
<add> "1": "\u043f\u043f"
<ide> },
<ide> "DAY": {
<del> "0": "Неділя",
<del> "1": "Понеділок",
<del> "2": "Вівторок",
<del> "3": "Середа",
<del> "4": "Четвер",
<del> "5": "Пʼятниця",
<del> "6": "Субота"
<add> "0": "\u041d\u0435\u0434\u0456\u043b\u044f",
<add> "1": "\u041f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a",
<add> "2": "\u0412\u0456\u0432\u0442\u043e\u0440\u043e\u043a",
<add> "3": "\u0421\u0435\u0440\u0435\u0434\u0430",
<add> "4": "\u0427\u0435\u0442\u0432\u0435\u0440",
<add> "5": "\u041f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f",
<add> "6": "\u0421\u0443\u0431\u043e\u0442\u0430"
<ide> },
<ide> "MONTH": {
<del> "0": "січня",
<del> "1": "лютого",
<del> "2": "березня",
<del> "3": "квітня",
<del> "4": "травня",
<del> "5": "червня",
<del> "6": "липня",
<del> "7": "серпня",
<del> "8": "вересня",
<del> "9": "жовтня",
<del> "10": "листопада",
<del> "11": "грудня"
<add> "0": "\u0441\u0456\u0447\u043d\u044f",
<add> "1": "\u043b\u044e\u0442\u043e\u0433\u043e",
<add> "2": "\u0431\u0435\u0440\u0435\u0437\u043d\u044f",
<add> "3": "\u043a\u0432\u0456\u0442\u043d\u044f",
<add> "4": "\u0442\u0440\u0430\u0432\u043d\u044f",
<add> "5": "\u0447\u0435\u0440\u0432\u043d\u044f",
<add> "6": "\u043b\u0438\u043f\u043d\u044f",
<add> "7": "\u0441\u0435\u0440\u043f\u043d\u044f",
<add> "8": "\u0432\u0435\u0440\u0435\u0441\u043d\u044f",
<add> "9": "\u0436\u043e\u0432\u0442\u043d\u044f",
<add> "10": "\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430",
<add> "11": "\u0433\u0440\u0443\u0434\u043d\u044f"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "Нд",
<del> "1": "Пн",
<del> "2": "Вт",
<del> "3": "Ср",
<del> "4": "Чт",
<del> "5": "Пт",
<del> "6": "Сб"
<add> "0": "\u041d\u0434",
<add> "1": "\u041f\u043d",
<add> "2": "\u0412\u0442",
<add> "3": "\u0421\u0440",
<add> "4": "\u0427\u0442",
<add> "5": "\u041f\u0442",
<add> "6": "\u0421\u0431"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "січ.",
<del> "1": "лют.",
<del> "2": "бер.",
<del> "3": "квіт.",
<del> "4": "трав.",
<del> "5": "черв.",
<del> "6": "лип.",
<del> "7": "серп.",
<del> "8": "вер.",
<del> "9": "жовт.",
<del> "10": "лист.",
<del> "11": "груд."
<add> "0": "\u0441\u0456\u0447.",
<add> "1": "\u043b\u044e\u0442.",
<add> "2": "\u0431\u0435\u0440.",
<add> "3": "\u043a\u0432\u0456\u0442.",
<add> "4": "\u0442\u0440\u0430\u0432.",
<add> "5": "\u0447\u0435\u0440\u0432.",
<add> "6": "\u043b\u0438\u043f.",
<add> "7": "\u0441\u0435\u0440\u043f.",
<add> "8": "\u0432\u0435\u0440.",
<add> "9": "\u0436\u043e\u0432\u0442.",
<add> "10": "\u043b\u0438\u0441\u0442.",
<add> "11": "\u0433\u0440\u0443\u0434."
<ide> },
<del> "fullDate": "EEEE, d MMMM y 'р'.",
<del> "longDate": "d MMMM y 'р'.",
<add> "fullDate": "EEEE, d MMMM y '\u0440'.",
<add> "longDate": "d MMMM y '\u0440'.",
<ide> "medium": "d MMM y HH:mm:ss",
<ide> "mediumDate": "d MMM y",
<ide> "mediumTime": "HH:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₴",
<add> "CURRENCY_SYM": "\u20b4",
<ide> "DECIMAL_SEP": ",",
<del> "GROUP_SEP": " ",
<add> "GROUP_SEP": "\u00a0",
<ide> "PATTERNS": {
<ide> "0": {
<ide> "gSize": 3,
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_ur-pk.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "دن",
<del> "1": "رات"
<add> "0": "\u062f\u0646",
<add> "1": "\u0631\u0627\u062a"
<ide> },
<ide> "DAY": {
<del> "0": "اتوار",
<del> "1": "پير",
<del> "2": "منگل",
<del> "3": "بده",
<del> "4": "جمعرات",
<del> "5": "جمعہ",
<del> "6": "ہفتہ"
<add> "0": "\u0627\u062a\u0648\u0627\u0631",
<add> "1": "\u067e\u064a\u0631",
<add> "2": "\u0645\u0646\u06af\u0644",
<add> "3": "\u0628\u062f\u0647",
<add> "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
<add> "5": "\u062c\u0645\u0639\u06c1",
<add> "6": "\u06c1\u0641\u062a\u06c1"
<ide> },
<ide> "MONTH": {
<del> "0": "جنوری",
<del> "1": "فروری",
<del> "2": "مارچ",
<del> "3": "اپريل",
<del> "4": "مئ",
<del> "5": "جون",
<del> "6": "جولائ",
<del> "7": "اگست",
<del> "8": "ستمبر",
<del> "9": "اکتوبر",
<del> "10": "نومبر",
<del> "11": "دسمبر"
<add> "0": "\u062c\u0646\u0648\u0631\u06cc",
<add> "1": "\u0641\u0631\u0648\u0631\u06cc",
<add> "2": "\u0645\u0627\u0631\u0686",
<add> "3": "\u0627\u067e\u0631\u064a\u0644",
<add> "4": "\u0645\u0626",
<add> "5": "\u062c\u0648\u0646",
<add> "6": "\u062c\u0648\u0644\u0627\u0626",
<add> "7": "\u0627\u06af\u0633\u062a",
<add> "8": "\u0633\u062a\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "اتوار",
<del> "1": "پير",
<del> "2": "منگل",
<del> "3": "بده",
<del> "4": "جمعرات",
<del> "5": "جمعہ",
<del> "6": "ہفتہ"
<add> "0": "\u0627\u062a\u0648\u0627\u0631",
<add> "1": "\u067e\u064a\u0631",
<add> "2": "\u0645\u0646\u06af\u0644",
<add> "3": "\u0628\u062f\u0647",
<add> "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
<add> "5": "\u062c\u0645\u0639\u06c1",
<add> "6": "\u06c1\u0641\u062a\u06c1"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "جنوری",
<del> "1": "فروری",
<del> "2": "مارچ",
<del> "3": "اپريل",
<del> "4": "مئ",
<del> "5": "جون",
<del> "6": "جولائ",
<del> "7": "اگست",
<del> "8": "ستمبر",
<del> "9": "اکتوبر",
<del> "10": "نومبر",
<del> "11": "دسمبر"
<add> "0": "\u062c\u0646\u0648\u0631\u06cc",
<add> "1": "\u0641\u0631\u0648\u0631\u06cc",
<add> "2": "\u0645\u0627\u0631\u0686",
<add> "3": "\u0627\u067e\u0631\u064a\u0644",
<add> "4": "\u0645\u0626",
<add> "5": "\u062c\u0648\u0646",
<add> "6": "\u062c\u0648\u0644\u0627\u0626",
<add> "7": "\u0627\u06af\u0633\u062a",
<add> "8": "\u0633\u062a\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE؍ d؍ MMMM y",
<del> "longDate": "d؍ MMMM y",
<del> "medium": "d؍ MMM y h:mm:ss a",
<del> "mediumDate": "d؍ MMM y",
<add> "fullDate": "EEEE\u060d d\u060d MMMM y",
<add> "longDate": "d\u060d MMMM y",
<add> "medium": "d\u060d MMM y h:mm:ss a",
<add> "mediumDate": "d\u060d MMM y",
<ide> "mediumTime": "h:mm:ss a",
<ide> "short": "d/M/yy h:mm a",
<ide> "shortDate": "d/M/yy",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_ur.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "دن",
<del> "1": "رات"
<add> "0": "\u062f\u0646",
<add> "1": "\u0631\u0627\u062a"
<ide> },
<ide> "DAY": {
<del> "0": "اتوار",
<del> "1": "پير",
<del> "2": "منگل",
<del> "3": "بده",
<del> "4": "جمعرات",
<del> "5": "جمعہ",
<del> "6": "ہفتہ"
<add> "0": "\u0627\u062a\u0648\u0627\u0631",
<add> "1": "\u067e\u064a\u0631",
<add> "2": "\u0645\u0646\u06af\u0644",
<add> "3": "\u0628\u062f\u0647",
<add> "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
<add> "5": "\u062c\u0645\u0639\u06c1",
<add> "6": "\u06c1\u0641\u062a\u06c1"
<ide> },
<ide> "MONTH": {
<del> "0": "جنوری",
<del> "1": "فروری",
<del> "2": "مارچ",
<del> "3": "اپريل",
<del> "4": "مئ",
<del> "5": "جون",
<del> "6": "جولائ",
<del> "7": "اگست",
<del> "8": "ستمبر",
<del> "9": "اکتوبر",
<del> "10": "نومبر",
<del> "11": "دسمبر"
<add> "0": "\u062c\u0646\u0648\u0631\u06cc",
<add> "1": "\u0641\u0631\u0648\u0631\u06cc",
<add> "2": "\u0645\u0627\u0631\u0686",
<add> "3": "\u0627\u067e\u0631\u064a\u0644",
<add> "4": "\u0645\u0626",
<add> "5": "\u062c\u0648\u0646",
<add> "6": "\u062c\u0648\u0644\u0627\u0626",
<add> "7": "\u0627\u06af\u0633\u062a",
<add> "8": "\u0633\u062a\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0645\u0628\u0631"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "اتوار",
<del> "1": "پير",
<del> "2": "منگل",
<del> "3": "بده",
<del> "4": "جمعرات",
<del> "5": "جمعہ",
<del> "6": "ہفتہ"
<add> "0": "\u0627\u062a\u0648\u0627\u0631",
<add> "1": "\u067e\u064a\u0631",
<add> "2": "\u0645\u0646\u06af\u0644",
<add> "3": "\u0628\u062f\u0647",
<add> "4": "\u062c\u0645\u0639\u0631\u0627\u062a",
<add> "5": "\u062c\u0645\u0639\u06c1",
<add> "6": "\u06c1\u0641\u062a\u06c1"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "جنوری",
<del> "1": "فروری",
<del> "2": "مارچ",
<del> "3": "اپريل",
<del> "4": "مئ",
<del> "5": "جون",
<del> "6": "جولائ",
<del> "7": "اگست",
<del> "8": "ستمبر",
<del> "9": "اکتوبر",
<del> "10": "نومبر",
<del> "11": "دسمبر"
<add> "0": "\u062c\u0646\u0648\u0631\u06cc",
<add> "1": "\u0641\u0631\u0648\u0631\u06cc",
<add> "2": "\u0645\u0627\u0631\u0686",
<add> "3": "\u0627\u067e\u0631\u064a\u0644",
<add> "4": "\u0645\u0626",
<add> "5": "\u062c\u0648\u0646",
<add> "6": "\u062c\u0648\u0644\u0627\u0626",
<add> "7": "\u0627\u06af\u0633\u062a",
<add> "8": "\u0633\u062a\u0645\u0628\u0631",
<add> "9": "\u0627\u06a9\u062a\u0648\u0628\u0631",
<add> "10": "\u0646\u0648\u0645\u0628\u0631",
<add> "11": "\u062f\u0633\u0645\u0628\u0631"
<ide> },
<del> "fullDate": "EEEE؍ d؍ MMMM y",
<del> "longDate": "d؍ MMMM y",
<del> "medium": "d؍ MMM y h:mm:ss a",
<del> "mediumDate": "d؍ MMM y",
<add> "fullDate": "EEEE\u060d d\u060d MMMM y",
<add> "longDate": "d\u060d MMMM y",
<add> "medium": "d\u060d MMM y h:mm:ss a",
<add> "mediumDate": "d\u060d MMM y",
<ide> "mediumTime": "h:mm:ss a",
<ide> "short": "d/M/yy h:mm a",
<ide> "shortDate": "d/M/yy",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_vi-vn.js
<ide> $provide.value("$locale", {
<ide> "1": "CH"
<ide> },
<ide> "DAY": {
<del> "0": "Chủ nhật",
<del> "1": "Thứ hai",
<del> "2": "Thứ ba",
<del> "3": "Thứ tư",
<del> "4": "Thứ năm",
<del> "5": "Thứ sáu",
<del> "6": "Thứ bảy"
<add> "0": "Ch\u1ee7 nh\u1eadt",
<add> "1": "Th\u1ee9 hai",
<add> "2": "Th\u1ee9 ba",
<add> "3": "Th\u1ee9 t\u01b0",
<add> "4": "Th\u1ee9 n\u0103m",
<add> "5": "Th\u1ee9 s\u00e1u",
<add> "6": "Th\u1ee9 b\u1ea3y"
<ide> },
<ide> "MONTH": {
<del> "0": "tháng một",
<del> "1": "tháng hai",
<del> "2": "tháng ba",
<del> "3": "tháng tư",
<del> "4": "tháng năm",
<del> "5": "tháng sáu",
<del> "6": "tháng bảy",
<del> "7": "tháng tám",
<del> "8": "tháng chín",
<del> "9": "tháng mười",
<del> "10": "tháng mười một",
<del> "11": "tháng mười hai"
<add> "0": "th\u00e1ng m\u1ed9t",
<add> "1": "th\u00e1ng hai",
<add> "2": "th\u00e1ng ba",
<add> "3": "th\u00e1ng t\u01b0",
<add> "4": "th\u00e1ng n\u0103m",
<add> "5": "th\u00e1ng s\u00e1u",
<add> "6": "th\u00e1ng b\u1ea3y",
<add> "7": "th\u00e1ng t\u00e1m",
<add> "8": "th\u00e1ng ch\u00edn",
<add> "9": "th\u00e1ng m\u01b0\u1eddi",
<add> "10": "th\u00e1ng m\u01b0\u1eddi m\u1ed9t",
<add> "11": "th\u00e1ng m\u01b0\u1eddi hai"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "CN",
<ide> $provide.value("$locale", {
<ide> "10": "thg 11",
<ide> "11": "thg 12"
<ide> },
<del> "fullDate": "EEEE, 'ngày' dd MMMM 'năm' y",
<del> "longDate": "'Ngày' dd 'tháng' M 'năm' y",
<add> "fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y",
<add> "longDate": "'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y",
<ide> "medium": "dd-MM-yyyy HH:mm:ss",
<ide> "mediumDate": "dd-MM-yyyy",
<ide> "mediumTime": "HH:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₫",
<add> "CURRENCY_SYM": "\u20ab",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_vi.js
<ide> $provide.value("$locale", {
<ide> "1": "CH"
<ide> },
<ide> "DAY": {
<del> "0": "Chủ nhật",
<del> "1": "Thứ hai",
<del> "2": "Thứ ba",
<del> "3": "Thứ tư",
<del> "4": "Thứ năm",
<del> "5": "Thứ sáu",
<del> "6": "Thứ bảy"
<add> "0": "Ch\u1ee7 nh\u1eadt",
<add> "1": "Th\u1ee9 hai",
<add> "2": "Th\u1ee9 ba",
<add> "3": "Th\u1ee9 t\u01b0",
<add> "4": "Th\u1ee9 n\u0103m",
<add> "5": "Th\u1ee9 s\u00e1u",
<add> "6": "Th\u1ee9 b\u1ea3y"
<ide> },
<ide> "MONTH": {
<del> "0": "tháng một",
<del> "1": "tháng hai",
<del> "2": "tháng ba",
<del> "3": "tháng tư",
<del> "4": "tháng năm",
<del> "5": "tháng sáu",
<del> "6": "tháng bảy",
<del> "7": "tháng tám",
<del> "8": "tháng chín",
<del> "9": "tháng mười",
<del> "10": "tháng mười một",
<del> "11": "tháng mười hai"
<add> "0": "th\u00e1ng m\u1ed9t",
<add> "1": "th\u00e1ng hai",
<add> "2": "th\u00e1ng ba",
<add> "3": "th\u00e1ng t\u01b0",
<add> "4": "th\u00e1ng n\u0103m",
<add> "5": "th\u00e1ng s\u00e1u",
<add> "6": "th\u00e1ng b\u1ea3y",
<add> "7": "th\u00e1ng t\u00e1m",
<add> "8": "th\u00e1ng ch\u00edn",
<add> "9": "th\u00e1ng m\u01b0\u1eddi",
<add> "10": "th\u00e1ng m\u01b0\u1eddi m\u1ed9t",
<add> "11": "th\u00e1ng m\u01b0\u1eddi hai"
<ide> },
<ide> "SHORTDAY": {
<ide> "0": "CN",
<ide> $provide.value("$locale", {
<ide> "10": "thg 11",
<ide> "11": "thg 12"
<ide> },
<del> "fullDate": "EEEE, 'ngày' dd MMMM 'năm' y",
<del> "longDate": "'Ngày' dd 'tháng' M 'năm' y",
<add> "fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y",
<add> "longDate": "'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y",
<ide> "medium": "dd-MM-yyyy HH:mm:ss",
<ide> "mediumDate": "dd-MM-yyyy",
<ide> "mediumTime": "HH:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "HH:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "₫",
<add> "CURRENCY_SYM": "\u20ab",
<ide> "DECIMAL_SEP": ",",
<ide> "GROUP_SEP": ".",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "minFrac": 2,
<ide> "minInt": 1,
<ide> "negPre": "-",
<del> "negSuf": " \u00A4",
<add> "negSuf": "\u00a0\u00a4",
<ide> "posPre": "",
<del> "posSuf": " \u00A4"
<add> "posSuf": "\u00a0\u00a4"
<ide> }
<ide> }
<ide> },
<ide><path>src/ngLocale/angular-locale_zh-cn.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "上午",
<del> "1": "下午"
<add> "0": "\u4e0a\u5348",
<add> "1": "\u4e0b\u5348"
<ide> },
<ide> "DAY": {
<del> "0": "星期日",
<del> "1": "星期一",
<del> "2": "星期二",
<del> "3": "星期三",
<del> "4": "星期四",
<del> "5": "星期五",
<del> "6": "星期六"
<add> "0": "\u661f\u671f\u65e5",
<add> "1": "\u661f\u671f\u4e00",
<add> "2": "\u661f\u671f\u4e8c",
<add> "3": "\u661f\u671f\u4e09",
<add> "4": "\u661f\u671f\u56db",
<add> "5": "\u661f\u671f\u4e94",
<add> "6": "\u661f\u671f\u516d"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "周日",
<del> "1": "周一",
<del> "2": "周二",
<del> "3": "周三",
<del> "4": "周四",
<del> "5": "周五",
<del> "6": "周六"
<add> "0": "\u5468\u65e5",
<add> "1": "\u5468\u4e00",
<add> "2": "\u5468\u4e8c",
<add> "3": "\u5468\u4e09",
<add> "4": "\u5468\u56db",
<add> "5": "\u5468\u4e94",
<add> "6": "\u5468\u516d"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<ide> "medium": "yyyy-M-d ah:mm:ss",
<ide> "mediumDate": "yyyy-M-d",
<ide> "mediumTime": "ah:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "ah:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "¥",
<add> "CURRENCY_SYM": "\u00a5",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_zh-hans-cn.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "上午",
<del> "1": "下午"
<add> "0": "\u4e0a\u5348",
<add> "1": "\u4e0b\u5348"
<ide> },
<ide> "DAY": {
<del> "0": "星期日",
<del> "1": "星期一",
<del> "2": "星期二",
<del> "3": "星期三",
<del> "4": "星期四",
<del> "5": "星期五",
<del> "6": "星期六"
<add> "0": "\u661f\u671f\u65e5",
<add> "1": "\u661f\u671f\u4e00",
<add> "2": "\u661f\u671f\u4e8c",
<add> "3": "\u661f\u671f\u4e09",
<add> "4": "\u661f\u671f\u56db",
<add> "5": "\u661f\u671f\u4e94",
<add> "6": "\u661f\u671f\u516d"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "周日",
<del> "1": "周一",
<del> "2": "周二",
<del> "3": "周三",
<del> "4": "周四",
<del> "5": "周五",
<del> "6": "周六"
<add> "0": "\u5468\u65e5",
<add> "1": "\u5468\u4e00",
<add> "2": "\u5468\u4e8c",
<add> "3": "\u5468\u4e09",
<add> "4": "\u5468\u56db",
<add> "5": "\u5468\u4e94",
<add> "6": "\u5468\u516d"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<ide> "medium": "yyyy-M-d ah:mm:ss",
<ide> "mediumDate": "yyyy-M-d",
<ide> "mediumTime": "ah:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "ah:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "¥",
<add> "CURRENCY_SYM": "\u00a5",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_zh-hk.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "上午",
<del> "1": "下午"
<add> "0": "\u4e0a\u5348",
<add> "1": "\u4e0b\u5348"
<ide> },
<ide> "DAY": {
<del> "0": "星期日",
<del> "1": "星期一",
<del> "2": "星期二",
<del> "3": "星期三",
<del> "4": "星期四",
<del> "5": "星期五",
<del> "6": "星期六"
<add> "0": "\u661f\u671f\u65e5",
<add> "1": "\u661f\u671f\u4e00",
<add> "2": "\u661f\u671f\u4e8c",
<add> "3": "\u661f\u671f\u4e09",
<add> "4": "\u661f\u671f\u56db",
<add> "5": "\u661f\u671f\u4e94",
<add> "6": "\u661f\u671f\u516d"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "週日",
<del> "1": "週一",
<del> "2": "週二",
<del> "3": "週三",
<del> "4": "週四",
<del> "5": "週五",
<del> "6": "週六"
<add> "0": "\u9031\u65e5",
<add> "1": "\u9031\u4e00",
<add> "2": "\u9031\u4e8c",
<add> "3": "\u9031\u4e09",
<add> "4": "\u9031\u56db",
<add> "5": "\u9031\u4e94",
<add> "6": "\u9031\u516d"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<del> "medium": "y年M月d日 ahh:mm:ss",
<del> "mediumDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<add> "medium": "y\u5e74M\u6708d\u65e5 ahh:mm:ss",
<add> "mediumDate": "y\u5e74M\u6708d\u65e5",
<ide> "mediumTime": "ahh:mm:ss",
<del> "short": "yy年M月d日 ah:mm",
<del> "shortDate": "yy年M月d日",
<add> "short": "yy\u5e74M\u6708d\u65e5 ah:mm",
<add> "shortDate": "yy\u5e74M\u6708d\u65e5",
<ide> "shortTime": "ah:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_zh-tw.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "上午",
<del> "1": "下午"
<add> "0": "\u4e0a\u5348",
<add> "1": "\u4e0b\u5348"
<ide> },
<ide> "DAY": {
<del> "0": "星期日",
<del> "1": "星期一",
<del> "2": "星期二",
<del> "3": "星期三",
<del> "4": "星期四",
<del> "5": "星期五",
<del> "6": "星期六"
<add> "0": "\u661f\u671f\u65e5",
<add> "1": "\u661f\u671f\u4e00",
<add> "2": "\u661f\u671f\u4e8c",
<add> "3": "\u661f\u671f\u4e09",
<add> "4": "\u661f\u671f\u56db",
<add> "5": "\u661f\u671f\u4e94",
<add> "6": "\u661f\u671f\u516d"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "週日",
<del> "1": "週一",
<del> "2": "週二",
<del> "3": "週三",
<del> "4": "週四",
<del> "5": "週五",
<del> "6": "週六"
<add> "0": "\u9031\u65e5",
<add> "1": "\u9031\u4e00",
<add> "2": "\u9031\u4e8c",
<add> "3": "\u9031\u4e09",
<add> "4": "\u9031\u56db",
<add> "5": "\u9031\u4e94",
<add> "6": "\u9031\u516d"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<ide> "medium": "yyyy/M/d ah:mm:ss",
<ide> "mediumDate": "yyyy/M/d",
<ide> "mediumTime": "ah:mm:ss",
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "\u00A4-",
<add> "negPre": "\u00a4-",
<ide> "negSuf": "",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_zh.js
<ide> var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
<ide> $provide.value("$locale", {
<ide> "DATETIME_FORMATS": {
<ide> "AMPMS": {
<del> "0": "上午",
<del> "1": "下午"
<add> "0": "\u4e0a\u5348",
<add> "1": "\u4e0b\u5348"
<ide> },
<ide> "DAY": {
<del> "0": "星期日",
<del> "1": "星期一",
<del> "2": "星期二",
<del> "3": "星期三",
<del> "4": "星期四",
<del> "5": "星期五",
<del> "6": "星期六"
<add> "0": "\u661f\u671f\u65e5",
<add> "1": "\u661f\u671f\u4e00",
<add> "2": "\u661f\u671f\u4e8c",
<add> "3": "\u661f\u671f\u4e09",
<add> "4": "\u661f\u671f\u56db",
<add> "5": "\u661f\u671f\u4e94",
<add> "6": "\u661f\u671f\u516d"
<ide> },
<ide> "MONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<ide> "SHORTDAY": {
<del> "0": "周日",
<del> "1": "周一",
<del> "2": "周二",
<del> "3": "周三",
<del> "4": "周四",
<del> "5": "周五",
<del> "6": "周六"
<add> "0": "\u5468\u65e5",
<add> "1": "\u5468\u4e00",
<add> "2": "\u5468\u4e8c",
<add> "3": "\u5468\u4e09",
<add> "4": "\u5468\u56db",
<add> "5": "\u5468\u4e94",
<add> "6": "\u5468\u516d"
<ide> },
<ide> "SHORTMONTH": {
<del> "0": "1月",
<del> "1": "2月",
<del> "2": "3月",
<del> "3": "4月",
<del> "4": "5月",
<del> "5": "6月",
<del> "6": "7月",
<del> "7": "8月",
<del> "8": "9月",
<del> "9": "10月",
<del> "10": "11月",
<del> "11": "12月"
<add> "0": "1\u6708",
<add> "1": "2\u6708",
<add> "2": "3\u6708",
<add> "3": "4\u6708",
<add> "4": "5\u6708",
<add> "5": "6\u6708",
<add> "6": "7\u6708",
<add> "7": "8\u6708",
<add> "8": "9\u6708",
<add> "9": "10\u6708",
<add> "10": "11\u6708",
<add> "11": "12\u6708"
<ide> },
<del> "fullDate": "y年M月d日EEEE",
<del> "longDate": "y年M月d日",
<add> "fullDate": "y\u5e74M\u6708d\u65e5EEEE",
<add> "longDate": "y\u5e74M\u6708d\u65e5",
<ide> "medium": "yyyy-M-d ah:mm:ss",
<ide> "mediumDate": "yyyy-M-d",
<ide> "mediumTime": "ah:mm:ss",
<ide> $provide.value("$locale", {
<ide> "shortTime": "ah:mm"
<ide> },
<ide> "NUMBER_FORMATS": {
<del> "CURRENCY_SYM": "¥",
<add> "CURRENCY_SYM": "\u00a5",
<ide> "DECIMAL_SEP": ".",
<ide> "GROUP_SEP": ",",
<ide> "PATTERNS": {
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_zu-za.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> }
<ide><path>src/ngLocale/angular-locale_zu.js
<ide> $provide.value("$locale", {
<ide> "maxFrac": 2,
<ide> "minFrac": 2,
<ide> "minInt": 1,
<del> "negPre": "(\u00A4",
<add> "negPre": "(\u00a4",
<ide> "negSuf": ")",
<del> "posPre": "\u00A4",
<add> "posPre": "\u00a4",
<ide> "posSuf": ""
<ide> }
<ide> } | 250 |
Go | Go | use subtests, and split checks | fc83834ebb6f0e5adef02cafb66ca83363cc2c61 | <ide><path>opts/hosts_test.go
<ide> func TestParseHost(t *testing.T) {
<ide> }
<ide>
<ide> for _, value := range invalid {
<del> if _, err := ParseHost(false, false, value); err == nil {
<del> t.Errorf("Expected an error for %v, got [nil]", value)
<del> }
<add> t.Run(value, func(t *testing.T) {
<add> _, err := ParseHost(false, false, value)
<add> if err == nil {
<add> t.Errorf("expected an error, got [nil]")
<add> }
<add> })
<ide> }
<ide>
<ide> for value, expected := range valid {
<del> if actual, err := ParseHost(false, false, value); err != nil || actual != expected {
<del> t.Errorf("Expected for %v [%v], got [%v, %v]", value, expected, actual, err)
<del> }
<add> t.Run(value, func(t *testing.T) {
<add> actual, err := ParseHost(false, false, value)
<add> if err != nil {
<add> t.Errorf(`unexpected error: "%v"`, err)
<add> }
<add> if actual != expected {
<add> t.Errorf(`expected "%s", got "%s""`, expected, actual)
<add> }
<add> })
<ide> }
<ide> }
<ide>
<ide> func TestParseDockerDaemonHost(t *testing.T) {
<ide> "unix:///run/docker.sock": "unix:///run/docker.sock",
<ide> }
<ide> for invalidAddr, expectedError := range invalids {
<del> if addr, err := parseDaemonHost(invalidAddr); err == nil || err.Error() != expectedError {
<del> t.Errorf("tcp %v address expected error %q return, got %q and addr %v", invalidAddr, expectedError, err, addr)
<del> }
<add> t.Run(invalidAddr, func(t *testing.T) {
<add> addr, err := parseDaemonHost(invalidAddr)
<add> if err == nil || err.Error() != expectedError {
<add> t.Errorf(`expected error "%s", got "%v"`, expectedError, err)
<add> }
<add> if addr != "" {
<add> t.Errorf(`expected addr to be empty, got "%s""`, addr)
<add> }
<add> })
<ide> }
<ide> for validAddr, expectedAddr := range valids {
<del> if addr, err := parseDaemonHost(validAddr); err != nil || addr != expectedAddr {
<del> t.Errorf("%v -> expected %v, got (%v) addr (%v)", validAddr, expectedAddr, err, addr)
<del> }
<add> t.Run(validAddr, func(t *testing.T) {
<add> addr, err := parseDaemonHost(validAddr)
<add> if err != nil {
<add> t.Errorf(`unexpected error: "%v"`, err)
<add> }
<add> if addr != expectedAddr {
<add> t.Errorf(`expected "%s", got "%s""`, expectedAddr, addr)
<add> }
<add> })
<ide> }
<ide> }
<ide>
<ide> func TestParseTCP(t *testing.T) {
<ide> "tcp://:5555": "tcp://127.0.0.1:5555",
<ide> }
<ide> for invalidAddr, expectedError := range invalids {
<del> if addr, err := ParseTCPAddr(invalidAddr, defaultHTTPHost); err == nil || err.Error() != expectedError {
<del> t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr)
<del> }
<add> t.Run(invalidAddr, func(t *testing.T) {
<add> addr, err := ParseTCPAddr(invalidAddr, defaultHTTPHost)
<add> if err == nil || err.Error() != expectedError {
<add> t.Errorf(`expected error "%s", got "%v"`, expectedError, err)
<add> }
<add> if addr != "" {
<add> t.Errorf(`expected addr to be empty, got "%s""`, addr)
<add> }
<add> })
<ide> }
<ide> for validAddr, expectedAddr := range valids {
<del> if addr, err := ParseTCPAddr(validAddr, defaultHTTPHost); err != nil || addr != expectedAddr {
<del> t.Errorf("%v -> expected %v, got %v and addr %v", validAddr, expectedAddr, err, addr)
<del> }
<add> t.Run(validAddr, func(t *testing.T) {
<add> addr, err := ParseTCPAddr(validAddr, defaultHTTPHost)
<add> if err != nil {
<add> t.Errorf(`unexpected error: "%v"`, err)
<add> }
<add> if addr != expectedAddr {
<add> t.Errorf(`expected "%s", got "%s""`, expectedAddr, addr)
<add> }
<add> })
<ide> }
<ide> }
<ide> | 1 |
Javascript | Javascript | fix jqlite#parent to be compatible with jquery | 56c00800c78d3d896fa6cb97ab97b974805152c4 | <ide><path>src/jqLite.js
<ide> forEach({
<ide> },
<ide>
<ide> parent: function(element) {
<del> // in IE it returns undefined, but we need differentiate it from functions which have no return
<del> return element.parentNode || null;
<add> var parent = element.parentNode;
<add> return parent && parent.nodeType !== 11 ? parent : null;
<ide> },
<ide>
<ide> next: function(element) {
<ide><path>test/jqLiteSpec.js
<ide> describe('jqLite', function(){
<ide> });
<ide> });
<ide> describe('parent', function(){
<add> it('should return parent or an empty set when no parent', function(){
<add> var parent = jqLite('<div><p>abc</p></div>'),
<add> child = parent.find('p');
<add>
<add> expect(parent.parent()).toBeTruthy();
<add> expect(parent.parent().length).toEqual(0);
<add>
<add> expect(child.parent().length).toBe(1);
<add> expect(child.parent()[0]).toBe(parent[0]);
<add> });
<ide> it('should return empty set when no parent', function(){
<ide> var element = jqLite('<div>abc</div>');
<ide> expect(element.parent()).toBeTruthy();
<ide> expect(element.parent().length).toEqual(0);
<ide> });
<add> it('should return empty jqLite object when parent is a document fragment', function() {
<add> //this is quite unfortunate but jQuery 1.5.1 behaves this way
<add> var fragment = document.createDocumentFragment(),
<add> child = jqLite('<p>foo</p>');
<add>
<add> fragment.appendChild(child[0]);
<add> expect(child[0].parentNode).toBe(fragment);
<add> expect(child.parent().length).toBe(0);
<add> });
<ide> });
<ide> describe('next', function(){
<ide> it('should return next sibling', function(){ | 2 |
Javascript | Javascript | enable react.displayname transform | b309e9b50e0a99333a437899930c997b78098634 | <ide><path>packager/transformer.js
<ide> function transform(srcTxt, filename, options) {
<ide> 'es7.objectRestSpread',
<ide> 'flow',
<ide> 'react',
<add> 'react.displayName',
<ide> ],
<ide> sourceFileName: filename,
<ide> sourceMaps: false, | 1 |
Ruby | Ruby | add a `branch_exists?` method | 84632598a0d07782ce3f9f3a51914c174924d511 | <ide><path>Library/Homebrew/utils/github.rb
<ide> def write_access?(repo, user = nil)
<ide> ["admin", "write"].include?(permission(repo, user)["permission"])
<ide> end
<ide>
<add> def branch_exists?(user, repo, branch)
<add> API.open_rest("#{API_URL}/repos/#{user}/#{repo}/branches/#{branch}")
<add> true
<add> rescue API::HTTPNotFoundError
<add> false
<add> end
<add>
<ide> def pull_requests(repo, **options)
<ide> url = "#{API_URL}/repos/#{repo}/pulls?#{URI.encode_www_form(options)}"
<ide> API.open_rest(url) | 1 |
Ruby | Ruby | update some bad test cases for serialized columns | 24b6fa59523dc9eccf0a7c553d3da083ea860045 | <ide><path>activerecord/test/cases/serialized_attribute_test.rb
<ide> def test_serialized_attribute_in_base_class
<ide> assert_equal(hash, important_topic.content)
<ide> end
<ide>
<del> # This test was added to fix GH #4004. Obviously the value returned
<del> # is not really the value 'before type cast' so we should maybe think
<del> # about changing that in the future.
<del> def test_serialized_attribute_before_type_cast_returns_unserialized_value
<add> def test_serialized_attributes_from_database_on_subclass
<ide> Topic.serialize :content, Hash
<ide>
<del> t = Topic.new(content: { foo: :bar })
<del> assert_equal({ foo: :bar }, t.content_before_type_cast)
<add> t = Reply.new(content: { foo: :bar })
<add> assert_equal({ foo: :bar }, t.content)
<ide> t.save!
<del> t.reload
<del> assert_equal({ foo: :bar }, t.content_before_type_cast)
<del> end
<del>
<del> def test_serialized_attributes_before_type_cast_returns_unserialized_value
<del> Topic.serialize :content, Hash
<del>
<del> t = Topic.new(content: { foo: :bar })
<del> assert_equal({ foo: :bar }, t.attributes_before_type_cast["content"])
<del> t.save!
<del> t.reload
<del> assert_equal({ foo: :bar }, t.attributes_before_type_cast["content"])
<add> t = Reply.last
<add> assert_equal({ foo: :bar }, t.content)
<ide> end
<ide>
<ide> def test_serialized_attribute_calling_dup_method
<ide> def test_serialized_boolean_value_false
<ide> end
<ide>
<ide> def test_serialize_with_coder
<del> coder = Class.new {
<del> # Identity
<del> def load(thing)
<del> thing
<add> some_class = Struct.new(:foo) do
<add> def self.dump(value)
<add> value.foo
<ide> end
<ide>
<del> # base 64
<del> def dump(thing)
<del> [thing].pack('m')
<add> def self.load(value)
<add> new(value)
<ide> end
<del> }.new
<del>
<del> Topic.serialize(:content, coder)
<del> s = 'hello world'
<del> topic = Topic.new(:content => s)
<del> assert topic.save
<del> topic = topic.reload
<del> assert_equal [s].pack('m'), topic.content
<del> end
<del>
<del> def test_serialize_with_bcrypt_coder
<del> crypt_coder = Class.new {
<del> def load(thing)
<del> return unless thing
<del> BCrypt::Password.new thing
<del> end
<del>
<del> def dump(thing)
<del> BCrypt::Password.create(thing).to_s
<del> end
<del> }.new
<add> end
<ide>
<del> Topic.serialize(:content, crypt_coder)
<del> password = 'password'
<del> topic = Topic.new(:content => password)
<del> assert topic.save
<del> topic = topic.reload
<del> assert_kind_of BCrypt::Password, topic.content
<del> assert_equal(true, topic.content == password, 'password should equal')
<add> Topic.serialize(:content, some_class)
<add> topic = Topic.new(:content => some_class.new('my value'))
<add> topic.save!
<add> topic.reload
<add> assert_kind_of some_class, topic.content
<add> assert_equal topic.content, some_class.new('my value')
<ide> end
<ide>
<ide> def test_serialize_attribute_via_select_method_when_time_zone_available | 1 |
Text | Text | add missing cleanup step in openssl upgrade | 01d8b39040480fde60ce0092eaa574f225f39547 | <ide><path>doc/guides/maintaining-openssl.md
<ide> release).
<ide> % cd ../node/deps/openssl
<ide> % rm -rf openssl
<ide> % cp -R ../../../openssl openssl
<add>% rm -rf openssl/.git* openssl/.travis*
<ide> % git add --all openssl
<ide> % git commit openssl
<ide> ```
<ide>
<ide> The commit message can be written as (with the openssl version set
<ide> to the relevant value):
<ide> ```text
<del>deps: upgrade openssl sources to 1.1.0h
<add>deps: upgrade openssl sources to OpenSSL_1_1_1j
<ide>
<ide> This updates all sources in deps/openssl/openssl by:
<ide> $ git clone https://github.com/quictls/openssl
<ide> This updates all sources in deps/openssl/openssl by:
<ide> $ cd ../node/deps/openssl
<ide> $ rm -rf openssl
<ide> $ cp -R ../openssl openssl
<add> $ rm -rf openssl/.git* openssl/.travis*
<ide> $ git add --all openssl
<ide> $ git commit openssl
<ide> ``` | 1 |
PHP | PHP | add missing test cases for arr first | bb60a457f6c3692ea4f14355bddd8ee74cff91d7 | <ide><path>tests/Support/SupportArrTest.php
<ide> public function testFirst()
<ide> {
<ide> $array = [100, 200, 300];
<ide>
<add> //Callback is null and array is empty
<add> $this->assertNull(Arr::first([], null));
<add> $this->assertSame('foo', Arr::first([], null, 'foo'));
<add> $this->assertSame('bar', Arr::first([], null, function () {
<add> return 'bar';
<add> }));
<add>
<add> //Callback is null and array is not empty
<add> $this->assertEquals(100, Arr::first($array));
<add>
<add> //Callback is not null and array is not empty
<ide> $value = Arr::first($array, function ($value) {
<ide> return $value >= 150;
<ide> });
<del>
<ide> $this->assertEquals(200, $value);
<del> $this->assertEquals(100, Arr::first($array));
<add>
<add> //Callback is not null, array is not empty but no satisfied item
<add> $value2 = Arr::first($array, function ($value) {
<add> return $value > 300;
<add> });
<add> $value3 = Arr::first($array, function ($value) {
<add> return $value > 300;
<add> }, 'bar');
<add> $value4 = Arr::first($array, function ($value) {
<add> return $value > 300;
<add> }, function () {
<add> return 'baz';
<add> });
<add> $this->assertNull($value2);
<add> $this->assertSame('bar', $value3);
<add> $this->assertSame('baz', $value4);
<ide> }
<ide>
<ide> public function testLast() | 1 |
Python | Python | update vcloud driver for new create_node api | a579400e241d36637d1600186ecd026963487ade | <ide><path>libcloud/drivers/vcloud.py
<ide> def list_images(self):
<ide>
<ide> return images
<ide>
<del> def create_node(self, name, image, size, **kwargs):
<add> def create_node(self, **kwargs):
<ide> """Creates and returns node.
<ide>
<ide> Non-standard optional keyword arguments:
<ide> def create_node(self, name, image, size, **kwargs):
<ide> row
<ide> group
<ide> """
<add> name = kwargs['name']
<add> image = kwargs['image']
<add> size = kwargs['size']
<add>
<ide> # Some providers don't require a network link
<ide> try:
<ide> network = kwargs.get('network', self.networks[0].get('href')) | 1 |
Javascript | Javascript | fix typing of view refs | 49396aa78d218625c1933fa864acd70853faa9f9 | <ide><path>Libraries/Image/ImageBackground.js
<ide> const View = require('View');
<ide>
<ide> const ensureComponentIsNative = require('ensureComponentIsNative');
<ide>
<del>import type {NativeMethodsMixinType} from 'ReactNativeTypes';
<del>
<ide> /**
<ide> * Very simple drop-in replacement for <Image> which supports nesting views.
<ide> *
<ide> class ImageBackground extends React.Component<$FlowFixMeProps> {
<ide> }
<ide> }
<ide>
<del> _viewRef: ?NativeMethodsMixinType = null;
<add> _viewRef: ?React.ElementRef<typeof View> = null;
<ide>
<ide> _captureRef = ref => {
<ide> this._viewRef = ref; | 1 |
Go | Go | fix empty-lines (revive) | 4eb9b5f20e142626adad1de8b2f2b5e0558b1d34 | <ide><path>plugin/backend_linux.go
<ide> func (pm *Manager) Push(ctx context.Context, name string, metaHeader http.Header
<ide>
<ide> pusher, err := resolver.Pusher(ctx, ref.String())
<ide> if err != nil {
<del>
<ide> return errors.Wrap(err, "error creating plugin pusher")
<ide> }
<ide>
<ide><path>plugin/manager_linux.go
<ide> func (pm *Manager) pluginPostStart(p *v2.Plugin, c *controller) error {
<ide> shutdownPlugin(p, c.exitChan, pm.executor)
<ide> return err
<ide> }
<del>
<ide> }
<ide> pm.config.Store.SetState(p, true)
<ide> pm.config.Store.CallHandler(p)
<ide><path>plugin/v2/settable_test.go
<ide> func TestNewSettable(t *testing.T) {
<ide> if s.value != c.value {
<ide> t.Fatalf("expected value to be %q, got %q", c.value, s.value)
<ide> }
<del>
<ide> }
<ide> }
<ide> | 3 |
Go | Go | call d.naivediff.applydiff when usenaivediff==true | dd97134232b8ab58ca06369322ae74164affb86d | <ide><path>daemon/graphdriver/overlay2/overlay.go
<ide> func (d *Driver) isParent(id, parent string) bool {
<ide>
<ide> // ApplyDiff applies the new layer into a root
<ide> func (d *Driver) ApplyDiff(id string, parent string, diff io.Reader) (size int64, err error) {
<del> if !d.isParent(id, parent) {
<add> if useNaiveDiff(d.home) || !d.isParent(id, parent) {
<ide> return d.naiveDiff.ApplyDiff(id, parent, diff)
<ide> }
<ide> | 1 |
Go | Go | fix duplicate iptables rules | f3a68ffa390fb851115c77783fa4031f1d3b2995 | <ide><path>pkg/iptables/iptables.go
<ide> import (
<ide> "net"
<ide> "os"
<ide> "os/exec"
<add> "regexp"
<ide> "strconv"
<ide> "strings"
<ide> )
<ide> func (c *Chain) Remove() error {
<ide>
<ide> // Check if an existing rule exists
<ide> func Exists(args ...string) bool {
<del> if _, err := Raw(append([]string{"-C"}, args...)...); err != nil {
<del> return false
<add> // iptables -C, --check option was added in v.1.4.11
<add> // http://ftp.netfilter.org/pub/iptables/changes-iptables-1.4.11.txt
<add>
<add> // try -C
<add> // if exit status is 0 then return true, the rule exists
<add> if _, err := Raw(append([]string{"-C"}, args...)...); err == nil {
<add> return true
<ide> }
<del> return true
<add>
<add> // parse iptables-save for the rule
<add> rule := strings.Replace(strings.Join(args, " "), "-t nat ", "", -1)
<add> existingRules, _ := exec.Command("iptables-save").Output()
<add>
<add> // regex to replace ips in rule
<add> // because MASQUERADE rule will not be exactly what was passed
<add> re := regexp.MustCompile(`[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\/[0-9]{1,2}`)
<add>
<add> return strings.Contains(
<add> re.ReplaceAllString(string(existingRules), "?"),
<add> re.ReplaceAllString(rule, "?"),
<add> )
<ide> }
<ide>
<ide> func Raw(args ...string) ([]byte, error) { | 1 |
Text | Text | combine entries in logging configuration section | 402e22cc617944bb65fc781317cc24a259852286 | <ide><path>UPDATING.md
<ide> This section describes the changes that have been made, and what you need to do
<ide> Formerly the core code was maintained by the original creators - Airbnb. The code that was in the contrib
<ide> package was supported by the community. The project was passed to the Apache community and currently the
<ide> entire code is maintained by the community, so now the division has no justification, and it is only due
<del>to historical reasons.
<del>
<del>To clean up, modules in `airflow.contrib.utils.log` have been moved into `airflow.utils.log`
<del>this includes:
<del>* `TaskHandlerWithCustomFormatter` class
<del>
<del>#### GCSTaskHandler has been moved
<del>The `GCSTaskHandler` class from `airflow.utils.log.gcs_task_handler` has been moved to
<del>`airflow.providers.google.cloud.log.gcs_task_handler`. This is because it has items specific to `google cloud`.
<del>
<del>#### WasbTaskHandler has been moved
<del>The `WasbTaskHandler` class from `airflow.utils.log.wasb_task_handler` has been moved to
<del>`airflow.providers.microsoft.azure.log.wasb_task_handler`. This is because it has items specific to `azure`.
<del>
<del>#### StackdriverTaskHandler has been moved
<del>The `StackdriverTaskHandler` class from `airflow.utils.log.stackdriver_task_handler` has been moved to
<del>`airflow.providers.google.cloud.log.stackdriver_task_handler`. This is because it has items specific to `google cloud`.
<del>
<del>#### S3TaskHandler has been moved
<del>The `S3TaskHandler` class from `airflow.utils.log.s3_task_handler` has been moved to
<del>`airflow.providers.amazon.aws.log.s3_task_handler`. This is because it has items specific to `aws`.
<del>
<del>#### ElasticsearchTaskHandler has been moved
<del>The `ElasticsearchTaskHandler` class from `airflow.utils.log.es_task_handler` has been moved to
<del>`airflow.providers.elasticsearch.log.es_task_handler`. This is because it has items specific to `elasticsearch`.
<del>
<del>#### CloudwatchTaskHandler has been moved
<del>The `CloudwatchTaskHandler` class from `airflow.utils.log.cloudwatch_task_handler` has been moved to
<del>`airflow.providers.amazon.aws.log.cloudwatch_task_handler`. This is because it has items specific to `aws`.
<add>to historical reasons. In Airflow 2.0, we want to organize packages and move integrations
<add>with third party services to the ``airflow.providers`` package.
<add>
<add>To clean up, the following packages were moved:
<add>| Old package | New package |
<add>|-|-|
<add>| ``airflow.contrib.utils.log`` | ``airflow.utils.log`` |
<add>| ``airflow.utils.log.gcs_task_handler`` | ``airflow.providers.google.cloud.log.gcs_task_handler`` |
<add>| ``airflow.utils.log.wasb_task_handler`` | ``airflow.providers.microsoft.azure.log.wasb_task_handler`` |
<add>| ``airflow.utils.log.stackdriver_task_handler`` | ``airflow.providers.google.cloud.log.stackdriver_task_handler`` |
<add>| ``airflow.utils.log.s3_task_handler`` | ``airflow.providers.amazon.aws.log.s3_task_handler`` |
<add>| ``airflow.utils.log.es_task_handler`` | ``airflow.providers.elasticsearch.log.es_task_handler`` |
<add>| ``airflow.utils.log.cloudwatch_task_handler`` | ``airflow.providers.amazon.aws.log.cloudwatch_task_handler`` |
<add>
<add>You should update the import paths if you are setting log configurations with the ``logging_config_class`` option.
<add>The old import paths still works but can be abandoned.
<ide>
<ide> #### SendGrid emailer has been moved
<ide> Formerly the core code was maintained by the original creators - Airbnb. The code that was in the contrib | 1 |
Javascript | Javascript | add missing spec for angularjsconfig | 7530eea7035e26a0bcc358c8ef94c79debabddf4 | <ide><path>test/AngularSpec.js
<ide> describe ('rngScript', function() {
<ide> expect('foo/../my-angular-app-0.9.0-de0a8612.min.js'.match(rngScript)).toBeNull();
<ide> });
<ide> });
<add>
<add>
<add>describe('angularJsConfig', function() {
<add> it('should find angular.js script tag and config', function() {
<add> var doc = { getElementsByTagName: function(tagName) {
<add> expect(tagName).toEqual('script');
<add> return [{nodeName: 'SCRIPT', src: 'random.js'},
<add> {nodeName: 'SCRIPT', src: 'angular.js'},
<add> {nodeName: 'SCRIPT', src: 'my-angular-app.js'}];
<add> }
<add> };
<add>
<add> expect(angularJsConfig(doc)).toEqual({base_url: '',
<add> ie_compat: 'angular-ie-compat.js',
<add> ie_compat_id: 'ng-ie-compat'});
<add> });
<add>
<add>
<add> it('should extract angular config from the ng: attributes', function() {
<add> var doc = { getElementsByTagName: function(tagName) {
<add> expect(lowercase(tagName)).toEqual('script');
<add> return [{nodeName: 'SCRIPT',
<add> src: 'angularjs/angular.js',
<add> attributes: [{name: 'ng:autobind', value:undefined},
<add> {name: 'ng:css', value: 'css/my_custom_angular.css'},
<add> {name: 'ng:ie-compat', value: 'myjs/angular-ie-compat.js'},
<add> {name: 'ng:ie-compat-id', value: 'ngcompat'}] }];
<add> }};
<add>
<add> expect(angularJsConfig(doc)).toEqual({base_url: 'angularjs/',
<add> autobind: true,
<add> css: 'css/my_custom_angular.css',
<add> ie_compat: 'myjs/angular-ie-compat.js',
<add> ie_compat_id: 'ngcompat'});
<add> });
<add>}); | 1 |
Javascript | Javascript | increase coverage for buffer.js | d78fd265ddae6cc2fd1b43a22b6d933ffa95c83b | <ide><path>test/parallel/test-buffer-arraybuffer.js
<ide> b.writeDoubleBE(11.11, 0, true);
<ide> return true;
<ide> });
<ide> }
<add>
<add>{
<add> // If byteOffset is not numeric, it defaults to 0.
<add> const ab = new ArrayBuffer(10);
<add> const expected = Buffer.from(ab, 0);
<add> assert.deepStrictEqual(Buffer.from(ab, 'fhqwhgads'), expected);
<add> assert.deepStrictEqual(Buffer.from(ab, NaN), expected);
<add> assert.deepStrictEqual(Buffer.from(ab, {}), expected);
<add> assert.deepStrictEqual(Buffer.from(ab, []), expected);
<add>
<add> // If byteOffset can be converted to a number, it will be.
<add> assert.deepStrictEqual(Buffer.from(ab, [1]), Buffer.from(ab, 1));
<add>
<add> // If byteOffset is Infinity, throw.
<add> assert.throws(
<add> () => { Buffer.from(ab, Infinity); },
<add> /^RangeError: 'offset' is out of bounds$/
<add> );
<add>}
<add>
<add>{
<add> // If length is not numeric, it defaults to 0.
<add> const ab = new ArrayBuffer(10);
<add> const expected = Buffer.from(ab, 0, 0);
<add> assert.deepStrictEqual(Buffer.from(ab, 0, 'fhqwhgads'), expected);
<add> assert.deepStrictEqual(Buffer.from(ab, 0, NaN), expected);
<add> assert.deepStrictEqual(Buffer.from(ab, 0, {}), expected);
<add> assert.deepStrictEqual(Buffer.from(ab, 0, []), expected);
<add>
<add> // If length can be converted to a number, it will be.
<add> assert.deepStrictEqual(Buffer.from(ab, 0, [1]), Buffer.from(ab, 0, 1));
<add>
<add> //If length is Infinity, throw.
<add> assert.throws(
<add> () => { Buffer.from(ab, 0, Infinity); },
<add> /^RangeError: 'length' is out of bounds$/
<add> );
<add>} | 1 |
Python | Python | revert 0.12 changes but keep the argument swap | 0d8916f4b84e8687eb46696883b50b84ac6aa420 | <ide><path>tutorials/rnn/translate/seq2seq_model.py
<ide> def __init__(self,
<ide> b = tf.get_variable("proj_b", [self.target_vocab_size], dtype=dtype)
<ide> output_projection = (w, b)
<ide>
<del> def sampled_loss(inputs,labels):
<add> def sampled_loss(inputs, labels):
<ide> labels = tf.reshape(labels, [-1, 1])
<ide> # We need to compute the sampled_softmax_loss using 32bit floats to
<ide> # avoid numerical instabilities.
<ide> def sampled_loss(inputs,labels):
<ide>
<ide> # Create the internal multi-layer cell for our RNN.
<ide> def single_cell():
<del> return tf.nn.rnn_cell.GRUCell(size)
<add> return tf.contrib.rnn.GRUCell(size)
<ide> if use_lstm:
<ide> def single_cell():
<del> return tf.nn.rnn_cell.BasicLSTMCell(size)
<add> return tf.contrib.rnn.BasicLSTMCell(size)
<ide> cell = single_cell()
<ide> if num_layers > 1:
<del> cell = tf.nn.rnn_cell.MultiRNNCell([single_cell() for _ in range(num_layers)])
<add> cell = tf.contrib.rnn.MultiRNNCell([single_cell() for _ in range(num_layers)])
<ide>
<ide> # The seq2seq function: we use embedding for the input and attention.
<ide> def seq2seq_f(encoder_inputs, decoder_inputs, do_decode):
<del> return tf.nn.seq2seq.embedding_attention_seq2seq(
<add> return tf.contrib.legacy_seq2seq.embedding_attention_seq2seq(
<ide> encoder_inputs,
<ide> decoder_inputs,
<ide> cell,
<ide> def seq2seq_f(encoder_inputs, decoder_inputs, do_decode):
<ide>
<ide> # Training outputs and losses.
<ide> if forward_only:
<del> self.outputs, self.losses = tf.nn.seq2seq.model_with_buckets(
<add> self.outputs, self.losses = tf.contrib.legacy_seq2seq.model_with_buckets(
<ide> self.encoder_inputs, self.decoder_inputs, targets,
<ide> self.target_weights, buckets, lambda x, y: seq2seq_f(x, y, True),
<ide> softmax_loss_function=softmax_loss_function)
<ide> def seq2seq_f(encoder_inputs, decoder_inputs, do_decode):
<ide> for output in self.outputs[b]
<ide> ]
<ide> else:
<del> self.outputs, self.losses = tf.nn.seq2seq.model_with_buckets(
<add> self.outputs, self.losses = tf.contrib.legacy_seq2seq.model_with_buckets(
<ide> self.encoder_inputs, self.decoder_inputs, targets,
<ide> self.target_weights, buckets,
<ide> lambda x, y: seq2seq_f(x, y, False), | 1 |
Java | Java | fix layout mountitem logging | 9ac0c01d8c6f601a66e7c129cdd47f6804e16354 | <ide><path>ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/IntBufferBatchMountItem.java
<ide> public String toString() {
<ide> : "<hidden>";
<ide> s.append(String.format("UPDATE STATE [%d]: %s\n", mIntBuffer[i++], stateString));
<ide> } else if (type == INSTRUCTION_UPDATE_LAYOUT) {
<add> int reactTag = mIntBuffer[i++];
<add> int parentTag = mIntBuffer[i++];
<ide> s.append(
<ide> String.format(
<del> "UPDATE LAYOUT [%d]: x:%d y:%d w:%d h:%d displayType:%d\n",
<del> mIntBuffer[i++],
<del> mIntBuffer[i++],
<add> "UPDATE LAYOUT [%d]->[%d]: x:%d y:%d w:%d h:%d displayType:%d\n",
<add> parentTag,
<add> reactTag,
<ide> mIntBuffer[i++],
<ide> mIntBuffer[i++],
<ide> mIntBuffer[i++], | 1 |
Text | Text | add link to serpy serialization, fixes | 5c076e10bbd3defbda05403a678f7397ac5e6f26 | <ide><path>docs/api-guide/serializers.md
<ide> The following third party packages are also available.
<ide>
<ide> The [django-rest-marshmallow][django-rest-marshmallow] package provides an alternative implementation for serializers, using the python [marshmallow][marshmallow] library. It exposes the same API as the REST framework serializers, and can be used as a drop-in replacement in some use-cases.
<ide>
<add>## Serpy
<add>The [serpy][serpy] package is an alternative implementation for serializers that is built for speed. [Serpy][serpy] serializes complex datatypes to simple native types. The native types can be easily converted to JSON or any other format needed.
<add>
<ide> ## MongoengineModelSerializer
<ide>
<ide> The [django-rest-framework-mongoengine][mongoengine] package provides a `MongoEngineModelSerializer` serializer class that supports using MongoDB as the storage layer for Django REST framework.
<ide> The [django-rest-framework-hstore][django-rest-framework-hstore] package provide
<ide> [encapsulation-blogpost]: http://www.dabapps.com/blog/django-models-and-encapsulation/
<ide> [django-rest-marshmallow]: http://tomchristie.github.io/django-rest-marshmallow/
<ide> [marshmallow]: https://marshmallow.readthedocs.org/en/latest/
<add>[serpy]: https://github.com/clarkduvall/serpy
<ide> [mongoengine]: https://github.com/umutbozkurt/django-rest-framework-mongoengine
<ide> [django-rest-framework-gis]: https://github.com/djangonauts/django-rest-framework-gis
<ide> [django-rest-framework-hstore]: https://github.com/djangonauts/django-rest-framework-hstore | 1 |
Text | Text | update changelog for 1.10.3 | 1c64becab64b1c665887cf45fbdb6fb4dce8c77c | <ide><path>CHANGELOG.md
<ide> information on the list of deprecated flags and APIs please have a look at
<ide> https://docs.docker.com/misc/deprecated/ where target removal dates can also
<ide> be found.
<ide>
<add>## 1.10.3 (2016-03-10)
<add>
<add>### Runtime
<add>
<add>- Fix Docker client exiting with an "Unrecognized input header" error [#20706](https://github.com/docker/docker/pull/20706)
<add>- Fix Docker exiting if Exec is started with both `AttachStdin` and `Detach` [#20647](https://github.com/docker/docker/pull/20647)
<add>- Fix loss of output in short-lived containers [#20729](https://github.com/docker/docker/pull/20729)
<add>- Fix an issue that caused the client to hang if the container process died [#20967](https://github.com/docker/docker/pull/20967)
<add>
<add>### Distribution
<add>
<add>- Fix a crash when pushing multiple images sharing the same layers to the same repository in parallel [#20831](https://github.com/docker/docker/pull/20831)
<add>
<add>### Plugin system
<add>
<add>- Fix issue preventing volume plugins to start when SELinux is enabled [#20834](https://github.com/docker/docker/pull/20834)
<add>- Prevent Docker from exiting if a volume plugin returns a null response for Get requests [#20682](https://github.com/docker/docker/pull/20682)
<add>- Fix plugin system leaking file descriptors if a plugin has an error [#20680](https://github.com/docker/docker/pull/20680)
<add>
<add>### Security
<add>
<add>- Fix linux32 emulation to fail during docker build [#20672](https://github.com/docker/docker/pull/20672)
<add> It was due to the `personality` syscall being blocked by the default seccomp profile.
<add>- Fix Oracle XE 10g failing to start in a container [#20981](https://github.com/docker/docker/pull/20981)
<add> It was due to the `ipc` syscall being blocked by the default seccomp profile.
<add>- Fix user namespaces not working on Linux From Scratch [#20685](https://github.com/docker/docker/pull/20685)
<add>- Fix issue preventing daemon to start if userns is enabled and the `subuid` or `subgid` files contain comments [#20725](https://github.com/docker/docker/pull/20725)
<add>
<ide> ## 1.10.2 (2016-02-22)
<ide>
<ide> ### Runtime | 1 |
PHP | PHP | add additional interface notes, correct typo | 36291d10b0bd45f8175ddf7b9fe9c6d2854b10ea | <ide><path>src/ORM/ResultSet.php
<ide> class ResultSet implements Countable, Iterator, Serializable, JsonSerializable {
<ide> use CollectionTrait;
<ide>
<ide> /**
<del> * Original query from where results where generated
<add> * Original query from where results were generated
<ide> *
<ide> * @var Query
<ide> */
<ide> public function __construct($query, $statement) {
<ide> /**
<ide> * Returns the current record in the result iterator
<ide> *
<add> * Part of Iterator interface.
<add> *
<ide> * @return array|object
<ide> */
<ide> public function current() {
<ide> public function current() {
<ide> /**
<ide> * Returns the key of the current record in the iterator
<ide> *
<add> * Part of Iterator interface.
<add> *
<ide> * @return integer
<ide> */
<ide> public function key() {
<ide> public function key() {
<ide> /**
<ide> * Advances the iterator pointer to the next record
<ide> *
<add> * Part of Iterator interface.
<add> *
<ide> * @return void
<ide> */
<ide> public function next() {
<ide> public function next() {
<ide> /**
<ide> * Rewind a ResultSet.
<ide> *
<add> * Part of Iterator interface.
<add> *
<ide> * @throws Cake\Database\Exception
<ide> * @return void
<ide> */
<ide> public function rewind() {
<ide> /**
<ide> * Whether there are more results to be fetched from the iterator
<ide> *
<add> * Part of Iterator interface.
<add> *
<ide> * @return boolean
<ide> */
<ide> public function valid() {
<ide> public function first() {
<ide> /**
<ide> * Gives the number of rows in the result set.
<ide> *
<del> * Part of the countable interface.
<add> * Part of the Countable interface.
<ide> *
<ide> * @return integer
<ide> */ | 1 |
PHP | PHP | return pendingresourceregistration when | 777fdc46630978a26ddc605d728c4df91a81d920 | <ide><path>src/Illuminate/Routing/PendingResourceRegistration.php
<add><?php
<add>
<add>namespace Illuminate\Routing;
<add>
<add>class PendingResourceRegistration
<add>{
<add> /**
<add> * The resource name.
<add> *
<add> * @var string
<add> */
<add> protected $name;
<add>
<add> /**
<add> * The resource controller.
<add> *
<add> * @var string
<add> */
<add> protected $controller;
<add>
<add> /**
<add> * The resource options.
<add> *
<add> * @var string
<add> */
<add> protected $options = [];
<add>
<add> /**
<add> * The resource registrar.
<add> *
<add> * @var \Illuminate\Routing\ResourceRegistrar
<add> */
<add> protected $registrar;
<add>
<add> /**
<add> * Create a new pending resource registration instance.
<add> *
<add> * @param \Illuminate\Routing\ResourceRegistrar $registrar
<add> * @return void
<add> */
<add> public function __construct(ResourceRegistrar $registrar)
<add> {
<add> $this->registrar = $registrar;
<add> }
<add>
<add> /**
<add> * Handle the object's destruction.
<add> *
<add> * @return void
<add> */
<add> public function __destruct()
<add> {
<add> $this->registrar->register($this->name, $this->controller, $this->options);
<add> }
<add>
<add> /**
<add> * The name, controller and options to use when ready to register.
<add> *
<add> * @param string $name
<add> * @param string $controller
<add> * @param array $options
<add> * @return void
<add> */
<add> public function remember($name, $controller, array $options)
<add> {
<add> $this->name = $name;
<add> $this->controller = $controller;
<add> $this->options = $options;
<add> }
<add>
<add> /**
<add> * Set the methods the controller should apply to.
<add> *
<add> * @param array|string|dynamic $methods
<add> */
<add> public function only($methods)
<add> {
<add> $this->options['only'] = is_array($methods) ? $methods : func_get_args();
<add> }
<add>
<add> /**
<add> * Set the methods the controller should exclude.
<add> *
<add> * @param array|string|dynamic $methods
<add> */
<add> public function except($methods)
<add> {
<add> $this->options['except'] = is_array($methods) ? $methods : func_get_args();
<add> }
<add>}
<ide><path>src/Illuminate/Routing/ResourceRegistrar.php
<ide> public function __construct(Router $router)
<ide> $this->router = $router;
<ide> }
<ide>
<add> /**
<add> * Route a resource to a controller lazy.
<add> *
<add> * @param string $name
<add> * @param string $controller
<add> * @param array $options
<add> * @return \Illuminate\Routing\PendingResourceRegistration
<add> */
<add> public function lazy($name, $controller, array $options = [])
<add> {
<add> $registrar = new PendingResourceRegistration($this);
<add> $registrar->remember($name, $controller, $options);
<add>
<add> return $registrar;
<add> }
<add>
<ide> /**
<ide> * Route a resource to a controller.
<ide> *
<ide><path>src/Illuminate/Routing/RouteRegistrar.php
<ide> public function attribute($key, $value)
<ide> * @param string $name
<ide> * @param string $controller
<ide> * @param array $options
<del> * @return void
<add> * @return \Illuminate\Routing\PendingResourceRegistration
<ide> */
<ide> public function resource($name, $controller, array $options = [])
<ide> {
<del> $this->router->resource($name, $controller, $this->attributes + $options);
<add> return $this->router->resource($name, $controller, $this->attributes + $options);
<ide> }
<ide>
<ide> /**
<ide><path>src/Illuminate/Routing/Router.php
<ide> public function resources(array $resources)
<ide> * @param string $name
<ide> * @param string $controller
<ide> * @param array $options
<del> * @return void
<add> * @return \Illuminate\Routing\PendingResourceRegistration
<ide> */
<ide> public function resource($name, $controller, array $options = [])
<ide> {
<ide> public function resource($name, $controller, array $options = [])
<ide> $registrar = new ResourceRegistrar($this);
<ide> }
<ide>
<del> $registrar->register($name, $controller, $options);
<add> return $registrar->lazy($name, $controller, $options);
<ide> }
<ide>
<ide> /** | 4 |
Go | Go | start containers after all of them are registered | 34bd2d622910444ae0d30bd0ac32005e224074c1 | <ide><path>daemon/daemon.go
<ide> func (daemon *Daemon) load(id string) (*Container, error) {
<ide> // Register makes a container object usable by the daemon as <container.ID>
<ide> // This is a wrapper for register
<ide> func (daemon *Daemon) Register(container *Container) error {
<del> return daemon.register(container, true)
<add> return daemon.register(container, true, nil)
<ide> }
<ide>
<ide> // register makes a container object usable by the daemon as <container.ID>
<del>func (daemon *Daemon) register(container *Container, updateSuffixarray bool) error {
<add>func (daemon *Daemon) register(container *Container, updateSuffixarray bool, containersToStart *[]*Container) error {
<ide> if container.daemon != nil || daemon.Exists(container.ID) {
<ide> return fmt.Errorf("Container is already loaded")
<ide> }
<ide> func (daemon *Daemon) register(container *Container, updateSuffixarray bool) err
<ide> if !info.IsRunning() {
<ide> utils.Debugf("Container %s was supposed to be running but is not.", container.ID)
<ide> if daemon.config.AutoRestart {
<del> utils.Debugf("Restarting")
<add> utils.Debugf("Marking as restarting")
<ide> if err := container.Unmount(); err != nil {
<ide> utils.Debugf("restart unmount error %s", err)
<ide> }
<ide>
<del> if err := container.Start(); err != nil {
<del> return err
<add> if containersToStart != nil {
<add> *containersToStart = append(*containersToStart, container)
<ide> }
<ide> } else {
<ide> utils.Debugf("Marking as stopped")
<ide> func (daemon *Daemon) Destroy(container *Container) error {
<ide> }
<ide>
<ide> func (daemon *Daemon) restore() error {
<del> debug := (os.Getenv("DEBUG") != "" || os.Getenv("TEST") != "")
<add> var (
<add> debug = (os.Getenv("DEBUG") != "" || os.Getenv("TEST") != "")
<add> containers = make(map[string]*Container)
<add> currentDriver = daemon.driver.String()
<add> containersToStart = []*Container{}
<add> )
<ide>
<ide> if !debug {
<ide> fmt.Printf("Loading containers: ")
<ide> func (daemon *Daemon) restore() error {
<ide> if err != nil {
<ide> return err
<ide> }
<del> containers := make(map[string]*Container)
<del> currentDriver := daemon.driver.String()
<ide>
<ide> for _, v := range dir {
<ide> id := v.Name()
<ide> func (daemon *Daemon) restore() error {
<ide> }
<ide> e := entities[p]
<ide> if container, ok := containers[e.ID()]; ok {
<del> if err := daemon.register(container, false); err != nil {
<add> if err := daemon.register(container, false, &containersToStart); err != nil {
<ide> utils.Debugf("Failed to register container %s: %s", container.ID, err)
<ide> }
<ide> delete(containers, e.ID())
<ide> func (daemon *Daemon) restore() error {
<ide> if err != nil {
<ide> utils.Debugf("Setting default id - %s", err)
<ide> }
<del> if err := daemon.register(container, false); err != nil {
<add> if err := daemon.register(container, false, &containersToStart); err != nil {
<ide> utils.Debugf("Failed to register container %s: %s", container.ID, err)
<ide> }
<ide> }
<ide>
<ide> daemon.idIndex.UpdateSuffixarray()
<add>
<add> for _, container := range containersToStart {
<add> utils.Debugf("Starting container %d", container.ID)
<add> if err := container.Start(); err != nil {
<add> utils.Debugf("Failed to start container %s: %s", container.ID, err)
<add> }
<add> }
<add>
<ide> if !debug {
<ide> fmt.Printf(": done.\n")
<ide> } | 1 |
Text | Text | fix bug in inception instructions (#322) | f8e16db8275b7a612e2d785c98a423e019aa039a | <ide><path>inception/README.md
<ide> DATA_DIR=$HOME/imagenet-data
<ide> bazel build inception/download_and_preprocess_imagenet
<ide>
<ide> # run it
<del>bazel-bin/inception/download_and_preprocess_imagenet "${DATA_DIR}$"
<add>bazel-bin/inception/download_and_preprocess_imagenet "${DATA_DIR}"
<ide> ```
<ide>
<ide> The final line of the output script should read:
<ide> and `validation-?????-of-00001`, respectively.
<ide> you will need to invoke [`build_image_data.py`](inception/data/build_image_data.py) on
<ide> your custom data set. Please see the associated options and assumptions behind
<ide> this script by reading the comments section of [`build_image_data.py`]
<del>(inception/data/build_image_data.py).
<add>(inception/data/build_image_data.py). Also, if your custom data has a different
<add>number of examples or classes, you need to change the appropriate values in
<add>[`imagenet_data.py`](imagenet_data.py).
<ide>
<ide> The second piece you will need is a trained Inception v3 image model. You have
<ide> the option of either training one yourself (See [How to Train from Scratch] | 1 |
Ruby | Ruby | improve error message for missing pkg source | 8b17017108d5b550562b556c5d407361cea27781 | <ide><path>Library/Homebrew/cask/artifact/pkg.rb
<ide> def run_installer(command: nil, verbose: false, **_options)
<ide> ohai "Running installer for #{cask}; your password may be necessary."
<ide> ohai "Package installers may write to any location; options such as --appdir are ignored."
<ide> unless path.exist?
<del> raise CaskError, "pkg source file not found: '#{path.relative_path_from(cask.staged_path)}'"
<add> pkg = path.relative_path_from(cask.staged_path)
<add> pkgs = Pathname.glob(cask.staged_path/"**"/"*.pkg").map { |path| path.relative_path_from(cask.staged_path) }
<add>
<add> message = "Could not find PKG source file '#{pkg}'"
<add> message += ", found #{pkgs.map { |path| "'#{path}'" }.to_sentence} instead" if pkgs.any?
<add> message += "."
<add>
<add> raise CaskError, message
<ide> end
<ide>
<ide> args = [ | 1 |
Ruby | Ruby | add regression test to | 43d600ee20ea20e0ef65670f95186b74633fc090 | <ide><path>activerecord/test/cases/forbidden_attributes_protection_test.rb
<ide> def test_regular_hash_should_still_be_used_for_mass_assignment
<ide> assert_equal 'Guille', person.first_name
<ide> assert_equal 'm', person.gender
<ide> end
<add>
<add> def test_blank_attributes_should_not_raise
<add> person = Person.new
<add> assert_nil person.assign_attributes(ProtectedParams.new({}))
<add> end
<ide> end | 1 |
Ruby | Ruby | use new quoting style | 91f7f68ec453208bb2d933cb8504441232725200 | <ide><path>Library/Homebrew/cmd/bottle.rb
<ide> def self.reset_bottle; @bottle = Bottle.new; end
<ide>
<ide> BOTTLE_ERB = <<-EOS
<ide> bottle do
<del> <% if prefix.to_s != '/usr/local' %>
<del> prefix '<%= prefix %>'
<add> <% if prefix.to_s != "/usr/local" %>
<add> prefix "<%= prefix %>"
<ide> <% end %>
<ide> <% if cellar.is_a? Symbol %>
<ide> cellar :<%= cellar %>
<del> <% elsif cellar.to_s != '/usr/local/Cellar' %>
<del> cellar '<%= cellar %>'
<add> <% elsif cellar.to_s != "/usr/local/Cellar" %>
<add> cellar "<%= cellar %>"
<ide> <% end %>
<ide> <% if revision > 0 %>
<ide> revision <%= revision %>
<ide> <% end %>
<ide> <% checksums.each do |checksum_type, checksum_values| %>
<ide> <% checksum_values.each do |checksum_value| %>
<ide> <% checksum, osx = checksum_value.shift %>
<del> <%= checksum_type %> '<%= checksum %>' => :<%= osx %>
<add> <%= checksum_type %> "<%= checksum %>" => :<%= osx %>
<ide> <% end %>
<ide> <% end %>
<ide> end | 1 |
Python | Python | update textcat example | b61866a2e4d22842399531bf885dd6b0074b5eaa | <ide><path>examples/training/train_textcat.py
<del>'''Train a multi-label convolutional neural network text classifier,
<del>using the spacy.pipeline.TextCategorizer component. The model is then added
<del>to spacy.pipeline, and predictions are available at `doc.cats`.
<del>'''
<del>from __future__ import unicode_literals
<add>#!/usr/bin/env python
<add># coding: utf8
<add>"""Train a multi-label convolutional neural network text classifier on the
<add>IMDB dataset, using the TextCategorizer component. The dataset will be loaded
<add>automatically via Thinc's built-in dataset loader. The model is then added to
<add>spacy.pipeline, and predictions are available via `doc.cats`.
<add>
<add>For more details, see the documentation:
<add>* Training: https://alpha.spacy.io/usage/training
<add>* Text classification: https://alpha.spacy.io/usage/text-classification
<add>
<add>Developed for: spaCy 2.0.0a18
<add>Last updated for: spaCy 2.0.0a18
<add>"""
<add>from __future__ import unicode_literals, print_function
<ide> import plac
<ide> import random
<del>import tqdm
<del>
<del>from thinc.neural.optimizers import Adam
<del>from thinc.neural.ops import NumpyOps
<add>from pathlib import Path
<ide> import thinc.extra.datasets
<ide>
<del>import spacy.lang.en
<add>import spacy
<ide> from spacy.gold import GoldParse, minibatch
<ide> from spacy.util import compounding
<ide> from spacy.pipeline import TextCategorizer
<ide>
<del># TODO: Remove this once we're not supporting models trained with thinc <6.9.0
<del>import thinc.neural._classes.layernorm
<del>thinc.neural._classes.layernorm.set_compat_six_eight(False)
<del>
<ide>
<del>def train_textcat(tokenizer, textcat,
<del> train_texts, train_cats, dev_texts, dev_cats,
<del> n_iter=20):
<del> '''
<del> Train the TextCategorizer without associated pipeline.
<del> '''
<del> textcat.begin_training()
<del> optimizer = Adam(NumpyOps(), 0.001)
<del> train_docs = [tokenizer(text) for text in train_texts]
<add>@plac.annotations(
<add> model=("Model name. Defaults to blank 'en' model.", "option", "m", str),
<add> output_dir=("Optional output directory", "option", "o", Path),
<add> n_iter=("Number of training iterations", "option", "n", int))
<add>def main(model=None, output_dir=None, n_iter=20):
<add> if model is not None:
<add> nlp = spacy.load(model) # load existing spaCy model
<add> print("Loaded model '%s'" % model)
<add> else:
<add> nlp = spacy.blank('en') # create blank Language class
<add> print("Created blank 'en' model")
<add>
<add> # add the text classifier to the pipeline if it doesn't exist
<add> # nlp.create_pipe works for built-ins that are registered with spaCy
<add> if 'textcat' not in nlp.pipe_names:
<add> # textcat = nlp.create_pipe('textcat')
<add> textcat = TextCategorizer(nlp.vocab, labels=['POSITIVE'])
<add> nlp.add_pipe(textcat, first=True)
<add> # otherwise, get it, so we can add labels to it
<add> else:
<add> textcat = nlp.get_pipe('textcat')
<add>
<add> # add label to text classifier
<add> # textcat.add_label('POSITIVE')
<add>
<add> # load the IMBD dataset
<add> print("Loading IMDB data...")
<add> (train_texts, train_cats), (dev_texts, dev_cats) = load_data(limit=2000)
<add> train_docs = [nlp.tokenizer(text) for text in train_texts]
<ide> train_gold = [GoldParse(doc, cats=cats) for doc, cats in
<ide> zip(train_docs, train_cats)]
<ide> train_data = list(zip(train_docs, train_gold))
<del> batch_sizes = compounding(4., 128., 1.001)
<del> for i in range(n_iter):
<del> losses = {}
<del> # Progress bar and minibatching
<del> batches = minibatch(tqdm.tqdm(train_data, leave=False), size=batch_sizes)
<del> for batch in batches:
<del> docs, golds = zip(*batch)
<del> textcat.update(docs, golds, sgd=optimizer, drop=0.2,
<del> losses=losses)
<del> with textcat.model.use_params(optimizer.averages):
<del> scores = evaluate(tokenizer, textcat, dev_texts, dev_cats)
<del> yield losses['textcat'], scores
<add>
<add> # get names of other pipes to disable them during training
<add> other_pipes = [pipe for pipe in nlp.pipe_names if pipe != 'textcat']
<add> with nlp.disable_pipes(*other_pipes): # only train textcat
<add> optimizer = nlp.begin_training(lambda: [])
<add> print("Training the model...")
<add> print('{:^5}\t{:^5}\t{:^5}\t{:^5}'.format('LOSS', 'P', 'R', 'F'))
<add> for i in range(n_iter):
<add> losses = {}
<add> # batch up the examples using spaCy's minibatch
<add> batches = minibatch(train_data, size=compounding(4., 128., 1.001))
<add> for batch in batches:
<add> docs, golds = zip(*batch)
<add> nlp.update(docs, golds, sgd=optimizer, drop=0.2, losses=losses)
<add> with textcat.model.use_params(optimizer.averages):
<add> # evaluate on the dev data split off in load_data()
<add> scores = evaluate(nlp.tokenizer, textcat, dev_texts, dev_cats)
<add> print('{0:.3f}\t{0:.3f}\t{0:.3f}\t{0:.3f}' # print a simple table
<add> .format(losses['textcat'], scores['textcat_p'],
<add> scores['textcat_r'], scores['textcat_f']))
<add>
<add> # test the trained model
<add> test_text = "This movie sucked"
<add> doc = nlp(test_text)
<add> print(test_text, doc.cats)
<add>
<add> if output_dir is not None:
<add> output_dir = Path(output_dir)
<add> if not output_dir.exists():
<add> output_dir.mkdir()
<add> nlp.to_disk(output_dir)
<add> print("Saved model to", output_dir)
<add>
<add> # test the saved model
<add> print("Loading from", output_dir)
<add> nlp2 = spacy.load(output_dir)
<add> doc2 = nlp2(test_text)
<add> print(test_text, doc2.cats)
<add>
<add>
<add>def load_data(limit=0, split=0.8):
<add> """Load data from the IMDB dataset."""
<add> # Partition off part of the train data for evaluation
<add> train_data, _ = thinc.extra.datasets.imdb()
<add> random.shuffle(train_data)
<add> train_data = train_data[-limit:]
<add> texts, labels = zip(*train_data)
<add> cats = [{'POSITIVE': bool(y)} for y in labels]
<add> split = int(len(train_data) * split)
<add> return (texts[:split], cats[:split]), (texts[split:], cats[split:])
<ide>
<ide>
<ide> def evaluate(tokenizer, textcat, texts, cats):
<ide> docs = (tokenizer(text) for text in texts)
<del> tp = 1e-8 # True positives
<del> fp = 1e-8 # False positives
<del> fn = 1e-8 # False negatives
<del> tn = 1e-8 # True negatives
<add> tp = 1e-8 # True positives
<add> fp = 1e-8 # False positives
<add> fn = 1e-8 # False negatives
<add> tn = 1e-8 # True negatives
<ide> for i, doc in enumerate(textcat.pipe(docs)):
<ide> gold = cats[i]
<ide> for label, score in doc.cats.items():
<ide> def evaluate(tokenizer, textcat, texts, cats):
<ide> tn += 1
<ide> elif score < 0.5 and gold[label] >= 0.5:
<ide> fn += 1
<del> precis = tp / (tp + fp)
<add> precision = tp / (tp + fp)
<ide> recall = tp / (tp + fn)
<del> fscore = 2 * (precis * recall) / (precis + recall)
<del> return {'textcat_p': precis, 'textcat_r': recall, 'textcat_f': fscore}
<del>
<del>
<del>def load_data(limit=0):
<del> # Partition off part of the train data --- avoid running experiments
<del> # against test.
<del> train_data, _ = thinc.extra.datasets.imdb()
<del>
<del> random.shuffle(train_data)
<del> train_data = train_data[-limit:]
<del>
<del> texts, labels = zip(*train_data)
<del> cats = [{'POSITIVE': bool(y)} for y in labels]
<del>
<del> split = int(len(train_data) * 0.8)
<del>
<del> train_texts = texts[:split]
<del> train_cats = cats[:split]
<del> dev_texts = texts[split:]
<del> dev_cats = cats[split:]
<del> return (train_texts, train_cats), (dev_texts, dev_cats)
<del>
<del>
<del>def main(model_loc=None):
<del> nlp = spacy.lang.en.English()
<del> tokenizer = nlp.tokenizer
<del> textcat = TextCategorizer(tokenizer.vocab, labels=['POSITIVE'])
<del>
<del> print("Load IMDB data")
<del> (train_texts, train_cats), (dev_texts, dev_cats) = load_data(limit=2000)
<del>
<del> print("Itn.\tLoss\tP\tR\tF")
<del> progress = '{i:d} {loss:.3f} {textcat_p:.3f} {textcat_r:.3f} {textcat_f:.3f}'
<del>
<del> for i, (loss, scores) in enumerate(train_textcat(tokenizer, textcat,
<del> train_texts, train_cats,
<del> dev_texts, dev_cats, n_iter=20)):
<del> print(progress.format(i=i, loss=loss, **scores))
<del> # How to save, load and use
<del> nlp.pipeline.append(textcat)
<del> if model_loc is not None:
<del> nlp.to_disk(model_loc)
<del>
<del> nlp = spacy.load(model_loc)
<del> doc = nlp(u'This movie sucked!')
<del> print(doc.cats)
<add> f_score = 2 * (precision * recall) / (precision + recall)
<add> return {'textcat_p': precision, 'textcat_r': recall, 'textcat_f': f_score}
<ide>
<ide>
<ide> if __name__ == '__main__': | 1 |
Java | Java | fix copyright header | 7ca6b9f7d2196153307b93ea7df6fc52abb06902 | <ide><path>spring-web/src/test/java/org/springframework/mock/web/test/MockBodyContent.java
<ide> /*
<del> * Copyright 2002-2017 the original author or authors.
<add> * Copyright 2002-2018 the original author or authors.
<ide> *
<ide> * Licensed under the Apache License, Version 2.0 (the "License");
<ide> * you may not use this file except in compliance with the License. | 1 |
PHP | PHP | fix bug in link_to_asset method | 3ccad7de604ae39fa8e78189455b5f08632c753c | <ide><path>laravel/html.php
<ide> public static function span($value, $attributes = array())
<ide> * @param string $title
<ide> * @param array $attributes
<ide> * @param bool $https
<del> * @param bool $asset
<ide> * @return string
<ide> */
<del> public static function link($url, $title, $attributes = array(), $https = false, $asset = false)
<add> public static function link($url, $title, $attributes = array(), $https = false)
<ide> {
<del> $url = static::entities(URL::to($url, $https, $asset));
<add> $url = static::entities(URL::to($url, $https));
<ide>
<ide> return '<a href="'.$url.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
<ide> }
<ide> public static function link_to_secure($url, $title, $attributes = array())
<ide> */
<ide> public static function link_to_asset($url, $title, $attributes = array(), $https = null)
<ide> {
<del> return static::link($url, $title, $attributes, $https, true);
<add> $url = static::entities(URL::to_asset($url, $https));
<add>
<add> return '<a href="'.$url.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
<ide> }
<ide>
<ide> /** | 1 |
Javascript | Javascript | add support for negative four-digit years | d7b526416eb348af8f8d2072085a30183be89900 | <ide><path>moment.js
<ide> parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999
<ide> parseTokenThreeDigits = /\d{3}/, // 000 - 999
<ide> parseTokenFourDigits = /\d{4}/, // 0000 - 9999
<del> parseTokenFiveToSixDigits = /[+\-]?\d{5,6}/, // -999,999 - 999,999
<add> parseTokenFiveToSixDigits = /[+\-\d]?\d{4,6}/, // -999,999 - 999,999
<ide> parseTokenWord = /[0-9a-z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+/i, // any word characters or numbers
<ide> parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/i, // +00:00 -00:00 +0000 -0000 or Z
<ide> parseTokenT = /T/i, // T (ISO seperator)
<ide><path>test/moment/create.js
<ide> exports.create = {
<ide>
<ide> "six digit years" : function(test) {
<ide> test.expect(5);
<del> test.equal(moment([-270000, 0, 1]).format("YYYYY-MM-DD"), "-270000-01-01", "format BC 270,000");
<add> test.equal(moment([-270000, 0, 1]).format("YYYYY-MM-DD"), "-270000-01-01", "format BC 270,001");
<ide> test.equal(moment([ 270000, 0, 1]).format("YYYYY-MM-DD"), "270000-01-01", "format AD 270,000");
<del> test.equal(moment("-270000-01-01", "YYYYY-MM-DD").toDate().getUTCFullYear(), -270000, "parse BC 270,000");
<add> test.equal(moment("-270000-01-01", "YYYYY-MM-DD").toDate().getUTCFullYear(), -270000, "parse BC 270,001");
<ide> test.equal(moment("270000-01-01", "YYYYY-MM-DD").toDate().getUTCFullYear(), 270000, "parse AD 270,000");
<ide> test.equal(moment("+270000-01-01", "YYYYY-MM-DD").toDate().getUTCFullYear(), 270000, "parse AD +270,000");
<ide> test.done();
<add> },
<add>
<add> "negative four digit years" : function(test) {
<add> test.expect(1);
<add> test.equal(moment("-1000-01-01", "YYYYY-MM-DD").toDate().getUTCFullYear(), -1000, "parse BC 1,001");
<add> test.done();
<ide> }
<ide> }; | 2 |
Javascript | Javascript | ensure contiguous arrays in map nodes | ac335b18f50dbf6d849550f9172b3690100cd961 | <ide><path>dist/Immutable.dev.js
<ide> function packNodes(ownerID, nodes, count, excluding) {
<ide> for (var ii = 0,
<ide> bit = 1,
<ide> len = nodes.length; ii < len; ii++, bit <<= 1) {
<del> var nodeII = nodes[ii];
<del> if (nodeII != null && ii !== excluding) {
<add> var node = nodes[ii];
<add> if (node != null && ii !== excluding) {
<ide> bitmap |= bit;
<del> packedNodes[packedII++] = nodeII;
<add> packedNodes[packedII++] = node;
<ide> }
<ide> }
<ide> return new BitmapIndexedNode(ownerID, bitmap, packedNodes);
<ide> }
<ide> function expandNodes(ownerID, nodes, bitmap, including, node) {
<ide> var count = 0;
<del> var expandedNodes = [];
<add> var expandedNodes = new Array(SIZE);
<ide> for (var ii = 0; bitmap !== 0; ii++, bitmap >>>= 1) {
<del> if (bitmap & 1) {
<del> expandedNodes[ii] = nodes[count++];
<del> }
<add> expandedNodes[ii] = bitmap & 1 ? nodes[count++] : null;
<ide> }
<ide> expandedNodes[including] = node;
<ide> return new ArrayNode(ownerID, count + 1, expandedNodes);
<ide><path>dist/Immutable.js
<ide> * of patent rights can be found in the PATENTS file in the same directory.
<ide> */
<ide> function t(){function t(t,e,r,n){var i;if(n){var u=n.prototype;i=re.create(u)}else i=t.prototype;return re.keys(e).forEach(function(t){i[t]=e[t]}),re.keys(r).forEach(function(e){t[e]=r[e]}),i.constructor=t,t.prototype=i,t}function e(t,e,r,n){return re.getPrototypeOf(e)[r].apply(t,n)}function r(t,r,n){e(t,r,"constructor",n)}function n(){return Object.create(se)}function i(t){var e=Object.create(oe);return e.__reversedIndices=t?t.__reversedIndices:!1,e}function u(t,e,r,n){var i=t.get?t.get(e[n],me):me;return i===me?r:++n===e.length?i:u(i,e,r,n)}function s(t,e,r){return(0===t||null!=r&&-r>=t)&&(null==e||null!=r&&e>=r)}function a(t,e){return 0>t?Math.max(0,e+t):e?Math.min(e,t):t}function h(t,e){return null==t?e:0>t?Math.max(0,e+t):e?Math.min(e,t):t}function o(t){return t}function c(t,e){return[e,t]}function f(){return!0}function l(){return this}function _(t){return(t||0)+1}function v(t,e,r,n,i){var u=t.__makeSequence();return u.__iterateUncached=function(u,s,a){var h=0,o=t.__iterate(function(t,i,s){if(e.call(r,t,i,s)){if(u(t,n?i:h,s)===!1)return!1;h++}},s,a);return i?o:h},u}function g(t){return function(){return!t.apply(this,arguments)}}function p(t){return"string"==typeof t?JSON.stringify(t):t}function m(t,e){for(var r="";e;)1&e&&(r+=t),(e>>=1)&&(t+=t);return r}function d(t,e){return t>e?1:e>t?-1:0}function y(t){I(1/0!==t,"Cannot perform this action with an infinite sequence.")}function w(t,e){return t===e?0!==t||0!==e||1/t===1/e:t!==t?e!==e:t instanceof ie?t.equals(e):!1}function I(t,e){if(!t)throw Error(e)}function D(t,e,r){var n=t._rootData.updateIn(t._keyPath,e),i=t._keyPath||[];return t._onChange&&t._onChange.call(void 0,n,t._rootData,r?i.concat(r):i),new le(n,t._keyPath,t._onChange)}function O(){}function b(t){for(var e=t.length,r=Array(e),n=0;e>n;n++)r[n]=t[n];return r}function M(t){return Ce.value=t,Ce}function k(t,e,r){var n=Object.create(we);return n.length=t,n._root=e,n.__ownerID=r,n}function S(t,e,r){var n=M(),i=x(t._root,t.__ownerID,0,L(e),e,r,n),u=t.length+(n.value?r===me?-1:1:0);return t.__ownerID?(t.length=u,t._root=i,t):i?i===t._root?t:k(u,i):de.empty()
<del>}function x(t,e,r,n,i,u,s){return t?t.update(e,r,n,i,u,s):u===me?t:(s&&(s.value=!0),new Se(e,n,[i,u]))}function E(t){return t.constructor===Se||t.constructor===Me}function C(t,e,r,n,i){if(t.hash===n)return new Me(e,n,[t.entry,i]);var u,s=t.hash>>>r&pe,a=n>>>r&pe,h=s===a?[C(t,e,r+ve,n,i)]:(u=new Se(e,n,i),a>s?[t,u]:[u,t]);return new Ie(e,1<<s|1<<a,h)}function A(t,e,r,n){for(var i=0,u=0,s=Array(r),a=0,h=1,o=e.length;o>a;a++,h<<=1){var c=e[a];null!=c&&a!==n&&(i|=h,s[u++]=c)}return new Ie(t,i,s)}function q(t,e,r,n,i){for(var u=0,s=[],a=0;0!==r;a++,r>>>=1)1&r&&(s[a]=e[u++]);return s[n]=i,new Oe(t,u+1,s)}function j(t,e,r){for(var n=[],i=0;r.length>i;i++){var u=r[i];u&&n.push(Array.isArray(u)?ie(u).fromEntries():ie(u))}return U(t,e,n)}function P(t){return function(e,r){return e&&e.mergeDeepWith?e.mergeDeepWith(t,r):t?t(e,r):r}}function U(t,e,r){return 0===r.length?t:t.withMutations(function(t){for(var n=e?function(r,n){var i=t.get(n,me);t.set(n,i===me?r:e(i,r))}:function(e,r){t.set(r,e)},i=0;r.length>i;i++)r[i].forEach(n)})}function z(t,e,r,n){var i=e[n],u=t.get?t.get(i,me):me;return u===me&&(u=de.empty()),I(t.set,"updateIn with invalid keyPath"),t.set(i,++n===e.length?r(u):z(u,e,r,n))}function R(t){return t-=t>>1&1431655765,t=(858993459&t)+(t>>2&858993459),t=t+(t>>4)&252645135,t+=t>>8,t+=t>>16,127&t}function W(t,e,r,n){var i=n?t:b(t);return i[e]=r,i}function J(t,e,r,n){var i=t.length+1;if(n&&e+1===i)return t[e]=r,t;for(var u=Array(i),s=0,a=0;i>a;a++)a===e?(u[a]=r,s=-1):u[a]=t[a+s];return u}function B(t,e,r){var n=t.length-1;if(r&&e===n)return t.pop(),t;for(var i=Array(n),u=0,s=0;n>s;s++)s===e&&(u=1),i[s]=t[s+u];return i}function L(t){if(!t)return 0;if(t===!0)return 1;var e=typeof t;if("number"===e){if((0|t)===t)return t&Ae;t=""+t,e="string"}if("string"===e)return t.length>qe?V(t):K(t);if(t.hashCode&&"function"==typeof t.hashCode)return t.hashCode();throw Error("Unable to hash: "+t)}function V(t){var e=Ue[t];return null==e&&(e=K(t),Pe===je&&(Pe=0,Ue={}),Pe++,Ue[t]=e),e}function K(t){for(var e=0,r=0;t.length>r;r++)e=31*e+t.charCodeAt(r)&Ae;
<add>}function x(t,e,r,n,i,u,s){return t?t.update(e,r,n,i,u,s):u===me?t:(s&&(s.value=!0),new Se(e,n,[i,u]))}function E(t){return t.constructor===Se||t.constructor===Me}function C(t,e,r,n,i){if(t.hash===n)return new Me(e,n,[t.entry,i]);var u,s=t.hash>>>r&pe,a=n>>>r&pe,h=s===a?[C(t,e,r+ve,n,i)]:(u=new Se(e,n,i),a>s?[t,u]:[u,t]);return new Ie(e,1<<s|1<<a,h)}function A(t,e,r,n){for(var i=0,u=0,s=Array(r),a=0,h=1,o=e.length;o>a;a++,h<<=1){var c=e[a];null!=c&&a!==n&&(i|=h,s[u++]=c)}return new Ie(t,i,s)}function q(t,e,r,n,i){for(var u=0,s=Array(ge),a=0;0!==r;a++,r>>>=1)s[a]=1&r?e[u++]:null;return s[n]=i,new Oe(t,u+1,s)}function j(t,e,r){for(var n=[],i=0;r.length>i;i++){var u=r[i];u&&n.push(Array.isArray(u)?ie(u).fromEntries():ie(u))}return U(t,e,n)}function P(t){return function(e,r){return e&&e.mergeDeepWith?e.mergeDeepWith(t,r):t?t(e,r):r}}function U(t,e,r){return 0===r.length?t:t.withMutations(function(t){for(var n=e?function(r,n){var i=t.get(n,me);t.set(n,i===me?r:e(i,r))}:function(e,r){t.set(r,e)},i=0;r.length>i;i++)r[i].forEach(n)})}function z(t,e,r,n){var i=e[n],u=t.get?t.get(i,me):me;return u===me&&(u=de.empty()),I(t.set,"updateIn with invalid keyPath"),t.set(i,++n===e.length?r(u):z(u,e,r,n))}function R(t){return t-=t>>1&1431655765,t=(858993459&t)+(t>>2&858993459),t=t+(t>>4)&252645135,t+=t>>8,t+=t>>16,127&t}function W(t,e,r,n){var i=n?t:b(t);return i[e]=r,i}function J(t,e,r,n){var i=t.length+1;if(n&&e+1===i)return t[e]=r,t;for(var u=Array(i),s=0,a=0;i>a;a++)a===e?(u[a]=r,s=-1):u[a]=t[a+s];return u}function B(t,e,r){var n=t.length-1;if(r&&e===n)return t.pop(),t;for(var i=Array(n),u=0,s=0;n>s;s++)s===e&&(u=1),i[s]=t[s+u];return i}function L(t){if(!t)return 0;if(t===!0)return 1;var e=typeof t;if("number"===e){if((0|t)===t)return t&Ae;t=""+t,e="string"}if("string"===e)return t.length>qe?V(t):K(t);if(t.hashCode&&"function"==typeof t.hashCode)return t.hashCode();throw Error("Unable to hash: "+t)}function V(t){var e=Ue[t];return null==e&&(e=K(t),Pe===je&&(Pe=0,Ue={}),Pe++,Ue[t]=e),e}function K(t){for(var e=0,r=0;t.length>r;r++)e=31*e+t.charCodeAt(r)&Ae;
<ide> return e}function N(t,e,r,n,i,u){var s=Object.create(Be);return s.length=e-t,s._origin=t,s._size=e,s._level=r,s._root=n,s._tail=i,s.__ownerID=u,s}function F(t,e){if(e>=T(t._size))return t._tail;if(1<<t._level+ve>e){for(var r=t._root,n=t._level;r&&n>0;)r=r.array[e>>>n&pe],n-=ve;return r}}function G(t,e,r){var n=t.__ownerID||new O,i=t._origin,u=t._size,s=i+e,a=null==r?u:0>r?u+r:i+r;if(s===i&&a===u)return t;if(s>=a)return t.clear();for(var h=t._level,o=t._root,c=0;0>s+c;)o=new Le(o.array.length?[,o]:[],n),h+=ve,c+=1<<h;c&&(s+=c,i+=c,a+=c,u+=c);for(var f=T(u),l=T(a);l>=1<<h+ve;)o=new Le(o.array.length?[o]:[],n),h+=ve;var _=t._tail,v=f>l?F(t,a-1):l>f?new Le([],n):_;if(l>f&&u>s&&_.array.length){o=o.ensureOwner(n);for(var g=o,p=h;p>ve;p-=ve){var m=f>>>p&pe;g=g.array[m]=g.array[m]?g.array[m].ensureOwner(n):new Le([],n)}g.array[f>>>ve&pe]=_}if(u>a&&(v=v.removeAfter(n,0,a)),s>=l)s-=l,a-=l,h=ve,o=Fe,v=v.removeBefore(n,0,s);else if(s>i||f>l){var d,y;c=0;do d=s>>>h&pe,y=l-1>>>h&pe,d===y&&(d&&(c+=(1<<h)*d),h-=ve,o=o&&o.array[d]);while(o&&d===y);o&&s>i&&(o=o.removeBefore(n,h,s-c)),o&&f>l&&(o=o.removeAfter(n,h,l-c)),c&&(s-=c,a-=c),o=o||Fe}return t.__ownerID?(t.length=a-s,t._origin=s,t._size=a,t._level=h,t._root=o,t._tail=v,t):N(s,a,h,o,v)}function H(t,e,r){for(var n=[],i=0;r.length>i;i++){var u=r[i];u&&n.push(u.forEach?u:ie(u))}var s=Math.max.apply(null,n.map(function(t){return t.length||0}));return s>t.length&&(t=t.setLength(s)),U(t,e,n)}function Q(t,e){return I(t>=0,"Index out of bounds"),t+e}function T(t){return ge>t?0:t-1>>>ve<<ve}function X(t,e){var r=Object.create(Qe);return r.length=t?t.length:0,r._map=t,r.__ownerID=e,r}function Y(t,e,r){var n=Object.create(Xe.prototype);return n.length=t?t.length:0,n._map=t,n._vector=e,n.__ownerID=r,n}function Z(t,e,r){var n=Object.create(Object.getPrototypeOf(t));return n._map=e,n.__ownerID=r,n}function $(t,e){return e?te(e,t,"",{"":t}):ee(t)}function te(t,e,r,n){return e&&(Array.isArray(e)||e.constructor===Object)?t.call(n,r,ie(e).map(function(r,n){return te(t,r,n,e)})):e}function ee(t){if(t){if(Array.isArray(t))return ie(t).map(ee).toVector();
<ide> if(t.constructor===Object)return ie(t).map(ee).toMap()}return t}var re=Object,ne={};ne.createClass=t,ne.superCall=e,ne.defaultSuperCall=r;var ie=function(t){return ue.from(1===arguments.length?t:Array.prototype.slice.call(arguments))},ue=ie;ne.createClass(ie,{toString:function(){return this.__toString("Seq {","}")},__toString:function(t,e){return 0===this.length?t+e:t+" "+this.map(this.__toStringMapper).join(", ")+" "+e},__toStringMapper:function(t,e){return e+": "+p(t)},toJS:function(){return this.map(function(t){return t instanceof ue?t.toJS():t}).__toJS()},toArray:function(){y(this.length);var t=Array(this.length||0);return this.values().forEach(function(e,r){t[r]=e}),t},toObject:function(){y(this.length);var t={};return this.forEach(function(e,r){t[r]=e}),t},toVector:function(){return y(this.length),We.from(this)},toMap:function(){return y(this.length),de.from(this)},toOrderedMap:function(){return y(this.length),Xe.from(this)},toSet:function(){return y(this.length),Ge.from(this)},equals:function(t){if(this===t)return!0;if(!(t instanceof ue))return!1;if(null!=this.length&&null!=t.length){if(this.length!==t.length)return!1;if(0===this.length&&0===t.length)return!0}return this.__deepEquals(t)},__deepEquals:function(t){var e=this.cacheResult().entries().toArray(),r=0;return t.every(function(t,n){var i=e[r++];return w(n,i[0])&&w(t,i[1])})},join:function(t){t=t||",";var e="",r=!0;return this.forEach(function(n){r?(r=!1,e+=n):e+=t+n}),e},count:function(t,e){return t?this.filter(t,e).count():(null==this.length&&(this.length=this.forEach(f)),this.length)},countBy:function(t){var e=this;return Xe.empty().withMutations(function(r){e.forEach(function(e,n,i){r.update(t(e,n,i),_)})})},concat:function(){for(var t=[],e=0;arguments.length>e;e++)t[e]=arguments[e];var r=[this].concat(t.map(function(t){return ue(t)})),n=this.__makeSequence();return n.length=r.reduce(function(t,e){return null!=t&&null!=e.length?t+e.length:void 0},0),n.__iterateUncached=function(t,e){for(var n,i=0,u=r.length-1,s=0;u>=s&&!n;s++){var a=r[e?u-s:s];i+=a.__iterate(function(e,r,i){return t(e,r,i)===!1?(n=!0,!1):void 0
<ide> },e)}return i},n},reverse:function(){var t=this,e=t.__makeSequence();return e.length=t.length,e.__iterateUncached=function(e,r){return t.__iterate(e,!r)},e.reverse=function(){return t},e},keys:function(){return this.flip().values()},values:function(){var t=this,e=i(t);return e.length=t.length,e.values=l,e.__iterateUncached=function(e,r,n){if(n&&null==this.length)return this.cacheResult().__iterate(e,r,n);var i,u=0;return n?(u=this.length-1,i=function(t,r,n){return e(t,u--,n)!==!1}):i=function(t,r,n){return e(t,u++,n)!==!1},t.__iterate(i,r),n?this.length:u},e},entries:function(){var t=this;if(t._cache)return ue(t._cache);var e=t.map(c).values();return e.fromEntries=function(){return t},e},forEach:function(t,e){return this.__iterate(e?t.bind(e):t)},reduce:function(t,e,r){var n=e;return this.forEach(function(e,i,u){n=t.call(r,n,e,i,u)}),n},reduceRight:function(t,e,r){return this.reverse(!0).reduce(t,e,r)},every:function(t,e){var r=!0;return this.forEach(function(n,i,u){return t.call(e,n,i,u)?void 0:(r=!1,!1)}),r},some:function(t,e){return!this.every(g(t),e)},first:function(){return this.find(f)},last:function(){return this.findLast(f)},rest:function(){return this.slice(1)},butLast:function(){return this.slice(0,-1)},has:function(t){return this.get(t,me)!==me},get:function(t,e){return this.find(function(e,r){return w(r,t)},null,e)},getIn:function(t,e){return t&&0!==t.length?u(this,t,e,0):this},contains:function(t){return this.find(function(e){return w(e,t)},null,me)!==me},find:function(t,e,r){var n=r;return this.forEach(function(r,i,u){return t.call(e,r,i,u)?(n=r,!1):void 0}),n},findKey:function(t,e){var r;return this.forEach(function(n,i,u){return t.call(e,n,i,u)?(r=i,!1):void 0}),r},findLast:function(t,e,r){return this.reverse(!0).find(t,e,r)},findLastKey:function(t,e){return this.reverse(!0).findKey(t,e)},flip:function(){var t=this,e=n();return e.length=t.length,e.flip=function(){return t},e.__iterateUncached=function(e,r){return t.__iterate(function(t,r,n){return e(r,t,n)!==!1},r)},e},map:function(t,e){var r=this,n=r.__makeSequence();
<ide><path>src/Map.js
<ide> function packNodes(ownerID, nodes, count, excluding) {
<ide> var packedII = 0;
<ide> var packedNodes = new Array(count);
<ide> for (var ii = 0, bit = 1, len = nodes.length; ii < len; ii++, bit <<= 1) {
<del> var nodeII = nodes[ii];
<del> if (nodeII != null && ii !== excluding) {
<add> var node = nodes[ii];
<add> if (node != null && ii !== excluding) {
<ide> bitmap |= bit;
<del> packedNodes[packedII++] = nodeII;
<del>
<add> packedNodes[packedII++] = node;
<ide> }
<ide> }
<ide> return new BitmapIndexedNode(ownerID, bitmap, packedNodes);
<ide> }
<ide>
<ide> function expandNodes(ownerID, nodes, bitmap, including, node) {
<ide> var count = 0;
<del> var expandedNodes = [];
<add> var expandedNodes = new Array(SIZE);
<ide> for (var ii = 0; bitmap !== 0; ii++, bitmap >>>= 1) {
<del> if (bitmap & 1) {
<del> expandedNodes[ii] = nodes[count++];
<del> }
<add> expandedNodes[ii] = bitmap & 1 ? nodes[count++] : null;
<ide> }
<ide> expandedNodes[including] = node;
<ide> return new ArrayNode(ownerID, count + 1, expandedNodes); | 3 |
Text | Text | update the readme | 3d2dedb49fdb319f3711f1e2574657f4ad6511a5 | <ide><path>README.md
<del># Atom — The hackable editor
<add># Atom — A hackable text editor for the 21st Century
<ide>
<ide> 
<ide>
<del>Check out our [guides and API documentation](https://atom.io/docs/latest).
<add>Atom is an open source text editor built on top of
<add>[atom-shell](http://github.com/atom/atom-shell). It's designed to be
<add>customizable, but also usable without needing to edit a config file. Atom is
<add>modern, approachable, and hackable to the core. Visit [atom.io](http://atom.io)
<add>to learn more.
<ide>
<ide> ## Installing
<ide>
<ide> Atom will automatically update when a new release is available.
<ide>
<ide> ## Building
<ide>
<del>Follow the instructions in the [build docs][building].
<add>```
<add>git clone [email protected]:atom/atom.git
<add>cd atom
<add>script/build # Creates application at /Applications/Atom.app
<add>```
<ide>
<del>[building]: https://github.com/atom/atom/blob/master/docs/building-atom.md
<add>## Developing
<add>Check out the [guides](https://atom.io/docs/latest) and the [API reference](atom.io/docs/api). | 1 |
Go | Go | remove stray printf | 77590d4dae9223ccd8edf9b153c669f631747f24 | <ide><path>integration-cli/docker_cli_exec_test.go
<ide> func (s *DockerSuite) TestExecDir(c *check.C) {
<ide> id := strings.TrimSpace(out)
<ide>
<ide> execDir := filepath.Join(execDriverPath, id)
<del> fmt.Println(execDriverPath)
<ide> stateFile := filepath.Join(execDir, "state.json")
<ide>
<ide> { | 1 |
PHP | PHP | unskip additional tests | d935b7aeb720b3485e874a40f29223599baca6ca | <ide><path>tests/TestCase/View/Helper/FormHelperTest.php
<ide> public function testInputMultipleCheckboxes() {
<ide> * @return void
<ide> */
<ide> public function testSelectHiddenFieldOmission() {
<del> $this->markTestIncomplete('Need to revisit once models work again.');
<ide> $result = $this->Form->select('Model.multi_field',
<ide> array('first', 'second'),
<ide> array('multiple' => 'checkbox', 'hiddenField' => false, 'value' => null)
<ide> );
<del> $expected = array(
<del> array('div' => array('class' => 'checkbox')),
<del> array('input' => array('type' => 'checkbox', 'name' => 'Model[multi_field][]', 'value' => '0', 'id' => 'ModelMultiField0')),
<del> array('label' => array('for' => 'ModelMultiField0')),
<del> 'first',
<del> '/label',
<del> '/div',
<del> array('div' => array('class' => 'checkbox')),
<del> array('input' => array('type' => 'checkbox', 'name' => 'Model[multi_field][]', 'value' => '1', 'id' => 'ModelMultiField1')),
<del> array('label' => array('for' => 'ModelMultiField1')),
<del> 'second',
<del> '/label',
<del> '/div'
<del> );
<del> $this->assertTags($result, $expected);
<del>
<del> $result = $this->Form->input('Model.multi_field', array(
<del> 'options' => array('first', 'second'),
<del> 'multiple' => 'checkbox',
<del> 'hiddenField' => false
<del> ));
<del> $expected = array(
<del> array('div' => array('class' => 'input select')),
<del> array('label' => array('for' => 'ModelMultiField')),
<del> 'Multi Field',
<del> '/label',
<del> array('div' => array('class' => 'checkbox')),
<del> array('input' => array('type' => 'checkbox', 'name' => 'Model[multi_field][]', 'value' => '0', 'id' => 'ModelMultiField0')),
<del> array('label' => array('for' => 'ModelMultiField0')),
<del> 'first',
<del> '/label',
<del> '/div',
<del> array('div' => array('class' => 'checkbox')),
<del> array('input' => array('type' => 'checkbox', 'name' => 'Model[multi_field][]', 'value' => '1', 'id' => 'ModelMultiField1')),
<del> array('label' => array('for' => 'ModelMultiField1')),
<del> 'second',
<del> '/label',
<del> '/div',
<del> '/div'
<del> );
<del> $this->assertTags($result, $expected);
<add> $this->assertNotContains('type="hidden"', $result);
<ide> }
<ide>
<ide> /** | 1 |
PHP | PHP | fix docblock issues | c7e89d43f00c2114b6ee7f4997f2571fde4a2097 | <ide><path>src/I18n/RelativeTimeFormatter.php
<ide> <?php
<add>/**
<add> * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
<add> * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
<add> *
<add> * Licensed under The MIT License
<add> * For full copyright and license information, please see the LICENSE.txt
<add> * Redistributions of files must retain the above copyright notice.
<add> *
<add> * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
<add> * @link http://cakephp.org CakePHP(tm) Project
<add> * @since 3.2.0
<add> * @license http://www.opensource.org/licenses/mit-license.php MIT License
<add> */
<ide> namespace Cake\I18n;
<ide>
<ide> use Cake\I18n\FrozenDate;
<ide> public function dateAgoInWords(array $options = [])
<ide> *
<ide> * @param array $options The options provided by the user.
<ide> * @param string $class The class name to use for defaults.
<add> * @return array Options with defaults applied.
<ide> */
<ide> protected function _options($options, $class)
<ide> { | 1 |
PHP | PHP | hide db credentials | e4fee14a5b1aca3c0af11549aa722358092853e7 | <ide><path>cake/libs/debugger.php
<ide> function exportVar($var, $recursion = 0) {
<ide> case 'object':
<ide> return get_class($var) . "\n" . $_this->__object($var);
<ide> case 'array':
<add> $var = array_merge($var, array_intersect_key(array(
<add> 'password' => '*****',
<add> 'login' => '*****',
<add> 'host' => '*****',
<add> 'database' => '*****',
<add> 'port' => '*****',
<add> 'prefix' => '*****',
<add> 'schema' => '*****'
<add> ), $var));
<add>
<ide> $out = "array(";
<ide> $vars = array();
<ide> foreach ($var as $key => $val) {
<ide><path>cake/tests/cases/libs/debugger.test.php
<ide> function testGetInstance() {
<ide> $result =& Debugger::getInstance('Debugger');
<ide> $this->assertIsA($result, 'Debugger');
<ide> }
<add>
<add>/**
<add> * testNoDbCredentials
<add> *
<add> * If a connection error occurs, the config variable is passed through exportVar
<add> * *** our database login credentials such that they are never visible
<add> *
<add> * @access public
<add> * @return void
<add> */
<add> function testNoDbCredentials() {
<add> $config = array(
<add> 'driver' => 'mysql',
<add> 'persistent' => false,
<add> 'host' => 'void.cakephp.org',
<add> 'login' => 'cakephp-user',
<add> 'password' => 'cakephp-password',
<add> 'database' => 'cakephp-database',
<add> 'prefix' => ''
<add> );
<add>
<add> $output = Debugger::exportVar($config);
<add>
<add> $expectedArray = array(
<add> 'driver' => 'mysql',
<add> 'persistent' => false,
<add> 'host' => '*****',
<add> 'login' => '*****',
<add> 'password' => '*****',
<add> 'database' => '*****',
<add> 'prefix' => ''
<add> );
<add> $expected = Debugger::exportVar($expectedArray);
<add>
<add> $this->assertEqual($expected, $output);
<add> }
<ide> } | 2 |
Ruby | Ruby | add `safe` argument to `git_head`/`git_short_head` | eefe5bb2959c77aa93a6b4a1884644fedbd8b730 | <ide><path>Library/Homebrew/extend/git_repository.rb
<ide> def git_origin=(origin)
<ide> end
<ide>
<ide> # Gets the full commit hash of the HEAD commit.
<del> sig { returns(T.nilable(String)) }
<del> def git_head
<add> sig { params(safe: T::Boolean).returns(T.nilable(String)) }
<add> def git_head(safe: false)
<ide> return if !git? || !Utils::Git.available?
<ide>
<del> Utils.popen_read(Utils::Git.git, "rev-parse", "--verify", "-q", "HEAD", chdir: self).chomp.presence
<add> Utils.popen_read(Utils::Git.git, "rev-parse", "--verify", "-q", "HEAD", safe: safe, chdir: self).chomp.presence
<ide> end
<ide>
<ide> # Gets a short commit hash of the HEAD commit.
<del> sig { params(length: T.nilable(Integer)).returns(T.nilable(String)) }
<del> def git_short_head(length: nil)
<add> sig { params(length: T.nilable(Integer), safe: T::Boolean).returns(T.nilable(String)) }
<add> def git_short_head(length: nil, safe: false)
<ide> return if !git? || !Utils::Git.available?
<ide>
<add> git = Utils::Git.git
<ide> short_arg = length&.to_s&.prepend("=")
<del> Utils.popen_read(Utils::Git.git, "rev-parse", "--short#{short_arg}", "--verify", "-q", "HEAD", chdir: self)
<add> Utils.popen_read(git, "rev-parse", "--short#{short_arg}", "--verify", "-q", "HEAD", safe: safe, chdir: self)
<ide> .chomp.presence
<ide> end
<ide>
<ide><path>Library/Homebrew/utils/git_repository.rb
<ide> module Utils
<ide> extend T::Sig
<ide>
<del> sig { params(repo: T.any(String, Pathname), length: T.nilable(Integer)).returns(T.nilable(String)) }
<del> def self.git_head(repo, length: nil)
<add> sig do
<add> params(repo: T.any(String, Pathname), length: T.nilable(Integer), safe: T::Boolean).returns(T.nilable(String))
<add> end
<add> def self.git_head(repo, length: nil, safe: true)
<ide> return git_short_head(repo, length: length) if length.present?
<ide>
<ide> repo = Pathname(repo).extend(GitRepositoryExtension)
<del> repo.git_head
<add> repo.git_head(safe: safe)
<ide> end
<ide>
<del> sig { params(repo: T.any(String, Pathname), length: T.nilable(Integer)).returns(T.nilable(String)) }
<del> def self.git_short_head(repo, length: nil)
<add> sig do
<add> params(repo: T.any(String, Pathname), length: T.nilable(Integer), safe: T::Boolean).returns(T.nilable(String))
<add> end
<add> def self.git_short_head(repo, length: nil, safe: true)
<ide> repo = Pathname(repo).extend(GitRepositoryExtension)
<del> repo.git_short_head(length: length)
<add> repo.git_short_head(length: length, safe: safe)
<ide> end
<ide> end | 2 |
PHP | PHP | change method order | b6c3743e606cd68eba55b4be8c1e1877630c9c51 | <ide><path>src/Illuminate/Filesystem/Filesystem.php
<ide> public function name($path)
<ide> }
<ide>
<ide> /**
<del> * Extract the file extension from a file path.
<add> * Extract the trailing name component from a file path.
<ide> *
<ide> * @param string $path
<ide> * @return string
<ide> */
<del> public function extension($path)
<add> public function basename($path)
<ide> {
<del> return pathinfo($path, PATHINFO_EXTENSION);
<add> return pathinfo($path, PATHINFO_BASENAME);
<ide> }
<del>
<add>
<ide> /**
<del> * Extract the trailing name component from a file path.
<add> * Extract the parent directory from a file path.
<ide> *
<ide> * @param string $path
<ide> * @return string
<ide> */
<del> public function basename($path)
<add> public function dirname($path)
<ide> {
<del> return pathinfo($path, PATHINFO_BASENAME);
<add> return pathinfo($path, PATHINFO_DIRNAME);
<ide> }
<del>
<add>
<ide> /**
<del> * Extract the parent directory from a file path.
<add> * Extract the file extension from a file path.
<ide> *
<ide> * @param string $path
<ide> * @return string
<ide> */
<del> public function dirname($path)
<add> public function extension($path)
<ide> {
<del> return pathinfo($path, PATHINFO_DIRNAME);
<add> return pathinfo($path, PATHINFO_EXTENSION);
<ide> }
<ide>
<ide> /** | 1 |
Javascript | Javascript | enable swc externalhelpers when pre-compile | c69d7817a1d964052a74d401cfdbdc09f7399e73 | <ide><path>packages/next/taskfile-swc.js
<ide> module.exports = function (task) {
<ide>
<ide> const isClient = serverOrClient === 'client'
<ide>
<add> /** @type {import('@swc/core').Options} */
<ide> const swcClientOptions = {
<ide> module: {
<ide> type: 'commonjs',
<ide> ignoreDynamic: true,
<ide> },
<ide> jsc: {
<ide> loose: true,
<del>
<add> externalHelpers: true,
<ide> target: 'es2016',
<ide> parser: {
<ide> syntax: 'typescript',
<ide> module.exports = function (task) {
<ide> },
<ide> }
<ide>
<add> /** @type {import('@swc/core').Options} */
<ide> const swcServerOptions = {
<ide> module: {
<ide> type: 'commonjs',
<ide> module.exports = function (task) {
<ide> },
<ide> jsc: {
<ide> loose: true,
<del>
<add> // Do not enable external helpers on server-side files build
<add> // _is_native_funtion helper is not compatible with edge runtime (need investigate)
<add> externalHelpers: false,
<ide> parser: {
<ide> syntax: 'typescript',
<ide> dynamicImport: true,
<ide><path>packages/next/taskfile.js
<ide> const externals = {
<ide>
<ide> 'terser-webpack-plugin':
<ide> 'next/dist/build/webpack/plugins/terser-webpack-plugin',
<add>
<add> // TODO: Add @swc/helpers to externals once @vercel/ncc switch to swc-loader
<ide> }
<ide> // eslint-disable-next-line camelcase
<ide> externals['node-html-parser'] = 'next/dist/compiled/node-html-parser' | 2 |
Python | Python | fix syntax error in nimbus.io storage driver | e654223e00901de00ff9892d1c8847534b46ef4d | <ide><path>libcloud/storage/drivers/nimbus.py
<ide> def _calculate_signature(self, user_id, method, params, path, timestamp,
<ide>
<ide> class NimbusStorageDriver(StorageDriver):
<ide> name = 'Nimbus'
<del> website = 'http://www.nimbusproject.org/'
<add> website = 'https://nimbus.io/'
<ide> connectionCls = NimbusConnection
<ide>
<ide> def __init__(self, *args, **kwargs):
<ide> def create_container(self, container_name):
<ide> return self._to_container(response.object)
<ide>
<ide> def _to_containers(self, data):
<del> yield self._to_container(item) for item in data
<add> for item in data:
<add> yield self._to_container(item)
<ide>
<ide> def _to_container(self, data):
<ide> name = data[0] | 1 |
Python | Python | remove duplicate size variable | 582497a22d4a4b1cc1bb841769df71e8c7571738 | <ide><path>libcloud/compute/drivers/bluebox.py
<ide> def list_images(self, location=None):
<ide>
<ide> def create_node(self, **kwargs):
<ide> headers = {'Content-Type': 'application/x-www-form-urlencoded'}
<del> size = kwargs["size"]
<ide>
<ide> name = kwargs['name']
<ide> image = kwargs['image'] | 1 |
Python | Python | fix checkpoint path in bert_benchmark.py | 0faa2ff3c3f861ca291b2a97ff714a6fc1c85aac | <ide><path>official/benchmark/bert_benchmark.py
<ide> from official.utils.misc import distribution_utils
<ide>
<ide> # pylint: disable=line-too-long
<del>PRETRAINED_CHECKPOINT_PATH = 'placer/prod/home/tensorflow-performance-data/datasets/bert/keras_bert/bert_model.ckpt'
<add>PRETRAINED_CHECKPOINT_PATH = 'gs://cloud-tpu-checkpoints/bert/keras_bert/uncased_L-24_H-1024_A-16/bert_model.ckpt'
<ide> CLASSIFIER_TRAIN_DATA_PATH = 'gs://tf-perfzero-data/bert/classification/mrpc_train.tf_record'
<ide> CLASSIFIER_EVAL_DATA_PATH = 'gs://tf-perfzero-data/bert/classification/mrpc_eval.tf_record'
<ide> CLASSIFIER_INPUT_META_DATA_PATH = 'gs://tf-perfzero-data/bert/classification/mrpc_meta_data'
<ide><path>official/benchmark/bert_squad_benchmark.py
<ide> from official.utils.misc import distribution_utils
<ide>
<ide> # pylint: disable=line-too-long
<del>PRETRAINED_CHECKPOINT_PATH = '/placer/prod/home/tensorflow-performance-data/datasets/bert/tf_20/uncased_L-24_H-1024_A-16/bert_model.ckpt'
<add>PRETRAINED_CHECKPOINT_PATH = 'gs://cloud-tpu-checkpoints/bert/tf_20/uncased_L-24_H-1024_A-16/bert_model.ckpt'
<ide> SQUAD_TRAIN_DATA_PATH = 'gs://tf-perfzero-data/bert/squad/squad_train.tf_record'
<ide> SQUAD_PREDICT_FILE = 'gs://tf-perfzero-data/bert/squad/dev-v1.1.json'
<ide> SQUAD_VOCAB_FILE = 'gs://tf-perfzero-data/bert/squad/vocab.txt' | 2 |
Javascript | Javascript | fix process.assert problem | f71e4d8b431f53dc68d729b8eae3c610663e06de | <ide><path>lib/module.js
<ide> var NativeModule = require('native_module');
<ide> var Script = process.binding('evals').Script;
<ide> var runInThisContext = Script.runInThisContext;
<ide> var runInNewContext = Script.runInNewContext;
<add>var assert = process.assert;
<ide>
<ide> function Module(id, parent) {
<ide> this.id = id;
<ide> Module.prototype.load = function(filename) {
<ide> debug('load ' + JSON.stringify(filename) +
<ide> ' for module ' + JSON.stringify(this.id));
<ide>
<del> process.assert(!this.loaded);
<add> assert(!this.loaded);
<ide> this.filename = filename;
<ide>
<ide> var extension = path.extname(filename) || '.js'; | 1 |
Python | Python | simplify precomputableaffine slightly | 433dc3c9c98de097c6f11debf85bcad47b23f9c6 | <ide><path>spacy/ml/_precomputable_affine.py
<ide> def backward(dY_ids):
<ide> model.inc_grad("b", dY.sum(axis=0))
<ide> dY = dY.reshape((dY.shape[0], nO * nP))
<ide>
<del> Wopfi = model.ops.as_contig(W.transpose((1, 2, 0, 3)))
<add> Wopfi = W.transpose((1, 2, 0, 3))
<ide> Wopfi = Wopfi.reshape((nO * nP, nF * nI))
<ide> dXf = model.ops.gemm(dY.reshape((dY.shape[0], nO * nP)), Wopfi)
<ide>
<del> # Reuse the buffer
<del> dWopfi = Wopfi
<del> dWopfi.fill(0.0)
<del> model.ops.gemm(dY, Xf, out=dWopfi, trans1=True)
<add> dWopfi = model.ops.gemm(dY, Xf, trans1=True)
<ide> dWopfi = dWopfi.reshape((nO, nP, nF, nI))
<ide> # (o, p, f, i) --> (f, o, p, i)
<del> dWopfi = model.ops.as_contig(dWopfi.transpose((2, 0, 1, 3)))
<add> dWopfi = dWopfi.transpose((2, 0, 1, 3))
<ide> model.inc_grad("W", dWopfi)
<ide> return dXf.reshape((dXf.shape[0], nF, nI))
<ide> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.