diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 15:04:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 15:04:14 -0300 |
commit | 4a86fa9b2e63b9d6bb0a07333d4c7d59df621270 (patch) | |
tree | 5770bd548bc70a10dbd5c24aee13c3449bf428a9 /mod/lightbox/languages/en.php | |
parent | d7317abf01cc1f5a6e4ee54f25664e51d23217b9 (diff) | |
parent | 66dd3f3f5f14bb0ba6d2c7ef83b5b612d5ee2e30 (diff) | |
download | elgg-4a86fa9b2e63b9d6bb0a07333d4c7d59df621270.tar.gz elgg-4a86fa9b2e63b9d6bb0a07333d4c7d59df621270.tar.bz2 |
Merge commit '66dd3f3f5f14bb0ba6d2c7ef83b5b612d5ee2e30' as 'mod/lightbox'
Diffstat (limited to 'mod/lightbox/languages/en.php')
-rw-r--r-- | mod/lightbox/languages/en.php | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/mod/lightbox/languages/en.php b/mod/lightbox/languages/en.php new file mode 100644 index 000000000..4c85d916b --- /dev/null +++ b/mod/lightbox/languages/en.php @@ -0,0 +1,76 @@ +<?php +/** + * Elgg lightbox plugin language pack + * + * @package ElggLightbox + */ + +$english = array( + + /** + * Menu items and titles + */ + 'lightbox' => "Albums", + 'lightbox:user' => "%s's albums", + 'lightbox:friends' => "Friends' albums", + 'lightbox:all' => "All site albums", + 'lightbox:edit' => "Edit album info", + 'lightbox:more' => "More albums", + 'lightbox:group' => "Group albums", + 'lightbox:num_albums' => "Number of albums to display", + 'lightbox:via' => 'via images', + 'photos:add' => "Create new album", + + 'lightbox:title' => "Title", + 'lightbox:description' => "Description", + 'lightbox:tags' => "Tags", + + 'lightbox:image:upload' => 'Upload and image', + 'lightbox:image:upload:another' => 'Upload another image', + 'lightbox:image:replace' => 'Replace image content (leave blank to not change image)', + 'lightbox:image:title' => 'Title', + 'lightbox:image:description' => 'Description', + + + 'lightbox:widget' => "Albums widget", + 'lightbox:widget:description' => "Showcase your albums", + + 'groups:enablelightbox' => 'Enable group albums', + + 'lightbox:download' => "Download this", + + 'lightbox:delete:confirm' => "Are you sure you want to delete this album and all it's images?", + + 'lightbox:display:number' => "Number of albums to display", + + 'river:create:object:album' => '%s created the album %s', + 'river:comment:object:album' => '%s commented on the album %s', + 'river:comment:object:image' => '%s commented on the image %s', + + 'item:object:image' => 'Images', + 'item:object:album' => 'Image albums', + + /** + * Status messages + */ + + 'lightbox:saved' => "Your album was successfully saved.", + 'lightbox:image:saved' => "Your image was successfully saved.", + + 'lightbox:deleted' => "Your album was successfully deleted.", + 'lightbox:image:deleted' => "This image was successfully deleted.", + + + /** + * Error messages + */ + + 'lightbox:none' => "No albums.", + 'lightbox:image:none' => "No images on this album.", + 'lightbox:save:failed' => "Sorry; we could not save your album.", + 'lightbox:delete:failed' => "Your album could not be deleted at this time.", + 'lightbox:noaccess' => "You do not have permissions to change this album", + 'lightbox:nofile' => "You must select an image", +); + +add_translation("en", $english); |