1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10:
11:
12: 13: 14: 15: 16: 17: 18: 19: 20:
21:
22: class AvatarsLocaleEn_US
23: {
24:
25: const ALERT_INFO_MAXFILE = "Max uploaded files size: %s [KB]";
26: const ALERT_INFO_MIMETYPES = "Authorized mime types: %s";
27: const ALERT_INFO_PIXELS = "Max Pixels: %s x %s (width x height)";
28: const ALERT_WARNING_OLD = "Your old avatar will be deleted!";
29: const AVAILABLE_AVATARS = "Available avatars";
30: const CONF_ALLOWUPLOAD = "Allow custom avatar upload?";
31: const CONF_IMAGEFILESIZE = "Avatar image max filesize (byte)";
32: const CONF_IMAGEHEIGHT = "Avatar image max height (pixel)";
33: const CONF_IMAGEWIDTH = "Avatar image max width (pixel)";
34: const CONF_PAGER = "Number of avatars to display per page";
35: const CONF_POSTSREQUIRED = "Minimum posts required";
36: const CONF_POSTSREQUIREDDSC = "Enter the minimum number of posts required to upload a custom avatar";
37: const CUSTOM = "Custom avatars";
38: const CUSTOM_TIPS = "<ul><li>Add, update or delete custom avatars</li></ul>";
39: const LIST_OF_AVATARS = "List of avatars";
40: const MODULE_DESC = "Extension for managing avatars";
41: const MODULE_NAME = "Avatars";
42: const NBDISPLAY_C = "There are %s visible custom avatars";
43: const NBDISPLAY_S = "There are %s visible system avatars";
44: const NBNOTDISPLAY_C = "There are %s custom avatars not visible";
45: const NBNOTDISPLAY_S = "There are %s system avatars not visible";
46: const NBTOTAL_C = "There are %s custom avatars in our database";
47: const NBTOTAL_S = "There are %s system avatars in our database";
48: const SYSTEM = "System avatars";
49: const SYSTEM_TIPS = "<ul><li>Add, update or delete system avatars</li></ul>";
50: const USERFORM = "User avatar form";
51: const USERS = "Users using this avatar";
52: }
53: