]> git.donarmstrong.com Git - roundcube.git/blob - program/localization/en_US/labels.inc
Imported Upstream version 0.5
[roundcube.git] / program / localization / en_US / labels.inc
1 <?php
2
3 /*
4
5  +-----------------------------------------------------------------------+
6  | language/en_US/labels.inc                                             |
7  |                                                                       |
8  | Language file of the Roundcube Webmail client                         |
9  | Copyright (C) 2005-2010, Roundcube Dev. - Switzerland                 |
10  | Licensed under the GNU GPL                                            |
11  |                                                                       |
12  +-----------------------------------------------------------------------+
13  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
14  +-----------------------------------------------------------------------+
15
16  @version $Id: labels.inc 4362 2010-12-22 18:45:15Z alec $
17
18 */
19
20 $labels = array();
21
22 // login page
23 $labels['welcome']   = 'Welcome to $product';
24 $labels['username']  = 'Username';
25 $labels['password']  = 'Password';
26 $labels['server']    = 'Server';
27 $labels['login']     = 'Login';
28
29 // taskbar
30 $labels['logout']   = 'Logout';
31 $labels['mail']     = 'E-Mail';
32 $labels['settings'] = 'Settings';
33 $labels['addressbook'] = 'Address Book';
34
35 // mailbox names
36 $labels['inbox']  = 'Inbox';
37 $labels['drafts'] = 'Drafts';
38 $labels['sent']   = 'Sent';
39 $labels['trash']  = 'Trash';
40 $labels['junk']   = 'Junk';
41
42 // message listing
43 $labels['subject'] = 'Subject';
44 $labels['from']    = 'Sender';
45 $labels['to']      = 'Recipient';
46 $labels['cc']      = 'Copy';
47 $labels['bcc']     = 'Bcc';
48 $labels['replyto'] = 'Reply-To';
49 $labels['followupto'] = 'Followup-To';
50 $labels['date']    = 'Date';
51 $labels['size']    = 'Size';
52 $labels['priority'] = 'Priority';
53 $labels['organization'] = 'Organization';
54 $labels['readstatus'] = 'Read status';
55
56 $labels['mailboxlist'] = 'Folders';
57 $labels['messagesfromto'] = 'Messages $from to $to of $count';
58 $labels['threadsfromto'] = 'Threads $from to $to of $count';
59 $labels['messagenrof'] = 'Message $nr of $count';
60
61 $labels['copy']     = 'Copy';
62 $labels['move']     = 'Move';
63 $labels['moveto']   = 'Move to...';
64 $labels['download'] = 'Download';
65
66 $labels['filename'] = 'File name';
67 $labels['filesize'] = 'File size';
68
69 $labels['addtoaddressbook'] = 'Add to address book';
70
71 // weekdays short
72 $labels['sun'] = 'Sun';
73 $labels['mon'] = 'Mon';
74 $labels['tue'] = 'Tue';
75 $labels['wed'] = 'Wed';
76 $labels['thu'] = 'Thu';
77 $labels['fri'] = 'Fri';
78 $labels['sat'] = 'Sat';
79
80 // weekdays long
81 $labels['sunday']    = 'Sunday';
82 $labels['monday']    = 'Monday';
83 $labels['tuesday']   = 'Tuesday';
84 $labels['wednesday'] = 'Wednesday';
85 $labels['thursday']  = 'Thursday';
86 $labels['friday']    = 'Friday';
87 $labels['saturday']  = 'Saturday';
88
89 // months short
90 $labels['jan']  = 'Jan';
91 $labels['feb']  = 'Feb';
92 $labels['mar']  = 'Mar';
93 $labels['apr']  = 'Apr';
94 $labels['may']  = 'May';
95 $labels['jun']  = 'Jun';
96 $labels['jul']  = 'Jul';
97 $labels['aug']  = 'Aug';
98 $labels['sep']  = 'Sep';
99 $labels['oct']  = 'Oct';
100 $labels['nov']  = 'Nov';
101 $labels['dec']  = 'Dec';
102
103 // months long
104 $labels['longjan']      = 'January';
105 $labels['longfeb']      = 'February';
106 $labels['longmar']      = 'March';
107 $labels['longapr']      = 'April';
108 $labels['longmay']      = 'May';
109 $labels['longjun']      = 'June';
110 $labels['longjul']      = 'July';
111 $labels['longaug']      = 'August';
112 $labels['longsep']      = 'September';
113 $labels['longoct']      = 'October';
114 $labels['longnov']      = 'November';
115 $labels['longdec']      = 'December';
116
117 $labels['today'] = 'Today';
118
119 // toolbar buttons
120 $labels['checkmail']        = 'Check for new messages';
121 $labels['writenewmessage']  = 'Create a new message';
122 $labels['replytomessage']   = 'Reply to sender';
123 $labels['replytoallmessage'] = 'Reply to list or to sender and all recipients';
124 $labels['replyall']         = 'Reply all';
125 $labels['replylist']        = 'Reply list';
126 $labels['forwardmessage']   = 'Forward the message';
127 $labels['deletemessage']    = 'Delete message';
128 $labels['movemessagetotrash'] = 'Move message to trash';
129 $labels['printmessage']     = 'Print this message';
130 $labels['previousmessage']  = 'Show the previous message';
131 $labels['previousmessages'] = 'Show previous set of messages';
132 $labels['firstmessage']     = 'Show the first message';
133 $labels['firstmessages']    = 'Show first set of messages';
134 $labels['nextmessage']      = 'Show the next message';
135 $labels['nextmessages']     = 'Show next set of messages';
136 $labels['lastmessage']      = 'Show the last message';
137 $labels['lastmessages']     = 'Show last set of messages';
138 $labels['backtolist']       = 'Back to message list';
139 $labels['viewsource']       = 'Show source';
140 $labels['markmessages']     = 'Mark messages';
141 $labels['markread']         = 'As read';
142 $labels['markunread']       = 'As unread';
143 $labels['markflagged']      = 'As flagged';
144 $labels['markunflagged']    = 'As unflagged';
145 $labels['messageactions']   = 'More actions...';
146
147 $labels['select'] = 'Select';
148 $labels['all'] = 'All';
149 $labels['none'] = 'None';
150 $labels['currpage'] = 'Current page';
151 $labels['unread'] = 'Unread';
152 $labels['flagged'] = 'Flagged';
153 $labels['unanswered'] = 'Unanswered';
154 $labels['deleted'] = 'Deleted';
155 $labels['invert'] = 'Invert';
156 $labels['filter'] = 'Filter';
157
158 $labels['list'] = 'List';
159 $labels['threads'] = 'Threads';
160 $labels['expand-all'] = 'Expand All';
161 $labels['expand-unread'] = 'Expand Unread';
162 $labels['collapse-all'] = 'Collapse All';
163 $labels['threaded'] = 'Threaded';
164
165 $labels['autoexpand_threads'] = 'Expand message threads';
166 $labels['do_expand'] = 'all threads';
167 $labels['expand_only_unread'] = 'only with unread messages';
168 $labels['fromto'] = 'Sender/Recipient';
169 $labels['flag'] = 'Flag';
170 $labels['attachment'] = 'Attachment';
171 $labels['nonesort'] = 'None';
172 $labels['sentdate'] = 'Sent date';
173 $labels['arrival'] = 'Arrival date';
174 $labels['asc'] = 'ascending';
175 $labels['desc'] = 'descending';
176 $labels['listcolumns'] = 'List columns';
177 $labels['listsorting'] = 'Sorting column';
178 $labels['listorder'] = 'Sorting order';
179 $labels['listmode'] = 'List view mode';
180
181 $labels['folderactions'] = 'Folder actions...';
182 $labels['compact'] = 'Compact';
183 $labels['empty'] = 'Empty';
184
185 $labels['quota'] = 'Disk usage';
186 $labels['unknown']  = 'unknown';
187 $labels['unlimited']  = 'unlimited';
188
189 $labels['quicksearch']  = 'Quick search';
190 $labels['resetsearch']  = 'Reset search';
191 $labels['searchmod']  = 'Search modifiers';
192 $labels['msgtext']  = 'Entire message';
193
194 $labels['openinextwin'] = 'Open in new window';
195 $labels['emlsave'] = 'Download (.eml)';
196
197 // message compose
198 $labels['compose']        = 'Compose a message';
199 $labels['editasnew']      = 'Edit as new';
200 $labels['savemessage']    = 'Save this draft';
201 $labels['sendmessage']    = 'Send now';
202 $labels['addattachment']  = 'Attach a file';
203 $labels['charset']        = 'Charset';
204 $labels['editortype']     = 'Editor type';
205 $labels['returnreceipt']  = 'Return receipt';
206 $labels['dsn']            = 'Delivery status notification';
207
208 $labels['editidents']    = 'Edit identities';
209 $labels['checkspelling'] = 'Check spelling';
210 $labels['resumeediting'] = 'Resume editing';
211 $labels['revertto']      = 'Revert to';
212
213 $labels['attachments'] = 'Attachments';
214 $labels['upload'] = 'Upload';
215 $labels['close']  = 'Close';
216 $labels['messageoptions']  = 'Message options...';
217
218 $labels['low']     = 'Low';
219 $labels['lowest']  = 'Lowest';
220 $labels['normal']  = 'Normal';
221 $labels['high']    = 'High';
222 $labels['highest'] = 'Highest';
223
224 $labels['nosubject']  = '(no subject)';
225 $labels['showimages'] = 'Display images';
226 $labels['alwaysshow'] = 'Always show images from $sender';
227
228 $labels['htmltoggle'] = 'HTML';
229 $labels['plaintoggle'] = 'Plain text';
230 $labels['savesentmessagein'] = 'Save sent message in';
231 $labels['dontsave'] = 'don\'t save';
232 $labels['maxuploadsize'] = 'Maximum allowed file size is $size';
233
234 $labels['addcc'] = 'Add Cc';
235 $labels['addbcc'] = 'Add Bcc';
236 $labels['addreplyto'] = 'Add Reply-To';
237 $labels['addfollowupto'] = 'Add Followup-To';
238
239 // mdn
240 $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?';
241 $labels['receiptread'] = 'Return Receipt (read)';
242 $labels['yourmessage'] = 'This is a Return Receipt for your message';
243 $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.';
244
245 // address boook
246 $labels['name']      = 'Display name';
247 $labels['firstname'] = 'First name';
248 $labels['surname']   = 'Last name';
249 $labels['email']     = 'E-Mail';
250
251 $labels['addcontact'] = 'Add new contact';
252 $labels['editcontact'] = 'Edit contact';
253 $labels['contacts'] = 'Contacts';
254 $labels['contactproperties'] = 'Contact properties';
255
256 $labels['edit']   = 'Edit';
257 $labels['cancel'] = 'Cancel';
258 $labels['save']   = 'Save';
259 $labels['delete'] = 'Delete';
260 $labels['rename'] = 'Rename';
261
262 $labels['newcontact']     = 'Create new contact card';
263 $labels['deletecontact']  = 'Delete selected contacts';
264 $labels['composeto']      = 'Compose mail to';
265 $labels['contactsfromto'] = 'Contacts $from to $to of $count';
266 $labels['print']          = 'Print';
267 $labels['export']         = 'Export';
268 $labels['exportvcards']   = 'Export contacts in vCard format';
269 $labels['newcontactgroup'] = 'Create new contact group';
270 $labels['groupactions']   = 'Actions for contact groups...';
271
272 $labels['previouspage']   = 'Show previous set';
273 $labels['firstpage']      = 'Show first set';
274 $labels['nextpage']       = 'Show next set';
275 $labels['lastpage']       = 'Show last set';
276
277 $labels['group'] = 'Group';
278 $labels['groups'] = 'Groups';
279 $labels['personaladrbook'] = 'Personal Addresses';
280
281 $labels['import'] = 'Import';
282 $labels['importcontacts'] = 'Import contacts';
283 $labels['importfromfile'] = 'Import from file:';
284 $labels['importreplace'] = 'Replace the entire address book';
285 $labels['importtext'] = 'You can upload contacts from an existing address book.<br/>We currently support importing addresses from the <a href="http://en.wikipedia.org/wiki/VCard">vCard</a> data format.';
286 $labels['done'] = 'Done';
287
288 // settings
289 $labels['settingsfor']  = 'Settings for';
290
291 $labels['preferences']  = 'Preferences';
292 $labels['userpreferences']  = 'User preferences';
293 $labels['editpreferences']  = 'Edit user preferences';
294
295 $labels['identities']  = 'Identities';
296 $labels['manageidentities']  = 'Manage identities for this account';
297 $labels['newidentity']  = 'New identity';
298
299 $labels['newitem']  = 'New item';
300 $labels['edititem']  = 'Edit item';
301
302 $labels['preferhtml'] = 'Display HTML';
303 $labels['defaultcharset'] = 'Default Character Set';
304 $labels['htmlmessage'] = 'HTML Message';
305 $labels['prettydate'] = 'Pretty dates';
306 $labels['setdefault']  = 'Set default';
307 $labels['autodetect']  = 'Auto';
308 $labels['language']  = 'Language';
309 $labels['timezone']  = 'Time zone';
310 $labels['pagesize']  = 'Rows per page';
311 $labels['signature'] = 'Signature';
312 $labels['dstactive']  = 'Daylight saving time';
313 $labels['htmleditor'] = 'Compose HTML messages';
314 $labels['htmlonreply'] = 'on reply to HTML message only';
315 $labels['htmlsignature'] = 'HTML signature';
316 $labels['previewpane'] = 'Show preview pane';
317 $labels['skin'] = 'Interface skin';
318 $labels['logoutclear'] = 'Clear Trash on logout';
319 $labels['logoutcompact'] = 'Compact Inbox on logout';
320 $labels['uisettings'] = 'User Interface';
321 $labels['serversettings'] = 'Server Settings';
322 $labels['mailboxview'] = 'Mailbox View';
323 $labels['mdnrequests'] = 'On request for return receipt';
324 $labels['askuser'] = 'ask me';
325 $labels['autosend'] = 'send receipt';
326 $labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me';
327 $labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore';
328 $labels['ignore'] = 'ignore';
329 $labels['readwhendeleted'] = 'Mark the message as read on delete';
330 $labels['flagfordeletion'] = 'Flag the message for deletion instead of delete';
331 $labels['skipdeleted'] = 'Do not show deleted messages';
332 $labels['deletealways'] = 'If moving messages to Trash fails, delete them';
333 $labels['showremoteimages'] = 'Display remote inline images';
334 $labels['fromknownsenders'] = 'from known senders';
335 $labels['always'] = 'always';
336 $labels['showinlineimages'] = 'Display attached images below the message';
337 $labels['autosavedraft']  = 'Automatically save draft';
338 $labels['everynminutes']  = 'every $n minute(s)';
339 $labels['keepalive']  = 'Check for new messages on';
340 $labels['never']  = 'never';
341 $labels['immediately']  = 'immediately';
342 $labels['messagesdisplaying'] = 'Displaying Messages';
343 $labels['messagescomposition'] = 'Composing Messages';
344 $labels['mimeparamfolding'] = 'Attachment names';
345 $labels['2231folding'] = 'Full RFC 2231 (Thunderbird)';
346 $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)';
347 $labels['2047folding'] = 'Full RFC 2047 (other)';
348 $labels['force7bit'] = 'Use MIME encoding for 8-bit characters';
349 $labels['advancedoptions'] = 'Advanced options';
350 $labels['focusonnewmessage'] = 'Focus browser window on new message';
351 $labels['checkallfolders'] = 'Check all folders for new messages';
352 $labels['displaynext'] = 'After message delete/move display the next message';
353 $labels['mainoptions'] = 'Main Options';
354 $labels['section'] = 'Section';
355 $labels['maintenance'] = 'Maintenance';
356 $labels['newmessage'] = 'New Message';
357 $labels['listoptions'] = 'List Options';
358 $labels['signatureoptions'] = 'Signature Options';
359 $labels['whenreplying'] = 'When replying';
360 $labels['replytopposting'] = 'start new message above original';
361 $labels['replybottomposting'] = 'start new message below original';
362 $labels['replyremovesignature'] = 'When replying remove original signature from message';
363 $labels['autoaddsignature'] = 'Automatically add signature';
364 $labels['newmessageonly'] = 'new message only';
365 $labels['replyandforwardonly'] = 'replies and forwards only';
366 $labels['replysignaturepos'] = 'When replying or forwarding place signature';
367 $labels['belowquote'] = 'below the quote';
368 $labels['abovequote'] = 'above the quote';
369 $labels['insertsignature'] = 'Insert signature';
370 $labels['previewpanemarkread']  = 'Mark previewed messages as read';
371 $labels['afternseconds']  = 'after $n seconds';
372 $labels['reqmdn'] = 'Always request a return receipt';
373 $labels['reqdsn'] = 'Always request a delivery status notification';
374 $labels['replysamefolder'] = 'Place replies in the folder of the message being replied to';
375
376 $labels['folder']  = 'Folder';
377 $labels['folders']  = 'Folders';
378 $labels['foldername']  = 'Folder name';
379 $labels['subscribed']  = 'Subscribed';
380 $labels['messagecount'] = 'Messages';
381 $labels['create']  = 'Create';
382 $labels['createfolder']  = 'Create new folder';
383 $labels['managefolders']  = 'Manage folders';
384 $labels['specialfolders'] = 'Special Folders';
385 $labels['properties'] = 'Properties';
386 $labels['folderproperties'] = 'Folder properties';
387 $labels['parentfolder'] = 'Parent folder';
388 $labels['location'] = 'Location';
389 $labels['info'] = 'Information';
390 $labels['getfoldersize'] = 'Click to get folder size';
391 $labels['changesubscription'] = 'Click to change subscription';
392
393 $labels['sortby'] = 'Sort by';
394 $labels['sortasc']  = 'Sort ascending';
395 $labels['sortdesc'] = 'Sort descending';
396
397 // units
398 $labels['B'] = 'B';
399 $labels['KB'] = 'KB';
400 $labels['MB'] = 'MB';
401 $labels['GB'] = 'GB';
402
403 // character sets
404 $labels['unicode'] = 'Unicode';
405 $labels['english'] = 'English';
406 $labels['westerneuropean'] = 'Western European';
407 $labels['easterneuropean'] = 'Eastern European';
408 $labels['southeasterneuropean'] = 'South-Eastern European';
409 $labels['baltic'] = 'Baltic';
410 $labels['cyrillic'] = 'Cyrillic';
411 $labels['arabic'] = 'Arabic';
412 $labels['greek'] = 'Greek';
413 $labels['hebrew'] = 'Hebrew';
414 $labels['turkish'] = 'Turkish';
415 $labels['nordic'] = 'Nordic';
416 $labels['thai'] = 'Thai';
417 $labels['celtic'] = 'Celtic';
418 $labels['vietnamese'] = 'Vietnamese';
419 $labels['japanese'] = 'Japanese';
420 $labels['korean'] = 'Korean';
421 $labels['chinese'] = 'Chinese';
422
423 ?>