diff --git a/ChangeLog b/ChangeLog index e8000691..8497f0c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2024-04-02 Andrew Ruthven + * Drop the drivers for authenticating against IMAP as PHP is droppping + the imap module. + 2024-03-31 Andrew Ruthven * Ensure that we have the timezone for invites received via iSchedule. diff --git a/config/example-config.php b/config/example-config.php index c67c0413..40282292 100644 --- a/config/example-config.php +++ b/config/example-config.php @@ -856,18 +856,6 @@ $c->admin_email = 'calendar-admin@example.com'; // ); // include('drivers_pwauth_pam.php'); -/** -* Authentication against IMAP using the imap_open function. -*/ -// $c->authenticate_hook = array( -// 'call' => 'IMAP_PAM_check', -// 'config' => array( -// 'imap_url' => '{localhost:993/imap/ssl/novalidate-cert}', -// 'email_base' => 'example.com' -// ) -// ); -// include('drivers_imap_pam.php'); - /********************************/ /****** Webserver does Auth *****/ /********************************/ diff --git a/inc/drivers_imap_pam.php b/inc/drivers_imap_pam.php deleted file mode 100644 index 68ab8c97..00000000 --- a/inc/drivers_imap_pam.php +++ /dev/null @@ -1,120 +0,0 @@ -, -* Andrew McMillan -* @copyright Based on Eric Seigne script drivers_squid_pam.php -* @license http://gnu.org/copyleft/gpl.html GNU GPL v2 or later -*/ - -// The PHP interpreter will die quietly unless satisfied. This provides user feedback instead. -if (!function_exists('imap_open')) { - die("drivers_imap_pam: php-imap required."); -} - -require_once("auth-functions.php"); - -/** - * Plugin to authenticate against IMAP - */ -class imapPamDriver -{ - /**#@+ - * @access private - */ - - /**#@-*/ - - - /** - * The constructor - * - * @param string $imap_url formated for imap_open() - */ - function __construct($imap_url) - { - global $c; - if (empty($imap_url)){ - $c->messages[] = sprintf(i18n('drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php')); - $this->valid=false; - return ; - } - } -} - - -/** -* Check the username / password against the IMAP server, provision from GECOS -*/ -function IMAP_PAM_check($username, $password ){ - global $c; - - $imap_username = $username; - if ( function_exists('mb_convert_encoding') ) { - $imap_username = mb_convert_encoding($imap_username, "UTF7-IMAP",mb_detect_encoding($imap_username)); - } - else { - $imap_username = imap_utf7_encode($imap_username); - } - - //$imap_url = '{localhost:143/imap/notls}'; - //$imap_url = '{localhost:993/imap/ssl/novalidate-cert}'; - $imap_url = $c->authenticate_hook['config']['imap_url']; - $auth_result = "ERR"; - - $imap_stream = @imap_open($imap_url, $imap_username, $password, OP_HALFOPEN); - //print_r(imap_errors()); - if ( $imap_stream ) { - // disconnect - imap_close($imap_stream); - // login ok - $auth_result = "OK"; - } - - if ( $auth_result == "OK") { - $principal = new Principal('username',$username); - if ( ! $principal->Exists() ) { - dbg_error_log( "PAM", "Principal '%s' doesn't exist in local DB, we need to create it",$username ); - $cmd = "getent passwd '$username'"; - $getent_res = exec($cmd); - $getent_arr = explode(":", $getent_res); - $fullname = $getent_arr[4]; - if(empty($fullname)) { - $fullname = $username; - } - - // ensure email domain is not doubled in email field - @list($tmp_user, $tmp_domain) = explode('@', $username); - if( empty($tmp_domain) ) { - $email_address = $username . "@" . $c->authenticate_hook['config']['email_base']; - } - else { - $email_address = $username; - } - - $principal->Create( array( - 'username' => $username, - 'user_active' => true, - 'email' => $email_address, - 'modified' => date('c'), - 'fullname' => $fullname - )); - if ( ! $principal->Exists() ) { - dbg_error_log( "PAM", "Unable to create local principal for '%s'", $username ); - return false; - } - CreateHomeCollections($username); - CreateDefaultRelationships($username); - } - return $principal; - } - else { - dbg_error_log( "PAM", "User %s is not a valid username (or password was wrong)", $username ); - return false; - } - -} diff --git a/inc/drivers_rimap.php b/inc/drivers_rimap.php deleted file mode 100644 index 3b2d3a75..00000000 --- a/inc/drivers_rimap.php +++ /dev/null @@ -1,112 +0,0 @@ -, -* Andrew McMillan -* @copyright Based on Eric Seigne script drivers_squid_pam.php -* @license http://gnu.org/copyleft/gpl.html GNU GPL v2 or later -*/ - -// The PHP interpreter will die quietly unless satisfied. This provides user feedback instead. -if (!function_exists('imap_open')) { - die("drivers_rimap: php-imap required."); -} - -require_once("auth-functions.php"); - -/** - * Plugin to authenticate against IMAP - */ -class rimapPamDriver -{ - /**#@+ - * @access private - */ - - /**#@-*/ - - - /** - * The constructor - * - * @param string $imap_url formated for imap_open() - */ - function __construct($imap_url) - { - global $c; - if (empty($imap_url)){ - $c->messages[] = sprintf(i18n('drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php')); - $this->valid=false; - return ; - } - } -} - - -/** -* Check the username / password against the IMAP server, provision from username and email_base -*/ -function RIMAP_check($username, $password ){ - global $c; - - $imap_username = $username; - if ( function_exists('mb_convert_encoding') ) { - $imap_username = mb_convert_encoding($imap_username, "UTF7-IMAP",mb_detect_encoding($imap_username)); - } - else { - $imap_username = imap_utf7_encode($imap_username); - } - - //$imap_url = '{localhost:143/imap/notls}'; - //$imap_url = '{localhost:993/imap/ssl/novalidate-cert}'; - $imap_url = $c->authenticate_hook['config']['imap_url']; - $auth_result = "ERR"; - - $imap_stream = @imap_open($imap_url, $imap_username, $password, OP_HALFOPEN); - //print_r(imap_errors()); - if ( $imap_stream ) { - // disconnect - imap_close($imap_stream); - // login ok - $auth_result = "OK"; - } - - if ( $auth_result == "OK") { - $principal = new Principal('username',$username); - if ( ! $principal->Exists() ) { - dbg_error_log( "PAM", "Principal '%s' doesn't exist in local DB, we need to create it",$username ); - if ( strstr($username, '@') ) { - $name_arr = explode('@', $username); - $fullname = ucfirst(strtolower($name_arr[0])); - $email = $username; - } - else { - $fullname = ucfirst(strtolower($username)); - $email = $username . "@" . $c->authenticate_hook['config']['email_base']; - } - - $principal->Create( array( - 'username' => $username, - 'user_active' => true, - 'email' => $email, - 'fullname' => ucfirst($fullname) - )); - if ( ! $principal->Exists() ) { - dbg_error_log( "PAM", "Unable to create local principal for '%s'", $username ); - return false; - } - CreateHomeCollections($username); - CreateDefaultRelationships($username); - } - return $principal; - } - else { - dbg_error_log( "PAM", "User %s is not a valid username (or password was wrong)", $username ); - return false; - } - -} diff --git a/po/ar.po b/po/ar.po index c36fa1c2..6051c606 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Arabic (http://www.transifex.com/lkraav/davical/language/ar/)\n" @@ -1571,9 +1571,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1604,9 +1601,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/ca.po b/po/ca.po index 9dca6345..3a798b66 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Catalan (http://www.transifex.com/lkraav/davical/language/ca/)\n" @@ -1570,9 +1570,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1603,9 +1600,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index a79ecaf6..1bbefd25 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/lkraav/davical/language/cs_CZ/)\n" @@ -1569,9 +1569,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1602,9 +1599,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/de.po b/po/de.po index bff4197b..fd8b4df8 100644 --- a/po/de.po +++ b/po/de.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 11:42+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: German (http://www.transifex.com/lkraav/davical/language/de/)\n" @@ -1659,9 +1659,6 @@ msgstr "Die Eigenschaft \"calendar-timezone\" ist nur für einen Kalender gülti msgid "directory %s is not readable" msgstr "Verzeichnis %s kann nicht gelesen werden" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam: imap_url-Parameter wurde nicht in /etc/davical/*-conf.php konfiguriert" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap: TLS konnte nicht gestartet werden: ldap_start_tls() ist fehlgeschlagen" @@ -1694,9 +1691,6 @@ msgstr "drivers_ldap: Funktion ldap_connect nicht definiert, bitte php_ldap Modu msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam: Kann Datei %s nicht finden" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap: imap_url-Parameter wurde nicht in /etc/davical/*-conf.php konfiguriert" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam: Kann Datei %s nicht finden" @@ -1761,6 +1755,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "Melden Sie sich mit dem Ihnen zugeteilten Benutzernamen und Passwort an." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam: imap_url-Parameter wurde nicht in /etc/davical/*-conf.php konfiguriert" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap: imap_url-Parameter wurde nicht in /etc/davical/*-conf.php konfiguriert" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "DAViCal wird größtenteils funktionieren, aber PHP 5.2 oder neuer wird dringend empfohlen. " diff --git a/po/es_AR.po b/po/es_AR.po index a74742f7..f0bbb916 100644 --- a/po/es_AR.po +++ b/po/es_AR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/lkraav/davical/language/es_AR/)\n" @@ -1572,9 +1572,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1605,9 +1602,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index 12fb9ab8..56ee8568 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:46+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/lkraav/davical/language/es_ES/)\n" @@ -1616,10 +1616,6 @@ msgstr "La propiedad calendar-timezone sólo es válida en calendarios." msgid "directory %s is not readable" msgstr "no se puede leer el directorio %s" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" -"drivers_imap_pam : el parámetro imap_url parámetro no está configurado en /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : no se pudo usar TLS: ldap_start_tls() falló" @@ -1653,9 +1649,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam : no se encontró el fichero %s" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap : el parámetro imap_url parámetro no está configurado en /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : no se encontró el fichero %s" @@ -1712,6 +1705,14 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "deberá autenticarse con el nombre de usuario y contraseña que se le comunicaron." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "" +#~ "drivers_imap_pam : el parámetro imap_url parámetro no está configurado en /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "" +#~ "drivers_rimap : el parámetro imap_url parámetro no está configurado en /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "La mayoría de las funciones de DAViCal funcionarán, pero es muy recomendable actualizar a PHP 5.2 o " diff --git a/po/es_MX.po b/po/es_MX.po index 0f9d43e7..78a5635e 100644 --- a/po/es_MX.po +++ b/po/es_MX.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:43+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/lkraav/davical/language/es_MX/)\n" @@ -1606,9 +1606,6 @@ msgstr "calendar-timezone es una propiedad válida solamente para un calendario. msgid "directory %s is not readable" msgstr "el directorio %s no es legible" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam : imap_url parámetro no configurado en /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : No pudo arrancar TLS: ldap_start_tls() falló" @@ -1642,9 +1639,6 @@ msgstr "drivers_ldap : la función ldap_connect no fue definida; cheque su módu msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam : Incapz de encontrar al archivo %s" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : Incapaz de encontrar el archivo %s" @@ -1701,6 +1695,9 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "deberá identificarse con el nombre de usuario y clave de acceso que le fueron otorgados." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam : imap_url parámetro no configurado en /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "La mayoría de las funciones de DAViCal funcionarán, pero es muy recomendable actualizar a PHP 5.2 o " diff --git a/po/es_VE.po b/po/es_VE.po index 0a8b2292..ad66b454 100644 --- a/po/es_VE.po +++ b/po/es_VE.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:49+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Spanish (Venezuela) (http://www.transifex.com/lkraav/davical/language/es_VE/)\n" @@ -1599,9 +1599,6 @@ msgstr "la propiedad zona horaria-calendario sólo es válida para un calendario msgid "directory %s is not readable" msgstr "El directorio %s no es legible" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam : parámetros de imap_url no configurados en /etc/davical/*-conf.php " - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap: no se puede comenzar TLS: ldap_start_tls() falló" @@ -1635,9 +1632,6 @@ msgstr "drivers_ldap : función ldap_connect no definida, chequea tu módulo php msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "driver_pwauth_pam: Incapaz de encontrar el archivo %s" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap : parámetros de imap_url no configurados en /etc/davical/*-conf.php " - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "driver_squid_pam: Incapaz de encontrar el archivo %s" @@ -1694,6 +1688,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "" +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam : parámetros de imap_url no configurados en /etc/davical/*-conf.php " + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap : parámetros de imap_url no configurados en /etc/davical/*-conf.php " + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "En su mayoría, DAViCal debería trabajar pero actualizando a PHP 5.2 o superior es altamente " diff --git a/po/et.po b/po/et.po index a86b7f51..42cac75d 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Estonian (http://www.transifex.com/lkraav/davical/language/et/)\n" @@ -1569,9 +1569,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1602,9 +1599,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/fi.po b/po/fi.po index 1994a425..fa63b2fc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:28+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Finnish (http://www.transifex.com/lkraav/davical/language/fi/)\n" @@ -1573,9 +1573,6 @@ msgstr "calendar-timezone-ominaisuus ei ole kelvollinen kalenterille." msgid "directory %s is not readable" msgstr "hakemisto %s ei ole luettavissa" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1606,9 +1603,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/fr.po b/po/fr.po index ff2b50b7..36667c12 100644 --- a/po/fr.po +++ b/po/fr.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 11:23+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: French (http://www.transifex.com/lkraav/davical/language/fr/)\n" @@ -1666,9 +1666,6 @@ msgstr "La propriété fuseau horaire n'est valide que pour un agenda." msgid "directory %s is not readable" msgstr "le répertoire %s n'est pas accessible en lecture." -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam : le paramètre imap_url n'est pas configuré dans /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : impossible de démarrer TLS : ldap_start_tlf() a échoué." @@ -1702,9 +1699,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam : Fichier %s introuvable." -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap : le paramètre imap_url n'est pas configuré dans /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : Fichier %s introuvable." @@ -1769,6 +1763,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "Vous devez vous connecter avec le nom d'utilisateur et le mot de passe qui vous ont été fournis." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam : le paramètre imap_url n'est pas configuré dans /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap : le paramètre imap_url n'est pas configuré dans /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "La plupart des fonctions DAViCal fonctionneront, mais une mise à jour vers PHP 5.2 ou ultérieure " diff --git a/po/hu.po b/po/hu.po index fe9d3d04..2c7bd6e1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Hungarian (http://www.transifex.com/lkraav/davical/language/hu/)\n" @@ -1572,9 +1572,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1605,9 +1602,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/id_ID.po b/po/id_ID.po index b1fef0cd..ffe09efb 100644 --- a/po/id_ID.po +++ b/po/id_ID.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/lkraav/davical/language/id_ID/)\n" @@ -1569,9 +1569,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1602,9 +1599,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/it.po b/po/it.po index 051c16e5..db122b37 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Italian (http://www.transifex.com/lkraav/davical/language/it/)\n" @@ -1573,9 +1573,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1606,9 +1603,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/ja.po b/po/ja.po index 2fa13638..12f3b911 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Japanese (http://www.transifex.com/lkraav/davical/language/ja/)\n" @@ -1574,9 +1574,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "ディレクトリ%sは読み取り可能ではありません。" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : TLSを開始できませんでした : ldap_start_tls()failed" @@ -1609,9 +1606,6 @@ msgstr "drivers_ldap : 関数ldap_connectが定義できませんでした、php msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : ファイル%sが見つかりません" diff --git a/po/ko_KR.po b/po/ko_KR.po index 1e5ffa80..390ffbb4 100644 --- a/po/ko_KR.po +++ b/po/ko_KR.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:32+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Korean (Korea) (http://www.transifex.com/lkraav/davical/language/ko_KR/)\n" @@ -1574,9 +1574,6 @@ msgstr "calendar-timezone 속성은 캘린더에만 유효한 속성입니다." msgid "directory %s is not readable" msgstr "%s 디렉토리가 읽기가능하지 않습니다." -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam : /etc/davical/*-conf.php 파일에 imap_url 이 지정되지 않았습니다." - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1607,9 +1604,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap : /etc/davical/*-conf.php 파일에 imap_url 이 지정되지 않았습니다." - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" @@ -1666,6 +1660,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "올바른 사용자명과 패스워드를 사용하세요." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam : /etc/davical/*-conf.php 파일에 imap_url 이 지정되지 않았습니다." + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap : /etc/davical/*-conf.php 파일에 imap_url 이 지정되지 않았습니다." + #~ msgid "PHP DateTime class" #~ msgstr "PHP DateTime 클래스" diff --git a/po/messages.pot b/po/messages.pot index 75599bc8..84e5802b 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:40+1300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1625,11 +1625,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "" -"drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf." -"php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1664,10 +1659,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "" -"drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index b44a4590..dc9cd393 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:24+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/lkraav/davical/language/nb_NO/)\n" @@ -1604,9 +1604,6 @@ msgstr "kalender-tidssone egenskap er kun gyldig for en kalender" msgid "directory %s is not readable" msgstr "mappen %s er ikke lesbar" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam : imap_url parameter ikke konfigurert i /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : Kunne ikke starte TLS: ldap_start_tls() feilet" @@ -1639,9 +1636,6 @@ msgstr "drivers_ldap : function ldap_connect ikke definert, sjekk din php_ldap m msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam : Unable to find %s file" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap : imap_url parameter ikke konfigurert i /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : Unable to find %s file" @@ -1698,6 +1692,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "logg på med brukernavnet og passordet du fikk utstedt" +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam : imap_url parameter ikke konfigurert i /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap : imap_url parameter ikke konfigurert i /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "De fleste funksjoner av DAViCal vil fungere, men å oppgradere til PHP 5.2 eller nyere er anbefalt " diff --git a/po/nl.po b/po/nl.po index 46636720..e8ca38d7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 11:27+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Dutch (http://www.transifex.com/lkraav/davical/language/nl/)\n" @@ -1642,9 +1642,6 @@ msgstr "De 'calendar-timezone'-eigenschap is enkel geldig voor een agenda." msgid "directory %s is not readable" msgstr "Map %s kan niet worden gelezen" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam : 'imap_url'-parameter niet ingesteld in /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : Kan TLS niet starten: ldap_start_tls() mislukt" @@ -1677,9 +1674,6 @@ msgstr "drivers_ldap : functie ldap_connect niet ingesteld, kijk Uw php_ldap mod msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam : Kan bestand %s niet vinden" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap : 'imap_url'-parameter niet ingesteld in /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : Kan bestand %s niet vinden" @@ -1743,6 +1737,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "U moet zich aanmelden met de gebruikersnaam en het wachtwoord die U zijn toegewezen." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam : 'imap_url'-parameter niet ingesteld in /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap : 'imap_url'-parameter niet ingesteld in /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "Het grootste deel van DAViCal zal werken, maar upgraden naar PHP 5.2 of hoger wordt sterk " diff --git a/po/pl.po b/po/pl.po index 1ef0965e..290f29d8 100644 --- a/po/pl.po +++ b/po/pl.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:36+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Polish (http://www.transifex.com/lkraav/davical/language/pl/)\n" @@ -1577,9 +1577,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "Katalog %s nie jest do odczytu" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap: Nie można uruchomić TLS: ldap_start_tls() spowodowało błąd" @@ -1610,9 +1607,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam: Nie można odnaleźć pliku %s " -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam: Nie można odnaleźć pliku %s " diff --git a/po/pt_BR.po b/po/pt_BR.po index 696fd37f..4108153e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 20:39+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/lkraav/davical/language/pt_BR/)\n" @@ -1617,9 +1617,6 @@ msgstr "a propriedade de fuso horário de calendário, só é válida para um ca msgid "directory %s is not readable" msgstr "diretório %s não é legível" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam: parâmetro imap_url não configurado em /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap: Não foi possível iniciar TLS: ldap_start_tls () falhou" @@ -1653,9 +1650,6 @@ msgstr "drivers_ldap: função ldap_connect não definida, verifique o módulo p msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam: Não é possível encontrar o arquivo %s" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap: parâmetro imap_url não configurado em /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam: Não é possível encontrar o arquivo %s" @@ -1712,6 +1706,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "você deve fazer logon com o nome de usuário e senha que foram emitidos para você." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam: parâmetro imap_url não configurado em /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap: parâmetro imap_url não configurado em /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "A maior parte do DAViCal funcionará, mas a atualização para PHP 5.2 ou posterior é fortemente " diff --git a/po/pt_PT.po b/po/pt_PT.po index cba43b6c..495d8d8f 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 11:32+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/lkraav/davical/language/pt_PT/)\n" @@ -1640,9 +1640,6 @@ msgstr "a propriedade calendar-timezone só é válida para um calendário." msgid "directory %s is not readable" msgstr "o directório %s não é legível" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam: o parâmetro imap_url não está configurado em /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : Impossível inicial TLS: falhou ldap_start_tls()" @@ -1675,9 +1672,6 @@ msgstr "drivers_ldap : a função ldap_connect não está definida, verifique o msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam : Impossível encontrar o ficheiro %s" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap: o parâmetro imap_url não está configurado em /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : Impossível encontrar o ficheiro %s" @@ -1742,6 +1736,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "deve entrar com o nome de utilizador e password que lhe foram atribuídas." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam: o parâmetro imap_url não está configurado em /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap: o parâmetro imap_url não está configurado em /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "" #~ "A maior parte do DAViCal irá funcionar mas é fortemente recomendado actualizar para o PHP 5.2 ou " diff --git a/po/ru.po b/po/ru.po index 27d825f5..d43254e4 100644 --- a/po/ru.po +++ b/po/ru.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Russian (http://www.transifex.com/lkraav/davical/language/ru/)\n" @@ -1575,9 +1575,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "" @@ -1608,9 +1605,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "" diff --git a/po/sk_SK.po b/po/sk_SK.po index 032967cb..8d9ca118 100644 --- a/po/sk_SK.po +++ b/po/sk_SK.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-15 11:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/lkraav/davical/language/sk_SK/)\n" @@ -1626,9 +1626,6 @@ msgstr "Vlastnosť calendar-timezone je povolená len pre kalendár." msgid "directory %s is not readable" msgstr "Z adresára %s sa nedá čítať" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_imap_pam: imap_url parameter nie je nakonfigurovaný v /etc/davical/*-conf.php" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap: Nepodarilo sa naštartovať TLS: ldap_start_tls() zlyhalo" @@ -1663,9 +1660,6 @@ msgstr "" msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "drivers_pwauth_pam: Nedá sa nájsť súbor %s" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "drivers_rimap: imap_url parameter nie je nakonfigurovaný v /etc/davical/*-conf.php" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam: Nedá sa nájsť súbor %s" @@ -1726,6 +1720,12 @@ msgstr "" msgid "you should log on with the username and password that have been issued to you." msgstr "mali by ste sa prihlásiť pomocou vášho mena a hesla." +#~ msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_imap_pam: imap_url parameter nie je nakonfigurovaný v /etc/davical/*-conf.php" + +#~ msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" +#~ msgstr "drivers_rimap: imap_url parameter nie je nakonfigurovaný v /etc/davical/*-conf.php" + #~ msgid "Most of DAViCal will work but upgrading to PHP 5.2 or later is strongly recommended." #~ msgstr "Pre beh DAViCalu sa odporúča upgradovať PHP va verziu 5.2 alebo novšiu." diff --git a/po/sv.po b/po/sv.po index 1a02e325..5cbb3ade 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: DAViCal\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 16:38+1300\n" +"POT-Creation-Date: 2024-04-02 21:37+1300\n" "PO-Revision-Date: 2017-01-14 22:37+0000\n" "Last-Translator: Cyril Giraud \n" "Language-Team: Swedish (http://www.transifex.com/lkraav/davical/language/sv/)\n" @@ -1572,9 +1572,6 @@ msgstr "" msgid "directory %s is not readable" msgstr "mappen %s är inte åtkomlig" -msgid "drivers_imap_pam : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - msgid "drivers_ldap : Could not start TLS: ldap_start_tls() failed" msgstr "drivers_ldap : Could not start TLS: ldap_start_tls() failed" @@ -1607,9 +1604,6 @@ msgstr "drivers_ldap : function ldap_connect not defined, check your php_ldap mo msgid "drivers_pwauth_pam : Unable to find %s file" msgstr "" -msgid "drivers_rimap : imap_url parameter not configured in /etc/davical/*-conf.php" -msgstr "" - #, php-format msgid "drivers_squid_pam : Unable to find %s file" msgstr "drivers_squid_pam : Unable to find %s file"