Thomas Bruederli
2015-07-31 2965a981b7ec22866fbdf2d567d87e2d068d3617
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
915172 5  | localization/<lang>/labels.inc                                        |
4e17e6 6  |                                                                       |
915172 7  | Localization file of the Roundcube Webmail client                     |
2f8b10 8  | Copyright (C) 2005-2015, The Roundcube Dev Team                       |
7fe381 9  |                                                                       |
T 10  | Licensed under the GNU General Public License version 3 or            |
11  | any later version with exceptions for skins & plugins.                |
12  | See the README file for a full license statement.                     |
4e17e6 13  |                                                                       |
T 14  +-----------------------------------------------------------------------+
49437c 15
TB 16  For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/
4e17e6 17 */
T 18
19 $labels = array();
20
21 // login page
ded2b7 22 $labels['welcome']   = 'Welcome to $product';
4e17e6 23 $labels['username']  = 'Username';
T 24 $labels['password']  = 'Password';
25 $labels['server']    = 'Server';
26 $labels['login']     = 'Login';
27
28 // taskbar
29 $labels['logout']   = 'Logout';
b9fe7a 30 $labels['mail']     = 'Mail';
9510f8 31 $labels['settings'] = 'Settings';
4e17e6 32 $labels['addressbook'] = 'Address Book';
T 33
34 // mailbox names
35 $labels['inbox']  = 'Inbox';
1966c5 36 $labels['drafts'] = 'Drafts';
4e17e6 37 $labels['sent']   = 'Sent';
T 38 $labels['trash']  = 'Trash';
39 $labels['junk']   = 'Junk';
85e65c 40 $labels['show_real_foldernames'] = 'Show real names for special folders';
4e17e6 41
T 42 // message listing
43 $labels['subject'] = 'Subject';
2a76f8 44 $labels['from']    = 'From';
83370e 45 $labels['sender']  = 'Sender';
2a76f8 46 $labels['to']      = 'To';
86130d 47 $labels['cc']      = 'Cc';
4e17e6 48 $labels['bcc']     = 'Bcc';
T 49 $labels['replyto'] = 'Reply-To';
3ee5a7 50 $labels['followupto'] = 'Followup-To';
4e17e6 51 $labels['date']    = 'Date';
T 52 $labels['size']    = 'Size';
53 $labels['priority'] = 'Priority';
54 $labels['organization'] = 'Organization';
4438d6 55 $labels['readstatus'] = 'Read status';
45dc95 56 $labels['listoptions'] = 'List options...';
4e17e6 57
T 58 $labels['mailboxlist'] = 'Folders';
59 $labels['messagesfromto'] = 'Messages $from to $to of $count';
f52c93 60 $labels['threadsfromto'] = 'Threads $from to $to of $count';
4e17e6 61 $labels['messagenrof'] = 'Message $nr of $count';
e193a0 62 $labels['fromtoshort'] = '$from – $to of $count';
4e17e6 63
9b3fdc 64 $labels['copy']     = 'Copy';
A 65 $labels['move']     = 'Move';
56cf50 66 $labels['moveto']   = 'Move to...';
9a0153 67 $labels['copyto']   = 'Copy to...';
56cf50 68 $labels['download'] = 'Download';
bc2c43 69 $labels['open']     = 'Open';
d20e96 70 $labels['showattachment'] = 'Show';
c14b33 71 $labels['showanyway'] = 'Show it anyway';
4e17e6 72
T 73 $labels['filename'] = 'File name';
74 $labels['filesize'] = 'File size';
75
76 $labels['addtoaddressbook'] = 'Add to address book';
77
78 // weekdays short
79 $labels['sun'] = 'Sun';
80 $labels['mon'] = 'Mon';
81 $labels['tue'] = 'Tue';
82 $labels['wed'] = 'Wed';
83 $labels['thu'] = 'Thu';
84 $labels['fri'] = 'Fri';
85 $labels['sat'] = 'Sat';
86
87 // weekdays long
88 $labels['sunday']    = 'Sunday';
89 $labels['monday']    = 'Monday';
90 $labels['tuesday']   = 'Tuesday';
91 $labels['wednesday'] = 'Wednesday';
92 $labels['thursday']  = 'Thursday';
93 $labels['friday']    = 'Friday';
94 $labels['saturday']  = 'Saturday';
95
6051e6 96 // months short
A 97 $labels['jan']    = 'Jan';
98 $labels['feb']    = 'Feb';
99 $labels['mar']    = 'Mar';
100 $labels['apr']    = 'Apr';
101 $labels['may']    = 'May';
102 $labels['jun']    = 'Jun';
103 $labels['jul']     = 'Jul';
104 $labels['aug']    = 'Aug';
105 $labels['sep']    = 'Sep';
106 $labels['oct']    = 'Oct';
107 $labels['nov']    = 'Nov';
108 $labels['dec']    = 'Dec';
109
110 // months long
7479cc 111 $labels['longjan']    = 'January';
A 112 $labels['longfeb']    = 'February';
113 $labels['longmar']    = 'March';
114 $labels['longapr']    = 'April';
115 $labels['longmay']    = 'May';
116 $labels['longjun']    = 'June';
117 $labels['longjul']    = 'July';
118 $labels['longaug']    = 'August';
119 $labels['longsep']    = 'September';
120 $labels['longoct']    = 'October';
121 $labels['longnov']    = 'November';
122 $labels['longdec']    = 'December';
6051e6 123
4e17e6 124 $labels['today'] = 'Today';
T 125
126 // toolbar buttons
e193a0 127 $labels['refresh']          = 'Refresh';
c8c1e0 128 $labels['checkmail']        = 'Check for new messages';
e193a0 129 $labels['compose']          = 'Compose';
4e17e6 130 $labels['writenewmessage']  = 'Create a new message';
e193a0 131 $labels['reply']            = 'Reply';
271046 132 $labels['replytomessage']   = 'Reply to sender';
e25a35 133 $labels['replytoallmessage'] = 'Reply to list or to sender and all recipients';
A 134 $labels['replyall']         = 'Reply all';
135 $labels['replylist']        = 'Reply list';
e193a0 136 $labels['forward']          = 'Forward';
a208a4 137 $labels['forwardinline']    = 'Forward inline';
A 138 $labels['forwardattachment'] = 'Forward as attachment';
20a1b3 139 $labels['forwardmessage']   = 'Forward the message';
eb6842 140 $labels['deletemessage']    = 'Delete message';
T 141 $labels['movemessagetotrash'] = 'Move message to trash';
4e17e6 142 $labels['printmessage']     = 'Print this message';
61938a 143 $labels['previousmessage']  = 'Show previous message';
A 144 $labels['firstmessage']     = 'Show first message';
145 $labels['nextmessage']      = 'Show next message';
146 $labels['lastmessage']      = 'Show last message';
4e17e6 147 $labels['backtolist']       = 'Back to message list';
cd900d 148 $labels['viewsource']       = 'Show source';
e193a0 149 $labels['mark']             = 'Mark';
7f9ea1 150 $labels['markmessages']     = 'Mark messages';
T 151 $labels['markread']         = 'As read';
152 $labels['markunread']       = 'As unread';
4a4d22 153 $labels['markflagged']      = 'As flagged';
A 154 $labels['markunflagged']    = 'As unflagged';
f8e48d 155 $labels['moreactions']      = 'More actions...';
e193a0 156 $labels['more']             = 'More';
T 157 $labels['back']             = 'Back';
158 $labels['options']          = 'Options';
4e17e6 159
170e45 160 $labels['first'] = 'First';
TB 161 $labels['last'] = 'Last';
162 $labels['previous'] = 'Previous';
163 $labels['next'] = 'Next';
4e17e6 164 $labels['select'] = 'Select';
T 165 $labels['all'] = 'All';
166 $labels['none'] = 'None';
fb7ec5 167 $labels['currpage'] = 'Current page';
b4446a 168 $labels['isread'] = 'Read';
4e17e6 169 $labels['unread'] = 'Unread';
5b5f74 170 $labels['flagged'] = 'Flagged';
b4446a 171 $labels['unflagged'] = 'Not Flagged';
5b5f74 172 $labels['unanswered'] = 'Unanswered';
bb7c52 173 $labels['withattachment'] = 'With attachment';
119cd1 174 $labels['deleted'] = 'Deleted';
c8f35a 175 $labels['undeleted'] = 'Not deleted';
b4446a 176 $labels['replied'] = 'Replied';
TB 177 $labels['forwarded'] = 'Forwarded';
528185 178 $labels['invert'] = 'Invert';
3dc19d 179 $labels['filter'] = 'Filter';
f52c93 180 $labels['list'] = 'List';
T 181 $labels['threads'] = 'Threads';
182 $labels['expand-all'] = 'Expand All';
183 $labels['expand-unread'] = 'Expand Unread';
184 $labels['collapse-all'] = 'Collapse All';
185 $labels['threaded'] = 'Threaded';
186
187 $labels['autoexpand_threads'] = 'Expand message threads';
188 $labels['do_expand'] = 'all threads';
189 $labels['expand_only_unread'] = 'only with unread messages';
2a76f8 190 $labels['fromto'] = 'From/To';
f52c93 191 $labels['flag'] = 'Flag';
T 192 $labels['attachment'] = 'Attachment';
193 $labels['nonesort'] = 'None';
194 $labels['sentdate'] = 'Sent date';
195 $labels['arrival'] = 'Arrival date';
196 $labels['asc'] = 'ascending';
197 $labels['desc'] = 'descending';
198 $labels['listcolumns'] = 'List columns';
199 $labels['listsorting'] = 'Sorting column';
200 $labels['listorder'] = 'Sorting order';
201 $labels['listmode'] = 'List view mode';
4e17e6 202
7837b2 203 $labels['folderactions'] = 'Folder actions...';
15a9d1 204 $labels['compact'] = 'Compact';
c9d09b 205 $labels['empty'] = 'Empty';
4f53ab 206 $labels['importmessages'] = 'Import messages';
15a9d1 207
76ffa2 208 $labels['quota'] = 'Disk usage';
4647e1 209 $labels['unknown']  = 'unknown';
T 210 $labels['unlimited']  = 'unlimited';
c5f068 211 $labels['quotatype'] = 'Quota type';
AM 212 $labels['quotatotal'] = 'Limit';
213 $labels['quotaused'] = 'Used';
214 $labels['quotastorage'] = 'Disk space';
215 $labels['quotamessage'] = 'Messages count';
4647e1 216
T 217 $labels['quicksearch']  = 'Quick search';
218 $labels['resetsearch']  = 'Reset search';
30b152 219 $labels['searchmod']  = 'Search modifiers';
A 220 $labels['msgtext']  = 'Entire message';
347ba3 221 $labels['body']  = 'Body';
049428 222 $labels['type'] = 'Type';
ad052b 223 $labels['namex'] = 'Name';
1bbf8c 224 $labels['searchscope'] = 'Scope';
TB 225 $labels['currentfolder'] = 'Current folder';
226 $labels['subfolders'] = 'This and subfolders';
227 $labels['allfolders'] = 'All folders';
76ffa2 228
203ee4 229 $labels['openinextwin'] = 'Open in new window';
921270 230 $labels['emlsave'] = 'Download (.eml)';
a02c77 231 $labels['changeformattext'] = 'Display in plain text format';
AM 232 $labels['changeformathtml'] = 'Display in HTML format';
15a9d1 233
4e17e6 234 // message compose
921270 235 $labels['editasnew']      = 'Edit as new';
edfe79 236 $labels['send']           = 'Send';
e193a0 237 $labels['sendmessage']    = 'Send message';
edfe79 238 $labels['savemessage']    = 'Save as draft';
4e17e6 239 $labels['addattachment']  = 'Attach a file';
a0109c 240 $labels['charset']        = 'Charset';
S 241 $labels['editortype']     = 'Editor type';
242 $labels['returnreceipt']  = 'Return receipt';
f22ea7 243 $labels['dsn']            = 'Delivery status notification';
f2ff37 244 $labels['mailreplyintro'] = 'On $date, $sender wrote:';
13d45d 245 $labels['originalmessage'] = 'Original Message';
b21f8b 246 $labels['selectimage']    = 'Select image';
AM 247 $labels['addimage']       = 'Add image';
c5bfe6 248 $labels['selectmedia']    = 'Select movie';
AM 249 $labels['addmedia']       = 'Add movie';
7b8a0a 250 $labels['encrypt']        = 'Encrypt';
TB 251 $labels['encryptmessage'] = 'Encrypt message';
2965a9 252 $labels['importpubkeys']  = 'Import public keys';
TB 253 $labels['encryptedsendialog'] = 'Sending encrypted message';
254 $labels['keyid']          = 'Key ID';
255 $labels['keylength']      = 'Bits';
256 $labels['keyexpired']     = 'Expired';
257 $labels['keyrevoked']     = 'Revoked';
4e17e6 258
d7f9eb 259 $labels['editidents']    = 'Edit identities';
4deb1e 260 $labels['spellcheck']    = 'Spell';
ed5d29 261 $labels['checkspelling'] = 'Check spelling';
T 262 $labels['resumeediting'] = 'Resume editing';
a0109c 263 $labels['revertto']      = 'Revert to';
ed5d29 264
85e60a 265 $labels['restore'] = 'Restore';
TB 266 $labels['restoremessage'] = 'Restore message?';
61ca79 267 $labels['ignore'] = 'Ignore';
85e60a 268
0b1de8 269 $labels['responses'] = 'Responses';
TB 270 $labels['insertresponse'] = 'Insert a response';
271 $labels['manageresponses'] = 'Manage responses';
1e22cb 272 $labels['newresponse'] = 'Create new response';
AM 273 $labels['addresponse'] = 'Add response';
0ce212 274 $labels['editresponse'] = 'Edit response';
1e22cb 275 $labels['editresponses'] = 'Edit responses';
0b1de8 276 $labels['responsename'] = 'Name';
TB 277 $labels['responsetext'] = 'Response Text';
278
4deb1e 279 $labels['attach'] = 'Attach';
20a1b3 280 $labels['attachments'] = 'Attachments';
4e17e6 281 $labels['upload'] = 'Upload';
9fe9d4 282 $labels['uploadprogress'] = '$percent ($current of $total)';
4e17e6 283 $labels['close']  = 'Close';
98570f 284 $labels['messageoptions']  = 'Message options...';
d0d7f4 285 $labels['togglecomposeoptions'] = 'Toggle composition options';
4e17e6 286
T 287 $labels['low']     = 'Low';
288 $labels['lowest']  = 'Lowest';
289 $labels['normal']  = 'Normal';
290 $labels['high']    = 'High';
291 $labels['highest'] = 'Highest';
292
10a699 293 $labels['nosubject']  = '(no subject)';
4e17e6 294 $labels['showimages'] = 'Display images';
62e43d 295 $labels['alwaysshow'] = 'Always show images from $sender';
46cdbf 296 $labels['isdraft']    = 'This is a draft message.';
765ecb 297 $labels['andnmore']   = '$nr more...';
725704 298 $labels['togglemoreheaders'] = 'Show more message headers';
TB 299 $labels['togglefullheaders'] = 'Toggle raw message headers';
4e17e6 300
0dff24 301 $labels['htmltoggle'] = 'HTML';
S 302 $labels['plaintoggle'] = 'Plain text';
faf876 303 $labels['savesentmessagein'] = 'Save sent message in';
T 304 $labels['dontsave'] = 'don\'t save';
8beee1 305 $labels['maxuploadsize'] = 'Maximum allowed file size is $size';
0dff24 306
7984ec 307 $labels['addcc'] = 'Add Cc';
T 308 $labels['addbcc'] = 'Add Bcc';
309 $labels['addreplyto'] = 'Add Reply-To';
3ee5a7 310 $labels['addfollowupto'] = 'Add Followup-To';
7984ec 311
fba1f5 312 // mdn
T 313 $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?';
314 $labels['receiptread'] = 'Return Receipt (read)';
315 $labels['yourmessage'] = 'This is a Return Receipt for your message';
316 $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.';
4e17e6 317
T 318 // address boook
9caf9c 319 $labels['name']         = 'Display Name';
A 320 $labels['firstname']    = 'First Name';
321 $labels['surname']      = 'Last Name';
322 $labels['middlename']   = 'Middle Name';
0501b6 323 $labels['nameprefix']   = 'Prefix';
T 324 $labels['namesuffix']   = 'Suffix';
325 $labels['nickname']     = 'Nickname';
9caf9c 326 $labels['jobtitle']     = 'Job Title';
0501b6 327 $labels['department']   = 'Department';
T 328 $labels['gender']       = 'Gender';
9caf9c 329 $labels['maidenname']   = 'Maiden Name';
8d0999 330 $labels['email']        = 'Email';
0501b6 331 $labels['phone']        = 'Phone';
T 332 $labels['address']      = 'Address';
333 $labels['street']       = 'Street';
334 $labels['locality']     = 'City';
9caf9c 335 $labels['zipcode']      = 'ZIP Code';
A 336 $labels['region']       = 'State/Province';
0501b6 337 $labels['country']      = 'Country';
T 338 $labels['birthday']     = 'Birthday';
339 $labels['anniversary']  = 'Anniversary';
340 $labels['website']      = 'Website';
341 $labels['instantmessenger'] = 'IM';
342 $labels['notes'] = 'Notes';
343 $labels['male']   = 'male';
344 $labels['female'] = 'female';
345 $labels['manager'] = 'Manager';
346 $labels['assistant'] = 'Assistant';
347 $labels['spouse'] = 'Spouse';
3cacf9 348 $labels['allfields'] = 'All fields';
e9a9f2 349 $labels['search'] = 'Search';
02f762 350 $labels['searchresult'] = 'Search result';
e9a9f2 351 $labels['advsearch'] = 'Advanced Search';
e193a0 352 $labels['advanced'] = 'Advanced';
e9a9f2 353 $labels['other'] = 'Other';
f7af22 354 $labels['printcontact'] = 'Print contact';
4e17e6 355
29aab5 356 $labels['typehome']   = 'Home';
T 357 $labels['typework']   = 'Work';
358 $labels['typeother']  = 'Other';
359 $labels['typemobile']  = 'Mobile';
360 $labels['typemain']  = 'Main';
361 $labels['typehomefax']  = 'Home Fax';
362 $labels['typeworkfax']  = 'Work Fax';
363 $labels['typecar']  = 'Car';
364 $labels['typepager']  = 'Pager';
365 $labels['typevideo']  = 'Video';
366 $labels['typeassistant']  = 'Assistant';
9caf9c 367 $labels['typehomepage']  = 'Home Page';
dbb0c2 368 $labels['typeblog'] = 'Blog';
A 369 $labels['typeprofile'] = 'Profile';
29aab5 370
0501b6 371 $labels['addfield'] = 'Add field...';
1e22cb 372 $labels['addcontact'] = 'Add contact';
4e17e6 373 $labels['editcontact'] = 'Edit contact';
ce06d3 374 $labels['contacts'] = 'Contacts';
cb7d32 375 $labels['contactproperties'] = 'Contact properties';
24e89e 376 $labels['contactnameandorg'] = 'Name and Organization';
fbeb46 377 $labels['personalinfo'] = 'Personal information';
24e89e 378 $labels['contactphoto'] = 'Contact photo';
4e17e6 379
T 380 $labels['edit']   = 'Edit';
381 $labels['cancel'] = 'Cancel';
382 $labels['save']   = 'Save';
383 $labels['delete'] = 'Delete';
6f3d0c 384 $labels['rename'] = 'Rename';
0501b6 385 $labels['addphoto'] = 'Add';
T 386 $labels['replacephoto'] = 'Replace';
71e9ef 387 $labels['uploadphoto'] = 'Upload photo';
4e17e6 388
1e22cb 389 $labels['newcontact']     = 'Create new contact';
4e17e6 390 $labels['deletecontact']  = 'Delete selected contacts';
T 391 $labels['composeto']      = 'Compose mail to';
392 $labels['contactsfromto'] = 'Contacts $from to $to of $count';
a95e0e 393 $labels['print']          = 'Print';
T 394 $labels['export']         = 'Export';
9a6c38 395 $labels['exportall']      = 'Export all';
TB 396 $labels['exportsel']      = 'Export selected';
a6d7a9 397 $labels['exportvcards']   = 'Export contacts in vCard format';
1e22cb 398 $labels['newgroup']       = 'Create new group';
ba0843 399 $labels['addgroup']       = 'Add group';
81a0cf 400 $labels['grouprename']    = 'Rename group';
A 401 $labels['groupdelete']    = 'Delete group';
1ba07f 402 $labels['groupremoveselected'] = 'Remove selected contacts from group';
458af8 403 $labels['uponelevel']     = 'Up one level';
4e17e6 404
61938a 405 $labels['previouspage']   = 'Show previous page';
A 406 $labels['firstpage']      = 'Show first page';
407 $labels['nextpage']       = 'Show next page';
408 $labels['lastpage']       = 'Show last page';
f3704e 409
a61bbb 410 $labels['group'] = 'Group';
f11541 411 $labels['groups'] = 'Groups';
c5a5f9 412 $labels['listgroup'] = 'List group members';
f11541 413 $labels['personaladrbook'] = 'Personal Addresses';
4e17e6 414
f8e48d 415 $labels['searchsave'] = 'Save search';
A 416 $labels['searchdelete'] = 'Delete search';
417
ed132e 418 $labels['import'] = 'Import';
T 419 $labels['importcontacts'] = 'Import contacts';
420 $labels['importfromfile'] = 'Import from file:';
027208 421 $labels['importtarget'] = 'Add contacts to';
ed132e 422 $labels['importreplace'] = 'Replace the entire address book';
027208 423 $labels['importgroups'] = 'Import group assignments';
TB 424 $labels['importgroupsall'] = 'All (create groups if necessary)';
425 $labels['importgroupsexisting'] = 'Only for existing groups';
383379 426 $labels['importdesc'] = '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> or CSV (comma-separated) data format.';
ed132e 427 $labels['done'] = 'Done';
000e4b 428
4e17e6 429 // settings
06c990 430 $labels['settingsfor'] = 'Settings for';
45fa64 431 $labels['about'] = 'About';
06c990 432 $labels['preferences'] = 'Preferences';
A 433 $labels['userpreferences'] = 'User preferences';
434 $labels['editpreferences'] = 'Edit user preferences';
4e17e6 435
06c990 436 $labels['identities'] = 'Identities';
1e22cb 437 $labels['manageidentities'] = 'Manage identities';
AM 438 $labels['newidentity'] = 'Create new identity';
439 $labels['addidentity'] = 'Add identity';
440 $labels['editidentity'] = 'Edit identity';
4e17e6 441
e55ab0 442 $labels['preferhtml'] = 'Display HTML';
A 443 $labels['defaultcharset'] = 'Default Character Set';
444 $labels['htmlmessage'] = 'HTML Message';
be72fb 445 $labels['messagepart'] = 'Part';
830fd2 446 $labels['digitalsig'] = 'Digital Signature';
1cc9e2 447 $labels['dateformat'] = 'Date format';
T 448 $labels['timeformat'] = 'Time format';
e55ab0 449 $labels['prettydate'] = 'Pretty dates';
4e17e6 450 $labels['setdefault']  = 'Set default';
c8ae24 451 $labels['autodetect']  = 'Auto';
4e17e6 452 $labels['language']  = 'Language';
T 453 $labels['timezone']  = 'Time zone';
454 $labels['pagesize']  = 'Rows per page';
1cded8 455 $labels['signature'] = 'Signature';
829e02 456 $labels['dstactive']  = 'Daylight saving time';
271efe 457 $labels['showinextwin'] = 'Open message in a new window';
TB 458 $labels['composeextwin'] = 'Compose in a new window';
19bef0 459 $labels['htmleditor'] = 'Compose HTML messages';
8eefbb 460 $labels['htmlonreply'] = 'on reply to HTML message';
AM 461 $labels['htmlonreplyandforward'] = 'on forward or reply to HTML message';
a0109c 462 $labels['htmlsignature'] = 'HTML signature';
969cb0 463 $labels['showemail'] = 'Show email address with display name';
b19097 464 $labels['previewpane'] = 'Show preview pane';
e6e5c6 465 $labels['skin'] = 'Interface skin';
eaa394 466 $labels['logoutclear'] = 'Clear Trash on logout';
A 467 $labels['logoutcompact'] = 'Compact Inbox on logout';
a901aa 468 $labels['uisettings'] = 'User Interface';
A 469 $labels['serversettings'] = 'Server Settings';
d9b29a 470 $labels['mailboxview'] = 'Mailbox View';
a99968 471 $labels['mdnrequests'] = 'On request for return receipt';
A 472 $labels['askuser'] = 'ask me';
473 $labels['autosend'] = 'send receipt';
6c6bb0 474 $labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me';
A 475 $labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore';
61ca79 476 $labels['ignorerequest'] = 'ignore request';
d9b29a 477 $labels['readwhendeleted'] = 'Mark the message as read on delete';
3044ae 478 $labels['flagfordeletion'] = 'Flag the message for deletion instead of delete';
9b3d7f 479 $labels['skipdeleted'] = 'Do not show deleted messages';
1f9037 480 $labels['deletealways'] = 'If moving messages to Trash fails, delete them';
1b30a7 481 $labels['deletejunk'] = 'Directly delete messages in Junk';
2a4135 482 $labels['showremoteimages'] = 'Display remote inline images';
A 483 $labels['fromknownsenders'] = 'from known senders';
484 $labels['always'] = 'always';
166b61 485 $labels['showinlineimages'] = 'Display attached images below the message';
d656f1 486 $labels['autosavedraft']  = 'Automatically save draft';
5d4ac4 487 $labels['everynminutes']  = 'every $n minute(s)';
aa8359 488 $labels['refreshinterval']  = 'Refresh (check for new messages, etc.)';
d656f1 489 $labels['never']  = 'never';
bc4960 490 $labels['immediately']  = 'immediately';
56cf50 491 $labels['messagesdisplaying'] = 'Displaying Messages';
A 492 $labels['messagescomposition'] = 'Composing Messages';
ffae15 493 $labels['mimeparamfolding'] = 'Attachment names';
A 494 $labels['2231folding'] = 'Full RFC 2231 (Thunderbird)';
495 $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)';
496 $labels['2047folding'] = 'Full RFC 2047 (other)';
47ad83 497 $labels['force7bit'] = 'Use MIME encoding for 8-bit characters';
44b47d 498 $labels['savelocalstorage'] = "Save in the browser's local storage (temporarily)";
56cf50 499 $labels['advancedoptions'] = 'Advanced options';
77043f 500 $labels['toggleadvancedoptions'] = 'Toggle advanced options';
06343d 501 $labels['focusonnewmessage'] = 'Focus browser window on new message';
2fd975 502 $labels['checkallfolders'] = 'Check all folders for new messages';
e54bb7 503 $labels['displaynext'] = 'After message delete/move display the next message';
7e263e 504 $labels['defaultfont'] = 'Default font of HTML message';
9510f8 505 $labels['mainoptions'] = 'Main Options';
06c990 506 $labels['browseroptions'] = 'Browser Options';
9510f8 507 $labels['section'] = 'Section';
A 508 $labels['maintenance'] = 'Maintenance';
509 $labels['newmessage'] = 'New Message';
0207c4 510 $labels['signatureoptions'] = 'Signature Options';
T 511 $labels['whenreplying'] = 'When replying';
651c7b 512 $labels['replyempty'] = 'do not quote the original message';
AM 513 $labels['replytopposting'] = 'start new message above the quote';
514 $labels['replybottomposting'] = 'start new message below the quote';
0207c4 515 $labels['replyremovesignature'] = 'When replying remove original signature from message';
T 516 $labels['autoaddsignature'] = 'Automatically add signature';
517 $labels['newmessageonly'] = 'new message only';
518 $labels['replyandforwardonly'] = 'replies and forwards only';
519 $labels['insertsignature'] = 'Insert signature';
09225a 520 $labels['sigbelow'] = 'Place signature below the quoted message';
bc4960 521 $labels['previewpanemarkread']  = 'Mark previewed messages as read';
T 522 $labels['afternseconds']  = 'after $n seconds';
b3660b 523 $labels['reqmdn'] = 'Always request a return receipt';
f22ea7 524 $labels['reqdsn'] = 'Always request a delivery status notification';
eeb85f 525 $labels['replysamefolder'] = 'Place replies in the folder of the message being replied to';
6459d8 526 $labels['defaultabook'] = 'Default address book';
710b1b 527 $labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion';
f9a967 528 $labels['listnamedisplay'] = 'List contacts as';
1d5779 529 $labels['spellcheckbeforesend'] = 'Check spelling before sending a message';
66df08 530 $labels['spellcheckoptions'] = 'Spellcheck Options';
A 531 $labels['spellcheckignoresyms'] = 'Ignore words with symbols';
532 $labels['spellcheckignorenums'] = 'Ignore words with numbers';
533 $labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized';
534 $labels['addtodict'] = 'Add to dictionary';
06c990 535 $labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links';
3863a9 536 $labels['standardwindows'] = 'Handle popups as standard windows';
c08396 537 $labels['forwardmode'] = 'Messages forwarding';
AM 538 $labels['inline'] = 'inline';
539 $labels['asattachment'] = 'as attachment';
b972b4 540 $labels['replyallmode'] = 'Default action of [Reply all] button';
AM 541 $labels['replyalldefault'] = 'reply to all';
542 $labels['replyalllist'] = 'reply to mailing list only (if found)';
0207c4 543
66233b 544 $labels['folder'] = 'Folder';
AM 545 $labels['folders'] = 'Folders';
546 $labels['foldername'] = 'Folder name';
547 $labels['subscribed'] = 'Subscribed';
a8d23d 548 $labels['messagecount'] = 'Messages';
66233b 549 $labels['create'] = 'Create';
AM 550 $labels['createfolder'] = 'Create new folder';
551 $labels['managefolders'] = 'Manage folders';
56cf50 552 $labels['specialfolders'] = 'Special Folders';
af3c04 553 $labels['properties'] = 'Properties';
A 554 $labels['folderproperties'] = 'Folder properties';
555 $labels['parentfolder'] = 'Parent folder';
556 $labels['location'] = 'Location';
557 $labels['info'] = 'Information';
558 $labels['getfoldersize'] = 'Click to get folder size';
559 $labels['changesubscription'] = 'Click to change subscription';
bbce3e 560 $labels['foldertype'] = 'Folder Type';
66233b 561 $labels['personalfolder'] = 'Private Folder';
AM 562 $labels['otherfolder'] = 'Other User\'s Folder';
563 $labels['sharedfolder'] = 'Public Folder';
564 $labels['findfolders'] = 'Find folders';
e9ecd4 565 $labels['namespace.personal'] = 'Personal';
AM 566 $labels['namespace.other'] = 'Other users';
567 $labels['namespace.shared'] = 'Shared';
4e17e6 568
b076a4 569 $labels['sortby'] = 'Sort by';
T 570 $labels['sortasc']  = 'Sort ascending';
571 $labels['sortdesc'] = 'Sort descending';
7f5a84 572 $labels['undo'] = 'Undo';
4e17e6 573
be9aac 574 $labels['installedplugins'] = 'Installed plugins';
45fa64 575 $labels['plugin'] = 'Plugin';
A 576 $labels['version'] = 'Version';
577 $labels['source'] = 'Source';
578 $labels['license'] = 'License';
ce22f1 579 $labels['support'] = 'Get support';
45fa64 580
56cf50 581 // units
A 582 $labels['B'] = 'B';
583 $labels['KB'] = 'KB';
584 $labels['MB'] = 'MB';
585 $labels['GB'] = 'GB';
586
e55ab0 587 // character sets
A 588 $labels['unicode'] = 'Unicode';
589 $labels['english'] = 'English';
590 $labels['westerneuropean'] = 'Western European';
591 $labels['easterneuropean'] = 'Eastern European';
592 $labels['southeasterneuropean'] = 'South-Eastern European';
593 $labels['baltic'] = 'Baltic';
594 $labels['cyrillic'] = 'Cyrillic';
595 $labels['arabic'] = 'Arabic';
596 $labels['greek'] = 'Greek';
597 $labels['hebrew'] = 'Hebrew';
598 $labels['turkish'] = 'Turkish';
599 $labels['nordic'] = 'Nordic';
600 $labels['thai'] = 'Thai';
601 $labels['celtic'] = 'Celtic';
602 $labels['vietnamese'] = 'Vietnamese';
603 $labels['japanese'] = 'Japanese';
604 $labels['korean'] = 'Korean';
605 $labels['chinese'] = 'Chinese';
a99968 606
170e45 607 // accessibility (voice-only) headings and descriptions
TB 608 $labels['arialabeltopnav'] = 'Window control';
609 $labels['arialabeltasknav'] = 'Application tasks';
610 $labels['arialabeltoolbar'] = 'Application toolbar';
bf3379 611 $labels['arialabelactivetask'] = 'Active task';
170e45 612 $labels['arialabelmessagessearchfilter'] = 'Email listing filter';
458af8 613 $labels['arialabelmailsearchform'] = 'Email message search form';
TB 614 $labels['arialabelcontactsearchform'] = 'Contacts search form';
615 $labels['arialabelmailquicksearchbox'] = 'Email search input';
616 $labels['arialabelquicksearchbox'] = 'Search input';
66233b 617 $labels['arialabelfoldersearchfilter'] = 'Folder listing filter';
AM 618 $labels['arialabelfoldersearchform'] = 'Folder search form';
170e45 619 $labels['arialabelfolderlist'] = 'Email folder selection';
TB 620 $labels['arialabelmessagelist'] = 'Email Messages Listing';
621 $labels['arialabelmailpreviewframe'] = 'Message preview';
622 $labels['arialabelmailboxmenu'] = 'Folder actions menu';
623 $labels['arialabellistselectmenu'] = 'List selection menu';
624 $labels['arialabelthreadselectmenu'] = 'Threads listing menu';
625 $labels['arialabelmessagelistoptions'] = 'Message list display and sorting options';
626 $labels['arialabelmailimportdialog'] = 'Message import dialog';
627 $labels['arialabelmessagenav'] = 'Message navigation';
628 $labels['arialabelmessagebody'] = 'Message Body';
d58c39 629 $labels['arialabelmessageactions'] = 'Message actions';
170e45 630 $labels['arialabelcontactquicksearch'] = 'Contacts search form';
TB 631 $labels['arialabelcontactsearchbox'] = 'Contact search input';
632 $labels['arialabelmessageheaders'] = 'Message headers';
23756f 633 $labels['arialabelforwardingoptions'] = 'Forwarding options';
TB 634 $labels['arialabelreplyalloptions'] = 'Reply-all options';
635 $labels['arialabelmoremessageactions'] = 'More message actions';
636 $labels['arialabelmarkmessagesas'] = 'Mark selected messages as...';
170e45 637 $labels['arialabelcomposeoptions'] = 'Composition options';
TB 638 $labels['arialabelresponsesmenu'] = 'Canned responses menu';
639 $labels['arialabelattachmentuploadform'] = 'Attachment upload form';
d58c39 640 $labels['arialabelattachmentpreview'] = 'Attachment preview';
TB 641 $labels['ariasummarycomposecontacts'] = 'List of contacts and groups to select as recipients';
458af8 642 $labels['arialabelcontactexportoptions'] = 'Contact export options';
TB 643 $labels['arialabelabookgroupoptions'] = 'Addressbook/group options';
77043f 644 $labels['arialabelpreferencesform'] = 'Preferences form';
TB 645 $labels['arialabelidentityeditfrom'] = 'Identity edit form';
646 $labels['arialabelresonseeditfrom'] = 'Response edit form';
66233b 647 $labels['arialabelsearchterms'] = 'Search terms';
458af8 648
TB 649 $labels['helplistnavigation'] = 'List keyboard navigation';
650 $labels['helplistkeyboardnavigation'] = "Arrows up/down: Move row focus/selection.
651 Space: Select focused row.
652 Shift + up/down: Select additional row above/below.
653 Ctrl + Space: Add focused row to selection/remove from selection.";
654 $labels['helplistkeyboardnavmessages'] = "Arrows right/left: expand/collapse message thread (in threads mode only).
655 Enter: Open the selected/focused message.
656 Delete: Move selected messages to Trash.";
657 $labels['helplistkeyboardnavcontacts'] = "Enter: Open the selected/focused contact.";
170e45 658
829e02 659 ?>