You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

labels.inc 27KB

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