More Gallery i18n
fix: Add an Album link now appears on Gallery List Albums view
This commit is contained in:
parent
5f28ad91c3
commit
ce4688310e
8 changed files with 178 additions and 5 deletions
|
|
@ -652,6 +652,11 @@ our $I18N = {
|
|||
context => q{Label for number of files in the Album},
|
||||
},
|
||||
|
||||
'template url_addAlbum' => {
|
||||
message => q{Add an Album},
|
||||
lastUpdated => 0,
|
||||
context => q{Label for the link to add an Album},
|
||||
},
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
|
|
@ -123,6 +123,11 @@ our $I18N = {
|
|||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'helpvar isNewAlbum' => {
|
||||
message => 'This variable is true if the user is adding a new Album to the Gallery',
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'helpvar canAddFile' => {
|
||||
message => 'This variable is true if the user can add files to this Album.',
|
||||
lastUpdated => 0,
|
||||
|
|
@ -353,6 +358,90 @@ our $I18N = {
|
|||
lastUpdated => 0,
|
||||
context => 'Label for the number of comments on the file',
|
||||
},
|
||||
|
||||
'template add' => {
|
||||
message => "Add",
|
||||
lastUpdated => 0,
|
||||
context => 'Verb shown in title when adding a new Album',
|
||||
},
|
||||
|
||||
'template edit' => {
|
||||
message => "Edit",
|
||||
lastUpdated => 0,
|
||||
context => 'Verb shown in title when editing an existing Album',
|
||||
},
|
||||
|
||||
'template assetName' => {
|
||||
message => "Album",
|
||||
lastUpdated => 0,
|
||||
context => "The asset's name shown in templates",
|
||||
},
|
||||
|
||||
'editForm title label' => {
|
||||
message => 'Title',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for the "Title" property of the Album asset',
|
||||
},
|
||||
|
||||
'editForm description label' => {
|
||||
message => 'Description',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for the "Description" property of the Album asset',
|
||||
},
|
||||
|
||||
'editForm assetIdThumbnail label' => {
|
||||
message => 'Please select a thumbnail to represent your album.',
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'template upload type' => {
|
||||
message => 'Upload Type',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for different methods of uploading',
|
||||
},
|
||||
|
||||
'template upload single' => {
|
||||
message => 'Single File',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for uploading a single file',
|
||||
},
|
||||
|
||||
'template upload archive' => {
|
||||
message => 'Zip Archive',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for uploading an archive of files',
|
||||
},
|
||||
|
||||
'addArchive file' => {
|
||||
message => 'Archive',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for the file upload control of the Add Archive page',
|
||||
},
|
||||
|
||||
'addArchive keywords' => {
|
||||
message => 'Tags',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for the "keywords" field of the Add Archive page',
|
||||
},
|
||||
|
||||
'addArchive friendsOnly' => {
|
||||
message => 'Friends Only',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for the "friends only" field of the Add Archive page',
|
||||
},
|
||||
|
||||
'template addArchive title' => {
|
||||
message => "Add Zip Archive",
|
||||
lastUpdated => 0,
|
||||
context => 'Title for the Add Archive page',
|
||||
},
|
||||
|
||||
'template addArchive body' => {
|
||||
message => 'This form accepts both "zip" and "tar/gzipped" archives',
|
||||
lastUpdated => 0,
|
||||
context => 'Body text explaining what kinds of archives can be submitted',
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
|
|
@ -81,6 +81,11 @@ our $I18N = {
|
|||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'helpvar isNewPhoto' => {
|
||||
message => 'This variable is true if the user is adding a new Photo',
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
'helpvar commentForm_start' => {
|
||||
message => 'Begin the comment form',
|
||||
lastUpdated => 0,
|
||||
|
|
@ -398,6 +403,66 @@ our $I18N = {
|
|||
context => 'Label for photos that are not friends only',
|
||||
},
|
||||
|
||||
'template assetName' => {
|
||||
message => 'Photo',
|
||||
lastUpdated => 0,
|
||||
context => 'Asset name for templates.',
|
||||
},
|
||||
|
||||
'editForm title label' => {
|
||||
message => 'Title',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "title" property',
|
||||
},
|
||||
|
||||
'editForm synopsis label' => {
|
||||
message => 'Description',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "synopsis" property',
|
||||
},
|
||||
|
||||
'editForm photo new' => {
|
||||
message => 'New Photo',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for upload field when adding a new photo',
|
||||
},
|
||||
|
||||
'editForm photo replace' => {
|
||||
message => 'Replace Photo',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for upload field when replacing an existing photo',
|
||||
},
|
||||
|
||||
'editForm keywords' => {
|
||||
message => 'Tags',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "keywords" field',
|
||||
},
|
||||
|
||||
'editForm location' => {
|
||||
message => 'Location',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "location" field',
|
||||
},
|
||||
|
||||
'editForm friendsOnly' => {
|
||||
message => 'Friends Only',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "friends only" field',
|
||||
},
|
||||
|
||||
'editForm cancel' => {
|
||||
message => 'Cancel',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "cancel" button',
|
||||
},
|
||||
|
||||
'editForm save' => {
|
||||
message => 'Save',
|
||||
lastUpdated => 0,
|
||||
context => 'Label for "save" button',
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue