]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Update nn.js
authormechuwind <martinjarrettno@gmail.com>
Tue, 11 Feb 2014 12:26:51 +0000 (13:26 +0100)
committerIskren Chernev <iskren.chernev@gmail.com>
Wed, 12 Mar 2014 08:38:04 +0000 (01:38 -0700)
test/lang/nn.js

index 9c1c8788f29f51aa6e435fc764d13af9c92c9cab..b16b4deb0f01dc27c11b90e4f0e72c58003b6a66 100644 (file)
@@ -172,13 +172,13 @@ exports["lang:nn"] = {
     "suffix" : function (test) {
         test.expect(2);
         test.equal(moment(30000).from(0), "om nokre sekund",  "prefix");
-        test.equal(moment(0).from(30000), "for nokre sekund siden", "suffix");
+        test.equal(moment(0).from(30000), "for nokre sekund sidan", "suffix");
         test.done();
     },
 
     "now from now" : function (test) {
         test.expect(1);
-        test.equal(moment().fromNow(), "for nokre sekund siden",  "now from now should display as in the past");
+        test.equal(moment().fromNow(), "for nokre sekund sidan",  "now from now should display as in the past");
         test.done();
     },