From abfb645b5923f5b50c64e16fbef70f30b7b5f2a5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Burak=20Yi=C4=9Fit=20Kaya?= Date: Thu, 16 Jan 2014 14:27:22 +0200 Subject: [PATCH] Don't use HTML entities in Welsh translations MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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, "à". --- lang/cy.js | 2 +- test/lang/cy.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/cy.js b/lang/cy.js index 452f1d0c6..b47d7c275 100644 --- a/lang/cy.js +++ b/lang/cy.js @@ -35,7 +35,7 @@ }, relativeTime: { future: "mewn %s", - past: "%s yn ôl", + past: "%s yn àl", s: "ychydig eiliadau", m: "munud", mm: "%d munud", diff --git a/test/lang/cy.js b/test/lang/cy.js index bf7a421c9..362b89be0 100644 --- a/test/lang/cy.js +++ b/test/lang/cy.js @@ -174,7 +174,7 @@ exports["lang:cy"] = { 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(); }, -- 2.47.2