SF.net SVN: postfixadmin: [220] trunk
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2007-11-12 22:05:59
|
Revision: 220 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=220&view=rev Author: christian_boltz Date: 2007-11-12 14:06:01 -0800 (Mon, 12 Nov 2007) Log Message: ----------- fetchmail.php: - made edit form labels and descriptions translatable. This means that $fm_struct no longer holds the labels and descriptions - fixed HTML error (missing > for </span> - added some comments to document the main "if" block fetchmail.tpl: - changed button order and placement to make <enter> saving the entry - made save and cancel buttons translatable Thanks to Johan for the reminder https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1830326&group_id=191583 - made edit form labels and descriptions translatable. This also means reworking of some list(...) = $fm_struct[$row] sections *.lang: - added translations for "Save" and "Cancel" buttons - added translations for edit form labels and descriptions de.lang: - translated fetchmail-related texts Modified Paths: -------------- trunk/fetchmail.php trunk/languages/bg.lang trunk/languages/ca.lang trunk/languages/cn.lang trunk/languages/cs.lang trunk/languages/da.lang trunk/languages/de.lang trunk/languages/en.lang trunk/languages/es.lang trunk/languages/et.lang trunk/languages/eu.lang trunk/languages/fi.lang trunk/languages/fo.lang trunk/languages/fr.lang trunk/languages/hr.lang trunk/languages/hu.lang trunk/languages/is.lang trunk/languages/it.lang trunk/languages/lt.lang trunk/languages/mk.lang trunk/languages/nl.lang trunk/languages/nn.lang trunk/languages/pl.lang trunk/languages/pt-br.lang trunk/languages/ru.lang trunk/languages/sk.lang trunk/languages/sl.lang trunk/languages/sv.lang trunk/languages/tr.lang trunk/languages/tw.lang trunk/templates/fetchmail.tpl Modified: trunk/fetchmail.php =================================================================== --- trunk/fetchmail.php 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/fetchmail.php 2007-11-12 22:06:01 UTC (rev 220) @@ -73,27 +73,30 @@ $display_status = 1; if ($new || $edit) $display_status = 0; -$fm_struct=array( // list($editible,$view,$type,$title,$comment) - # first column: allow editing? - # second column: display field? - # the others: type title help text (in edit form) - "id" => array(0,0,'id', 'ID', 'Record ID'), - "mailbox" => array(1,1,'enum', 'Mailbox', 'Local mailbox'), - "src_server" => array(1,1,'text', 'Server', 'Remote Server'), - "src_auth" => array(1,1,'enum', 'Auth Type','Mostly password'), - "src_user" => array(1,1,'text', 'User', 'Remote User'), - "src_password" => array(1,0,'password', 'Password', 'Remote Password'), - "src_folder" => array(1,1,'text', 'Folder', 'Remote Folder'), - "poll_time" => array(1,1,'num', 'Poll', 'Poll Time (min)'), - "fetchall" => array(1,1,'bool', 'Fetch All','Retrieve both old (seen) and new messages'), - "keep" => array(1,1,'bool', 'Keep', 'Keep retrieved messages on the remote mailserver'), - "protocol" => array(1,1,'enum', 'Protocol', 'Protocol to use'), - "extra_options" => array($extra_options,$extra_options,'longtext', 'Extra Options','Extra fetchmail Options'), - "mda" => array($extra_options,$extra_options,'longtext', 'MDA', 'Mail Delivery Agent'), - "date" => array(0,$display_status, 'text', 'Date', 'Date of last polling/configuration change'), - "returned_text" => array(0,$display_status, 'longtext', 'Returned Text','Text message from last polling'), +$fm_struct=array( // list($editible,$view,$type) + # field name allow editing? display field? type + "id" => array(0, 0, 'id' ), + "mailbox" => array(1, 1, 'enum' ), + "src_server" => array(1, 1, 'text' ), + "src_auth" => array(1, 1, 'enum' ), + "src_user" => array(1, 1, 'text' ), + "src_password" => array(1, 0, 'password' ), + "src_folder" => array(1, 1, 'text' ), + "poll_time" => array(1, 1, 'num' ), + "fetchall" => array(1, 1, 'bool' ), + "keep" => array(1, 1, 'bool' ), + "protocol" => array(1, 1, 'enum' ), + "extra_options" => array($extra_options, $extra_options, 'longtext' ), + "mda" => array($extra_options, $extra_options, 'longtext' ), + "date" => array(0, $display_status, 'text' ), + "returned_text" => array(0, $display_status, 'longtext' ), ); +# labels and descriptions are taken from $PALANG['pFetchmail_field_xxx'] and $PALANG['pFetchmail_desc_xxx'] +# TODO: After pressing save or cancel in edit form, date and returned text are not displayed in list view. +# TODO: Reason: $display_status is set before $new and $edit are reset to 0. +# TODO: Fix: split the "display field?" column into "display in list" and "display in edit mode". + $SESSID_USERNAME = authentication_get_username(); if (!$SESSID_USERNAME ) exit; @@ -148,22 +151,22 @@ } -if ($cancel) { +if ($cancel) { # cancel $new or $edit $edit=0; $new=0; -} elseif ($delete) { +} elseif ($delete) { # delete an entry $result = db_query ("delete from fetchmail WHERE id=".$delete); if ($result['rows'] != 1) { - flash_error($PALANG['pDelete_delete_error']) . '</span'; + flash_error($PALANG['pDelete_delete_error']) . '</span>'; } else { flash_info(sprintf($PALANG['pDelete_delete_success'],$account)); } $delete=0; -} elseif ( ($edit || $new) && $save) { +} elseif ( ($edit || $new) && $save) { # $edit or $new AND save button pressed $formvars=array(); foreach($fm_struct as $key=>$row){ - list($editible,$view,$type,$title,$comment)=$row; + list($editible,$view,$type)=$row; if ($editible != 0){ $func="_inp_".$type; $val=safepost($key); @@ -213,10 +216,10 @@ $formvars['src_password'] = ''; # never display password } -} elseif ($edit) { +} elseif ($edit) { # edit entry form $formvars = $edit_row; $formvars['src_password'] = ''; -} elseif ($new) { +} elseif ($new) { # create entry form foreach (array_keys($fm_struct) as $value) { if (isset($fm_defaults[$value])) { $formvars[$value] = $fm_defaults[$value]; Modified: trunk/languages/bg.lang =================================================================== --- trunk/languages/bg.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/bg.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'ðåäàêòèðàíå'; $PALANG['del'] = 'èçòðèâàíå'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Ñèãóðíè ëè ñòå, ÷å æåëàåòå äà èçòðèåòî òîâà?\n'; $PALANG['confirm_domain'] = 'Íàèñòèíà ëè èñêàòå äà èçòðèåòå âñè÷êè çàïèñè çà òîçè äîìåéí? Òîâà äåéñòâèå å íåîáðàòèìî!\n'; $PALANG['check_update'] = 'Check for update'; @@ -356,6 +358,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/ca.lang =================================================================== --- trunk/languages/ca.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/ca.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'editar'; $PALANG['del'] = 'esborrar'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = '¿Segur que vols esborrar-lo?\n'; $PALANG['confirm_domain'] = 'Estas segur que vols borrar tots els registres d\'aquest domini? Això no podrà ser desfet!\n'; $PALANG['check_update'] = 'Check for update'; @@ -356,6 +358,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/cn.lang =================================================================== --- trunk/languages/cn.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/cn.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = '编辑'; $PALANG['del'] = '删除'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = '是否确定删除?\n'; $PALANG['confirm_domain'] = '你是否确定要删除该域中的所有记录? 删除后不可恢复!\n'; $PALANG['check_update'] = '检查新版本'; @@ -356,6 +358,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/cs.lang =================================================================== --- trunk/languages/cs.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/cs.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -12,6 +12,8 @@ $PALANG['edit'] = 'upravit'; $PALANG['del'] = 'smazat'; $PALANG['exit'] = 'Zrušit'; +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Jste si jistí?\n'; $PALANG['confirm_domain'] = 'Opravdu chcete smazat všechny záznamy v této doméně Tohle nelze vrátit!\n'; $PALANG['check_update'] = 'Zkontrolovat aktualizace'; @@ -366,6 +368,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/da.lang =================================================================== --- trunk/languages/da.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/da.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -11,6 +11,8 @@ $PALANG['edit'] = 'redigere'; $PALANG['del'] = 'slet'; $PALANG['exit'] = 'Log af'; +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Er du sikker på du vil slette dette?\n'; $PALANG['confirm_domain'] = 'Vil du virkelig slette alle adresser for dette domæne? Dette kan ikke fortrydes!\n'; $PALANG['check_update'] = 'Søg efter opdateringer'; @@ -368,6 +370,36 @@ $PALANG['pFetchmail_server_missing'] = 'Angiv navnet på fjernserveren!'; $PALANG['pFetchmail_user_missing'] = 'Angiv brugernavnet til fjernserveren!'; $PALANG['pFetchmail_password_missing'] = 'Angiv adgangskoden til fjernserveren!'; +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/de.lang =================================================================== --- trunk/languages/de.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/de.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'editieren'; $PALANG['del'] = 'löschen'; $PALANG['exit'] = 'Verlassen'; +$PALANG['cancel'] = 'Abbrechen'; +$PALANG['save'] = 'Speichern'; $PALANG['confirm'] = 'Sind Sie sicher dass Sie das löschen wollen?\n'; $PALANG['confirm_domain'] = 'Wollen Sie wirklich alle Einträge dieser Domain löschen? Dies kann NICHT rückgängig gemacht werden!\n'; $PALANG['check_update'] = 'Auf Updates überprüfen'; @@ -367,6 +369,36 @@ $PALANG['pFetchmail_server_missing'] = 'Bitte geben Sie den Namen des Servers ein!'; $PALANG['pFetchmail_user_missing'] = 'Bitte geben Sie den Benutzernamen ein!'; $PALANG['pFetchmail_password_missing'] = 'Bitte geben Sie das Passwort ein!'; +$PALANG['pFetchmail_field_id'] = 'ID'; +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; +$PALANG['pFetchmail_field_src_server'] = 'Server'; +$PALANG['pFetchmail_field_src_auth'] = 'Anmeldemethode'; +$PALANG['pFetchmail_field_src_user'] = 'Benutzername'; +$PALANG['pFetchmail_field_src_password'] = 'Passwort'; +$PALANG['pFetchmail_field_src_folder'] = 'Ordner'; +$PALANG['pFetchmail_field_poll_time'] = 'Abruf'; +$PALANG['pFetchmail_field_fetchall'] = 'Alle abholen'; +$PALANG['pFetchmail_field_keep'] = 'Behalten'; +$PALANG['pFetchmail_field_protocol'] = 'Protokoll'; +$PALANG['pFetchmail_field_extra_options'] = 'Zusätzliche Optionen'; +$PALANG['pFetchmail_field_mda'] = 'MDA'; +$PALANG['pFetchmail_field_date'] = 'Datum'; +$PALANG['pFetchmail_field_returned_text'] = 'Zurückgegebener Text'; +$PALANG['pFetchmail_desc_id'] = 'Eintrags-ID'; +$PALANG['pFetchmail_desc_mailbox'] = 'Lokales Postfach'; +$PALANG['pFetchmail_desc_src_server'] = 'Entfernter Server'; +$PALANG['pFetchmail_desc_src_auth'] = 'Normalerweise \'password\''; +$PALANG['pFetchmail_desc_src_user'] = 'Entfernter Benutzername'; +$PALANG['pFetchmail_desc_src_password'] = 'Entferntes Passwort'; +$PALANG['pFetchmail_desc_src_folder'] = 'Entfernter Ordner'; +$PALANG['pFetchmail_desc_poll_time'] = 'Mailabruf alle ... Minuten'; +$PALANG['pFetchmail_desc_fetchall'] = 'Sowohl alte (gelesene) als auch neue Nachrichten abholen'; +$PALANG['pFetchmail_desc_keep'] = 'Abgeholte Nachrichten auf dem entfernten Server lassen'; +$PALANG['pFetchmail_desc_protocol'] = 'Zu verwendendes Protokoll'; +$PALANG['pFetchmail_desc_extra_options'] = 'Zusätzliche fetchmail-Optionen'; +$PALANG['pFetchmail_desc_mda'] = 'Programm zur Mailauslieferung'; +$PALANG['pFetchmail_desc_date'] = 'Datum des letzten Mailabrufs/Konfigurationsänderung'; +$PALANG['pFetchmail_desc_returned_text'] = 'Textausgabe des letzten Mailabrufs'; $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/en.lang =================================================================== --- trunk/languages/en.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/en.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -11,6 +11,8 @@ $PALANG['edit'] = 'edit'; $PALANG['del'] = 'del'; $PALANG['exit'] = 'Exit'; +$PALANG['cancel'] = 'Cancel'; +$PALANG['save'] = 'Save'; $PALANG['confirm'] = 'Are you sure you want to delete this?\n'; $PALANG['confirm_domain'] = 'Do you really want to delete all records for this domain? This can not be undone!\n'; $PALANG['check_update'] = 'Check for update'; @@ -368,6 +370,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; +$PALANG['pFetchmail_field_id'] = 'ID'; +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; +$PALANG['pFetchmail_field_src_server'] = 'Server'; +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; +$PALANG['pFetchmail_field_src_user'] = 'User'; +$PALANG['pFetchmail_field_src_password'] = 'Password'; +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; +$PALANG['pFetchmail_field_keep'] = 'Keep'; +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; +$PALANG['pFetchmail_field_mda'] = 'MDA'; +$PALANG['pFetchmail_field_date'] = 'Date'; +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; +$PALANG['pFetchmail_desc_id'] = 'Record ID'; +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/es.lang =================================================================== --- trunk/languages/es.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/es.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'editar'; $PALANG['del'] = 'borrar'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = '¿Está seguro de que desea borrarlo?\n'; $PALANG['confirm_domain'] = '¿Está seguro de que desea borrar todos los registros de este dominio? ¡Esto no puede ser deshecho!\n'; $PALANG['check_update'] = 'Check for update'; @@ -357,6 +359,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/et.lang =================================================================== --- trunk/languages/et.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/et.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'Redigeeri'; $PALANG['del'] = 'Kustuta'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Oled kindel, et soovid seda kustutada?\n'; $PALANG['confirm_domain'] = 'Oled tõesti kindel, et tahad kustutada kõik kirjed sellele domeenile? Seda tegevust ei saa tagasi võtta!\n'; $PALANG['check_update'] = 'Check for update'; @@ -360,6 +362,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/eu.lang =================================================================== --- trunk/languages/eu.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/eu.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'aldatu'; $PALANG['del'] = 'ezabatu'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Ziur al zaude ezabatu nahi duzula?\n'; $PALANG['confirm_domain'] = 'Ziur al zaude domeinu honetako erregistro guztiak ezbatu nahi dituzula? Hau ezin izango da desegin!\n'; $PALANG['check_update'] = 'Check for update'; @@ -355,6 +357,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/fi.lang =================================================================== --- trunk/languages/fi.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/fi.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -13,6 +13,8 @@ $PALANG['edit'] = 'muokkaa'; $PALANG['del'] = 'poista'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Oletko varma että haluat poistaa tämän?\n'; $PALANG['confirm_domain'] = 'Oletko varma että haluat poistaa kaikki tietueet tästä domainista? Tätä komentoa ei voi perua!\n'; $PALANG['check_update'] = 'Check for update'; @@ -358,6 +360,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/fo.lang =================================================================== --- trunk/languages/fo.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/fo.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'broyt'; $PALANG['del'] = 'strika'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Ert tú vís(ur) í at tú vilt strika hetta?\n'; $PALANG['confirm_domain'] = 'Vilt tú veruliga strika allar upplýsingar fyri hetta navnaøki? Her kann ikki vendast aftur!\n'; $PALANG['check_update'] = 'Check for update'; @@ -361,6 +363,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/fr.lang =================================================================== --- trunk/languages/fr.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/fr.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -12,6 +12,8 @@ $PALANG['edit'] = 'Modifier'; $PALANG['del'] = 'Effacer'; $PALANG['exit'] = 'Quitter'; +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Etes vous sur de vouloir supprimer cet enregistrement\n'; $PALANG['confirm_domain'] = 'Etes-vous sur de vouloir effacer tous les enregistrements dans ce domaine ? Cette opération ne pourra pas être annulée.\n'; $PALANG['check_update'] = 'Vérifiez les mises à jour'; @@ -358,6 +360,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/hr.lang =================================================================== --- trunk/languages/hr.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/hr.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -9,6 +9,8 @@ $PALANG['edit'] = 'uredi'; $PALANG['del'] = 'brii'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Da li ste sigurni da elite ovo pobrisati?\n'; $PALANG['confirm_domain'] = 'Da li ste sigurni da elite pobrisati sve zapise za tu domenu? Zapisi ce biti zauvijek pobrisani!\n'; $PALANG['check_update'] = 'Provjeri da li postoji novija inačica'; @@ -355,6 +357,36 @@ $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/hu.lang =================================================================== --- trunk/languages/hu.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/hu.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'szerkeszt'; $PALANG['del'] = 'töröl'; $PALANG['exit'] = 'Kilép'; +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Biztos vagy benne hogy törlöd ezt?\n'; $PALANG['confirm_domain'] = 'Biztos hogy törölni akarod az összes bejegyzést ez alól a domain alól? Nem lehet visszahozni késõbb!\n'; $PALANG['check_update'] = 'Check for update'; # XXX @@ -369,6 +371,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/is.lang =================================================================== --- trunk/languages/is.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/is.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'skrifa í'; $PALANG['del'] = 'eyða'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Ertu viss um að þú viljir eyða þessu?\n'; $PALANG['confirm_domain'] = 'Ertu viss um að þú viljir eyða öllu sem tengist þessu léni? Það er ekki hægt að bakka með aðgerðina!\n'; $PALANG['check_update'] = 'Check for update'; @@ -355,6 +357,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_returned_text'] = 'Returned Text'; # XXX +$PALANG['pFetchmail_desc_id'] = 'Record ID'; # XXX +$PALANG['pFetchmail_desc_mailbox'] = 'Local mailbox'; # XXX +$PALANG['pFetchmail_desc_src_server'] = 'Remote Server'; # XXX +$PALANG['pFetchmail_desc_src_auth'] = 'Mostly \'password\''; # Translators: Please do NOT translate 'password' here # XXX +$PALANG['pFetchmail_desc_src_user'] = 'Remote User'; # XXX +$PALANG['pFetchmail_desc_src_password'] = 'Remote Password'; # XXX +$PALANG['pFetchmail_desc_src_folder'] = 'Remote Folder'; # XXX +$PALANG['pFetchmail_desc_poll_time'] = 'Poll every ... minutes'; # XXX +$PALANG['pFetchmail_desc_fetchall'] = 'Retrieve both old (seen) and new messages'; # XXX +$PALANG['pFetchmail_desc_keep'] = 'Keep retrieved messages on the remote mailserver'; # XXX +$PALANG['pFetchmail_desc_protocol'] = 'Protocol to use'; # XXX +$PALANG['pFetchmail_desc_extra_options'] = 'Extra fetchmail Options'; # XXX +$PALANG['pFetchmail_desc_mda'] = 'Mail Delivery Agent'; # XXX +$PALANG['pFetchmail_desc_date'] = 'Date of last polling/configuration change'; # XXX +$PALANG['pFetchmail_desc_returned_text'] = 'Text message from last polling'; # XXX $PALANG['please_keep_this_as_last_entry'] = ''; # needed for language-check.sh /* vim: set expandtab ft=php softtabstop=3 tabstop=3 shiftwidth=3: */ Modified: trunk/languages/it.lang =================================================================== --- trunk/languages/it.lang 2007-11-12 13:09:51 UTC (rev 219) +++ trunk/languages/it.lang 2007-11-12 22:06:01 UTC (rev 220) @@ -10,6 +10,8 @@ $PALANG['edit'] = 'modifica'; $PALANG['del'] = 'cancella'; $PALANG['exit'] = 'Exit'; # XXX +$PALANG['cancel'] = 'Cancel'; # XXX +$PALANG['save'] = 'Save'; # XXX $PALANG['confirm'] = 'Sei sicuro di volerlo cancellare?\n'; $PALANG['confirm_domain'] = 'Sei sicuro di voler cancellare tutti gli indirizzi di questo dominio? Questa modifica sarà permanente!\n'; $PALANG['check_update'] = 'Check for update'; @@ -356,6 +358,36 @@ $PALANG['pFetchmail_server_missing'] = 'Please enter the remote server name!'; # XXX $PALANG['pFetchmail_user_missing'] = 'Please enter the remote username!'; # XXX $PALANG['pFetchmail_password_missing'] = 'Please enter the remote password!'; # XXX +$PALANG['pFetchmail_field_id'] = 'ID'; # XXX +$PALANG['pFetchmail_field_mailbox'] = 'Mailbox'; # XXX +$PALANG['pFetchmail_field_src_server'] = 'Server'; # XXX +$PALANG['pFetchmail_field_src_auth'] = 'Auth Type'; # XXX +$PALANG['pFetchmail_field_src_user'] = 'User'; # XXX +$PALANG['pFetchmail_field_src_password'] = 'Password'; # XXX +$PALANG['pFetchmail_field_src_folder'] = 'Folder'; # XXX +$PALANG['pFetchmail_field_poll_time'] = 'Poll'; # XXX +$PALANG['pFetchmail_field_fetchall'] = 'Fetch All'; # XXX +$PALANG['pFetchmail_field_keep'] = 'Keep'; # XXX +$PALANG['pFetchmail_field_protocol'] = 'Protocol'; # XXX +$PALANG['pFetchmail_field_extra_options'] = 'Extra Options'; # XXX +$PALANG['pFetchmail_field_mda'] = 'MDA'; # XXX +$PALANG['pFetchmail_field_date'] = 'Date'; # XXX +$PALANG['pFetchmail_field_return... [truncated message content] |