PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
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.

434 lines
27 KiB

The work of two nights causes a long changelog. Here we go: fetchmail.php: - IMPORTANT: fixed typo in database column name. If you have created the fetchmail database already, you have to rename the "pool_time" column to "poll_time" - fixed adding of new entries - don't display status fields (last poll date and result) in edit mode - validate and quote the GET and POST variables - show POSTed data again if invalid values were entered (data to display in the edit form is passed to fetchmail.tpl in $formvars) - check results of database operations and display error/success messages - check owner of target mailbox on all operations - changed password handling: empty means no change (instead of sending "******" around) - reworked and moved around large code portions - added some TODO notes fetchmail.tpl: - use data from $formvars in edit mode instead of parsing the full array - moved "new entry" below the table - replaced delete button with delete links - Note: the boolean fields need testing with PgSQL. Especially test if they are displayed as active correctly in list and edit mode! *.lang: - added several fetchmail-related strings, more to follow - added $PALANG['please_keep_this_as_last_entry'] which always has to be the last entry in the language files. This solves the problem that language-check.sh mixes up the string order when adding strings at the end of the language files. - added vim:ft=php git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@163 a1433add-5e2c-0410-b055-b7f2511e0802
18 years ago
The work of two nights causes a long changelog. Here we go: fetchmail.php: - IMPORTANT: fixed typo in database column name. If you have created the fetchmail database already, you have to rename the "pool_time" column to "poll_time" - fixed adding of new entries - don't display status fields (last poll date and result) in edit mode - validate and quote the GET and POST variables - show POSTed data again if invalid values were entered (data to display in the edit form is passed to fetchmail.tpl in $formvars) - check results of database operations and display error/success messages - check owner of target mailbox on all operations - changed password handling: empty means no change (instead of sending "******" around) - reworked and moved around large code portions - added some TODO notes fetchmail.tpl: - use data from $formvars in edit mode instead of parsing the full array - moved "new entry" below the table - replaced delete button with delete links - Note: the boolean fields need testing with PgSQL. Especially test if they are displayed as active correctly in list and edit mode! *.lang: - added several fetchmail-related strings, more to follow - added $PALANG['please_keep_this_as_last_entry'] which always has to be the last entry in the language files. This solves the problem that language-check.sh mixes up the string order when adding strings at the end of the language files. - added vim:ft=php git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@163 a1433add-5e2c-0410-b055-b7f2511e0802
18 years ago
  1. <?php
  2. # $Id$
  3. //
  4. // Language file Catalan
  5. // by Jaume
  6. //
  7. $PALANG['YES'] = 'SI';
  8. $PALANG['NO'] = 'NO';
  9. $PALANG['edit'] = 'editar';
  10. $PALANG['del'] = 'esborrar';
  11. $PALANG['exit'] = 'Exit'; # XXX
  12. $PALANG['cancel'] = 'Cancel'; # XXX
  13. $PALANG['save'] = 'Save changes'; # XXX
  14. $PALANG['confirm'] = '¿Segur que vols esborrar-lo?\n';
  15. $PALANG['confirm_domain'] = 'Estas segur que vols borrar tots els registres d\'aquest domini? Això no podrà ser desfet!\n';
  16. $PALANG['check_update'] = 'Check for update';
  17. $PALANG['invalid_parameter'] = 'Invalid parameter!'; # XXX
  18. $PALANG['show'] = 'Show:'; # XXX
  19. $PALANG['all'] = 'All'; # XXX
  20. $PALANG['pFooter_logged_as'] = 'Logged as %s'; # XXX
  21. $PALANG['pLogin_welcome'] = 'Login d\'administrador per l\'administració de dominis.';
  22. $PALANG['pLogin_username'] = 'Usuari (e-mail)';
  23. $PALANG['pLogin_password'] = 'Contrasenya';
  24. $PALANG['pLogin_button'] = 'Usuari';
  25. $PALANG['pLogin_failed'] = 'Your email address or password are not correct.'; # XXX
  26. $PALANG['pLogin_login_users'] = 'Login per anar a la secció d\'usuaris.';
  27. $PALANG['pMenu_main'] = 'Main'; # XXX
  28. $PALANG['pMenu_overview'] = 'Resum';
  29. $PALANG['pMenu_create_alias'] = 'Afegir àlies';
  30. $PALANG['pMenu_create_alias_domain'] = 'Add Alias Domain'; # XXX
  31. $PALANG['pMenu_create_mailbox'] = 'Afegir bústia';
  32. $PALANG['pMenu_fetchmail'] = 'Fetch Email'; # XXX
  33. $PALANG['pMenu_sendmail'] = 'Enviar e-mail';
  34. $PALANG['pMenu_password'] = 'Contrasenya';
  35. $PALANG['pMenu_viewlog'] = 'Veure Logs';
  36. $PALANG['pMenu_logout'] = 'Sortir';
  37. $PALANG['pMain_welcome'] = 'Benvingut al Postfix Admin!';
  38. $PALANG['pMain_overview'] = 'Llistat dels seus àlies i bústies. Pot editar-los / borrar-los des d\'aquí.';
  39. $PALANG['pMain_create_alias'] = 'Creació d\'un nou àlies pel seu domini.';
  40. $PALANG['pMain_create_mailbox'] = 'Creació d\'una nova bústia pel seu domini.';
  41. $PALANG['pMain_sendmail'] = 'Enviar un e-mail a una de les bústies acabades de crear.';
  42. $PALANG['pMain_password'] = 'Canviar la contrasenya per la seva compta d\'administració.';
  43. $PALANG['pMain_viewlog'] = 'Veure Logs.';
  44. $PALANG['pMain_logout'] = 'Sortir.';
  45. $PALANG['pOverview_disabled'] = 'Disabled'; # XXX
  46. $PALANG['pOverview_unlimited'] = 'Unlimited'; # XXX
  47. $PALANG['pOverview_title'] = ':: Defined Domains'; # XXX
  48. $PALANG['pOverview_up_arrow'] = 'Go Top'; # XXX
  49. $PALANG['pOverview_right_arrow'] = 'Next Page'; # XXX
  50. $PALANG['pOverview_left_arrow'] = 'Previous Page'; # XXX
  51. $PALANG['pOverview_alias_domain_title'] = ':: Domain Aliases'; # XXX
  52. $PALANG['pOverview_alias_title'] = ':: Alias'; # XXX
  53. $PALANG['pOverview_mailbox_title'] = ':: Mailboxes'; # XXX
  54. $PALANG['pOverview_button'] = 'Ves';
  55. $PALANG['pOverview_welcome'] = 'Resum de ';
  56. $PALANG['pOverview_alias_domain_aliases'] = 'Alias Domains'; # XXX
  57. $PALANG['pOverview_alias_domain_target'] = '%s is an Alias Domain for:'; # XXX # obsolete
  58. $PALANG['pOverview_alias_alias_count'] = 'Àlies';
  59. $PALANG['pOverview_alias_mailbox_count'] = 'Bústies';
  60. $PALANG['pOverview_alias_address'] = 'De';
  61. $PALANG['pOverview_alias_goto'] = 'Destí';
  62. $PALANG['pOverview_alias_modified'] = 'Última modificació';
  63. $PALANG['pOverview_alias_domain_modified'] = 'Last Modified'; # XXX
  64. $PALANG['pOverview_alias_active'] = 'Active'; # XXX
  65. $PALANG['pOverview_alias_domain_active'] = 'Active'; # XXX
  66. $PALANG['pOverview_alias_edit'] = 'Alias'; # XXX
  67. $PALANG['and_x_more'] = '[and %s more...]'; # XXX
  68. $PALANG['pOverview_mailbox_username'] = 'E-mail'; # XXX
  69. $PALANG['pOverview_mailbox_name'] = 'Nom';
  70. $PALANG['pOverview_mailbox_quota'] = 'Quota (MB)'; # XXX
  71. $PALANG['pOverview_mailbox_modified'] = 'Última modificació';
  72. $PALANG['pOverview_mailbox_active'] = 'Actiu';
  73. $PALANG['pOverview_vacation_edit'] = 'VACATION IS ON'; # XXX
  74. $PALANG['pOverview_vacation_option'] = 'Set Vacation'; # XXX
  75. $PALANG['pOverview_get_domain'] = 'Domini';
  76. $PALANG['pOverview_get_aliases'] = 'Àlies';
  77. $PALANG['pOverview_get_alias_domains'] = 'Domain Aliases'; # XXX
  78. $PALANG['pOverview_get_mailboxes'] = 'Bústies';
  79. $PALANG['pOverview_get_quota'] = 'Quota de bústia (MB)';
  80. $PALANG['pOverview_get_modified'] = 'Última Modificació';
  81. $PALANG['pDelete_delete_error'] = 'Imposible borrar el registre ';
  82. $PALANG['pDelete_delete_success'] = '%s deleted.'; # XXX
  83. $PALANG['pDelete_postdelete_error'] = '<span class="error_msg">Unable to remove mailbox '; # XXX
  84. $PALANG['pDelete_domain_error'] = 'Aquest domini no et pertany ';
  85. $PALANG['pDelete_domain_alias_error'] = '<span class="error_msg">This domain is not yours '; # XXX
  86. $PALANG['pDelete_alias_error'] = 'Unable to delete alias '; # XXX
  87. $PALANG['pCreate_alias_domain_welcome'] = 'Mirror addresses of one of your domains to another.'; # XXX
  88. $PALANG['pCreate_alias_domain_alias'] = 'Alias Domain'; # XXX
  89. $PALANG['pCreate_alias_domain_alias_text'] = 'The domain that mails come in for.'; # XXX
  90. $PALANG['pCreate_alias_domain_target'] = 'Target Domain'; # XXX
  91. $PALANG['pCreate_alias_domain_target_text'] = 'The domain where mails should go to.'; # XXX
  92. $PALANG['pCreate_alias_domain_active'] = 'Active'; # XXX
  93. $PALANG['pCreate_alias_domain_button'] = 'Add Alias Domain'; # XXX
  94. $PALANG['pCreate_alias_domain_error1'] = 'You are not allowed to create the chosen configuration.'; # XXX
  95. $PALANG['pCreate_alias_domain_error2'] = 'The chosen configuration is invalid, please choose a different one!'; # XXX
  96. $PALANG['pCreate_alias_domain_error3'] = 'Database insert failed.'; # XXX
  97. $PALANG['pCreate_alias_domain_error4'] = 'All domains are already aliased.'; # XXX
  98. $PALANG['pCreate_alias_domain_success'] = 'The domain alias has been added to the alias domain table!'; # XXX
  99. $PALANG['pCreate_alias_welcome'] = 'Crear un nou àlies pel domini.';
  100. $PALANG['pCreate_alias_address'] = 'Àlies';
  101. $PALANG['pCreate_alias_address_text_error1'] = '<br /><span class="error_msg">L\'àlies no és vàlid!</span>';
  102. $PALANG['pCreate_alias_address_text_error2'] = '<br /><span class="error_msg">Aquesta adreça ja existeix, escull una altra de diferent, si us plau!</span>';
  103. $PALANG['pCreate_alias_address_text_error3'] = '<br /><span class="error_msg">Has arribat al límit de creació d\'àlies!</span>';
  104. $PALANG['pCreate_alias_goto'] = 'Destí';
  105. $PALANG['pCreate_alias_active'] = 'Active'; # XXX
  106. $PALANG['pCreate_alias_button'] = 'Afegir àlies';
  107. $PALANG['pCreate_alias_goto_text'] = 'A on ha de ser enviat l\'e-mail.';
  108. $PALANG['pCreate_alias_goto_text_error'] = 'A on ha de ser enviat l\'e-mail.<br /><span class="error_msg">El destí no és vàlid!</span>';
  109. $PALANG['pCreate_alias_result_error'] = '<span class="error_msg">¡No és posible afegir l\'àlies a la taula d\'àlies!</span>';
  110. $PALANG['pCreate_alias_result_success'] = 'L\'àlies ha estat creat correctament!';
  111. $PALANG['pCreate_alias_catchall_text'] = 'Per crear un àlies general usi "*" com a àlies.<br />Per una redirecció de domini a domini, usi "*@domain.tld" com a Destí.';
  112. $PALANG['pEdit_alias_welcome'] = 'Editi un àlies pel seu domini.'; # XXX Text change to: 'Edit forwarding settings'
  113. $PALANG['pEdit_alias_help'] = 'Una entrada per línia.'; # XXX Text change to: 'Accepts multiple targets, one entry per line.'
  114. $PALANG['pEdit_alias_address'] = 'Àlies';
  115. $PALANG['pEdit_alias_address_error'] = '<span class="error_msg">Imposible de localizar l\'àlies!</span>';
  116. $PALANG['pEdit_alias_goto'] = 'Destí';
  117. $PALANG['pEdit_alias_active'] = 'Active'; # XXX
  118. $PALANG['pEdit_alias_goto_text_error1'] = '<span class="error_msg">No has introduït res al destí</span>';
  119. $PALANG['pEdit_alias_goto_text_error2'] = '<span class="error_msg">L\'adreça d\'e-mail introduida no és vàlida: ';
  120. $PALANG['pEdit_alias_domain_error'] = '<span class="error_msg">Aquest domini no et pertany: ';
  121. $PALANG['pEdit_alias_domain_result_error'] = '<span class="error_msg">Unable to modify the alias domain!</span>'; # XXX
  122. $PALANG['pEdit_alias_forward_and_store'] = 'Deliver to the local mailbox.'; # XXX
  123. $PALANG['pEdit_alias_forward_only'] = 'Forward to given email addresses only.'; # XXX
  124. $PALANG['pEdit_alias_button'] = 'Editar àlies'; # XXX text no longer used
  125. $PALANG['pEdit_alias_result_error'] = '<span class="error_msg">Imposible modificar l\'àlies!</span>';
  126. $PALANG['pCreate_mailbox_welcome'] = 'Crear una nova bústia pel seu domini.';
  127. $PALANG['pCreate_mailbox_username'] = 'Usuari';
  128. $PALANG['pCreate_mailbox_username_text_error1'] = '<br /><span class="error_msg">L\'e-mail no és vàlido!</span>';
  129. $PALANG['pCreate_mailbox_username_text_error2'] = '<br /><span class="error_msg">Aquest e-mail ja existeix, escull un de diferente si us plau!</span>';
  130. $PALANG['pCreate_mailbox_username_text_error3'] = '<br /><span class="error_msg">Has arribat al límit de creació de bústies!</span>';
  131. $PALANG['pCreate_mailbox_password'] = 'Contrasenya';
  132. $PALANG['pCreate_mailbox_password2'] = 'Contrasenya (repetir)';
  133. $PALANG['pCreate_mailbox_password_text'] = 'Contrasenya per a POP3/IMAP';
  134. $PALANG['pCreate_mailbox_password_text_error'] = 'Contrasenya per a POP3/IMAP<br /><span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
  135. $PALANG['pCreate_mailbox_name'] = 'Nom';
  136. $PALANG['pCreate_mailbox_name_text'] = 'Nom complet';
  137. $PALANG['pCreate_mailbox_quota'] = 'Quota'; # XXX
  138. $PALANG['pCreate_mailbox_quota_text'] = 'MB';
  139. $PALANG['pCreate_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La quota especificada és massa alta!</span>';
  140. $PALANG['pCreate_mailbox_active'] = 'Actiu';
  141. $PALANG['pCreate_mailbox_mail'] = 'Crear bústia';
  142. $PALANG['pCreate_mailbox_button'] = 'Afegir bústia';
  143. $PALANG['pCreate_mailbox_result_error'] = '<span class="error_msg">Imposible afegir una bústia a la taula de bústies!</span>';
  144. $PALANG['pCreate_mailbox_result_success'] = 'La bústia ha estat afegida a la taula de bústies!';
  145. $PALANG['pCreate_mailbox_result_succes_nosubfolders'] = 'The mailbox has been added to the mailbox table, but none (or only some) of the predefined sub-folders could be created'; # XXX
  146. $PALANG['pEdit_mailbox_welcome'] = 'Editar una bústia pel seu domini.';
  147. $PALANG['pEdit_mailbox_username'] = 'Usuari';
  148. $PALANG['pEdit_mailbox_username_error'] = '<span class="error_msg">Imposible localitzar la bústia!</span>';
  149. $PALANG['pEdit_mailbox_password'] = 'Nova contrasenya';
  150. $PALANG['pEdit_mailbox_password2'] = 'Nova contrasenya (repetiu)';
  151. $PALANG['pEdit_mailbox_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen!</span>';
  152. $PALANG['pEdit_mailbox_name'] = 'Nom';
  153. $PALANG['pEdit_mailbox_name_text'] = 'Full name'; # XXX
  154. $PALANG['pEdit_mailbox_quota'] = 'Quota'; # XXX
  155. $PALANG['pEdit_mailbox_quota_text'] = 'MB';
  156. $PALANG['pEdit_mailbox_quota_text_error'] = 'MB<br /><span class="error_msg">La quota especificada és massa alta!</span>';
  157. $PALANG['pEdit_mailbox_domain_error'] = '<span class="error_msg">Aquest domini no et pertany: ';
  158. $PALANG['pEdit_mailbox_button'] = 'Editar bústia'; # XXX text no longer used
  159. $PALANG['pEdit_mailbox_result_error'] = '<span class="error_msg">Imposible canviar la contrasenya!</span>';
  160. $PALANG['pPassword_welcome'] = 'Canvia la teva contrasenya de login.';
  161. $PALANG['pPassword_admin'] = 'Login';
  162. $PALANG['pPassword_admin_text_error'] = '<span class="error_msg">El login suministrat no coincideix amb cap bústia!</span>';
  163. $PALANG['pPassword_password_current'] = 'Contrasenya actual';
  164. $PALANG['pPassword_password_current_text_error'] = '<span class="error_msg">No ha introduït la contrasenya actual!</span>';
  165. $PALANG['pPassword_password'] = 'Nova contrasenya';
  166. $PALANG['pPassword_password2'] = 'Nova contrasenya (repetiu)';
  167. $PALANG['pPassword_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
  168. $PALANG['pPassword_button'] = 'Canviar la contrasenya';
  169. $PALANG['pPassword_result_error'] = '<span class="error_msg">Imposible canviar la contrasenya!</span>';
  170. $PALANG['pPassword_result_success'] = 'La seva contrasenya ha estat canviada!';
  171. $PALANG['pEdit_vacation_set'] = 'Change / Set away message'; # XXX
  172. $PALANG['pEdit_vacation_remove'] = 'Remove away message'; # XXX
  173. $PALANG['pVacation_result_error'] = '<span class="error_msg">Unable to update auto response settings!</span>'; # XXX
  174. $PALANG['pVacation_result_removed'] = 'Auto response has been removed!'; # XXX
  175. $PALANG['pVacation_result_added'] = 'Auto response has been enabled!'; # XXX
  176. $PALANG['pViewlog_welcome'] = 'Veure les últimes 10 accions per ';
  177. $PALANG['pViewlog_timestamp'] = 'Data/Hora';
  178. $PALANG['pViewlog_username'] = 'Administrador';
  179. $PALANG['pViewlog_domain'] = 'Domini';
  180. $PALANG['pViewlog_action'] = 'Acció';
  181. $PALANG['pViewlog_data'] = 'Dades';
  182. $PALANG['pViewlog_action_create_domain'] = 'create domain'; # XXX
  183. $PALANG['pViewlog_action_delete_domain'] = 'delete domain'; # XXX
  184. $PALANG['pViewlog_action_edit_domain'] = 'edit domain'; # XXX
  185. $PALANG['pViewlog_action_create_mailbox'] = 'create mailbox'; # XXX
  186. $PALANG['pViewlog_action_delete_mailbox'] = 'delete mailbox'; # XXX
  187. $PALANG['pViewlog_action_edit_mailbox'] = 'edit mailbox'; # XXX
  188. $PALANG['pViewlog_action_edit_mailbox_state'] = 'edit mailbox active'; # XXX
  189. $PALANG['pViewlog_action_create_alias'] = 'create alias'; # XXX
  190. $PALANG['pViewlog_action_create_alias_domain'] = 'create alias domain'; # XXX
  191. $PALANG['pViewlog_action_delete_alias'] = 'delete alias'; # XXX
  192. $PALANG['pViewlog_action_delete_alias_domain'] = 'delete alias domain'; # XXX
  193. $PALANG['pViewlog_action_edit_alias'] = 'edit alias'; # XXX
  194. $PALANG['pViewlog_action_edit_alias_state'] = 'edit alias active'; # XXX
  195. $PALANG['pViewlog_action_edit_alias_domain_state'] = 'edit alias domain active'; # XXX
  196. $PALANG['pViewlog_action_edit_password'] = 'change password'; # XXX
  197. $PALANG['pViewlog_button'] = 'Ves';
  198. $PALANG['pViewlog_result_error'] = '<span class="error_msg">Imposible trobar els logs!</span>';
  199. $PALANG['pSendmail_welcome'] = 'Enviar un e-mail.';
  200. $PALANG['pSendmail_admin'] = 'De';
  201. $PALANG['pSendmail_to'] = 'Destí';
  202. $PALANG['pSendmail_to_text_error'] = '<span class="error_msg">La direcció de destí està buida o és una direcció invàlida!</span>';
  203. $PALANG['pSendmail_subject'] = 'Assumpte';
  204. $PALANG['pSendmail_subject_text'] = 'Benvingut';
  205. $PALANG['pSendmail_body'] = 'Cos';
  206. $PALANG['pSendmail_button'] = 'Enviar missatge';
  207. $PALANG['pSendmail_result_error'] = '<span class="error_msg">Imposible crear la bústia!</span>'; # XXX text change - new: <span class="error_msg">Unable to send email!</span>
  208. $PALANG['pSendmail_result_success'] = 'La bústia ha estat creada!'; # XXX text change - new: Email sent!
  209. $PALANG['pAdminMenu_list_admin'] = 'Llistat d\'administradors';
  210. $PALANG['pAdminMenu_list_domain'] = 'Llistat de dominis';
  211. $PALANG['pAdminMenu_list_virtual'] = 'Llista de direccions virtuals';
  212. $PALANG['pAdminMenu_viewlog'] = 'Veure Logs';
  213. $PALANG['pAdminMenu_backup'] = 'Backup';
  214. $PALANG['pAdminMenu_create_domain_admins'] = 'Administradors de domini';
  215. $PALANG['pAdminMenu_create_admin'] = 'Nou administrador';
  216. $PALANG['pAdminMenu_create_domain'] = 'Nou dominio';
  217. $PALANG['pAdminMenu_create_alias'] = 'Afegir àlies';
  218. $PALANG['pAdminMenu_create_mailbox'] = 'Afegir bústia';
  219. $PALANG['pAdminList_admin_domain'] = 'Domini';
  220. $PALANG['pAdminList_admin_username'] = 'Administrador';
  221. $PALANG['pAdminList_admin_count'] = 'Dominis';
  222. $PALANG['pAdminList_admin_modified'] = 'Última Modificació';
  223. $PALANG['pAdminList_admin_active'] = 'Actiu';
  224. $PALANG['pAdminList_domain_domain'] = 'Domini';
  225. $PALANG['pAdminList_domain_description'] = 'Descripció';
  226. $PALANG['pAdminList_domain_aliases'] = 'Àlies';
  227. $PALANG['pAdminList_domain_mailboxes'] = 'Bústies';
  228. $PALANG['pAdminList_domain_maxquota'] = 'Quota (MB)'; # XXX # XXX no longer used
  229. $PALANG['pAdminList_domain_quota'] = 'Domain quota (MB)'; # XXX
  230. $PALANG['pAdminList_domain_transport'] = 'Transport'; # XXX
  231. $PALANG['pAdminList_domain_backupmx'] = 'Backup MX'; # XXX
  232. $PALANG['pAdminList_domain_modified'] = 'Última Modificació';
  233. $PALANG['pAdminList_domain_active'] = 'Actiu';
  234. $PALANG['pAdminList_virtual_button'] = 'Ves';
  235. $PALANG['pAdminList_virtual_welcome'] = 'Resum de ';
  236. $PALANG['pAdminList_virtual_alias_alias_count'] = 'Àlies';
  237. $PALANG['pAdminList_virtual_alias_mailbox_count'] = 'Bústies';
  238. $PALANG['pAdminList_virtual_alias_address'] = 'De';
  239. $PALANG['pAdminList_virtual_alias_goto'] = 'Destí';
  240. $PALANG['pAdminList_virtual_alias_modified'] = 'Última Modificació';
  241. $PALANG['pAdminList_virtual_mailbox_username'] = 'E-mail';
  242. $PALANG['pAdminList_virtual_mailbox_name'] = 'Nom';
  243. $PALANG['pAdminList_virtual_mailbox_quota'] = 'Quota (MB)';
  244. $PALANG['pAdminList_virtual_mailbox_modified'] = 'Última Modificació';
  245. $PALANG['pAdminList_virtual_mailbox_active'] = 'Actiu';
  246. $PALANG['pAdminCreate_domain_welcome'] = 'Afegir nou domini';
  247. $PALANG['pAdminCreate_domain_domain'] = 'Domini';
  248. $PALANG['pAdminCreate_domain_domain_text_error'] = '<span class="error_msg">El domini ja existeix!</span>';
  249. $PALANG['pAdminCreate_domain_domain_text_error2'] = '<span class="error_msg">The domain is invalid!</span>'; # XXX
  250. $PALANG['pAdminCreate_domain_description'] = 'Descripció';
  251. $PALANG['pAdminCreate_domain_aliases'] = 'Àlies';
  252. $PALANG['pAdminCreate_domain_aliases_text'] = '-1 = ilimitat | 0 = deshabilitar';
  253. $PALANG['pAdminCreate_domain_mailboxes'] = 'Bústies';
  254. $PALANG['pAdminCreate_domain_mailboxes_text'] = '-1 = ilimitat | 0 = deshabilitar';
  255. $PALANG['pAdminCreate_domain_maxquota'] = 'Quota màxima';
  256. $PALANG['pAdminCreate_domain_maxquota_text'] = 'MB<br /> -1 = ilimitat | 0 = deshabilitar';
  257. $PALANG['pAdminCreate_domain_transport'] = 'Transport';
  258. $PALANG['pAdminCreate_domain_transport_text'] = 'Define transport';
  259. $PALANG['pAdminCreate_domain_defaultaliases'] = 'Afegir àlies per defecte';
  260. $PALANG['pAdminCreate_domain_defaultaliases_text'] = ''; # XXX
  261. $PALANG['pAdminCreate_domain_backupmx'] = 'Mail server is backup MX';
  262. $PALANG['pAdminCreate_domain_button'] = 'Afegir domini';
  263. $PALANG['pAdminCreate_domain_result_error'] = '<span class="error_msg">Imposible afegir el domini!</span>';
  264. $PALANG['pAdminCreate_domain_result_success'] = 'El domini ha estat afegit!';
  265. $PALANG['pAdminDelete_admin_error'] = 'Unable to delete admin!'; # XXX
  266. $PALANG['pAdminDelete_domain_error'] = 'Unable to remove domain!'; # XXX
  267. $PALANG['pAdminDelete_alias_domain_error'] = 'Unable to remove domain alias!'; # XXX
  268. $PALANG['pAdminEdit_domain_welcome'] = 'Editar un domini';
  269. $PALANG['pAdminEdit_domain_domain'] = 'Domini';
  270. $PALANG['pAdminEdit_domain_description'] = 'Descripció';
  271. $PALANG['pAdminEdit_domain_aliases'] = 'Àlies';
  272. $PALANG['pAdminEdit_domain_aliases_text'] = '-1 = ilimitat | 0 = deshabilitar';
  273. $PALANG['pAdminEdit_domain_mailboxes'] = 'Bústies';
  274. $PALANG['pAdminEdit_domain_mailboxes_text'] = '-1 = ilimitat | 0 = deshabilitar';
  275. $PALANG['pAdminEdit_domain_maxquota'] = 'Quota màxima';
  276. $PALANG['pAdminEdit_domain_maxquota_text'] = 'MB<br /> -1 = ilimitat | 0 = deshabilitar';
  277. $PALANG['pAdminEdit_domain_quota'] = 'Domain Quota'; # XXX
  278. $PALANG['pAdminEdit_domain_transport'] = 'Transport'; # XXX
  279. $PALANG['pAdminEdit_domain_transport_text'] = 'Define transport'; # XXX
  280. $PALANG['pAdminEdit_domain_backupmx'] = 'Mail server is backup MX'; # XXX
  281. $PALANG['pAdminEdit_domain_active'] = 'Actiu';
  282. $PALANG['pAdminEdit_domain_button'] = 'Editar domini'; # XXX text no longer used
  283. $PALANG['pAdminEdit_domain_result_error'] = '<span class="error_msg">Imposible modificar el domini!</span>';
  284. $PALANG['pAdminCreate_admin_welcome'] = 'Afegir un nou administrador de domini';
  285. $PALANG['pAdminCreate_admin_username'] = 'Administrador';
  286. $PALANG['pAdminCreate_admin_username_text'] = 'E-mail';
  287. $PALANG['pAdminCreate_admin_username_text_error1'] = 'E-mail<br /><span class="error_msg">Administrador no es un e-mail vàlid!</span>';
  288. $PALANG['pAdminCreate_admin_username_text_error2'] = 'E-mail<br /><span class="error_msg">L\'administrador ja existeix o no es vàlid!</span>';
  289. $PALANG['pAdminCreate_admin_password'] = 'Contrasenya';
  290. $PALANG['pAdminCreate_admin_password2'] = 'Contrasenya (repetiu)';
  291. $PALANG['pAdminCreate_admin_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
  292. $PALANG['pAdminCreate_admin_button'] = 'Afegir administrador';
  293. $PALANG['pAdminCreate_admin_result_error'] = '<span class="error_msg">Imposible afegir l\'administrador!</span>';
  294. $PALANG['pAdminCreate_admin_result_success'] = 'L\'administrador ha estat afegit!';
  295. $PALANG['pAdminCreate_admin_address'] = 'Domini';
  296. $PALANG['pAdminEdit_admin_welcome'] = 'Editar un administrador de domini';
  297. $PALANG['pAdminEdit_admin_username'] = 'Administrador';
  298. $PALANG['pAdminEdit_admin_password'] = 'Contrasenya';
  299. $PALANG['pAdminEdit_admin_password2'] = 'Contrasenya (repetiu)';
  300. $PALANG['pAdminEdit_admin_password_text_error'] = '<span class="error_msg">Les contrasenyes introduides no coincideixen<br />o estan en blanc!</span>';
  301. $PALANG['pAdminEdit_admin_active'] = 'Actiu';
  302. $PALANG['pAdminEdit_admin_super_admin'] = 'Super admin'; # XXX
  303. $PALANG['pAdminEdit_admin_button'] = 'Editar administrador'; # XXX text no longer used
  304. $PALANG['pAdminEdit_admin_result_error'] = '<span class="error_msg">Imposible modificar l\'administrador!</span>';
  305. $PALANG['pAdminEdit_admin_result_success'] = 'L\'administrador ha estat modificat!';
  306. $PALANG['pUsersLogin_welcome'] = 'Login d\'usuaris per canviar la contrasenya i els àlies.';
  307. $PALANG['pUsersLogin_username'] = 'Login (e-mail)';
  308. $PALANG['pUsersLogin_password'] = 'Contrasenya';
  309. $PALANG['pUsersLogin_button'] = 'Login';
  310. $PALANG['pUsersLogin_username_incorrect'] = 'El seu login no és correcte. Asseguri\'s d\'haver introduït la seva adreça d\'e-mail com a login!';
  311. $PALANG['pUsersLogin_password_incorrect'] = 'La seva contrasenya no és correcta!';
  312. $PALANG['pUsersMenu_vacation'] = 'Resposta automàtica';
  313. $PALANG['pUsersMenu_edit_alias'] = 'Canviar la redirecció';
  314. $PALANG['pUsersMenu_password'] = 'Canviar la contrasenya';
  315. $PALANG['pUsersMain_vacation'] = 'Configuri un missatge de "Fora de la feina" o una resposta automàtica pel seu correu.';
  316. $PALANG['pUsersMain_vacationSet'] = $PALANG['pUsersMenu_vacation'] . ' is ON, click \'' . $PALANG['pUsersMenu_vacation'] . '\' to ' . $PALANG['edit'] . '/remove'; # XXX
  317. $PALANG['pUsersMain_edit_alias'] = 'Canvïi la seva redirecció de correu.';
  318. $PALANG['pUsersMain_password'] = 'Canvïi la seva contrasenya.';
  319. $PALANG['pUsersVacation_welcome'] = 'Resposta automàtica.';
  320. $PALANG['pUsersVacation_welcome_text'] = 'Ja disposa d\'una resposta automàtica configurada!';
  321. $PALANG['pUsersVacation_subject'] = 'Assumpte';
  322. $PALANG['pUsersVacation_subject_text'] = 'Fora de la feina';
  323. $PALANG['pUsersVacation_body'] = 'Cos'; # XXX text changed to 'Message'
  324. $PALANG['pUsersVacation_body_text'] = <<<EOM
  325. Seré fora des del <date> fins al <date>.
  326. Per assumptes urgents pot contactar amb mi a <contact person>.
  327. EOM;
  328. $PALANG['pUsersVacation_button_away'] = 'Absent';
  329. $PALANG['pUsersVacation_button_back'] = 'De tornada';
  330. $PALANG['pUsersVacation_result_error'] = '<span class="error_msg">Imposible actualitzar la configuració de la seva resposta automàtica!</span>';
  331. $PALANG['pUsersVacation_result_success'] = 'La seva resposta automàtica ha estat esborrada!';
  332. $PALANG['pUsersVacation_activefrom'] = 'Active from'; # XXX
  333. $PALANG['pUsersVacation_activeuntil'] = 'Active until'; # XXX
  334. $PALANG['pCreate_dbLog_createmailbox'] = 'create mailbox'; # XXX
  335. $PALANG['pCreate_dbLog_createalias'] = 'create alias'; # XXX
  336. $PALANG['pDelete_dbLog_deletealias'] = 'delete alias'; # XXX
  337. $PALANG['pDelete_dbLog_deletemailbox'] = 'delete mailbox'; # XXX
  338. $PALANG['pEdit_dbLog_editactive'] = 'change active state'; # XXX
  339. $PALANG['pEdit_dbLog_editalias'] = 'edit alias'; # XXX
  340. $PALANG['pEdit_dbLog_editmailbox'] = 'edit mailbox'; # XXX
  341. $PALANG['pSearch'] = 'search'; # XXX
  342. $PALANG['pSearch_welcome'] = 'Searching for: '; # XXX
  343. $PALANG['pReturn_to'] = 'Return to'; # XXX
  344. $PALANG['pBroadcast_title'] = 'Send broadcast message'; # XXX
  345. $PALANG['pBroadcast_from'] = 'From'; # XXX
  346. $PALANG['pBroadcast_name'] = 'Your name'; # XXX
  347. $PALANG['pBroadcast_subject'] = 'Subject'; # XXX
  348. $PALANG['pBroadcast_message'] = 'Message'; # XXX
  349. $PALANG['pBroadcast_send'] = 'Send message'; # XXX
  350. $PALANG['pBroadcast_success'] = 'Your broadcast message was sent.'; # XXX
  351. $PALANG['pAdminMenu_broadcast_message'] = 'Broadcast message'; # XXX
  352. $PALANG['pBroadcast_error_empty'] = 'The fields Name, Subject and Message should\'t be empty !'; # XXX
  353. $PALANG['pStatus_undeliverable'] = 'maybe UNDELIVERABLE '; # XXX
  354. $PALANG['pStatus_custom'] = 'Delivers to '; # XXX
  355. $PALANG['pStatus_popimap'] = 'POP/IMAP '; # XXX
  356. $PALANG['pPasswordTooShort'] = "Password is too short - requires %s characters"; # XXX
  357. $PALANG['pInvalidDomainRegex'] = "Invalid domain name %s, fails regexp check"; # XXX
  358. $PALANG['pInvalidDomainDNS'] = "Invalid domain %s, and/or not discoverable in DNS"; # XXX
  359. $PALANG['pInvalidMailRegex'] = "Invalid email address, fails regexp check"; # XXX
  360. $PALANG['pFetchmail_welcome'] = 'Fetch mail for:'; # XXX
  361. $PALANG['pFetchmail_new_entry'] = 'New entry'; # XXX
  362. $PALANG['pFetchmail_database_save_error'] = 'Could not save this entry in the database!'; # XXX
  363. $PALANG['pFetchmail_database_save_success'] = 'Entry saved in database.'; # XXX
  364. $PALANG['pFetchmail_error_invalid_id'] = 'No entry with ID %s found!'; # XXX
  365. $PALANG['pFetchmail_invalid_mailbox'] = 'Invalid mailbox!'; # XXX
  366. $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX
  367. $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX
  368. $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX
  369. $PALANG['pFetchmail_field_id'] = 'ID'; # XXX
  370. $PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX
  371. $PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX
  372. $PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX
  373. $PALANG['pFetchmail_field_src_user'] = 'User'; # XXX
  374. $PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX
  375. $PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX
  376. $PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX
  377. $PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX
  378. $PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX
  379. $PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX
  380. $PALANG['pFetchmail_field_usessl'] = 'SSL active'; # XXX
  381. $PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX
  382. $PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX
  383. $PALANG['pFetchmail_field_date'] = 'Date'; # XXX
  384. $PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX
  385. $PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX
  386. $PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX
  387. $PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX
  388. $PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX
  389. $PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX
  390. $PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX
  391. $PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX
  392. $PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX
  393. $PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX
  394. $PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX
  395. $PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX
  396. $PALANG['pFetchmail_desc_usessl'] = 'SSL encryption'; # XXX
  397. $PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX
  398. $PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX
  399. $PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX
  400. $PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX
  401. $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh
  402. /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */
  403. ?>