spec/js/translations.js in i18n-js-3.0.0.rc5 vs spec/js/translations.js in i18n-js-3.0.0.rc6

- old
+ new

@@ -1,11 +1,14 @@ +var DEBUG = false; + ;(function(){ var generator = function() { var Translations = {}; Translations.en = { hello: "Hello World!" + , paid: "You were paid %{price}" , booleans: { yes: true, no: false } @@ -100,10 +103,18 @@ , pm: "PM" } }; Translations["de"] = { - hello: "Hallo Welt!" + hello: "Hallo Welt!" + , date: { + day_names: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"] + } + + , time: { + am: "de:AM" + , pm: "de:PM" + } }; Translations["nb"] = { hello: "Hei Verden!" };