3 * English (en) translation file.
4 * Based on phpScheduleIt translation file.
5 * This also serves as the base translation file from which to derive
6 * all other translations.
8 * @author Samuel Tran <stran2005@users.sourceforge.net>
9 * @author Brian Wong <bwsource@users.sourceforge.net>
10 * @author Nicolas Peyrussie <peyrouz@users.sourceforge.net>
11 * @author Jeremy Fowler <jfowler06@users.sourceforge.net>
15 * Copyright (C) 2005 - 2007 MailZu
16 * License: GPL, see LICENSE
18 ///////////////////////////////////////////////////////////
20 ///////////////////////////////////////////////////////////
21 // This file contains all of the strings that are used throughout phpScheduleit.
22 // Please save the translated file as '2 letter language code'.lang.php. For example, en.lang.php.
24 // To make phpScheduleIt available in another language, simply translate each
25 // of the following strings into the appropriate one for the language. If there
26 // is no direct translation, please provide the closest translation. Please be sure
27 // to make the proper additions the /config/langs.php file (instructions are in the file).
28 // Also, please add a help translation for your language using en.help.php as a base.
30 // You will probably keep all sprintf (%s) tags in their current place. These tags
31 // are there as a substitution placeholder. Please check the output after translating
32 // to be sure that the sentences make sense.
34 // + Please use single quotes ' around all $strings. If you need to use the ' character, please enter it as \'
35 // + Please use double quotes " around all $email. If you need to use the " character, please enter it as \"
37 // + For all $dates please use the PHP strftime() syntax
38 // http://us2.php.net/manual/en/function.strftime.php
40 // + Non-intuitive parts of this file will be explained with comments. If you
41 // have any questions, please email lqqkout13@users.sourceforge.net
42 // or post questions in the Developers forum on SourceForge
43 // http://sourceforge.net/forum/forum.php?forum_id=331297
44 ///////////////////////////////////////////////////////////
46 ////////////////////////////////
47 /* Do not modify this section */
48 ////////////////////////////////
57 global $days_letter; //
58 global $months_full; //
59 global $months_abbr; //
60 global $days_letter; //
61 /******************************/
63 // Charset for this language
64 // 'iso-8859-1' will work for most languages
65 $charset = 'iso-8859-1';
69 All of these arrays MUST start with Sunday as the first element
70 and go through the seven day week, ending on Saturday
73 $days_full = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
74 // The three letter abbreviation
75 $days_abbr = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
76 // The two letter abbreviation
77 $days_two = array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
78 // The one letter abbreviation
79 $days_letter = array('S', 'M', 'T', 'W', 'T', 'F', 'S');
83 All of these arrays MUST start with January as the first element
84 and go through the twelve months of the year, ending on December
86 // The full month name
87 $months_full = array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
88 // The three letter month name
89 $months_abbr = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
91 // All letters of the alphabet starting with A and ending with Z
92 $letters = array ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
96 All of the date formatting must use the PHP strftime() syntax
97 You can include any text/HTML formatting in the translation
99 // General date formatting used for all date display unless otherwise noted
100 $dates['general_date'] = '%m/%d/%Y';
101 // General datetime formatting used for all datetime display unless otherwise noted
102 // The hour:minute:second will always follow this format
103 $dates['general_datetime'] = '%m/%d/%Y @';
104 $dates['header'] = '%A, %B %d, %Y';
108 All of these strings should be translated from the English value (right side of the equals sign) to the new language.
109 - Please keep the keys (between the [] brackets) as they are. The keys will not always be the same as the value.
110 - Please keep the sprintf formatting (%s) placeholders where they are unless you are sure it needs to be moved.
111 - Please keep the HTML and punctuation as-is unless you know that you want to change it.
113 $strings['hours'] = 'hours';
114 $strings['minutes'] = 'minutes';
115 // The common abbreviation to hint that a user should enter the month as 2 digits
116 $strings['mm'] = 'mm';
117 // The common abbreviation to hint that a user should enter the day as 2 digits
118 $strings['dd'] = 'dd';
119 // The common abbreviation to hint that a user should enter the year as 4 digits
120 $strings['yyyy'] = 'yyyy';
121 $strings['am'] = 'am';
122 $strings['pm'] = 'pm';
124 $strings['Administrator'] = 'Administrator';
125 $strings['Welcome Back'] = 'Welcome Back, %s';
126 $strings['Log Out'] = 'Log Out';
127 $strings['Help'] = 'Help';
129 $strings['Admin Email'] = 'Admin Email';
131 $strings['Default'] = 'Default';
132 $strings['Reset'] = 'Reset';
133 $strings['Edit'] = 'Edit';
134 $strings['Delete'] = 'Delete';
135 $strings['Cancel'] = 'Cancel';
136 $strings['View'] = 'View';
137 $strings['Modify'] = 'Modify';
138 $strings['Save'] = 'Save';
139 $strings['Back'] = 'Back';
140 $strings['BackMessageIndex'] = 'Back to Messages';
141 $strings['ToggleHeaders'] = 'Toggle Headers';
142 $strings['ViewOriginal'] = 'View Original';
143 $strings['Next'] = 'Next';
144 $strings['Close Window'] = 'Close Window';
145 $strings['Search'] = 'Search';
146 $strings['Clear'] = 'Clear';
148 $strings['Days to Show'] = 'Days to Show';
149 $strings['Reservation Offset'] = 'Reservation Offset';
150 $strings['Hidden'] = 'Hidden';
151 $strings['Show Summary'] = 'Show Summary';
152 $strings['Add Schedule'] = 'Add Schedule';
153 $strings['Edit Schedule'] = 'Edit Schedule';
154 $strings['No'] = 'No';
155 $strings['Yes'] = 'Yes';
156 $strings['Name'] = 'Name';
157 $strings['First Name'] = 'First Name';
158 $strings['Last Name'] = 'Last Name';
159 $strings['Resource Name'] = 'Resource Name';
160 $strings['Email'] = 'Email';
161 $strings['Institution'] = 'Institution';
162 $strings['Phone'] = 'Phone';
163 $strings['Password'] = 'Password';
164 $strings['Permissions'] = 'Permissions';
165 $strings['View information about'] = 'View information about %s %s';
166 $strings['Send email to'] = 'Send email to %s %s';
167 $strings['Reset password for'] = 'Reset password for %s %s';
168 $strings['Edit permissions for'] = 'Edit permissions for %s %s';
169 $strings['Position'] = 'Position';
170 $strings['Password (6 char min)'] = 'Password (%s char min)'; // @since 1.1.0
171 $strings['Re-Enter Password'] = 'Re-Enter Password';
173 $strings['Date'] = 'Date';
174 $strings['Email Users'] = 'Email Users';
175 $strings['Subject'] = 'Subject';
176 $strings['Message'] = 'Message';
177 $strings['Send Email'] = 'Send Email';
178 $strings['problem sending email'] = 'Sorry, there was a problem sending your email. Please try again later.';
179 $strings['The email sent successfully.'] = 'The email sent successfully.';
180 $strings['Email address'] = 'Email address';
181 $strings['Please Log In'] = 'Please Log In';
182 $strings['Keep me logged in'] = 'Keep me logged in <br/>(requires cookies)';
183 $strings['Password'] = 'Password';
184 $strings['Log In'] = 'Log In';
185 $strings['Get online help'] = 'Get online help';
186 $strings['Language'] = 'Language';
187 $strings['(Default)'] = '(Default)';
189 $strings['Email Administrator'] = 'Email Administrator';
191 $strings['N/A'] = 'N/A';
192 $strings['Summary'] = 'Summary';
194 $strings['View stats for schedule'] = 'View stats for schedule:';
195 $strings['At A Glance'] = 'At A Glance';
196 $strings['Total Users'] = 'Total Users:';
197 $strings['Total Resources'] = 'Total Resources:';
198 $strings['Total Reservations'] = 'Total Reservations:';
199 $strings['Max Reservation'] = 'Max Reservation:';
200 $strings['Min Reservation'] = 'Min Reservation:';
201 $strings['Avg Reservation'] = 'Avg Reservation:';
202 $strings['Most Active Resource'] = 'Most Active Resource:';
203 $strings['Most Active User'] = 'Most Active User:';
204 $strings['System Stats'] = 'System Stats';
205 $strings['phpScheduleIt version'] = 'phpScheduleIt version:';
206 $strings['Database backend'] = 'Database backend:';
207 $strings['Database name'] = 'Database name:';
208 $strings['PHP version'] = 'PHP version:';
209 $strings['Server OS'] = 'Server OS:';
210 $strings['Server name'] = 'Server name:';
211 $strings['phpScheduleIt root directory'] = 'phpScheduleIt root directory:';
212 $strings['Using permissions'] = 'Using permissions:';
213 $strings['Using logging'] = 'Using logging:';
214 $strings['Log file'] = 'Log file:';
215 $strings['Admin email address'] = 'Admin email address:';
216 $strings['Tech email address'] = 'Tech email address:';
217 $strings['CC email addresses'] = 'CC email addresses:';
218 $strings['Reservation start time'] = 'Reservation start time:';
219 $strings['Reservation end time'] = 'Reservation end time:';
220 $strings['Days shown at a time'] = 'Days shown at a time:';
221 $strings['Reservations'] = 'Reservations';
222 $strings['Return to top'] = 'Return to top';
223 $strings['for'] = 'for';
225 $strings['Per page'] = 'Per page:';
226 $strings['Page'] = 'Page:';
228 $strings['You are not logged in!'] = 'You are not logged in!';
230 $strings['Setup'] = 'Setup';
231 $strings['Invalid User Name/Password.'] = 'Invalid User Name/Password.';
233 $strings['Valid username is required'] = 'Valid username is required';
235 $strings['Close'] = 'Close';
237 $strings['Admin'] = 'Admin';
239 $strings['My Quick Links'] = 'My Quick Links';
241 $strings['Go to first page'] = 'Go to first page';
242 $strings['Go to last page'] = 'Go to last page';
243 $strings['Sort by descending order'] = 'Sort by descending order';
244 $strings['Sort by ascending order'] = 'Sort by ascending order';
245 $strings['Spam Quarantine'] = 'Spam Quarantine';
246 $strings['Message View'] = 'Message View';
247 $strings['Attachment Quarantine'] = 'Attachment Quarantine';
248 $strings['No such content type'] = 'No such content type';
249 $strings['No message was selected'] = 'No message was selected ...';
250 $strings['Unknown action type'] = 'Unknown action type ...';
251 $strings['A problem occured when trying to release the following messages'] = 'A problem occured when trying to release the following messages';
252 $strings['A problem occured when trying to delete the following messages'] = 'A problem occured when trying to delete the following messages';
253 $strings['Please release the following messages'] = 'Please release the following messages';
254 $strings['To'] = 'To';
255 $strings['From'] = 'From';
256 $strings['Subject'] = 'Subject';
257 $strings['Date'] = 'Date';
258 $strings['Score'] = 'Score';
259 $strings['Mail ID'] = 'Mail ID';
260 $strings['Status'] = 'Status';
261 $strings['Print'] = 'Print';
262 $strings['CloseWindow'] = 'Close';
263 $strings['Unknown server type'] = 'Unknown server type ...';
264 $strings['Showing messages'] = "Showing messages %s through %s (%s total)\r\n";
265 $strings['View this message'] = 'View this message';
266 $strings['Message Unavailable'] = 'Message Unavailable';
267 $strings['My Quarantine'] = 'My Quarantine';
268 $strings['Site Quarantine'] = 'Site Quarantine';
269 $strings['Message Processing'] = 'Message Processing';
270 $strings['Quarantine Summary'] = 'Quarantine Summary';
271 $strings['Site Quarantine Summary'] = 'Site Quarantine Summary';
272 $strings['Login'] = 'Login';
273 $strings['spam(s)'] = 'spam(s)';
274 $strings['attachment(s)'] = 'attachment(s)';
275 $strings['pending release request(s)'] = 'pending release request(s)';
276 $strings['virus(es)'] = 'virus(es)';
277 $strings['bad header(s)'] = 'bad header(s)';
278 $strings['You have to type some text'] = 'You have to type some text';
279 $strings['Release'] = 'Release';
280 $strings['Release/Request release'] = 'Release/Request release';
281 $strings['Request release'] = 'Request release';
282 $strings['Delete'] = 'Delete';
283 $strings['Delete All'] = 'Delete All';
284 $strings['Send report and go back'] = 'Send report and go back';
285 $strings['Go back'] = "Go back";
286 $strings['Select All'] = "Select All";
287 $strings['Clear All'] = "Clear All";
288 $strings['Access Denied'] = "Access Denied";
289 $strings['My Pending Requests'] = "My Pending Requests";
290 $strings['Site Pending Requests'] = "Site Pending Requests";
291 $strings['Cancel Request'] = "Cancel Request";
292 $strings['User is not allowed to login'] = "User is not allowed to login";
293 $strings['Authentication successful'] = "Authentication successful";
294 $strings['Authentication failed'] = "Authentication failed";
295 $strings['LDAP connection failed'] = "LDAP/AD connection failed";
296 $strings['Logout successful'] = "Logout successful";
297 $strings['IMAP Authentication: no match'] = "IMAP Authentication: no match";
298 $strings['Search for messages whose:'] = "Search for messages whose:";
299 $strings['Content Type'] = "Content Type";
300 $strings['Clear search results'] = "Clear search results";
301 $strings['contains'] = "contains";
302 $strings['doesn\'t contain'] = "doesn't contain";
303 $strings['equals'] = "equals";
304 $strings['doesn\'t equal'] = "doesn't equal";
305 $strings['All'] = "All";
306 $strings['Spam'] = "Spam";
307 $strings['Banned'] = "Banned";
308 $strings['Virus'] = "Virus";
309 $strings['Viruses'] = "Viruses";
310 $strings['Bad Header'] = "Bad Header";
311 $strings['Bad Headers'] = "Bad Headers";
312 $strings['Pending Requests'] = "Pending Requests";
313 $strings['last'] = "last";
314 $strings['first'] = "first";
315 $strings['previous'] = "previous";
316 $strings['There was an error executing your query'] = 'There was an error executing your query:';
317 $strings['There are no matching records.'] = 'There are no matching records.';
318 $strings['Domain'] = 'Domain';
319 $strings['Total'] = 'Total';
320 $strings['X-Amavis-Alert'] = 'X-Amavis-Alert';
321 $strings['Loading Summary...'] = 'Loading Summary...';
322 $strings['Retrieving Messages...'] = 'Retrieving Messages...';