| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | /* |
|---|
| 4 | +-----------------------------------------------------------------------+ |
|---|
| 5 | | language/en_US/labels.inc | |
|---|
| 6 | | | |
|---|
| 7 | | Language file of the RoundCube Webmail client | |
|---|
| 8 | | Copyright (C) 2005, RoundQube Dev. - Switzerland | |
|---|
| 9 | | Licensed under the GNU GPL | |
|---|
| 10 | | | |
|---|
| 11 | +-----------------------------------------------------------------------+ |
|---|
| 12 | | Author: Thomas Bruederli <roundcube@gmail.com> | |
|---|
| 13 | | Author: Tobias 'tri' Richter <tobias@datenwerkstatt-richter.de> | |
|---|
| 14 | +-----------------------------------------------------------------------+ |
|---|
| 15 | |
|---|
| 16 | $Id$ |
|---|
| 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'] = 'Personal 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['date'] = 'Date'; |
|---|
| 50 | $labels['size'] = 'Size'; |
|---|
| 51 | $labels['priority'] = 'Priority'; |
|---|
| 52 | $labels['organization'] = 'Organization'; |
|---|
| 53 | |
|---|
| 54 | // aliases |
|---|
| 55 | $labels['reply-to'] = $labels['replyto']; |
|---|
| 56 | |
|---|
| 57 | $labels['mailboxlist'] = 'Folders'; |
|---|
| 58 | $labels['messagesfromto'] = 'Messages $from to $to of $count'; |
|---|
| 59 | $labels['messagenrof'] = 'Message $nr of $count'; |
|---|
| 60 | |
|---|
| 61 | $labels['moveto'] = 'move to...'; |
|---|
| 62 | $labels['download'] = 'download'; |
|---|
| 63 | |
|---|
| 64 | $labels['filename'] = 'File name'; |
|---|
| 65 | $labels['filesize'] = 'File size'; |
|---|
| 66 | |
|---|
| 67 | $labels['preferhtml'] = 'Prefer HTML'; |
|---|
| 68 | $labels['htmlmessage'] = 'HTML Message'; |
|---|
| 69 | $labels['prettydate'] = 'Pretty dates'; |
|---|
| 70 | |
|---|
| 71 | $labels['addtoaddressbook'] = 'Add to address book'; |
|---|
| 72 | |
|---|
| 73 | // weekdays short |
|---|
| 74 | $labels['sun'] = 'Sun'; |
|---|
| 75 | $labels['mon'] = 'Mon'; |
|---|
| 76 | $labels['tue'] = 'Tue'; |
|---|
| 77 | $labels['wed'] = 'Wed'; |
|---|
| 78 | $labels['thu'] = 'Thu'; |
|---|
| 79 | $labels['fri'] = 'Fri'; |
|---|
| 80 | $labels['sat'] = 'Sat'; |
|---|
| 81 | |
|---|
| 82 | // weekdays long |
|---|
| 83 | $labels['sunday'] = 'Sunday'; |
|---|
| 84 | $labels['monday'] = 'Monday'; |
|---|
| 85 | $labels['tuesday'] = 'Tuesday'; |
|---|
| 86 | $labels['wednesday'] = 'Wednesday'; |
|---|
| 87 | $labels['thursday'] = 'Thursday'; |
|---|
| 88 | $labels['friday'] = 'Friday'; |
|---|
| 89 | $labels['saturday'] = 'Saturday'; |
|---|
| 90 | |
|---|
| 91 | $labels['today'] = 'Today'; |
|---|
| 92 | |
|---|
| 93 | // toolbar buttons |
|---|
| 94 | $labels['checkmail'] = 'Check for new messages'; |
|---|
| 95 | $labels['writenewmessage'] = 'Create a new message'; |
|---|
| 96 | $labels['replytomessage'] = 'Reply to the message'; |
|---|
| 97 | $labels['replytoallmessage'] = 'Reply to sender and all recipients'; |
|---|
| 98 | $labels['forwardmessage'] = 'Forward the message'; |
|---|
| 99 | $labels['deletemessage'] = 'Move message to trash'; |
|---|
| 100 | $labels['printmessage'] = 'Print this message'; |
|---|
| 101 | $labels['previousmessages'] = 'Show previous set of messages'; |
|---|
| 102 | $labels['nextmessages'] = 'Show next set of messages'; |
|---|
| 103 | $labels['backtolist'] = 'Back to message list'; |
|---|
| 104 | $labels['viewsource'] = 'Show source'; |
|---|
| 105 | |
|---|
| 106 | $labels['select'] = 'Select'; |
|---|
| 107 | $labels['all'] = 'All'; |
|---|
| 108 | $labels['none'] = 'None'; |
|---|
| 109 | $labels['unread'] = 'Unread'; |
|---|
| 110 | |
|---|
| 111 | $labels['compact'] = 'Compact'; |
|---|
| 112 | $labels['empty'] = 'Empty'; |
|---|
| 113 | $labels['purge'] = 'Purge'; |
|---|
| 114 | |
|---|
| 115 | $labels['quota'] = 'Disk usage'; |
|---|
| 116 | $labels['unknown'] = 'unknown'; |
|---|
| 117 | $labels['unlimited'] = 'unlimited'; |
|---|
| 118 | |
|---|
| 119 | $labels['quicksearch'] = 'Quick search'; |
|---|
| 120 | $labels['resetsearch'] = 'Reset search'; |
|---|
| 121 | |
|---|
| 122 | |
|---|
| 123 | // message compose |
|---|
| 124 | $labels['compose'] = 'Compose a message'; |
|---|
| 125 | $labels['savemessage'] = 'Save this draft'; |
|---|
| 126 | $labels['sendmessage'] = 'Send the message now'; |
|---|
| 127 | $labels['addattachment'] = 'Attach a file'; |
|---|
| 128 | $labels['charset'] = 'Charset'; |
|---|
| 129 | $labels['returnreceipt'] = 'Return receipt'; |
|---|
| 130 | |
|---|
| 131 | $labels['checkspelling'] = 'Check spelling'; |
|---|
| 132 | $labels['resumeediting'] = 'Resume editing'; |
|---|
| 133 | $labels['revertto'] = 'Revert to'; |
|---|
| 134 | |
|---|
| 135 | $labels['attachments'] = 'Attachments'; |
|---|
| 136 | $labels['upload'] = 'Upload'; |
|---|
| 137 | $labels['close'] = 'Close'; |
|---|
| 138 | |
|---|
| 139 | $labels['low'] = 'Low'; |
|---|
| 140 | $labels['lowest'] = 'Lowest'; |
|---|
| 141 | $labels['normal'] = 'Normal'; |
|---|
| 142 | $labels['high'] = 'High'; |
|---|
| 143 | $labels['highest'] = 'Highest'; |
|---|
| 144 | |
|---|
| 145 | $labels['nosubject'] = '(no subject)'; |
|---|
| 146 | $labels['showimages'] = 'Display images'; |
|---|
| 147 | |
|---|
| 148 | |
|---|
| 149 | // address boook |
|---|
| 150 | $labels['name'] = 'Display name'; |
|---|
| 151 | $labels['first_name'] = 'First name'; |
|---|
| 152 | $labels['last_name'] = 'Last name'; |
|---|
| 153 | $labels['email'] = 'E-Mail'; |
|---|
| 154 | $labels['middle_name'] = 'Middle Name'; |
|---|
| 155 | $labels['addon'] = 'Addon'; |
|---|
| 156 | $labels['nickname'] = 'Nickname'; |
|---|
| 157 | $labels['company'] = 'Company'; |
|---|
| 158 | $labels['organisation'] = 'Organisation'; |
|---|
| 159 | $labels['department'] = 'Department'; |
|---|
| 160 | $labels['job_title'] = 'Job Title'; |
|---|
| 161 | $labels['note'] = 'Note'; |
|---|
| 162 | $labels['tel_work1_voice'] = 'Tel Work1 Voice'; |
|---|
| 163 | $labels['tel_work2_voice'] = 'Tel Work2 Voice'; |
|---|
| 164 | $labels['tel_home1_voice'] = 'Tel Home1 Voice'; |
|---|
| 165 | $labels['tel_home2_voice'] = 'Tel Home2 Voice'; |
|---|
| 166 | $labels['tel_cell_voice'] = 'Tel Cell Voice'; |
|---|
| 167 | $labels['tel_car_voice'] = 'Tel Car Voice'; |
|---|
| 168 | $labels['tel_pager_voice'] = 'Tel Pager Voice'; |
|---|
| 169 | $labels['tel_additional'] = 'Tel Additional'; |
|---|
| 170 | $labels['tel_work_fax'] = 'Tel Work Fax'; |
|---|
| 171 | $labels['tel_home_fax'] = 'Tel Home Fax'; |
|---|
| 172 | $labels['tel_isdn'] = 'Tel ISDN'; |
|---|
| 173 | $labels['tel_preferred'] = 'Tel Preferred'; |
|---|
| 174 | $labels['work_street'] = 'Work Street'; |
|---|
| 175 | $labels['work_zip'] = 'Work Zip'; |
|---|
| 176 | $labels['work_city'] = 'Work City'; |
|---|
| 177 | $labels['work_region'] = 'Work Region'; |
|---|
| 178 | $labels['work_county'] = 'Work Country'; |
|---|
| 179 | $labels['home_street'] = 'Home Street'; |
|---|
| 180 | $labels['home_zip'] = 'Home Zip'; |
|---|
| 181 | $labels['home_city'] = 'Home City'; |
|---|
| 182 | $labels['home_region'] = 'Home Region'; |
|---|
| 183 | $labels['home_country'] = 'Home Country'; |
|---|
| 184 | $labels['postal_street'] = 'Postal Street'; |
|---|
| 185 | $labels['postal_zip'] = 'Postal Zip'; |
|---|
| 186 | $labels['postal_city'] = 'Postal City'; |
|---|
| 187 | $labels['postal_region'] = 'Postal Region'; |
|---|
| 188 | $labels['postal_country'] = 'Postal Country'; |
|---|
| 189 | $labels['url_work'] = 'URL Work'; |
|---|
| 190 | $labels['role'] = 'Role'; |
|---|
| 191 | $labels['birthday'] = 'Birthday'; |
|---|
| 192 | $labels['rev'] = 'Revision'; |
|---|
| 193 | $labels['lang'] = 'Language'; |
|---|
| 194 | |
|---|
| 195 | $labels['addcontact'] = 'Add new contact'; |
|---|
| 196 | $labels['editcontact'] = 'Edit contact'; |
|---|
| 197 | |
|---|
| 198 | $labels['edit'] = 'Edit'; |
|---|
| 199 | $labels['cancel'] = 'Cancel'; |
|---|
| 200 | $labels['save'] = 'Save'; |
|---|
| 201 | $labels['delete'] = 'Delete'; |
|---|
| 202 | |
|---|
| 203 | $labels['newcontact'] = 'Create new contact card'; |
|---|
| 204 | $labels['deletecontact'] = 'Delete selected contacts'; |
|---|
| 205 | $labels['composeto'] = 'Compose mail to'; |
|---|
| 206 | $labels['contactsfromto'] = 'Contacts $from to $to of $count'; |
|---|
| 207 | $labels['print'] = 'Print'; |
|---|
| 208 | $labels['export'] = 'Export'; |
|---|
| 209 | |
|---|
| 210 | $labels['previouspage'] = 'Show previous set'; |
|---|
| 211 | $labels['nextpage'] = 'Show next set'; |
|---|
| 212 | |
|---|
| 213 | |
|---|
| 214 | // LDAP search |
|---|
| 215 | $labels['ldapsearch'] = 'LDAP directory search'; |
|---|
| 216 | |
|---|
| 217 | $labels['ldappublicsearchname'] = 'Contact name'; |
|---|
| 218 | $labels['ldappublicsearchtype'] = 'Exact match?'; |
|---|
| 219 | $labels['ldappublicserverselect'] = 'Select servers'; |
|---|
| 220 | $labels['ldappublicsearchfield'] = 'Search on'; |
|---|
| 221 | $labels['ldappublicsearchform'] = 'Look for a contact'; |
|---|
| 222 | $labels['ldappublicsearch'] = 'Search'; |
|---|
| 223 | |
|---|
| 224 | |
|---|
| 225 | // settings |
|---|
| 226 | $labels['settingsfor'] = 'Settings for'; |
|---|
| 227 | |
|---|
| 228 | $labels['preferences'] = 'Preferences'; |
|---|
| 229 | $labels['userpreferences'] = 'User preferences'; |
|---|
| 230 | $labels['editpreferences'] = 'Edit user preferences'; |
|---|
| 231 | |
|---|
| 232 | $labels['identities'] = 'Identities'; |
|---|
| 233 | $labels['manageidentities'] = 'Manage identities for this account'; |
|---|
| 234 | $labels['newidentity'] = 'New identity'; |
|---|
| 235 | |
|---|
| 236 | $labels['newitem'] = 'New item'; |
|---|
| 237 | $labels['edititem'] = 'Edit item'; |
|---|
| 238 | |
|---|
| 239 | $labels['setdefault'] = 'Set default'; |
|---|
| 240 | $labels['language'] = 'Language'; |
|---|
| 241 | $labels['timezone'] = 'Time zone'; |
|---|
| 242 | $labels['pagesize'] = 'Rows per page'; |
|---|
| 243 | $labels['signature'] = 'Signature'; |
|---|
| 244 | $labels['dstactive'] = 'Daylight savings'; |
|---|
| 245 | |
|---|
| 246 | $labels['folder'] = 'Folder'; |
|---|
| 247 | $labels['folders'] = 'Folders'; |
|---|
| 248 | $labels['foldername'] = 'Folder name'; |
|---|
| 249 | $labels['subscribed'] = 'Subscribed'; |
|---|
| 250 | $labels['create'] = 'Create'; |
|---|
| 251 | $labels['createfolder'] = 'Create new folder'; |
|---|
| 252 | $labels['rename'] = 'Rename'; |
|---|
| 253 | $labels['renamefolder'] = 'Rename folder'; |
|---|
| 254 | $labels['deletefolder'] = 'Delete folder'; |
|---|
| 255 | $labels['managefolders'] = 'Manage folders'; |
|---|
| 256 | |
|---|
| 257 | $labels['sortby'] = 'Sort by'; |
|---|
| 258 | $labels['sortasc'] = 'Sort ascending'; |
|---|
| 259 | $labels['sortdesc'] = 'Sort descending'; |
|---|
| 260 | |
|---|
| 261 | ?> |
|---|