diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
commit | bbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch) | |
tree | c58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/moment/src/locale/gom-latn.js | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/moment/src/locale/gom-latn.js')
-rw-r--r-- | node_modules/moment/src/locale/gom-latn.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/node_modules/moment/src/locale/gom-latn.js b/node_modules/moment/src/locale/gom-latn.js index 553025325..39ad91e09 100644 --- a/node_modules/moment/src/locale/gom-latn.js +++ b/node_modules/moment/src/locale/gom-latn.js @@ -7,10 +7,11 @@ import moment from '../moment'; function processRelativeTime(number, withoutSuffix, key, isFuture) { var format = { 's': ['thodde secondanim', 'thodde second'], + 'ss': [number + ' secondanim', number + ' second'], 'm': ['eka mintan', 'ek minute'], 'mm': [number + ' mintanim', number + ' mintam'], 'h': ['eka horan', 'ek hor'], - 'hh': [number + ' horanim', number + ' hor'], + 'hh': [number + ' horanim', number + ' horam'], 'd': ['eka disan', 'ek dis'], 'dd': [number + ' disanim', number + ' dis'], 'M': ['eka mhoinean', 'ek mhoino'], @@ -50,6 +51,7 @@ export default moment.defineLocale('gom-latn', { future : '%s', past : '%s adim', s : processRelativeTime, + ss : processRelativeTime, m : processRelativeTime, mm : processRelativeTime, h : processRelativeTime, |