mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
Adding missing i18n keys
This commit is contained in:
parent
22865c46c1
commit
9cf14b9be0
5 changed files with 25 additions and 6 deletions
|
@ -21,6 +21,7 @@
|
|||
|
||||
// Settings Schema
|
||||
"title": "Title",
|
||||
"description": "Description",
|
||||
"siteUrl": "Site URL",
|
||||
"tagline": "Tagline",
|
||||
"requireViewInvite": "Require Invite to View",
|
||||
|
@ -56,6 +57,8 @@
|
|||
"fontFamily": "Font Family",
|
||||
"authMethods": "Authentication Methods",
|
||||
"faviconUrl": "Favicon URL",
|
||||
"mailURL": "MailURL",
|
||||
"postsLayout": "Posts Layout",
|
||||
|
||||
// Settings Fieldsets
|
||||
"general": "General",
|
||||
|
|
|
@ -3,5 +3,8 @@
|
|||
"thumbnailUrl": "Thumbnail",
|
||||
"regenerate_thumbnail": "Regenerate 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"
|
||||
}
|
4
packages/telescope-kadira/i18n/en.i18n.json
Normal file
4
packages/telescope-kadira/i18n/en.i18n.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"kadiraAppId": "Kadira App ID",
|
||||
"kadiraAppSecret": "Kadira App Secret"
|
||||
}
|
5
packages/telescope-kadira/package-tap.i18n
Normal file
5
packages/telescope-kadira/package-tap.i18n
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"translation_function_name": "__",
|
||||
"helper_name": "_",
|
||||
"namespace": "project"
|
||||
}
|
|
@ -7,15 +7,15 @@ Package.describe({
|
|||
Package.onUse(function (api) {
|
||||
|
||||
api.use([
|
||||
'templating',
|
||||
'telescope-lib',
|
||||
'telescope-base'
|
||||
'telescope-base',
|
||||
'tap:i18n',
|
||||
'meteorhacks:kadira@2.17.2'
|
||||
], ['client', 'server']);
|
||||
|
||||
api.use([
|
||||
'meteorhacks:kadira@2.17.2'
|
||||
], ['server']);
|
||||
|
||||
api.add_files([
|
||||
'package-tap.i18n',
|
||||
'lib/kadira-settings.js'
|
||||
], ['client', 'server']);
|
||||
|
||||
|
@ -23,4 +23,8 @@ Package.onUse(function (api) {
|
|||
'lib/server/kadira.js'
|
||||
], ['server']);
|
||||
|
||||
api.add_files([
|
||||
"i18n/en.i18n.json"
|
||||
], ["client", "server"]);
|
||||
|
||||
});
|
Loading…
Add table
Reference in a new issue