aboutsummaryrefslogtreecommitdiff
path: root/mod/lightbox/languages/en.php
blob: 4c85d916bc05c7f4440863ed536779a66162d4fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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);