Skip to content

Commit d8747b1

Browse files
committed
Merge pull request #68 from wmde/precisionConsts
Unify names of time precision constants
2 parents 9731ddb + 4befc83 commit d8747b1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/values/TimeValue.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -295,13 +295,13 @@ SELF.getCalendarModelKeyByUri = function( uri ) {
295295
* @since 0.7
296296
*/
297297
SELF.PRECISIONS = [
298-
{ id: 'GY', text: 'billion years' },
299-
{ id: 'MY100', text: 'hundred million years' },
300-
{ id: 'MY10', text: 'ten million years' },
301-
{ id: 'MY', text: 'million years' },
302-
{ id: 'KY100', text: '100,000 years' },
303-
{ id: 'KY10', text: '10,000 years' },
304-
{ id: 'KY', text: 'millenium' },
298+
{ id: 'YEAR1G', text: 'billion years' },
299+
{ id: 'YEAR100M', text: 'hundred million years' },
300+
{ id: 'YEAR10M', text: 'ten million years' },
301+
{ id: 'YEAR1M', text: 'million years' },
302+
{ id: 'YEAR100K', text: '100,000 years' },
303+
{ id: 'YEAR10K', text: '10,000 years' },
304+
{ id: 'YEAR1K', text: 'millenium' },
305305
{ id: 'YEAR100', text: 'century' },
306306
{ id: 'YEAR10', text: 'decade' },
307307
{ id: 'YEAR', text: 'year' },

0 commit comments

Comments
 (0)