Adding missing i18n keys

This commit is contained in:
Sacha Greif 2015-02-23 09:08:50 +01:00
parent 22865c46c1
commit 9cf14b9be0
5 changed files with 25 additions and 6 deletions

View file

@ -21,6 +21,7 @@
// Settings Schema // Settings Schema
"title": "Title", "title": "Title",
"description": "Description",
"siteUrl": "Site URL", "siteUrl": "Site URL",
"tagline": "Tagline", "tagline": "Tagline",
"requireViewInvite": "Require Invite to View", "requireViewInvite": "Require Invite to View",
@ -56,6 +57,8 @@
"fontFamily": "Font Family", "fontFamily": "Font Family",
"authMethods": "Authentication Methods", "authMethods": "Authentication Methods",
"faviconUrl": "Favicon URL", "faviconUrl": "Favicon URL",
"mailURL": "MailURL",
"postsLayout": "Posts Layout",
// Settings Fieldsets // Settings Fieldsets
"general": "General", "general": "General",

View file

@ -3,5 +3,8 @@
"thumbnailUrl": "Thumbnail", "thumbnailUrl": "Thumbnail",
"regenerate_thumbnail": "Regenerate Thumbnail", "regenerate_thumbnail": "Regenerate Thumbnail",
"clear_thumbnail": "Clear Thumbnail", "clear_thumbnail": "Clear Thumbnail",
"please_fill_in_embedly_key": "Please fill in your Embedly API key to enable thumbnails." "please_fill_in_embedly_key": "Please fill in your Embedly API key to enable thumbnails.",
"embedlyKey": "Embedly API Key",
"thumbnailWidth": "Thumbnail Width",
"thumbnailHeight": "Thumbnail Height"
} }

View file

@ -0,0 +1,4 @@
{
"kadiraAppId": "Kadira App ID",
"kadiraAppSecret": "Kadira App Secret"
}

View file

@ -0,0 +1,5 @@
{
"translation_function_name": "__",
"helper_name": "_",
"namespace": "project"
}

View file

@ -7,15 +7,15 @@ Package.describe({
Package.onUse(function (api) { Package.onUse(function (api) {
api.use([ api.use([
'templating',
'telescope-lib', 'telescope-lib',
'telescope-base' 'telescope-base',
'tap:i18n',
'meteorhacks:kadira@2.17.2'
], ['client', 'server']); ], ['client', 'server']);
api.use([
'meteorhacks:kadira@2.17.2'
], ['server']);
api.add_files([ api.add_files([
'package-tap.i18n',
'lib/kadira-settings.js' 'lib/kadira-settings.js'
], ['client', 'server']); ], ['client', 'server']);
@ -23,4 +23,8 @@ Package.onUse(function (api) {
'lib/server/kadira.js' 'lib/server/kadira.js'
], ['server']); ], ['server']);
api.add_files([
"i18n/en.i18n.json"
], ["client", "server"]);
}); });