1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10:
11:
12: 13: 14: 15: 16: 17: 18: 19: 20: 21:
22:
23: class PageLocaleEn_US
24: {
25:
26: const MODULE_NAME = "Page";
27: const MODULE_DESC = "Module for creating pages";
28:
29:
30: const SYSTEM_CONTENT = "Content";
31: const SYSTEM_RELATED = "Related content";
32: const SYSTEM_PERMISSIONS = "Permissions";
33: const SYSTEM_ABOUT = "About";
34:
35:
36: const CONF_EDITOR = "Editor";
37: const CONF_ADMINPAGER = "Number contents to display per page in admin page";
38: const CONF_USERPAGER = "Number contents to display per page in user page";
39: const CONF_DATEFORMAT = "Date format";
40: const CONF_TIMEFORMAT = "time format";
41:
42:
43: const BLOCKS_CONTENTS = "Contents";
44: const BLOCKS_CONTENTS_DSC = "Display contents";
45: const BLOCKS_ID = "ID contents";
46: const BLOCKS_ID_DSC = "Display contents by ID";
47:
48:
49: const NOTIFICATION_GLOBAL = "Global Contents";
50: const NOTIFICATION_GLOBAL_DSC = "Notification options that apply to all contents.";
51: const NOTIFICATION_ITEM = "Content";
52: const NOTIFICATION_ITEM_DSC = "Notification options that apply to the current article.";
53: const NOTIFICATION_GLOBAL_NEWCONTENT = "New content published";
54: const NOTIFICATION_GLOBAL_NEWCONTENT_CAP = "Notify me when any new content is published.";
55: const NOTIFICATION_GLOBAL_NEWCONTENT_DSC = "Receive notification when any new content is published.";
56: const NOTIFICATION_GLOBAL_NEWCONTENT_SBJ = "[{X_SITENAME}] {X_MODULE} auto-notify : New content published";
57:
58:
59: const TOTALCONTENT = "There are <span class=\"red bold\">%s</span> contents in our database";
60: const TOTALDISPLAY = "There are <span class=\"green bold\">%s</span> visible contents";
61: const TOTALNOTDISPLAY = "There are <span class=\"red bold\">%s</span> contents not visible";
62:
63:
64: const A_ADD_CONTENT = "Add a new content";
65: const A_EDIT_CONTENT = "Edit a content";
66: const A_LIST_CONTENT = "List of contents";
67: const E_NO_CONTENT = "There are no contents";
68: const CONTENT_TIPS = "<ul><li>Add, update, copy or delete content</li></ul>";
69: const CONTENT_TEXT_DESC = "Main content of the page";
70: const CONTENT_META_KEYWORDS = "Metas keyword";
71: const CONTENT_META_KEYWORDS_DSC = "Metas keyword separated by a comma";
72: const CONTENT_META_DESCRIPTION = "Metas description";
73: const CONTENT_OPTIONS_DSC = "Choose which information will be displayed";
74: const CONTENT_SELECT_GROUPS = "Select groups that can view this content";
75: const CONTENT_COPY = "[copy]";
76: const E_WEIGHT = "You need a positive integer";
77: const Q_ON_MAIN_PAGE = "Content displayed on the home page";
78: const L_CONTENT_DOPDF = "PDF icon";
79: const L_CONTENT_DOPRINT = "Print icon";
80: const L_CONTENT_DOSOCIAL = "Social networks";
81: const L_CONTENT_DOAUTHOR = "Author";
82: const L_CONTENT_DOMAIL = "Mail icon";
83: const L_CONTENT_DODATE = "Date";
84: const L_CONTENT_DOHITS = "Hits";
85: const L_CONTENT_DORATING = "Rating and vote count";
86: const L_CONTENT_DOCOMS = "Comments";
87: const L_CONTENT_DONCOMS = "Comments count";
88: const L_CONTENT_DOTITLE = "Title";
89: const L_CONTENT_DONOTIFICATIONS = "Notifications";
90:
91:
92: const A_ADD_RELATED = "Add a new related content";
93: const A_EDIT_RELATED = "Edit a related content";
94: const RELATED_TIPS = "<ul><li>This section allows you to create links between pages together</li></ul>";
95: const RELATED_NAME = "Group name";
96: const RELATED_NAVIGATION = "Navigation type";
97: const L_RELATED_NAVIGATION_OPTION1 = "Arrow";
98: const L_RELATED_NAVIGATION_OPTION2 = "Arrow with menu";
99: const L_RELATED_NAVIGATION_OPTION3 = "Arrow with title content";
100: const L_RELATED_NAVIGATION_OPTION4 = "Menu";
101: const L_RELATED_NAVIGATION_OPTION5 = "Title content";
102: const RELATED_MENU = "Menu";
103: const RELATED_MENU_DSC = "The menu is a list with the names of related content";
104: const E_NO_RELATED = "There are no related content";
105: const E_NO_FREE_CONTENT = "There are no free content";
106: const RELATED_MAIN = "Main content";
107:
108:
109: const PERMISSIONS_RATE = "Rate permissions";
110: const PERMISSIONS_VIEW = "View permissions";
111:
112:
113: const TAB_MAIN = "Main";
114: const TAB_METAS = "Metas";
115: const TAB_OPTIONS = "Options";
116: const TAB_PERMISSIONS = "Permissions";
117:
118:
119: const YOUR_VOTE = "Your vote";
120:
121:
122: const E_NOT_EXIST = "This page does not exist in our database";
123:
124:
125: const PRINT_COMES = "This article comes from";
126: const PRINT_URL = "The URL for this page is: ";
127:
128:
129: const CONF_BLOCK_MODE = "Mode";
130: const CONF_BLOCK_L_CONTENT = "Content";
131: const CONF_BLOCK_L_LIST = "List";
132:
133: const CONF_BLOCK_ORDER = "Order by";
134: const CONF_BLOCK_L_RECENT = "Recent";
135: const CONF_BLOCK_L_HITS = "Hits";
136: const CONF_BLOCK_L_RATING = "Rating";
137: const CONF_BLOCK_L_RANDOM = "Random";
138:
139: const CONF_BLOCK_SORT = "Sort";
140: const CONF_BLOCK_L_ASC = "Ascending";
141: const CONF_BLOCK_L_DESC = "Descending";
142:
143: const CONF_BLOCK_CONTENTDISPLAY = "Content to display";
144: const CONF_BLOCK_DISPLAY_NUMBER = "Number to display";
145: const CONF_BLOCK_ALL_CONTENT = "Display all the content";
146: }
147: