Since this is a JavaScript library, we may not always use the produced strings in HTML directly. This changes the HTML entity used for "à" in Welsh translations to, well, "à".
},
relativeTime: {
future: "mewn %s",
- past: "%s yn ôl",
+ past: "%s yn àl",
s: "ychydig eiliadau",
m: "munud",
mm: "%d munud",
test.expect(2);
test.equal(moment(30000).from(0), "mewn ychydig eiliadau", "prefix");
- test.equal(moment(0).from(30000), "ychydig eiliadau yn ôl", "suffix");
+ test.equal(moment(0).from(30000), "ychydig eiliadau yn àl", "suffix");
test.done();
},