Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 70ce425

Browse files
committedJul 16, 2015
refactor($locale): use en-us as generic built-in locale
Previously there was a custom built en-us locale that was included with angular.js. This made likely that it would get out of sync with the real en-us locale that is generated from the closure library. This change removes that custom one and uses the generated one instead. This also has the benefit of preventing the unwanted caught error on trying to load `ngLocale` during angular bootstrap. Closes #12134 Closes #8174
1 parent 9e492c3 commit 70ce425

File tree

7 files changed

+33
-145
lines changed

7 files changed

+33
-145
lines changed
 

‎Gruntfile.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ module.exports = function(grunt) {
175175
},
176176
angular: {
177177
dest: 'build/angular.js',
178-
src: util.wrap([files['angularSrc']], 'angular'),
178+
src: util.wrap([files['angularSrc']], 'angular')
179+
.concat('src/ngLocale/angular-locale_en-us.js'),
179180
styles: {
180181
css: ['css/angular.css'],
181182
generateCspCssFile: true,

‎angularFiles.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ var angularFiles = {
2525
'src/ng/httpBackend.js',
2626
'src/ng/interpolate.js',
2727
'src/ng/interval.js',
28-
'src/ng/locale.js',
2928
'src/ng/location.js',
3029
'src/ng/log.js',
3130
'src/ng/parse.js',
@@ -182,7 +181,8 @@ var angularFiles = {
182181
'src/publishExternalApis.js',
183182
'@angularSrcModules',
184183
'@angularScenario',
185-
'@angularTest'
184+
'@angularTest',
185+
'src/ngLocale/angular-locale_en-us.js' // we need an ngLocale module
186186
],
187187

188188
'karmaExclude': [
@@ -193,12 +193,13 @@ var angularFiles = {
193193

194194
'karmaScenario': [
195195
'build/angular-scenario.js',
196-
'build/docs/docs-scenario.js'
196+
'build/docs/docs-scenario.js',
197+
'src/ngLocale/angular-locale_en-us.js' // we need an ngLocale module
197198
],
198199

199200
"karmaModules": [
200201
'build/angular.js',
201-
'@angularSrcModules',
202+
'@angularSrcModules',,
202203
'src/ngScenario/browserTrigger.js',
203204
'test/helpers/*.js',
204205
'test/ngMessageFormat/*.js',
@@ -208,7 +209,8 @@ var angularFiles = {
208209
'test/ngResource/*.js',
209210
'test/ngSanitize/**/*.js',
210211
'test/ngTouch/**/*.js',
211-
'test/ngAria/*.js'
212+
'test/ngAria/*.js',
213+
'src/ngLocale/angular-locale_en-us.js' // we need an ngLocale module
212214
],
213215

214216
'karmaJquery': [
@@ -218,7 +220,9 @@ var angularFiles = {
218220
'src/publishExternalApis.js',
219221
'@angularSrcModules',
220222
'@angularScenario',
221-
'@angularTest'
223+
'@angularTest',
224+
'src/ngLocale/angular-locale_en-us.js' // we need an ngLocale module
225+
222226
],
223227

224228
'karmaJqueryExclude': [

‎docs/content/guide/i18n.ngdoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ directive}. Additionally, you can use {@link guide/i18n#messageformat-extension
2323
`$interpolate` for localizable pluralization and gender support in all interpolations via the
2424
`ngMessageFormat` module.
2525

26-
All localizable Angular components depend on locale-specific rule sets managed by the {@link
27-
ng.$locale `$locale` service}.
26+
All localizable Angular components depend on locale-specific rule sets managed by the
27+
{@link ngLocale `$locale` service}.
2828

2929
There a few examples that showcase how to use Angular filters with various locale rule sets in the
3030
[`i18n/e2e` directory](https://github.com/angular/angular.js/tree/master/i18n/e2e) of the Angular
@@ -99,7 +99,7 @@ develop your app.
9999
### Currency symbol
100100

101101
Angular's {@link ng.filter:currency currency filter} allows you to use the default currency symbol
102-
from the {@link ng.$locale locale service}, or you can provide the filter with a custom currency
102+
from the {@link ngLocale `locale` service}, or you can provide the filter with a custom currency
103103
symbol.
104104

105105
<div class="alert alert-success">

‎src/AngularPublic.js

-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/* global angularModule: true,
44
version: true,
55
6-
$LocaleProvider,
76
$CompileProvider,
87
98
htmlAnchorDirective,
@@ -150,11 +149,6 @@ function publishExternalAPI(angular) {
150149
});
151150

152151
angularModule = setupModuleLoader(window);
153-
try {
154-
angularModule('ngLocale');
155-
} catch (e) {
156-
angularModule('ngLocale', []).provider('$locale', $LocaleProvider);
157-
}
158152

159153
angularModule('ng', ['ngLocale'], ['$provide',
160154
function ngModule($provide) {

‎src/ng/locale.js

-81
This file was deleted.

‎src/ngLocale/index.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @ngdoc module
3+
* @name ngLocale
4+
*
5+
* @description
6+
* There is a different `ngLocale` module for each of the locales found in the closure library.
7+
* See {@link i18n}
8+
* Each module exposes a `$locale` service, which provides localization rules for various Angular components.
9+
* Right now the only required property of the `$locale` service is:
10+
*
11+
* * `id` – `{string}` – locale id formatted as `languageId-countryId` (e.g. `en-us`)
12+
*
13+
* But most locales expose a number of other useful members such as:
14+
*
15+
* * `DATETIME_FORMATS` property
16+
* * `NUMBER_FORMATS` property
17+
* * `pluralCat` member
18+
*/

‎test/ng/localeSpec.js

-48
This file was deleted.

0 commit comments

Comments
 (0)
This repository has been archived.