From c538c25d514e19f2418e57f22b42c65e4ccff4c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauritz=20Hils=C3=B8e?= Date: Fri, 9 Mar 2018 23:52:08 +0100 Subject: [PATCH 1/2] Add Danish --- README.md | 1 + five.js | 1 + test.js | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index addc66f6..f2a69ba9 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ five.chinese('financial') // 伍 five.choctaw() // tahlapi five.croatian() // pet five.czech() // pět +five.danish() // fem five.dothraki() // mek five.dovah() // hen five.dutch() // vijf diff --git a/five.js b/five.js index 90507e66..e9e0adb8 100755 --- a/five.js +++ b/five.js @@ -38,6 +38,7 @@ five.choctaw = function() { return 'tahlapi'; }; five.croatian = function() { return 'pet'; }; five.czech = function() { return 'pět'; }; + five.danish = function() { return 'fem'; }; five.dothraki = function() { return 'mek'; }; five.dovah = function() { return 'hen'; }; five.dutch = function() { return 'vijf'; }; diff --git a/test.js b/test.js index 63ee6cc8..63b38205 100755 --- a/test.js +++ b/test.js @@ -28,6 +28,7 @@ assert.equal('伍', five.chinese('financial'), 'A chinese five in financial cont assert.equal('tahlapi', five.choctaw(), 'A choctaw five should be tahlapi'); assert.equal('pet', five.croatian(), 'A croatian five should be pet'); assert.equal('pět', five.czech(), 'A czech five should be pět'); +assert.equal('fem', five.danish(), 'A danish five should be fem'); assert.equal('mek', five.dothraki(), 'A dothraki five should be mek'); assert.equal('hen', five.dovah(), 'A dovah five should be hen'); assert.equal('vijf', five.dutch(), 'A dutch five should be vijf'); From 2072480b8fe80a6d93a0ea619ec31dda1c2b338b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauritz=20Hils=C3=B8e?= Date: Fri, 9 Mar 2018 23:52:12 +0100 Subject: [PATCH 2/2] Add Faroese --- README.md | 1 + five.js | 1 + test.js | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index f2a69ba9..afc2e626 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,7 @@ five.elvish('quenya') // lempë five.elvish('sindarin') // leben five.english() // five five.esperanto() // kvin +five.faroese() // fimm five.estonian() // viis five.finnish() // viisi five.french() // cinq diff --git a/five.js b/five.js index e9e0adb8..924849eb 100755 --- a/five.js +++ b/five.js @@ -52,6 +52,7 @@ five.english = function() { return 'five'; }; five.esperanto = function() { return 'kvin'; }; five.estonian = function() { return 'viis'; }; + five.faroese = function() { return 'fimm'; }; five.finnish = function() { return 'viisi'; }; five.french = function() { return 'cinq'; }; five.german = function() { return 'fünf'; }; diff --git a/test.js b/test.js index 63b38205..fcb507a5 100755 --- a/test.js +++ b/test.js @@ -38,6 +38,7 @@ assert.equal('leben', five.elvish('sindarin'), 'An elvish five in Sindarin shoul assert.equal('five', five.english(), 'A english five should be five'); assert.equal('kvin', five.esperanto(), 'An esperanto five should be kvin'); assert.equal('viis', five.estonian(), 'An estonian five should be viis'); +assert.equal('fimm', five.faroese(), 'A faroese five should be fimm'); assert.equal('viisi', five.finnish(), 'A finnish five should be viisi'); assert.equal('cinq', five.french(), 'A french five should be cinq'); assert.equal('fünf', five.german(), 'A german five should be fünf');