This commit is contained in:
Daniel Saewitz
2013-05-12 13:58:50 -04:00
3 changed files with 117 additions and 1 deletions
+1
View File
@@ -2,5 +2,6 @@ i18n = require 'derby-i18n'
i18n.plurals.add 'he', (n) -> n
i18n.plurals.add 'bg', (n) -> n
i18n.plurals.add 'nl', (n) -> n
module.exports = i18n
+1 -1
View File
@@ -12,7 +12,7 @@ app = derby.createApp module
# Translations
i18n = require './i18n'
i18n.localize app,
availableLocales: ['en', 'he', 'bg']
availableLocales: ['en', 'he', 'bg', 'nl']
defaultLocale: 'en'
urlScheme: false
checkHeader: true