diff --git a/src/locale/gu.js b/src/locale/gu.js index 45be94e394..c88b0af7fc 100644 --- a/src/locale/gu.js +++ b/src/locale/gu.js @@ -60,7 +60,7 @@ export default moment.defineLocale('gu', { }, relativeTime: { future: '%s મા', - past: '%s પેહલા', + past: '%s પહેલા', s: 'અમુક પળો', ss: '%d સેકંડ', m: 'એક મિનિટ', diff --git a/src/test/locale/gu.js b/src/test/locale/gu.js index 79e49d276d..943374f7b0 100644 --- a/src/test/locale/gu.js +++ b/src/test/locale/gu.js @@ -292,13 +292,13 @@ test('from', function (assert) { test('suffix', function (assert) { assert.equal(moment(30000).from(0), 'અમુક પળો મા', 'prefix'); - assert.equal(moment(0).from(30000), 'અમુક પળો પેહલા', 'suffix'); + assert.equal(moment(0).from(30000), 'અમુક પળો પહેલા', 'suffix'); }); test('now from now', function (assert) { assert.equal( moment().fromNow(), - 'અમુક પળો પેહલા', + 'અમુક પળો પહેલા', 'now from now should display as in the past' ); });