From 4befc83d79c11b3cdb23900e665a9f75651e04aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thiemo=20M=C3=A4ttig?= Date: Wed, 4 Mar 2015 12:13:45 +0100 Subject: [PATCH] Unify names of time precision constants --- src/values/TimeValue.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/values/TimeValue.js b/src/values/TimeValue.js index 4e72488..e03ea98 100644 --- a/src/values/TimeValue.js +++ b/src/values/TimeValue.js @@ -290,13 +290,13 @@ SELF.getCalendarModelKeyByUri = function( uri ) { * @since 0.7 */ SELF.PRECISIONS = [ - { id: 'GY', text: 'billion years' }, - { id: 'MY100', text: 'hundred million years' }, - { id: 'MY10', text: 'ten million years' }, - { id: 'MY', text: 'million years' }, - { id: 'KY100', text: '100,000 years' }, - { id: 'KY10', text: '10,000 years' }, - { id: 'KY', text: 'millenium' }, + { id: 'YEAR1G', text: 'billion years' }, + { id: 'YEAR100M', text: 'hundred million years' }, + { id: 'YEAR10M', text: 'ten million years' }, + { id: 'YEAR1M', text: 'million years' }, + { id: 'YEAR100K', text: '100,000 years' }, + { id: 'YEAR10K', text: '10,000 years' }, + { id: 'YEAR1K', text: 'millenium' }, { id: 'YEAR100', text: 'century' }, { id: 'YEAR10', text: 'decade' }, { id: 'YEAR', text: 'year' },