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/mr.js | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/moment/src/locale/mr.js')
-rw-r--r-- | node_modules/moment/src/locale/mr.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/node_modules/moment/src/locale/mr.js b/node_modules/moment/src/locale/mr.js index 08cc3e02b..415644ad3 100644 --- a/node_modules/moment/src/locale/mr.js +++ b/node_modules/moment/src/locale/mr.js @@ -36,6 +36,7 @@ function relativeTimeMr(number, withoutSuffix, string, isFuture) if (withoutSuffix) { switch (string) { case 's': output = 'काही सेकंद'; break; + case 'ss': output = '%d सेकंद'; break; case 'm': output = 'एक मिनिट'; break; case 'mm': output = '%d मिनिटे'; break; case 'h': output = 'एक तास'; break; @@ -51,6 +52,7 @@ function relativeTimeMr(number, withoutSuffix, string, isFuture) else { switch (string) { case 's': output = 'काही सेकंदां'; break; + case 'ss': output = '%d सेकंदां'; break; case 'm': output = 'एका मिनिटा'; break; case 'mm': output = '%d मिनिटां'; break; case 'h': output = 'एका तासा'; break; @@ -93,6 +95,7 @@ export default moment.defineLocale('mr', { future: '%sमध्ये', past: '%sपूर्वी', s: relativeTimeMr, + ss: relativeTimeMr, m: relativeTimeMr, mm: relativeTimeMr, h: relativeTimeMr, |