diff --git a/authshibboleth.php b/authshibboleth.php index 640a9ed..c296e1d 100644 --- a/authshibboleth.php +++ b/authshibboleth.php @@ -95,8 +95,8 @@ class authshibboleth extends auth { // Redirect to Shibboleth IDP if ($this->urlLogout === "") - throw new \Exception (_("Shibboleth is not configured to allow logout"), - 405); + throw new \Exception (dgettext("domframework", + "Shibboleth is not configured to allow logout"), 405); $route = new route (); $route->redirect ($this->urlLogout); } diff --git a/certificationauthority.php b/certificationauthority.php index 5e63a1c..119db86 100644 --- a/certificationauthority.php +++ b/certificationauthority.php @@ -58,8 +58,8 @@ extendedKeyUsage = serverAuth, clientAuth // {{{ { if (! function_exists ("openssl_csr_new")) - throw new \Exception (_("No openssl support in PHP"), - 500); + throw new \Exception (dgettext("domframework", + "No openssl support in PHP"), 500); $this->opensslCnfPath = tempnam ("/tmp", "openssl-"); file_put_contents ($this->opensslCnfPath, $this->opensslConf); $this->configargs = array ( diff --git a/dbjson.php b/dbjson.php index f1d1891..84c677e 100644 --- a/dbjson.php +++ b/dbjson.php @@ -38,30 +38,33 @@ class dbjson 500); $pos = strpos ($dsn, "://"); if ($pos === false) - throw new \Exception (_("No DSN provided to dbjson"), 500); + throw new \Exception (dgettext("domframework", + "No DSN provided to dbjson"), 500); if (substr ($dsn, 0, $pos) !== "dbjson") - throw new \Exception (_("Invalid database type provided in dbjson"), 500); + throw new \Exception (dgettext("domframework", + "Invalid database type provided in dbjson"), 500); $this->dbfile = substr ($dsn, $pos+3); $directory = dirname ($this->dbfile); if (! file_exists ($directory)) @mkdir ($directory, 0777, true); if (! file_exists ($directory)) - throw new \Exception (sprintf (_("Directory '%s' doesn't exists"), - $directory), 500); + throw new \Exception (sprintf (dgettext("domframework", + "Directory '%s' doesn't exists"), $directory), 500); if (! file_exists ($this->dbfile)) { if (! is_readable ($directory)) throw new \Exception (sprintf ( - _("Directory '%s' not writeable and dbfile '%s' not exists"), - $directory, $this->dbfile), 500); + dgettext("domframework", + "Directory '%s' not writeable and dbfile '%s' not exists"), + $directory, $this->dbfile), 500); touch ($this->dbfile); } if (! is_readable ($this->dbfile)) - throw new \Exception(sprintf (_("File '%s' not readable"), $this->dbfile), - 500); + throw new \Exception(sprintf (dgettext("domframework", + "File '%s' not readable"), $this->dbfile), 500); if (! is_writeable ($this->dbfile)) - throw new \Exception(sprintf (_("File '%s' not readable"), $this->dbfile), - 500); + throw new \Exception(sprintf (dgettext("domframework", + "File '%s' not readable"), $this->dbfile), 500); $this->dsn = $dsn; $this->dbfile = $this->dbfile; } diff --git a/form.php b/form.php index e45fad0..5a3c13d 100644 --- a/form.php +++ b/form.php @@ -453,7 +453,8 @@ class form if ($field->mandatory !== null && (! array_key_exists ($field->name, $values) || trim ($values[$field->name]) === "")) - $errors[$field->name] = _("Field mandatory and not provided"); + $errors[$field->name] = dgettext("domframework", + "Field mandatory and not provided"); } return $errors; } diff --git a/fts.php b/fts.php index 87c3cba..5dbfa5c 100644 --- a/fts.php +++ b/fts.php @@ -98,8 +98,8 @@ class fts { if (! array_key_exists ($field, $dbl->fields ())) throw new \Exception (sprintf ( - _("The field '%s' doesn't exists in database"), - $field), 500); + dgettext("domframework", "The field '%s' doesn't exists in database"), + $field), 500); if ($i > 0) $dbl->whereAddOR (); $dbl->whereAddParenthesisOpen (); diff --git a/locale/en_GB.UTF8/LC_MESSAGES/domframework.po b/locale/en_GB.UTF8/LC_MESSAGES/domframework.po index ee6a534..8337c05 100644 --- a/locale/en_GB.UTF8/LC_MESSAGES/domframework.po +++ b/locale/en_GB.UTF8/LC_MESSAGES/domframework.po @@ -3,15 +3,16 @@ msgid "%s is write protected" msgstr "%s is write protected" -#: authzgroups.php:179 authzgroups.php:251 routeSQL.php:350 routeSQL.php:365 -#: routeSQL.php:428 routeSQL.php:443 routeSQL.php:450 routeSQL.php:453 -#: routeSQL.php:496 routeSQL.php:511 routeSQL.php:518 routeSQL.php:521 -#: routeSQL.php:562 routeSQL.php:577 routeSQL.php:584 routeSQL.php:587 -#: routeSQL.php:642 routeSQL.php:657 routeSQL.php:1102 routeSQL.php:1117 -#: routeSQL.php:1124 routeSQL.php:1127 routeSQL.php:1163 routeSQL.php:1178 -#: routeSQL.php:1185 routeSQL.php:1188 routeSQL.php:1394 routeSQL.php:1409 -#: routeSQL.php:1416 routeSQL.php:1419 routeSQL.php:1476 routeSQL.php:1491 -#: routeSQL.php:1714 routeSQL.php:1729 routeSQL.php:1736 routeSQL.php:1739 +#: authzgroups.php:179 authzgroups.php:251 authzgroupsoo.php:201 +#: authzgroupsoo.php:273 routeSQL.php:350 routeSQL.php:365 routeSQL.php:428 +#: routeSQL.php:443 routeSQL.php:450 routeSQL.php:453 routeSQL.php:496 +#: routeSQL.php:511 routeSQL.php:518 routeSQL.php:521 routeSQL.php:562 +#: routeSQL.php:577 routeSQL.php:584 routeSQL.php:587 routeSQL.php:642 +#: routeSQL.php:657 routeSQL.php:1102 routeSQL.php:1117 routeSQL.php:1124 +#: routeSQL.php:1127 routeSQL.php:1163 routeSQL.php:1178 routeSQL.php:1185 +#: routeSQL.php:1188 routeSQL.php:1394 routeSQL.php:1409 routeSQL.php:1416 +#: routeSQL.php:1419 routeSQL.php:1476 routeSQL.php:1491 routeSQL.php:1714 +#: routeSQL.php:1729 routeSQL.php:1736 routeSQL.php:1739 msgid "Access forbidden" msgstr "Access forbidden" @@ -27,22 +28,28 @@ msgstr "Add new entry" msgid "Already sign in" msgstr "Already sign in" -#: dblayer.php:495 dblayeroo.php:2822 +#: dblayer.php:495 msgid "An entry with these values already exists" msgstr "An entry with these values already exists" +#: dblayeroo.php:3036 dblayeroo.php:3043 +#, php-format +msgid "An entry with this value '%s' already exists" +msgstr "" + #: dblayer.php:517 msgid "An entry with this value already exists" msgstr "An entry with this value already exists" -#: authzgroups.php:177 authzgroups.php:212 authzgroups.php:249 routeSQL.php:348 -#: routeSQL.php:363 routeSQL.php:427 routeSQL.php:441 routeSQL.php:448 -#: routeSQL.php:495 routeSQL.php:509 routeSQL.php:516 routeSQL.php:561 -#: routeSQL.php:575 routeSQL.php:582 routeSQL.php:640 routeSQL.php:655 -#: routeSQL.php:1101 routeSQL.php:1115 routeSQL.php:1122 routeSQL.php:1162 -#: routeSQL.php:1176 routeSQL.php:1183 routeSQL.php:1393 routeSQL.php:1407 -#: routeSQL.php:1414 routeSQL.php:1475 routeSQL.php:1489 routeSQL.php:1713 -#: routeSQL.php:1727 routeSQL.php:1734 +#: authzgroups.php:177 authzgroups.php:212 authzgroups.php:249 +#: authzgroupsoo.php:199 authzgroupsoo.php:234 authzgroupsoo.php:271 +#: routeSQL.php:348 routeSQL.php:363 routeSQL.php:427 routeSQL.php:441 +#: routeSQL.php:448 routeSQL.php:495 routeSQL.php:509 routeSQL.php:516 +#: routeSQL.php:561 routeSQL.php:575 routeSQL.php:582 routeSQL.php:640 +#: routeSQL.php:655 routeSQL.php:1101 routeSQL.php:1115 routeSQL.php:1122 +#: routeSQL.php:1162 routeSQL.php:1176 routeSQL.php:1183 routeSQL.php:1393 +#: routeSQL.php:1407 routeSQL.php:1414 routeSQL.php:1475 routeSQL.php:1489 +#: routeSQL.php:1713 routeSQL.php:1727 routeSQL.php:1734 msgid "Anonymous not allowed" msgstr "Anonymous not allowed" @@ -50,7 +57,7 @@ msgstr "Anonymous not allowed" msgid "Are you sure to delete this entry?" msgstr "Are you sure to delete this entry?" -#: mail.php:869 mail.php:886 +#: mail.php:879 mail.php:896 #, php-format msgid "Attachment '%d' not found" msgstr "Attachment '%d' not found" @@ -63,7 +70,7 @@ msgstr "" msgid "B" msgstr "" -#: authentication.php:358 +#: authentication.php:364 msgid "Bad login/password" msgstr "Bad login/password" @@ -107,7 +114,7 @@ msgstr "Can not change the primary key" msgid "Can not create cache directory %s" msgstr "Can not create cache directory %s" -#: form.php:214 +#: form.php:247 msgid "Can not read the data from the form : Expired or missing CSRF Token" msgstr "" @@ -115,7 +122,7 @@ msgstr "" msgid "Can not store FALSE in cache" msgstr "Can not store FALSE in cache" -#: smtp.php:106 +#: smtp.php:107 #, php-format msgid "Can't activate STARTTLS %s" msgstr "Can't activate STARTTLS %s" @@ -128,12 +135,12 @@ msgstr "Can't change the password" msgid "Can't change the password if the user is not authenticated" msgstr "Can't change the password if the user is not authenticated" -#: smtp.php:82 +#: smtp.php:83 #, php-format msgid "Can't connect to SMTP server : %s" msgstr "Can't connect to SMTP server : %s" -#: authsympa.php:71 +#: authsympa.php:72 msgid "Can't connect with provided email/password to sympa" msgstr "Can't connect with provided email/password to sympa" @@ -158,15 +165,15 @@ msgstr "Can't create object not owned by myself" msgid "Can't create object with not owned group" msgstr "Can't create object with not owned group" -#: mail.php:263 +#: mail.php:268 msgid "Can't find boundary in multipart/" msgstr "Can't find boundary in multipart/" -#: mail.php:528 +#: mail.php:536 msgid "Can't find the place to store the HTML" msgstr "Can't find the place to store the HTML" -#: mail.php:613 +#: mail.php:622 msgid "Can't find the place to store the TEXT" msgstr "Can't find the place to store the TEXT" @@ -187,7 +194,7 @@ msgstr "" msgid "Can't save configuration file '%s'" msgstr "Can't save configuration file '%s'" -#: smtp.php:171 smtp.php:201 smtp.php:213 +#: smtp.php:173 smtp.php:203 smtp.php:215 msgid "Can't send email : not connected to SMTP server" msgstr "Can't send email : not connected to SMTP server" @@ -196,13 +203,14 @@ msgstr "Can't send email : not connected to SMTP server" msgid "Can't send in JSON invalid data : %s" msgstr "" -#: dblayeroo.php:2757 +#: dblayeroo.php:2966 #, php-format msgid "Can't update multiple rows with unique value on col '%s'" msgstr "" #: authzgroups.php:286 authzgroups.php:306 authzgroups.php:332 -#: authzgroups.php:360 +#: authzgroups.php:360 authzgroupsoo.php:306 authzgroupsoo.php:324 +#: authzgroupsoo.php:347 authzgroupsoo.php:375 msgid "Comment" msgstr "Comment" @@ -221,19 +229,29 @@ msgstr "Creation done" #: authzgroups.php:380 authzgroups.php:565 authzgroups.php:580 #: authzgroups.php:596 authzgroups.php:614 authzgroups.php:634 -#: authzgroups.php:652 authzgroups.php:668 +#: authzgroups.php:652 authzgroups.php:668 authzgroupsoo.php:395 +#: authzgroupsoo.php:640 authzgroupsoo.php:658 authzgroupsoo.php:677 +#: authzgroupsoo.php:698 authzgroupsoo.php:721 authzgroupsoo.php:742 +#: authzgroupsoo.php:761 msgid "DB for Group is not connected" msgstr "DB for Group is not connected" #: authzgroups.php:383 authzgroups.php:706 authzgroups.php:728 #: authzgroups.php:753 authzgroups.php:810 authzgroups.php:836 #: authzgroups.php:863 authzgroups.php:882 authzgroups.php:901 +#: authzgroupsoo.php:398 authzgroupsoo.php:801 authzgroupsoo.php:826 +#: authzgroupsoo.php:858 authzgroupsoo.php:926 authzgroupsoo.php:953 +#: authzgroupsoo.php:980 authzgroupsoo.php:1003 authzgroupsoo.php:1025 msgid "DB for GroupMember is not connected" msgstr "DB for GroupMember is not connected" #: authzgroups.php:44 authzgroups.php:377 authzgroups.php:417 #: authzgroups.php:433 authzgroups.php:450 authzgroups.php:469 #: authzgroups.php:491 authzgroups.php:511 authzgroups.php:527 +#: authzgroupsoo.php:83 authzgroupsoo.php:392 authzgroupsoo.php:425 +#: authzgroupsoo.php:443 authzgroupsoo.php:468 authzgroupsoo.php:487 +#: authzgroupsoo.php:508 authzgroupsoo.php:531 authzgroupsoo.php:557 +#: authzgroupsoo.php:581 authzgroupsoo.php:600 msgid "DB for Object is not connected" msgstr "DB for Object is not connected" @@ -241,14 +259,18 @@ msgstr "DB for Object is not connected" #: authzgroups.php:1017 authzgroups.php:1034 authzgroups.php:1055 #: authzgroups.php:1087 authzgroups.php:1119 authzgroups.php:1141 #: authzgroups.php:1157 authzgroups.php:1171 authzgroups.php:1184 -#: authzgroups.php:1201 +#: authzgroups.php:1201 authzgroupsoo.php:402 authzgroupsoo.php:1072 +#: authzgroupsoo.php:1117 authzgroupsoo.php:1156 authzgroupsoo.php:1176 +#: authzgroupsoo.php:1200 authzgroupsoo.php:1236 authzgroupsoo.php:1272 +#: authzgroupsoo.php:1296 authzgroupsoo.php:1312 authzgroupsoo.php:1328 +#: authzgroupsoo.php:1343 authzgroupsoo.php:1362 msgid "DB for Right is not connected" msgstr "DB for Right is not connected" #: dblayer.php:238 dblayer.php:257 dblayer.php:601 dblayer.php:712 #: dblayer.php:893 dblayer.php:995 dblayer.php:1049 dblayer.php:1079 -#: dblayeroo.php:243 dblayeroo.php:270 dblayeroo.php:334 dblayeroo.php:650 -#: dblayeroo.php:2374 +#: dblayeroo.php:248 dblayeroo.php:275 dblayeroo.php:339 dblayeroo.php:667 +#: dblayeroo.php:2549 msgid "Database not connected" msgstr "Database not connected" @@ -278,7 +300,7 @@ msgstr "Directory '%s' already exists" msgid "Directory '%s' available or not readable or not writeable" msgstr "Directory '%s' available or not readable or not writeable" -#: dbjson.php:49 +#: dbjson.php:52 #, php-format msgid "Directory '%s' doesn't exists" msgstr "Directory '%s' doesn't exists" @@ -303,7 +325,7 @@ msgstr "Directory '%s' is not writeable" msgid "Directory '%s' not accessible by external check read-write" msgstr "Directory '%s' not accessible by external check read-write" -#: dbjson.php:55 +#: dbjson.php:58 #, php-format msgid "Directory '%s' not writeable and dbfile '%s' not exists" msgstr "Directory '%s' not writeable and dbfile '%s' not exists" @@ -316,7 +338,7 @@ msgstr "Display information provided is not an array" msgid "Display the element {FIRST} to {LAST} on {COUNT} elements" msgstr "Display the element {FIRST} to {LAST} on {COUNT} elements" -#: dblayer.php:140 dblayeroo.php:91 +#: dblayer.php:140 dblayeroo.php:96 #, php-format msgid "Driver PDO '%s' not available in PHP" msgstr "" @@ -329,11 +351,11 @@ msgstr "" msgid "Email address" msgstr "Email address" -#: language.php:359 +#: language.php:360 msgid "English (GB)" msgstr "English (GB)" -#: language.php:358 +#: language.php:359 msgid "English (US)" msgstr "English (US)" @@ -345,7 +367,7 @@ msgstr "Entry to modify unavailable" msgid "Error in configuration file" msgstr "Error in configuration file" -#: renderer.php:129 routeSQL.php:149 +#: renderer.php:131 routeSQL.php:149 msgid "Error!" msgstr "Error!" @@ -373,12 +395,12 @@ msgstr "Extension not allowed" msgid "Field '%s' (defined in titles) not found in fields" msgstr "Field '%s' (defined in titles) not found in fields" -#: dblayeroo.php:2708 +#: dblayeroo.php:2917 #, php-format msgid "Field '%s' : invalid SQL type (%s) in $this->fields " msgstr "" -#: dblayeroo.php:395 dblayeroo.php:493 dblayeroo.php:551 +#: dblayeroo.php:404 dblayeroo.php:506 dblayeroo.php:564 #, php-format msgid "Field '%s' is autoincrement but not primary" msgstr "" @@ -388,35 +410,39 @@ msgstr "" msgid "Field '%s' not allowed" msgstr "Field '%s' not allowed" -#: dblayeroo.php:2688 +#: dblayeroo.php:2897 msgid "Field data too long" msgstr "" -#: dblayeroo.php:2658 form.php:407 +#: dblayeroo.php:2861 form.php:457 msgid "Field mandatory and not provided" msgstr "Field mandatory and not provided" -#: dblayeroo.php:2673 -msgid "Field not a string nor a integer" +#: dblayeroo.php:2876 +msgid "Field not a string nor numeric" msgstr "" -#: dblayeroo.php:2693 +#: dblayeroo.php:2902 msgid "Field not in date format" msgstr "" -#: dblayeroo.php:2699 +#: dblayeroo.php:2908 msgid "Field not in datetime format" msgstr "" -#: dblayeroo.php:2683 +#: dblayeroo.php:2892 +msgid "Field not in float format" +msgstr "" + +#: dblayeroo.php:2886 msgid "Field not in integer format" msgstr "" -#: dblayeroo.php:2704 +#: dblayeroo.php:2913 msgid "Field not in time format" msgstr "" -#: dblayeroo.php:2666 +#: dblayeroo.php:2869 msgid "Field null and defined as NOT NULL and not Autoincrement" msgstr "" @@ -450,7 +476,7 @@ msgstr "File '%s' is not writeable" msgid "File '%s' not found" msgstr "File '%s' not found" -#: dbjson.php:60 dbjson.php:63 inifile.php:24 +#: dbjson.php:64 dbjson.php:67 inifile.php:24 #, php-format msgid "File '%s' not readable" msgstr "File '%s' not readable" @@ -480,7 +506,7 @@ msgstr "File cache %s is not readable" msgid "File cache %s is not writable" msgstr "File cache %s is not writable" -#: language.php:357 +#: language.php:358 msgid "French" msgstr "French" @@ -492,11 +518,11 @@ msgstr "" msgid "Go back to the calling page" msgstr "Go back to the calling page" -#: authzgroups.php:304 +#: authzgroups.php:304 authzgroupsoo.php:323 msgid "Group" msgstr "Group" -#: authzgroups.php:794 +#: authzgroups.php:794 authzgroupsoo.php:906 msgid "IDUser in IDGroup not found" msgstr "IDUser in IDGroup not found" @@ -510,7 +536,7 @@ msgstr "Incorrect date provided for field '%s'" msgid "Incorrect datetime provided for field '%s'" msgstr "Incorrect datetime provided for field '%s'" -#: renderer.php:137 +#: renderer.php:139 msgid "Info :" msgstr "Info :" @@ -530,7 +556,7 @@ msgstr "Invalid CIDR" msgid "Invalid CIDR provided" msgstr "" -#: csrf.php:66 +#: csrf.php:76 msgid "Invalid CSRF token provided" msgstr "Invalid CSRF token provided" @@ -561,15 +587,15 @@ msgstr "" msgid "Invalid Network address" msgstr "" -#: dblayeroo.php:3341 +#: dblayeroo.php:3634 msgid "Invalid UUID provided : invalid char" msgstr "" -#: dblayeroo.php:3338 +#: dblayeroo.php:3631 msgid "Invalid UUID provided : invalid length" msgstr "" -#: dblayeroo.php:3344 +#: dblayeroo.php:3637 msgid "Invalid UUID provided : missing dash" msgstr "" @@ -597,7 +623,7 @@ msgstr "" msgid "Invalid bottom provided to graph Axis" msgstr "" -#: dblayeroo.php:3256 +#: dblayeroo.php:3549 msgid "Invalid char provided" msgstr "" @@ -626,39 +652,39 @@ msgstr "" msgid "Invalid data provided: line %d doesn't have the same number of elements as the first line (%d != %d elements)" msgstr "" -#: dbjson.php:43 +#: dbjson.php:45 msgid "Invalid database type provided in dbjson" msgstr "Invalid database type provided in dbjson" -#: dblayeroo.php:3424 dblayeroo.php:3427 dblayeroo.php:3430 +#: dblayeroo.php:3717 dblayeroo.php:3720 dblayeroo.php:3723 msgid "Invalid date and time provided : can not parse the date" msgstr "" -#: dblayeroo.php:3420 +#: dblayeroo.php:3713 msgid "Invalid date and time provided : invalid chars" msgstr "" -#: dblayeroo.php:3417 +#: dblayeroo.php:3710 msgid "Invalid date and time provided : invalid length" msgstr "" -#: dblayeroo.php:3433 +#: dblayeroo.php:3726 msgid "Invalid date and time provided : the date doesn't exists" msgstr "" -#: dblayeroo.php:3364 dblayeroo.php:3367 dblayeroo.php:3370 +#: dblayeroo.php:3657 dblayeroo.php:3660 dblayeroo.php:3663 msgid "Invalid date provided : can not parse the date" msgstr "" -#: dblayeroo.php:3360 +#: dblayeroo.php:3653 msgid "Invalid date provided : invalid chars" msgstr "" -#: dblayeroo.php:3357 +#: dblayeroo.php:3650 msgid "Invalid date provided : invalid length" msgstr "" -#: dblayeroo.php:3373 +#: dblayeroo.php:3666 msgid "Invalid date provided : the date doesn't exists" msgstr "" @@ -674,24 +700,28 @@ msgstr "Invalid email provided : not a string" msgid "Invalid email provided : too short" msgstr "Invalid email provided : too short" -#: mail.php:1499 +#: mail.php:1507 msgid "Invalid encoding provided to encodeHeaderStringWithPosition" msgstr "" -#: mail.php:1464 +#: mail.php:1472 msgid "Invalid encoding provided to encodeHeaders" msgstr "Invalid encoding provided to encodeHeaders" -#: mail.php:1442 +#: mail.php:1451 #, php-format msgid "Invalid encoding provided to encodingDecode : '%s'" msgstr "Invalid encoding provided to encodingDecode : '%s'" -#: mail.php:1422 +#: mail.php:1432 #, php-format msgid "Invalid encoding provided to encodingEncode : %s" msgstr "Invalid encoding provided to encodingEncode : %s" +#: queuefile.php:207 +msgid "Invalid entry requested" +msgstr "" + #: users.php:119 msgid "Invalid firstname provided : colon forbidden" msgstr "Invalid firstname provided : colon forbidden" @@ -740,15 +770,15 @@ msgstr "" msgid "Invalid horizontalData provided to graph horizontalData" msgstr "" -#: dblayeroo.php:3228 +#: dblayeroo.php:3521 msgid "Invalid integer : can not start by Minus Zero" msgstr "" -#: dblayeroo.php:3225 +#: dblayeroo.php:3518 msgid "Invalid integer : can not start by Zero" msgstr "" -#: dblayeroo.php:3222 +#: dblayeroo.php:3515 msgid "Invalid integer : invalid char" msgstr "" @@ -772,7 +802,7 @@ msgstr "Invalid length" msgid "Invalid lineColor provided to line style" msgstr "" -#: dblayeroo.php:3325 +#: dblayeroo.php:3618 msgid "Invalid mail provided" msgstr "" @@ -844,15 +874,15 @@ msgstr "" msgid "Invalid pointWidth provided to line style" msgstr "" -#: dblayeroo.php:3207 +#: dblayeroo.php:3500 msgid "Invalid positive integer : can not start by Zero" msgstr "" -#: dblayeroo.php:3201 +#: dblayeroo.php:3494 msgid "Invalid positive integer : can not start by minus sign" msgstr "" -#: dblayeroo.php:3204 +#: dblayeroo.php:3497 msgid "Invalid positive integer : invalid char" msgstr "" @@ -876,23 +906,23 @@ msgstr "" msgid "Invalid text provided to graph title" msgstr "" -#: dblayeroo.php:3400 +#: dblayeroo.php:3693 msgid "Invalid time provided : can not parse the date" msgstr "" -#: dblayeroo.php:3394 dblayeroo.php:3397 +#: dblayeroo.php:3687 dblayeroo.php:3690 msgid "Invalid time provided : can not parse the time" msgstr "" -#: dblayeroo.php:3390 +#: dblayeroo.php:3683 msgid "Invalid time provided : invalid chars" msgstr "" -#: dblayeroo.php:3387 +#: dblayeroo.php:3680 msgid "Invalid time provided : invalid length" msgstr "" -#: dblayeroo.php:3403 +#: dblayeroo.php:3696 msgid "Invalid time provided : the time doesn't exists" msgstr "" @@ -912,11 +942,11 @@ msgstr "" msgid "Invalid top provided to graph Axis" msgstr "" -#: dblayeroo.php:3310 +#: dblayeroo.php:3603 msgid "Invalid value provided : do not match the regex" msgstr "" -#: dblayeroo.php:3283 +#: dblayeroo.php:3576 msgid "Invalid value provided : not in allowed list" msgstr "" @@ -941,7 +971,7 @@ msgstr "" msgid "Mandatory field '%s' is empty" msgstr "Mandatory field '%s' is empty" -#: dblayer.php:317 dblayeroo.php:2628 +#: dblayer.php:317 dblayeroo.php:2831 #, php-format msgid "Mandatory field '%s' not provided" msgstr "Mandatory field '%s' not provided" @@ -956,19 +986,20 @@ msgstr "" msgid "Mandatory value for parameter '%s' is not provided after double-dash" msgstr "" -#: mail.php:431 +#: mail.php:437 msgid "Missing FileInfo PHP Extension" msgstr "Missing FileInfo PHP Extension" -#: mail.php:433 +#: mail.php:440 msgid "Missing OpenSSL PHP Extension" msgstr "Missing OpenSSL PHP Extension" -#: authzgroups.php:214 +#: authzgroups.php:214 authzgroupsoo.php:236 msgid "Modification forbidden" msgstr "Modification forbidden" -#: authzgroups.php:282 authzgroups.php:302 +#: authzgroups.php:282 authzgroups.php:302 authzgroupsoo.php:304 +#: authzgroupsoo.php:322 msgid "Module" msgstr "Module" @@ -976,11 +1007,11 @@ msgstr "Module" msgid "Network and IP address are not compatible" msgstr "" -#: dbjson.php:41 +#: dbjson.php:42 msgid "No DSN provided to dbjson" msgstr "No DSN provided to dbjson" -#: dblayer.php:900 dblayer.php:1028 dblayer.php:1082 dblayeroo.php:337 +#: dblayer.php:900 dblayer.php:1028 dblayer.php:1082 dblayeroo.php:342 msgid "No Field defined" msgstr "No Field defined" @@ -1004,7 +1035,7 @@ msgstr "No PHP support for openssl_random_pseudo_bytes" msgid "No Primary defined" msgstr "No Primary defined" -#: authsympa.php:45 +#: authsympa.php:46 msgid "No SOAP PHP library available" msgstr "No SOAP PHP library available" @@ -1021,7 +1052,7 @@ msgstr "No Size provided for varchar field" msgid "No Size provided for varchar field '%s'" msgstr "No Size provided for varchar field '%s'" -#: authsympa.php:53 +#: authsympa.php:54 msgid "No WSDL provided to Sympa auth" msgstr "No WSDL provided to Sympa auth" @@ -1029,7 +1060,7 @@ msgstr "No WSDL provided to Sympa auth" msgid "No authentication available" msgstr "No authentication available" -#: smtp.php:135 +#: smtp.php:137 msgid "No authentication method available for the server" msgstr "No authentication method available for the server" @@ -1037,7 +1068,7 @@ msgstr "No authentication method available for the server" msgid "No cache directory defined" msgstr "No cache directory defined" -#: dblayeroo.php:2796 dblayeroo.php:2808 +#: dblayeroo.php:3005 dblayeroo.php:3017 #, php-format msgid "No column '%s' defined but must be unique !" msgstr "" @@ -1056,7 +1087,7 @@ msgstr "No connect to authentication available" msgid "No data defined for Axis" msgstr "" -#: outputhtml.php:58 +#: outputhtml.php:60 #, php-format msgid "No data provided from view %s::%s" msgstr "No data provided from view %s::%s" @@ -1107,7 +1138,7 @@ msgstr "No fieldLastname defined" msgid "No fieldPassword defined" msgstr "No fieldPassword defined" -#: dblayeroo.php:2845 +#: dblayeroo.php:3069 #, php-format msgid "No foreign object configured to test the foreign key for table '%s'" msgstr "" @@ -1132,6 +1163,10 @@ msgstr "" msgid "No object removed" msgstr "No object removed" +#: certificationauthority.php:62 +msgid "No openssl support in PHP" +msgstr "" + #: getopts.php:487 msgid "No option defined" msgstr "" @@ -1148,11 +1183,11 @@ msgstr "No password change available" msgid "No password overwrite available" msgstr "No password overwrite available" -#: csrf.php:61 +#: csrf.php:71 msgid "No previous CSRF token : abort" msgstr "No previous CSRF token : abort" -#: dblayer.php:1085 dblayeroo.php:340 +#: dblayer.php:1085 dblayeroo.php:345 msgid "No table name defined to create the table" msgstr "" @@ -1160,11 +1195,11 @@ msgstr "" msgid "No table name defined to delete in the table" msgstr "" -#: dblayer.php:1052 dblayeroo.php:653 +#: dblayer.php:1052 dblayeroo.php:670 msgid "No table name defined to drop the table" msgstr "" -#: dblayer.php:605 dblayeroo.php:2377 +#: dblayer.php:605 dblayeroo.php:2552 msgid "No table name defined to insert in the table" msgstr "" @@ -1176,11 +1211,11 @@ msgstr "" msgid "No table name defined to update in the table" msgstr "" -#: dblayer.php:136 dblayeroo.php:87 +#: dblayer.php:136 dblayeroo.php:92 msgid "No valid DSN provided" msgstr "No valid DSN provided" -#: form.php:1073 +#: form.php:1176 msgid "No value provided" msgstr "No value provided" @@ -1195,7 +1230,7 @@ msgstr "No write rights on %s" msgid "Not authenticated" msgstr "Not authenticated" -#: authzgroups.php:284 +#: authzgroups.php:284 authzgroupsoo.php:305 msgid "Object" msgstr "Object" @@ -1223,7 +1258,7 @@ msgstr "Object don't start by slash" msgid "Object not found" msgstr "Object not found" -#: csrf.php:72 +#: csrf.php:82 msgid "Obsolete CSRF token provided" msgstr "Obsolete CSRF token provided" @@ -1244,11 +1279,11 @@ msgstr "" msgid "PDO Engine not supported in dbLayer" msgstr "PDO Engine not supported in dbLayer" -#: dblayeroo.php:635 dblayeroo.php:922 +#: dblayeroo.php:652 dblayeroo.php:1028 msgid "PDO Engine not supported in dbLayeroo" msgstr "" -#: mail.php:150 +#: mail.php:154 msgid "Param provided to sectionUpdate is not array" msgstr "Param provided to sectionUpdate is not array" @@ -1317,7 +1352,7 @@ msgstr "Removing more than one object" msgid "Restricted access" msgstr "Restricted access" -#: authzgroups.php:358 +#: authzgroups.php:358 authzgroupsoo.php:374 msgid "Right" msgstr "Right" @@ -1329,11 +1364,11 @@ msgstr "Save the data" msgid "Search:" msgstr "Search:" -#: mail.php:137 mail.php:148 mail.php:189 +#: mail.php:140 mail.php:151 mail.php:193 msgid "Section not found" msgstr "Section not found" -#: mail.php:112 mail.php:124 +#: mail.php:113 mail.php:126 msgid "Section parent not found" msgstr "Section parent not found" @@ -1350,11 +1385,11 @@ msgstr "Select not found for id=%d" msgid "Serie" msgstr "" -#: smtp.php:113 +#: smtp.php:114 msgid "Server doesn't supports STARTTLS" msgstr "Server doesn't supports STARTTLS" -#: authshibboleth.php:98 +#: authshibboleth.php:99 msgid "Shibboleth is not configured to allow logout" msgstr "Shibboleth is not configured to allow logout" @@ -1362,7 +1397,7 @@ msgstr "Shibboleth is not configured to allow logout" msgid "Sign in" msgstr "Sign in" -#: renderer.php:141 +#: renderer.php:143 msgid "Success : " msgstr "Success : " @@ -1384,7 +1419,7 @@ msgstr "The HTPasswd file '%s' is not found" msgid "The HTPasswd file '%s' is not readable" msgstr "The HTPasswd file '%s' is not readable" -#: authsympa.php:64 +#: authsympa.php:65 msgid "The SOAP connection is not opened" msgstr "The SOAP connection is not opened" @@ -1392,11 +1427,11 @@ msgstr "The SOAP connection is not opened" msgid "The SQL database is not connected" msgstr "The SQL database is not connected" -#: dblayer.php:155 dblayeroo.php:106 +#: dblayer.php:155 dblayeroo.php:111 msgid "The SQLite database file is write protected" msgstr "The SQLite database file is write protected" -#: dblayer.php:1160 dblayeroo.php:412 +#: dblayer.php:1160 dblayeroo.php:421 msgid "The Unique field definition is not an array" msgstr "The Unique field definition is not an array" @@ -1421,7 +1456,7 @@ msgstr "The configuration model file is not readable" msgid "The data provided to create are not array" msgstr "The data provided to create are not array" -#: dblayer.php:151 dblayeroo.php:103 +#: dblayer.php:151 dblayeroo.php:108 msgid "The directory for SQLite database is write protected" msgstr "The directory for SQLite database is write protected" @@ -1430,12 +1465,12 @@ msgstr "The directory for SQLite database is write protected" msgid "The field '%s' doesn't exists in database" msgstr "" -#: dblayeroo.php:2839 +#: dblayeroo.php:3063 #, php-format msgid "The field '%s' must be test on foreign, but is not provided" msgstr "" -#: dblayeroo.php:2928 +#: dblayeroo.php:3160 msgid "The field can not be empty" msgstr "" @@ -1459,7 +1494,7 @@ msgstr "The foreign key '%s' doesn't exists" msgid "The length of varchar field '%s' is not provided" msgstr "The length of varchar field '%s' is not provided" -#: authsympa.php:67 +#: authsympa.php:68 msgid "The list to check is not defined" msgstr "The list to check is not defined" @@ -1483,11 +1518,11 @@ msgstr "The password can't be change for IMAP users" msgid "The password can't be change for LDAP users" msgstr "The password can't be change for LDAP users" -#: authsession.php:58 +#: authsession.php:59 msgid "The password can't be change for SESSION users" msgstr "The password can't be change for SESSION users" -#: authsympa.php:94 +#: authsympa.php:96 msgid "The password can't be change for SYMPA users" msgstr "The password can't be change for SYMPA users" @@ -1503,7 +1538,7 @@ msgstr "The password can't be overwrite for IMAP users" msgid "The password can't be overwrite for LDAP users" msgstr "The password can't be overwrite for LDAP users" -#: authsession.php:71 +#: authsession.php:72 msgid "The password can't be overwrite for SESSION users" msgstr "The password can't be overwrite for SESSION users" @@ -1511,7 +1546,7 @@ msgstr "The password can't be overwrite for SESSION users" msgid "The password can't be overwrite for Shibboleth users" msgstr "The password can't be overwrite for Shibboleth users" -#: authsympa.php:106 +#: authsympa.php:108 msgid "The password can't be overwrite for Sympa users" msgstr "The password can't be overwrite for Sympa users" @@ -1528,7 +1563,7 @@ msgstr "The root can not be removed" msgid "The serie name in legend must not takes more than half of the graph" msgstr "" -#: dblayer.php:612 dblayeroo.php:2383 +#: dblayer.php:612 dblayeroo.php:2558 msgid "The unique configuration is not an array" msgstr "The unique configuration is not an array" @@ -1536,11 +1571,11 @@ msgstr "The unique configuration is not an array" msgid "The user must be in the wanted group" msgstr "The user must be in the wanted group" -#: dblayeroo.php:2938 +#: dblayeroo.php:3170 msgid "The value is not a string" msgstr "" -#: dblayeroo.php:2876 +#: dblayeroo.php:3100 #, php-format msgid "The value of the foreign key '%s' doesn't exists in foreign table" msgstr "" @@ -1572,28 +1607,28 @@ msgstr "Unable to find the user : '%s'" msgid "Unable to get the user password from database" msgstr "Unable to get the user password from database" -#: dblayeroo.php:2735 +#: dblayeroo.php:2944 msgid "Unique def is not a string or an array" msgstr "" -#: dblayer.php:609 dblayeroo.php:2380 +#: dblayer.php:609 dblayeroo.php:2555 msgid "Unique fields of table are not defined" msgstr "Unique fields of table are not defined" -#: form.php:200 +#: form.php:233 msgid "Unknown FORM method (GET or POST allowed)" msgstr "Unknown FORM method (GET or POST allowed)" -#: dblayer.php:228 dblayeroo.php:193 +#: dblayer.php:228 dblayeroo.php:198 msgid "Unknown PDO driver provided" msgstr "Unknown PDO driver provided" -#: dblayeroo.php:500 +#: dblayeroo.php:513 #, php-format msgid "Unknown additionnal '%s' parameter for field '%s'" msgstr "" -#: dblayeroo.php:401 dblayeroo.php:597 +#: dblayeroo.php:410 dblayeroo.php:614 #, php-format msgid "Unknown additionnal parameter '%s' for field '%s'" msgstr "" @@ -1608,7 +1643,7 @@ msgstr "Unknown additionnal parameter for field '%s'" msgid "Unknown color provided to graphColor::textToRGB: '%s'" msgstr "" -#: dblayer.php:291 dblayeroo.php:306 +#: dblayer.php:291 dblayeroo.php:311 msgid "Unknown database driver in listTables" msgstr "Unknown database driver in listTables" @@ -1625,16 +1660,24 @@ msgstr "" msgid "Unknown pointShape for serie" msgstr "" +#: authzgroupsoo.php:1125 authzgroupsoo.php:1244 +msgid "Unknown right provided (0/1/2 only)" +msgstr "" + +#: authzgroupsoo.php:1082 authzgroupsoo.php:1208 +msgid "Unknown right provided (NO/RO/RW only)" +msgstr "" + #: authzgroups.php:952 authzgroups.php:990 authzgroups.php:1062 #: authzgroups.php:1094 msgid "Unknown right provided (RO/RW only)" msgstr "Unknown right provided (RO/RW only)" -#: authzgroups.php:105 +#: authzgroups.php:105 authzgroupsoo.php:127 msgid "Unknown right stored" msgstr "Unknown right stored" -#: dblayer.php:1131 dblayeroo.php:376 +#: dblayer.php:1131 dblayeroo.php:385 #, php-format msgid "Unknown type '%s' provided for field '%s'" msgstr "Unknown type '%s' provided for field '%s'" @@ -1644,7 +1687,7 @@ msgstr "Unknown type '%s' provided for field '%s'" msgid "Unknown type in imap_fetchstructure : %s" msgstr "Unknown type in imap_fetchstructure : %s" -#: dblayer.php:1224 dblayer.php:1323 dblayeroo.php:474 dblayeroo.php:579 +#: dblayer.php:1224 dblayer.php:1323 dblayeroo.php:487 dblayeroo.php:596 #, php-format msgid "Unknown type provided for field '%s'" msgstr "Unknown type provided for field '%s'" @@ -1658,11 +1701,16 @@ msgstr "Unkwnown cache method : " msgid "Update done" msgstr "Update done" -#: authzgroups.php:328 +#: authzgroups.php:328 authzgroupsoo.php:345 msgid "User" msgstr "User" -#: authzgroups.php:739 authzgroups.php:764 +#: authsympa.php:78 +msgid "User not in Sympa list or bad password" +msgstr "" + +#: authzgroups.php:739 authzgroups.php:764 authzgroupsoo.php:840 +#: authzgroupsoo.php:872 msgid "Wanted GroupMember not found" msgstr "Wanted GroupMember not found" @@ -1670,22 +1718,31 @@ msgstr "Wanted GroupMember not found" #: authzgroups.php:638 authzgroups.php:711 authzgroups.php:733 #: authzgroups.php:758 authzgroups.php:868 authzgroups.php:887 #: authzgroups.php:906 authzgroups.php:958 authzgroups.php:996 -#: authzgroups.php:1123 authzgroups.php:1145 +#: authzgroups.php:1123 authzgroups.php:1145 authzgroupsoo.php:662 +#: authzgroupsoo.php:681 authzgroupsoo.php:702 authzgroupsoo.php:725 +#: authzgroupsoo.php:806 authzgroupsoo.php:831 authzgroupsoo.php:863 +#: authzgroupsoo.php:985 authzgroupsoo.php:1008 authzgroupsoo.php:1030 +#: authzgroupsoo.php:1088 authzgroupsoo.php:1131 authzgroupsoo.php:1276 +#: authzgroupsoo.php:1300 msgid "Wanted group not found" msgstr "Wanted group not found" #: authzgroups.php:437 authzgroups.php:454 authzgroups.php:473 #: authzgroups.php:495 authzgroups.php:962 authzgroups.php:1000 -#: authzgroups.php:1127 authzgroups.php:1188 +#: authzgroups.php:1127 authzgroups.php:1188 authzgroupsoo.php:491 +#: authzgroupsoo.php:512 authzgroupsoo.php:535 authzgroupsoo.php:561 +#: authzgroupsoo.php:1092 authzgroupsoo.php:1135 authzgroupsoo.php:1280 +#: authzgroupsoo.php:1347 msgid "Wanted object not found" msgstr "Wanted object not found" #: authzgroups.php:1021 authzgroups.php:1038 authzgroups.php:1068 -#: authzgroups.php:1100 +#: authzgroups.php:1100 authzgroupsoo.php:1160 authzgroupsoo.php:1180 +#: authzgroupsoo.php:1214 authzgroupsoo.php:1250 msgid "Wanted right not found" msgstr "Wanted right not found" -#: renderer.php:133 routeSQL.php:151 +#: renderer.php:135 routeSQL.php:151 msgid "Warning!" msgstr "Warning!" @@ -1710,18 +1767,20 @@ msgid "elements" msgstr "elements" #: authzgroups.php:300 authzgroups.php:330 authzgroups.php:355 +#: authzgroupsoo.php:321 authzgroupsoo.php:346 authzgroupsoo.php:372 msgid "idgroup" msgstr "idgroup" -#: authzgroups.php:326 +#: authzgroups.php:326 authzgroupsoo.php:344 msgid "idgroupmember" msgstr "idgroupmember" -#: authzgroups.php:280 authzgroups.php:357 +#: authzgroups.php:280 authzgroups.php:357 authzgroupsoo.php:303 +#: authzgroupsoo.php:373 msgid "idobject" msgstr "idobject" -#: authzgroups.php:353 +#: authzgroups.php:353 authzgroupsoo.php:371 msgid "idright" msgstr "idright" diff --git a/locale/en_US.UTF8/LC_MESSAGES/domframework.po b/locale/en_US.UTF8/LC_MESSAGES/domframework.po index ee6a534..8337c05 100644 --- a/locale/en_US.UTF8/LC_MESSAGES/domframework.po +++ b/locale/en_US.UTF8/LC_MESSAGES/domframework.po @@ -3,15 +3,16 @@ msgid "%s is write protected" msgstr "%s is write protected" -#: authzgroups.php:179 authzgroups.php:251 routeSQL.php:350 routeSQL.php:365 -#: routeSQL.php:428 routeSQL.php:443 routeSQL.php:450 routeSQL.php:453 -#: routeSQL.php:496 routeSQL.php:511 routeSQL.php:518 routeSQL.php:521 -#: routeSQL.php:562 routeSQL.php:577 routeSQL.php:584 routeSQL.php:587 -#: routeSQL.php:642 routeSQL.php:657 routeSQL.php:1102 routeSQL.php:1117 -#: routeSQL.php:1124 routeSQL.php:1127 routeSQL.php:1163 routeSQL.php:1178 -#: routeSQL.php:1185 routeSQL.php:1188 routeSQL.php:1394 routeSQL.php:1409 -#: routeSQL.php:1416 routeSQL.php:1419 routeSQL.php:1476 routeSQL.php:1491 -#: routeSQL.php:1714 routeSQL.php:1729 routeSQL.php:1736 routeSQL.php:1739 +#: authzgroups.php:179 authzgroups.php:251 authzgroupsoo.php:201 +#: authzgroupsoo.php:273 routeSQL.php:350 routeSQL.php:365 routeSQL.php:428 +#: routeSQL.php:443 routeSQL.php:450 routeSQL.php:453 routeSQL.php:496 +#: routeSQL.php:511 routeSQL.php:518 routeSQL.php:521 routeSQL.php:562 +#: routeSQL.php:577 routeSQL.php:584 routeSQL.php:587 routeSQL.php:642 +#: routeSQL.php:657 routeSQL.php:1102 routeSQL.php:1117 routeSQL.php:1124 +#: routeSQL.php:1127 routeSQL.php:1163 routeSQL.php:1178 routeSQL.php:1185 +#: routeSQL.php:1188 routeSQL.php:1394 routeSQL.php:1409 routeSQL.php:1416 +#: routeSQL.php:1419 routeSQL.php:1476 routeSQL.php:1491 routeSQL.php:1714 +#: routeSQL.php:1729 routeSQL.php:1736 routeSQL.php:1739 msgid "Access forbidden" msgstr "Access forbidden" @@ -27,22 +28,28 @@ msgstr "Add new entry" msgid "Already sign in" msgstr "Already sign in" -#: dblayer.php:495 dblayeroo.php:2822 +#: dblayer.php:495 msgid "An entry with these values already exists" msgstr "An entry with these values already exists" +#: dblayeroo.php:3036 dblayeroo.php:3043 +#, php-format +msgid "An entry with this value '%s' already exists" +msgstr "" + #: dblayer.php:517 msgid "An entry with this value already exists" msgstr "An entry with this value already exists" -#: authzgroups.php:177 authzgroups.php:212 authzgroups.php:249 routeSQL.php:348 -#: routeSQL.php:363 routeSQL.php:427 routeSQL.php:441 routeSQL.php:448 -#: routeSQL.php:495 routeSQL.php:509 routeSQL.php:516 routeSQL.php:561 -#: routeSQL.php:575 routeSQL.php:582 routeSQL.php:640 routeSQL.php:655 -#: routeSQL.php:1101 routeSQL.php:1115 routeSQL.php:1122 routeSQL.php:1162 -#: routeSQL.php:1176 routeSQL.php:1183 routeSQL.php:1393 routeSQL.php:1407 -#: routeSQL.php:1414 routeSQL.php:1475 routeSQL.php:1489 routeSQL.php:1713 -#: routeSQL.php:1727 routeSQL.php:1734 +#: authzgroups.php:177 authzgroups.php:212 authzgroups.php:249 +#: authzgroupsoo.php:199 authzgroupsoo.php:234 authzgroupsoo.php:271 +#: routeSQL.php:348 routeSQL.php:363 routeSQL.php:427 routeSQL.php:441 +#: routeSQL.php:448 routeSQL.php:495 routeSQL.php:509 routeSQL.php:516 +#: routeSQL.php:561 routeSQL.php:575 routeSQL.php:582 routeSQL.php:640 +#: routeSQL.php:655 routeSQL.php:1101 routeSQL.php:1115 routeSQL.php:1122 +#: routeSQL.php:1162 routeSQL.php:1176 routeSQL.php:1183 routeSQL.php:1393 +#: routeSQL.php:1407 routeSQL.php:1414 routeSQL.php:1475 routeSQL.php:1489 +#: routeSQL.php:1713 routeSQL.php:1727 routeSQL.php:1734 msgid "Anonymous not allowed" msgstr "Anonymous not allowed" @@ -50,7 +57,7 @@ msgstr "Anonymous not allowed" msgid "Are you sure to delete this entry?" msgstr "Are you sure to delete this entry?" -#: mail.php:869 mail.php:886 +#: mail.php:879 mail.php:896 #, php-format msgid "Attachment '%d' not found" msgstr "Attachment '%d' not found" @@ -63,7 +70,7 @@ msgstr "" msgid "B" msgstr "" -#: authentication.php:358 +#: authentication.php:364 msgid "Bad login/password" msgstr "Bad login/password" @@ -107,7 +114,7 @@ msgstr "Can not change the primary key" msgid "Can not create cache directory %s" msgstr "Can not create cache directory %s" -#: form.php:214 +#: form.php:247 msgid "Can not read the data from the form : Expired or missing CSRF Token" msgstr "" @@ -115,7 +122,7 @@ msgstr "" msgid "Can not store FALSE in cache" msgstr "Can not store FALSE in cache" -#: smtp.php:106 +#: smtp.php:107 #, php-format msgid "Can't activate STARTTLS %s" msgstr "Can't activate STARTTLS %s" @@ -128,12 +135,12 @@ msgstr "Can't change the password" msgid "Can't change the password if the user is not authenticated" msgstr "Can't change the password if the user is not authenticated" -#: smtp.php:82 +#: smtp.php:83 #, php-format msgid "Can't connect to SMTP server : %s" msgstr "Can't connect to SMTP server : %s" -#: authsympa.php:71 +#: authsympa.php:72 msgid "Can't connect with provided email/password to sympa" msgstr "Can't connect with provided email/password to sympa" @@ -158,15 +165,15 @@ msgstr "Can't create object not owned by myself" msgid "Can't create object with not owned group" msgstr "Can't create object with not owned group" -#: mail.php:263 +#: mail.php:268 msgid "Can't find boundary in multipart/" msgstr "Can't find boundary in multipart/" -#: mail.php:528 +#: mail.php:536 msgid "Can't find the place to store the HTML" msgstr "Can't find the place to store the HTML" -#: mail.php:613 +#: mail.php:622 msgid "Can't find the place to store the TEXT" msgstr "Can't find the place to store the TEXT" @@ -187,7 +194,7 @@ msgstr "" msgid "Can't save configuration file '%s'" msgstr "Can't save configuration file '%s'" -#: smtp.php:171 smtp.php:201 smtp.php:213 +#: smtp.php:173 smtp.php:203 smtp.php:215 msgid "Can't send email : not connected to SMTP server" msgstr "Can't send email : not connected to SMTP server" @@ -196,13 +203,14 @@ msgstr "Can't send email : not connected to SMTP server" msgid "Can't send in JSON invalid data : %s" msgstr "" -#: dblayeroo.php:2757 +#: dblayeroo.php:2966 #, php-format msgid "Can't update multiple rows with unique value on col '%s'" msgstr "" #: authzgroups.php:286 authzgroups.php:306 authzgroups.php:332 -#: authzgroups.php:360 +#: authzgroups.php:360 authzgroupsoo.php:306 authzgroupsoo.php:324 +#: authzgroupsoo.php:347 authzgroupsoo.php:375 msgid "Comment" msgstr "Comment" @@ -221,19 +229,29 @@ msgstr "Creation done" #: authzgroups.php:380 authzgroups.php:565 authzgroups.php:580 #: authzgroups.php:596 authzgroups.php:614 authzgroups.php:634 -#: authzgroups.php:652 authzgroups.php:668 +#: authzgroups.php:652 authzgroups.php:668 authzgroupsoo.php:395 +#: authzgroupsoo.php:640 authzgroupsoo.php:658 authzgroupsoo.php:677 +#: authzgroupsoo.php:698 authzgroupsoo.php:721 authzgroupsoo.php:742 +#: authzgroupsoo.php:761 msgid "DB for Group is not connected" msgstr "DB for Group is not connected" #: authzgroups.php:383 authzgroups.php:706 authzgroups.php:728 #: authzgroups.php:753 authzgroups.php:810 authzgroups.php:836 #: authzgroups.php:863 authzgroups.php:882 authzgroups.php:901 +#: authzgroupsoo.php:398 authzgroupsoo.php:801 authzgroupsoo.php:826 +#: authzgroupsoo.php:858 authzgroupsoo.php:926 authzgroupsoo.php:953 +#: authzgroupsoo.php:980 authzgroupsoo.php:1003 authzgroupsoo.php:1025 msgid "DB for GroupMember is not connected" msgstr "DB for GroupMember is not connected" #: authzgroups.php:44 authzgroups.php:377 authzgroups.php:417 #: authzgroups.php:433 authzgroups.php:450 authzgroups.php:469 #: authzgroups.php:491 authzgroups.php:511 authzgroups.php:527 +#: authzgroupsoo.php:83 authzgroupsoo.php:392 authzgroupsoo.php:425 +#: authzgroupsoo.php:443 authzgroupsoo.php:468 authzgroupsoo.php:487 +#: authzgroupsoo.php:508 authzgroupsoo.php:531 authzgroupsoo.php:557 +#: authzgroupsoo.php:581 authzgroupsoo.php:600 msgid "DB for Object is not connected" msgstr "DB for Object is not connected" @@ -241,14 +259,18 @@ msgstr "DB for Object is not connected" #: authzgroups.php:1017 authzgroups.php:1034 authzgroups.php:1055 #: authzgroups.php:1087 authzgroups.php:1119 authzgroups.php:1141 #: authzgroups.php:1157 authzgroups.php:1171 authzgroups.php:1184 -#: authzgroups.php:1201 +#: authzgroups.php:1201 authzgroupsoo.php:402 authzgroupsoo.php:1072 +#: authzgroupsoo.php:1117 authzgroupsoo.php:1156 authzgroupsoo.php:1176 +#: authzgroupsoo.php:1200 authzgroupsoo.php:1236 authzgroupsoo.php:1272 +#: authzgroupsoo.php:1296 authzgroupsoo.php:1312 authzgroupsoo.php:1328 +#: authzgroupsoo.php:1343 authzgroupsoo.php:1362 msgid "DB for Right is not connected" msgstr "DB for Right is not connected" #: dblayer.php:238 dblayer.php:257 dblayer.php:601 dblayer.php:712 #: dblayer.php:893 dblayer.php:995 dblayer.php:1049 dblayer.php:1079 -#: dblayeroo.php:243 dblayeroo.php:270 dblayeroo.php:334 dblayeroo.php:650 -#: dblayeroo.php:2374 +#: dblayeroo.php:248 dblayeroo.php:275 dblayeroo.php:339 dblayeroo.php:667 +#: dblayeroo.php:2549 msgid "Database not connected" msgstr "Database not connected" @@ -278,7 +300,7 @@ msgstr "Directory '%s' already exists" msgid "Directory '%s' available or not readable or not writeable" msgstr "Directory '%s' available or not readable or not writeable" -#: dbjson.php:49 +#: dbjson.php:52 #, php-format msgid "Directory '%s' doesn't exists" msgstr "Directory '%s' doesn't exists" @@ -303,7 +325,7 @@ msgstr "Directory '%s' is not writeable" msgid "Directory '%s' not accessible by external check read-write" msgstr "Directory '%s' not accessible by external check read-write" -#: dbjson.php:55 +#: dbjson.php:58 #, php-format msgid "Directory '%s' not writeable and dbfile '%s' not exists" msgstr "Directory '%s' not writeable and dbfile '%s' not exists" @@ -316,7 +338,7 @@ msgstr "Display information provided is not an array" msgid "Display the element {FIRST} to {LAST} on {COUNT} elements" msgstr "Display the element {FIRST} to {LAST} on {COUNT} elements" -#: dblayer.php:140 dblayeroo.php:91 +#: dblayer.php:140 dblayeroo.php:96 #, php-format msgid "Driver PDO '%s' not available in PHP" msgstr "" @@ -329,11 +351,11 @@ msgstr "" msgid "Email address" msgstr "Email address" -#: language.php:359 +#: language.php:360 msgid "English (GB)" msgstr "English (GB)" -#: language.php:358 +#: language.php:359 msgid "English (US)" msgstr "English (US)" @@ -345,7 +367,7 @@ msgstr "Entry to modify unavailable" msgid "Error in configuration file" msgstr "Error in configuration file" -#: renderer.php:129 routeSQL.php:149 +#: renderer.php:131 routeSQL.php:149 msgid "Error!" msgstr "Error!" @@ -373,12 +395,12 @@ msgstr "Extension not allowed" msgid "Field '%s' (defined in titles) not found in fields" msgstr "Field '%s' (defined in titles) not found in fields" -#: dblayeroo.php:2708 +#: dblayeroo.php:2917 #, php-format msgid "Field '%s' : invalid SQL type (%s) in $this->fields " msgstr "" -#: dblayeroo.php:395 dblayeroo.php:493 dblayeroo.php:551 +#: dblayeroo.php:404 dblayeroo.php:506 dblayeroo.php:564 #, php-format msgid "Field '%s' is autoincrement but not primary" msgstr "" @@ -388,35 +410,39 @@ msgstr "" msgid "Field '%s' not allowed" msgstr "Field '%s' not allowed" -#: dblayeroo.php:2688 +#: dblayeroo.php:2897 msgid "Field data too long" msgstr "" -#: dblayeroo.php:2658 form.php:407 +#: dblayeroo.php:2861 form.php:457 msgid "Field mandatory and not provided" msgstr "Field mandatory and not provided" -#: dblayeroo.php:2673 -msgid "Field not a string nor a integer" +#: dblayeroo.php:2876 +msgid "Field not a string nor numeric" msgstr "" -#: dblayeroo.php:2693 +#: dblayeroo.php:2902 msgid "Field not in date format" msgstr "" -#: dblayeroo.php:2699 +#: dblayeroo.php:2908 msgid "Field not in datetime format" msgstr "" -#: dblayeroo.php:2683 +#: dblayeroo.php:2892 +msgid "Field not in float format" +msgstr "" + +#: dblayeroo.php:2886 msgid "Field not in integer format" msgstr "" -#: dblayeroo.php:2704 +#: dblayeroo.php:2913 msgid "Field not in time format" msgstr "" -#: dblayeroo.php:2666 +#: dblayeroo.php:2869 msgid "Field null and defined as NOT NULL and not Autoincrement" msgstr "" @@ -450,7 +476,7 @@ msgstr "File '%s' is not writeable" msgid "File '%s' not found" msgstr "File '%s' not found" -#: dbjson.php:60 dbjson.php:63 inifile.php:24 +#: dbjson.php:64 dbjson.php:67 inifile.php:24 #, php-format msgid "File '%s' not readable" msgstr "File '%s' not readable" @@ -480,7 +506,7 @@ msgstr "File cache %s is not readable" msgid "File cache %s is not writable" msgstr "File cache %s is not writable" -#: language.php:357 +#: language.php:358 msgid "French" msgstr "French" @@ -492,11 +518,11 @@ msgstr "" msgid "Go back to the calling page" msgstr "Go back to the calling page" -#: authzgroups.php:304 +#: authzgroups.php:304 authzgroupsoo.php:323 msgid "Group" msgstr "Group" -#: authzgroups.php:794 +#: authzgroups.php:794 authzgroupsoo.php:906 msgid "IDUser in IDGroup not found" msgstr "IDUser in IDGroup not found" @@ -510,7 +536,7 @@ msgstr "Incorrect date provided for field '%s'" msgid "Incorrect datetime provided for field '%s'" msgstr "Incorrect datetime provided for field '%s'" -#: renderer.php:137 +#: renderer.php:139 msgid "Info :" msgstr "Info :" @@ -530,7 +556,7 @@ msgstr "Invalid CIDR" msgid "Invalid CIDR provided" msgstr "" -#: csrf.php:66 +#: csrf.php:76 msgid "Invalid CSRF token provided" msgstr "Invalid CSRF token provided" @@ -561,15 +587,15 @@ msgstr "" msgid "Invalid Network address" msgstr "" -#: dblayeroo.php:3341 +#: dblayeroo.php:3634 msgid "Invalid UUID provided : invalid char" msgstr "" -#: dblayeroo.php:3338 +#: dblayeroo.php:3631 msgid "Invalid UUID provided : invalid length" msgstr "" -#: dblayeroo.php:3344 +#: dblayeroo.php:3637 msgid "Invalid UUID provided : missing dash" msgstr "" @@ -597,7 +623,7 @@ msgstr "" msgid "Invalid bottom provided to graph Axis" msgstr "" -#: dblayeroo.php:3256 +#: dblayeroo.php:3549 msgid "Invalid char provided" msgstr "" @@ -626,39 +652,39 @@ msgstr "" msgid "Invalid data provided: line %d doesn't have the same number of elements as the first line (%d != %d elements)" msgstr "" -#: dbjson.php:43 +#: dbjson.php:45 msgid "Invalid database type provided in dbjson" msgstr "Invalid database type provided in dbjson" -#: dblayeroo.php:3424 dblayeroo.php:3427 dblayeroo.php:3430 +#: dblayeroo.php:3717 dblayeroo.php:3720 dblayeroo.php:3723 msgid "Invalid date and time provided : can not parse the date" msgstr "" -#: dblayeroo.php:3420 +#: dblayeroo.php:3713 msgid "Invalid date and time provided : invalid chars" msgstr "" -#: dblayeroo.php:3417 +#: dblayeroo.php:3710 msgid "Invalid date and time provided : invalid length" msgstr "" -#: dblayeroo.php:3433 +#: dblayeroo.php:3726 msgid "Invalid date and time provided : the date doesn't exists" msgstr "" -#: dblayeroo.php:3364 dblayeroo.php:3367 dblayeroo.php:3370 +#: dblayeroo.php:3657 dblayeroo.php:3660 dblayeroo.php:3663 msgid "Invalid date provided : can not parse the date" msgstr "" -#: dblayeroo.php:3360 +#: dblayeroo.php:3653 msgid "Invalid date provided : invalid chars" msgstr "" -#: dblayeroo.php:3357 +#: dblayeroo.php:3650 msgid "Invalid date provided : invalid length" msgstr "" -#: dblayeroo.php:3373 +#: dblayeroo.php:3666 msgid "Invalid date provided : the date doesn't exists" msgstr "" @@ -674,24 +700,28 @@ msgstr "Invalid email provided : not a string" msgid "Invalid email provided : too short" msgstr "Invalid email provided : too short" -#: mail.php:1499 +#: mail.php:1507 msgid "Invalid encoding provided to encodeHeaderStringWithPosition" msgstr "" -#: mail.php:1464 +#: mail.php:1472 msgid "Invalid encoding provided to encodeHeaders" msgstr "Invalid encoding provided to encodeHeaders" -#: mail.php:1442 +#: mail.php:1451 #, php-format msgid "Invalid encoding provided to encodingDecode : '%s'" msgstr "Invalid encoding provided to encodingDecode : '%s'" -#: mail.php:1422 +#: mail.php:1432 #, php-format msgid "Invalid encoding provided to encodingEncode : %s" msgstr "Invalid encoding provided to encodingEncode : %s" +#: queuefile.php:207 +msgid "Invalid entry requested" +msgstr "" + #: users.php:119 msgid "Invalid firstname provided : colon forbidden" msgstr "Invalid firstname provided : colon forbidden" @@ -740,15 +770,15 @@ msgstr "" msgid "Invalid horizontalData provided to graph horizontalData" msgstr "" -#: dblayeroo.php:3228 +#: dblayeroo.php:3521 msgid "Invalid integer : can not start by Minus Zero" msgstr "" -#: dblayeroo.php:3225 +#: dblayeroo.php:3518 msgid "Invalid integer : can not start by Zero" msgstr "" -#: dblayeroo.php:3222 +#: dblayeroo.php:3515 msgid "Invalid integer : invalid char" msgstr "" @@ -772,7 +802,7 @@ msgstr "Invalid length" msgid "Invalid lineColor provided to line style" msgstr "" -#: dblayeroo.php:3325 +#: dblayeroo.php:3618 msgid "Invalid mail provided" msgstr "" @@ -844,15 +874,15 @@ msgstr "" msgid "Invalid pointWidth provided to line style" msgstr "" -#: dblayeroo.php:3207 +#: dblayeroo.php:3500 msgid "Invalid positive integer : can not start by Zero" msgstr "" -#: dblayeroo.php:3201 +#: dblayeroo.php:3494 msgid "Invalid positive integer : can not start by minus sign" msgstr "" -#: dblayeroo.php:3204 +#: dblayeroo.php:3497 msgid "Invalid positive integer : invalid char" msgstr "" @@ -876,23 +906,23 @@ msgstr "" msgid "Invalid text provided to graph title" msgstr "" -#: dblayeroo.php:3400 +#: dblayeroo.php:3693 msgid "Invalid time provided : can not parse the date" msgstr "" -#: dblayeroo.php:3394 dblayeroo.php:3397 +#: dblayeroo.php:3687 dblayeroo.php:3690 msgid "Invalid time provided : can not parse the time" msgstr "" -#: dblayeroo.php:3390 +#: dblayeroo.php:3683 msgid "Invalid time provided : invalid chars" msgstr "" -#: dblayeroo.php:3387 +#: dblayeroo.php:3680 msgid "Invalid time provided : invalid length" msgstr "" -#: dblayeroo.php:3403 +#: dblayeroo.php:3696 msgid "Invalid time provided : the time doesn't exists" msgstr "" @@ -912,11 +942,11 @@ msgstr "" msgid "Invalid top provided to graph Axis" msgstr "" -#: dblayeroo.php:3310 +#: dblayeroo.php:3603 msgid "Invalid value provided : do not match the regex" msgstr "" -#: dblayeroo.php:3283 +#: dblayeroo.php:3576 msgid "Invalid value provided : not in allowed list" msgstr "" @@ -941,7 +971,7 @@ msgstr "" msgid "Mandatory field '%s' is empty" msgstr "Mandatory field '%s' is empty" -#: dblayer.php:317 dblayeroo.php:2628 +#: dblayer.php:317 dblayeroo.php:2831 #, php-format msgid "Mandatory field '%s' not provided" msgstr "Mandatory field '%s' not provided" @@ -956,19 +986,20 @@ msgstr "" msgid "Mandatory value for parameter '%s' is not provided after double-dash" msgstr "" -#: mail.php:431 +#: mail.php:437 msgid "Missing FileInfo PHP Extension" msgstr "Missing FileInfo PHP Extension" -#: mail.php:433 +#: mail.php:440 msgid "Missing OpenSSL PHP Extension" msgstr "Missing OpenSSL PHP Extension" -#: authzgroups.php:214 +#: authzgroups.php:214 authzgroupsoo.php:236 msgid "Modification forbidden" msgstr "Modification forbidden" -#: authzgroups.php:282 authzgroups.php:302 +#: authzgroups.php:282 authzgroups.php:302 authzgroupsoo.php:304 +#: authzgroupsoo.php:322 msgid "Module" msgstr "Module" @@ -976,11 +1007,11 @@ msgstr "Module" msgid "Network and IP address are not compatible" msgstr "" -#: dbjson.php:41 +#: dbjson.php:42 msgid "No DSN provided to dbjson" msgstr "No DSN provided to dbjson" -#: dblayer.php:900 dblayer.php:1028 dblayer.php:1082 dblayeroo.php:337 +#: dblayer.php:900 dblayer.php:1028 dblayer.php:1082 dblayeroo.php:342 msgid "No Field defined" msgstr "No Field defined" @@ -1004,7 +1035,7 @@ msgstr "No PHP support for openssl_random_pseudo_bytes" msgid "No Primary defined" msgstr "No Primary defined" -#: authsympa.php:45 +#: authsympa.php:46 msgid "No SOAP PHP library available" msgstr "No SOAP PHP library available" @@ -1021,7 +1052,7 @@ msgstr "No Size provided for varchar field" msgid "No Size provided for varchar field '%s'" msgstr "No Size provided for varchar field '%s'" -#: authsympa.php:53 +#: authsympa.php:54 msgid "No WSDL provided to Sympa auth" msgstr "No WSDL provided to Sympa auth" @@ -1029,7 +1060,7 @@ msgstr "No WSDL provided to Sympa auth" msgid "No authentication available" msgstr "No authentication available" -#: smtp.php:135 +#: smtp.php:137 msgid "No authentication method available for the server" msgstr "No authentication method available for the server" @@ -1037,7 +1068,7 @@ msgstr "No authentication method available for the server" msgid "No cache directory defined" msgstr "No cache directory defined" -#: dblayeroo.php:2796 dblayeroo.php:2808 +#: dblayeroo.php:3005 dblayeroo.php:3017 #, php-format msgid "No column '%s' defined but must be unique !" msgstr "" @@ -1056,7 +1087,7 @@ msgstr "No connect to authentication available" msgid "No data defined for Axis" msgstr "" -#: outputhtml.php:58 +#: outputhtml.php:60 #, php-format msgid "No data provided from view %s::%s" msgstr "No data provided from view %s::%s" @@ -1107,7 +1138,7 @@ msgstr "No fieldLastname defined" msgid "No fieldPassword defined" msgstr "No fieldPassword defined" -#: dblayeroo.php:2845 +#: dblayeroo.php:3069 #, php-format msgid "No foreign object configured to test the foreign key for table '%s'" msgstr "" @@ -1132,6 +1163,10 @@ msgstr "" msgid "No object removed" msgstr "No object removed" +#: certificationauthority.php:62 +msgid "No openssl support in PHP" +msgstr "" + #: getopts.php:487 msgid "No option defined" msgstr "" @@ -1148,11 +1183,11 @@ msgstr "No password change available" msgid "No password overwrite available" msgstr "No password overwrite available" -#: csrf.php:61 +#: csrf.php:71 msgid "No previous CSRF token : abort" msgstr "No previous CSRF token : abort" -#: dblayer.php:1085 dblayeroo.php:340 +#: dblayer.php:1085 dblayeroo.php:345 msgid "No table name defined to create the table" msgstr "" @@ -1160,11 +1195,11 @@ msgstr "" msgid "No table name defined to delete in the table" msgstr "" -#: dblayer.php:1052 dblayeroo.php:653 +#: dblayer.php:1052 dblayeroo.php:670 msgid "No table name defined to drop the table" msgstr "" -#: dblayer.php:605 dblayeroo.php:2377 +#: dblayer.php:605 dblayeroo.php:2552 msgid "No table name defined to insert in the table" msgstr "" @@ -1176,11 +1211,11 @@ msgstr "" msgid "No table name defined to update in the table" msgstr "" -#: dblayer.php:136 dblayeroo.php:87 +#: dblayer.php:136 dblayeroo.php:92 msgid "No valid DSN provided" msgstr "No valid DSN provided" -#: form.php:1073 +#: form.php:1176 msgid "No value provided" msgstr "No value provided" @@ -1195,7 +1230,7 @@ msgstr "No write rights on %s" msgid "Not authenticated" msgstr "Not authenticated" -#: authzgroups.php:284 +#: authzgroups.php:284 authzgroupsoo.php:305 msgid "Object" msgstr "Object" @@ -1223,7 +1258,7 @@ msgstr "Object don't start by slash" msgid "Object not found" msgstr "Object not found" -#: csrf.php:72 +#: csrf.php:82 msgid "Obsolete CSRF token provided" msgstr "Obsolete CSRF token provided" @@ -1244,11 +1279,11 @@ msgstr "" msgid "PDO Engine not supported in dbLayer" msgstr "PDO Engine not supported in dbLayer" -#: dblayeroo.php:635 dblayeroo.php:922 +#: dblayeroo.php:652 dblayeroo.php:1028 msgid "PDO Engine not supported in dbLayeroo" msgstr "" -#: mail.php:150 +#: mail.php:154 msgid "Param provided to sectionUpdate is not array" msgstr "Param provided to sectionUpdate is not array" @@ -1317,7 +1352,7 @@ msgstr "Removing more than one object" msgid "Restricted access" msgstr "Restricted access" -#: authzgroups.php:358 +#: authzgroups.php:358 authzgroupsoo.php:374 msgid "Right" msgstr "Right" @@ -1329,11 +1364,11 @@ msgstr "Save the data" msgid "Search:" msgstr "Search:" -#: mail.php:137 mail.php:148 mail.php:189 +#: mail.php:140 mail.php:151 mail.php:193 msgid "Section not found" msgstr "Section not found" -#: mail.php:112 mail.php:124 +#: mail.php:113 mail.php:126 msgid "Section parent not found" msgstr "Section parent not found" @@ -1350,11 +1385,11 @@ msgstr "Select not found for id=%d" msgid "Serie" msgstr "" -#: smtp.php:113 +#: smtp.php:114 msgid "Server doesn't supports STARTTLS" msgstr "Server doesn't supports STARTTLS" -#: authshibboleth.php:98 +#: authshibboleth.php:99 msgid "Shibboleth is not configured to allow logout" msgstr "Shibboleth is not configured to allow logout" @@ -1362,7 +1397,7 @@ msgstr "Shibboleth is not configured to allow logout" msgid "Sign in" msgstr "Sign in" -#: renderer.php:141 +#: renderer.php:143 msgid "Success : " msgstr "Success : " @@ -1384,7 +1419,7 @@ msgstr "The HTPasswd file '%s' is not found" msgid "The HTPasswd file '%s' is not readable" msgstr "The HTPasswd file '%s' is not readable" -#: authsympa.php:64 +#: authsympa.php:65 msgid "The SOAP connection is not opened" msgstr "The SOAP connection is not opened" @@ -1392,11 +1427,11 @@ msgstr "The SOAP connection is not opened" msgid "The SQL database is not connected" msgstr "The SQL database is not connected" -#: dblayer.php:155 dblayeroo.php:106 +#: dblayer.php:155 dblayeroo.php:111 msgid "The SQLite database file is write protected" msgstr "The SQLite database file is write protected" -#: dblayer.php:1160 dblayeroo.php:412 +#: dblayer.php:1160 dblayeroo.php:421 msgid "The Unique field definition is not an array" msgstr "The Unique field definition is not an array" @@ -1421,7 +1456,7 @@ msgstr "The configuration model file is not readable" msgid "The data provided to create are not array" msgstr "The data provided to create are not array" -#: dblayer.php:151 dblayeroo.php:103 +#: dblayer.php:151 dblayeroo.php:108 msgid "The directory for SQLite database is write protected" msgstr "The directory for SQLite database is write protected" @@ -1430,12 +1465,12 @@ msgstr "The directory for SQLite database is write protected" msgid "The field '%s' doesn't exists in database" msgstr "" -#: dblayeroo.php:2839 +#: dblayeroo.php:3063 #, php-format msgid "The field '%s' must be test on foreign, but is not provided" msgstr "" -#: dblayeroo.php:2928 +#: dblayeroo.php:3160 msgid "The field can not be empty" msgstr "" @@ -1459,7 +1494,7 @@ msgstr "The foreign key '%s' doesn't exists" msgid "The length of varchar field '%s' is not provided" msgstr "The length of varchar field '%s' is not provided" -#: authsympa.php:67 +#: authsympa.php:68 msgid "The list to check is not defined" msgstr "The list to check is not defined" @@ -1483,11 +1518,11 @@ msgstr "The password can't be change for IMAP users" msgid "The password can't be change for LDAP users" msgstr "The password can't be change for LDAP users" -#: authsession.php:58 +#: authsession.php:59 msgid "The password can't be change for SESSION users" msgstr "The password can't be change for SESSION users" -#: authsympa.php:94 +#: authsympa.php:96 msgid "The password can't be change for SYMPA users" msgstr "The password can't be change for SYMPA users" @@ -1503,7 +1538,7 @@ msgstr "The password can't be overwrite for IMAP users" msgid "The password can't be overwrite for LDAP users" msgstr "The password can't be overwrite for LDAP users" -#: authsession.php:71 +#: authsession.php:72 msgid "The password can't be overwrite for SESSION users" msgstr "The password can't be overwrite for SESSION users" @@ -1511,7 +1546,7 @@ msgstr "The password can't be overwrite for SESSION users" msgid "The password can't be overwrite for Shibboleth users" msgstr "The password can't be overwrite for Shibboleth users" -#: authsympa.php:106 +#: authsympa.php:108 msgid "The password can't be overwrite for Sympa users" msgstr "The password can't be overwrite for Sympa users" @@ -1528,7 +1563,7 @@ msgstr "The root can not be removed" msgid "The serie name in legend must not takes more than half of the graph" msgstr "" -#: dblayer.php:612 dblayeroo.php:2383 +#: dblayer.php:612 dblayeroo.php:2558 msgid "The unique configuration is not an array" msgstr "The unique configuration is not an array" @@ -1536,11 +1571,11 @@ msgstr "The unique configuration is not an array" msgid "The user must be in the wanted group" msgstr "The user must be in the wanted group" -#: dblayeroo.php:2938 +#: dblayeroo.php:3170 msgid "The value is not a string" msgstr "" -#: dblayeroo.php:2876 +#: dblayeroo.php:3100 #, php-format msgid "The value of the foreign key '%s' doesn't exists in foreign table" msgstr "" @@ -1572,28 +1607,28 @@ msgstr "Unable to find the user : '%s'" msgid "Unable to get the user password from database" msgstr "Unable to get the user password from database" -#: dblayeroo.php:2735 +#: dblayeroo.php:2944 msgid "Unique def is not a string or an array" msgstr "" -#: dblayer.php:609 dblayeroo.php:2380 +#: dblayer.php:609 dblayeroo.php:2555 msgid "Unique fields of table are not defined" msgstr "Unique fields of table are not defined" -#: form.php:200 +#: form.php:233 msgid "Unknown FORM method (GET or POST allowed)" msgstr "Unknown FORM method (GET or POST allowed)" -#: dblayer.php:228 dblayeroo.php:193 +#: dblayer.php:228 dblayeroo.php:198 msgid "Unknown PDO driver provided" msgstr "Unknown PDO driver provided" -#: dblayeroo.php:500 +#: dblayeroo.php:513 #, php-format msgid "Unknown additionnal '%s' parameter for field '%s'" msgstr "" -#: dblayeroo.php:401 dblayeroo.php:597 +#: dblayeroo.php:410 dblayeroo.php:614 #, php-format msgid "Unknown additionnal parameter '%s' for field '%s'" msgstr "" @@ -1608,7 +1643,7 @@ msgstr "Unknown additionnal parameter for field '%s'" msgid "Unknown color provided to graphColor::textToRGB: '%s'" msgstr "" -#: dblayer.php:291 dblayeroo.php:306 +#: dblayer.php:291 dblayeroo.php:311 msgid "Unknown database driver in listTables" msgstr "Unknown database driver in listTables" @@ -1625,16 +1660,24 @@ msgstr "" msgid "Unknown pointShape for serie" msgstr "" +#: authzgroupsoo.php:1125 authzgroupsoo.php:1244 +msgid "Unknown right provided (0/1/2 only)" +msgstr "" + +#: authzgroupsoo.php:1082 authzgroupsoo.php:1208 +msgid "Unknown right provided (NO/RO/RW only)" +msgstr "" + #: authzgroups.php:952 authzgroups.php:990 authzgroups.php:1062 #: authzgroups.php:1094 msgid "Unknown right provided (RO/RW only)" msgstr "Unknown right provided (RO/RW only)" -#: authzgroups.php:105 +#: authzgroups.php:105 authzgroupsoo.php:127 msgid "Unknown right stored" msgstr "Unknown right stored" -#: dblayer.php:1131 dblayeroo.php:376 +#: dblayer.php:1131 dblayeroo.php:385 #, php-format msgid "Unknown type '%s' provided for field '%s'" msgstr "Unknown type '%s' provided for field '%s'" @@ -1644,7 +1687,7 @@ msgstr "Unknown type '%s' provided for field '%s'" msgid "Unknown type in imap_fetchstructure : %s" msgstr "Unknown type in imap_fetchstructure : %s" -#: dblayer.php:1224 dblayer.php:1323 dblayeroo.php:474 dblayeroo.php:579 +#: dblayer.php:1224 dblayer.php:1323 dblayeroo.php:487 dblayeroo.php:596 #, php-format msgid "Unknown type provided for field '%s'" msgstr "Unknown type provided for field '%s'" @@ -1658,11 +1701,16 @@ msgstr "Unkwnown cache method : " msgid "Update done" msgstr "Update done" -#: authzgroups.php:328 +#: authzgroups.php:328 authzgroupsoo.php:345 msgid "User" msgstr "User" -#: authzgroups.php:739 authzgroups.php:764 +#: authsympa.php:78 +msgid "User not in Sympa list or bad password" +msgstr "" + +#: authzgroups.php:739 authzgroups.php:764 authzgroupsoo.php:840 +#: authzgroupsoo.php:872 msgid "Wanted GroupMember not found" msgstr "Wanted GroupMember not found" @@ -1670,22 +1718,31 @@ msgstr "Wanted GroupMember not found" #: authzgroups.php:638 authzgroups.php:711 authzgroups.php:733 #: authzgroups.php:758 authzgroups.php:868 authzgroups.php:887 #: authzgroups.php:906 authzgroups.php:958 authzgroups.php:996 -#: authzgroups.php:1123 authzgroups.php:1145 +#: authzgroups.php:1123 authzgroups.php:1145 authzgroupsoo.php:662 +#: authzgroupsoo.php:681 authzgroupsoo.php:702 authzgroupsoo.php:725 +#: authzgroupsoo.php:806 authzgroupsoo.php:831 authzgroupsoo.php:863 +#: authzgroupsoo.php:985 authzgroupsoo.php:1008 authzgroupsoo.php:1030 +#: authzgroupsoo.php:1088 authzgroupsoo.php:1131 authzgroupsoo.php:1276 +#: authzgroupsoo.php:1300 msgid "Wanted group not found" msgstr "Wanted group not found" #: authzgroups.php:437 authzgroups.php:454 authzgroups.php:473 #: authzgroups.php:495 authzgroups.php:962 authzgroups.php:1000 -#: authzgroups.php:1127 authzgroups.php:1188 +#: authzgroups.php:1127 authzgroups.php:1188 authzgroupsoo.php:491 +#: authzgroupsoo.php:512 authzgroupsoo.php:535 authzgroupsoo.php:561 +#: authzgroupsoo.php:1092 authzgroupsoo.php:1135 authzgroupsoo.php:1280 +#: authzgroupsoo.php:1347 msgid "Wanted object not found" msgstr "Wanted object not found" #: authzgroups.php:1021 authzgroups.php:1038 authzgroups.php:1068 -#: authzgroups.php:1100 +#: authzgroups.php:1100 authzgroupsoo.php:1160 authzgroupsoo.php:1180 +#: authzgroupsoo.php:1214 authzgroupsoo.php:1250 msgid "Wanted right not found" msgstr "Wanted right not found" -#: renderer.php:133 routeSQL.php:151 +#: renderer.php:135 routeSQL.php:151 msgid "Warning!" msgstr "Warning!" @@ -1710,18 +1767,20 @@ msgid "elements" msgstr "elements" #: authzgroups.php:300 authzgroups.php:330 authzgroups.php:355 +#: authzgroupsoo.php:321 authzgroupsoo.php:346 authzgroupsoo.php:372 msgid "idgroup" msgstr "idgroup" -#: authzgroups.php:326 +#: authzgroups.php:326 authzgroupsoo.php:344 msgid "idgroupmember" msgstr "idgroupmember" -#: authzgroups.php:280 authzgroups.php:357 +#: authzgroups.php:280 authzgroups.php:357 authzgroupsoo.php:303 +#: authzgroupsoo.php:373 msgid "idobject" msgstr "idobject" -#: authzgroups.php:353 +#: authzgroups.php:353 authzgroupsoo.php:371 msgid "idright" msgstr "idright" diff --git a/locale/fr_FR.UTF8/LC_MESSAGES/domframework.mo b/locale/fr_FR.UTF8/LC_MESSAGES/domframework.mo index ea92d4e..05f38ff 100644 Binary files a/locale/fr_FR.UTF8/LC_MESSAGES/domframework.mo and b/locale/fr_FR.UTF8/LC_MESSAGES/domframework.mo differ diff --git a/locale/fr_FR.UTF8/LC_MESSAGES/domframework.po b/locale/fr_FR.UTF8/LC_MESSAGES/domframework.po index 045c34e..b84f4e8 100644 --- a/locale/fr_FR.UTF8/LC_MESSAGES/domframework.po +++ b/locale/fr_FR.UTF8/LC_MESSAGES/domframework.po @@ -7,15 +7,16 @@ msgstr "Content-Type: text/plain; charset=UTF-8\n" msgid "%s is write protected" msgstr "%s est protégé en écriture" -#: authzgroups.php:179 authzgroups.php:251 routeSQL.php:350 routeSQL.php:365 -#: routeSQL.php:428 routeSQL.php:443 routeSQL.php:450 routeSQL.php:453 -#: routeSQL.php:496 routeSQL.php:511 routeSQL.php:518 routeSQL.php:521 -#: routeSQL.php:562 routeSQL.php:577 routeSQL.php:584 routeSQL.php:587 -#: routeSQL.php:642 routeSQL.php:657 routeSQL.php:1102 routeSQL.php:1117 -#: routeSQL.php:1124 routeSQL.php:1127 routeSQL.php:1163 routeSQL.php:1178 -#: routeSQL.php:1185 routeSQL.php:1188 routeSQL.php:1394 routeSQL.php:1409 -#: routeSQL.php:1416 routeSQL.php:1419 routeSQL.php:1476 routeSQL.php:1491 -#: routeSQL.php:1714 routeSQL.php:1729 routeSQL.php:1736 routeSQL.php:1739 +#: authzgroups.php:179 authzgroups.php:251 authzgroupsoo.php:201 +#: authzgroupsoo.php:273 routeSQL.php:350 routeSQL.php:365 routeSQL.php:428 +#: routeSQL.php:443 routeSQL.php:450 routeSQL.php:453 routeSQL.php:496 +#: routeSQL.php:511 routeSQL.php:518 routeSQL.php:521 routeSQL.php:562 +#: routeSQL.php:577 routeSQL.php:584 routeSQL.php:587 routeSQL.php:642 +#: routeSQL.php:657 routeSQL.php:1102 routeSQL.php:1117 routeSQL.php:1124 +#: routeSQL.php:1127 routeSQL.php:1163 routeSQL.php:1178 routeSQL.php:1185 +#: routeSQL.php:1188 routeSQL.php:1394 routeSQL.php:1409 routeSQL.php:1416 +#: routeSQL.php:1419 routeSQL.php:1476 routeSQL.php:1491 routeSQL.php:1714 +#: routeSQL.php:1729 routeSQL.php:1736 routeSQL.php:1739 msgid "Access forbidden" msgstr "Accès interdit" @@ -31,22 +32,28 @@ msgstr "Ajouter une nouvelle entrée" msgid "Already sign in" msgstr "Déjà authentifié" -#: dblayer.php:495 dblayeroo.php:2822 +#: dblayer.php:495 msgid "An entry with these values already exists" msgstr "Une entrée existe déjà pour ces valeurs" +#: dblayeroo.php:3036 dblayeroo.php:3043 +#, php-format +msgid "An entry with this value '%s' already exists" +msgstr "Une entrée avec cette valeur '%s' existe déjà" + #: dblayer.php:517 msgid "An entry with this value already exists" msgstr "Une entrée existe déjà pour cette valeur" -#: authzgroups.php:177 authzgroups.php:212 authzgroups.php:249 routeSQL.php:348 -#: routeSQL.php:363 routeSQL.php:427 routeSQL.php:441 routeSQL.php:448 -#: routeSQL.php:495 routeSQL.php:509 routeSQL.php:516 routeSQL.php:561 -#: routeSQL.php:575 routeSQL.php:582 routeSQL.php:640 routeSQL.php:655 -#: routeSQL.php:1101 routeSQL.php:1115 routeSQL.php:1122 routeSQL.php:1162 -#: routeSQL.php:1176 routeSQL.php:1183 routeSQL.php:1393 routeSQL.php:1407 -#: routeSQL.php:1414 routeSQL.php:1475 routeSQL.php:1489 routeSQL.php:1713 -#: routeSQL.php:1727 routeSQL.php:1734 +#: authzgroups.php:177 authzgroups.php:212 authzgroups.php:249 +#: authzgroupsoo.php:199 authzgroupsoo.php:234 authzgroupsoo.php:271 +#: routeSQL.php:348 routeSQL.php:363 routeSQL.php:427 routeSQL.php:441 +#: routeSQL.php:448 routeSQL.php:495 routeSQL.php:509 routeSQL.php:516 +#: routeSQL.php:561 routeSQL.php:575 routeSQL.php:582 routeSQL.php:640 +#: routeSQL.php:655 routeSQL.php:1101 routeSQL.php:1115 routeSQL.php:1122 +#: routeSQL.php:1162 routeSQL.php:1176 routeSQL.php:1183 routeSQL.php:1393 +#: routeSQL.php:1407 routeSQL.php:1414 routeSQL.php:1475 routeSQL.php:1489 +#: routeSQL.php:1713 routeSQL.php:1727 routeSQL.php:1734 msgid "Anonymous not allowed" msgstr "Accès anonyme interdit" @@ -54,7 +61,7 @@ msgstr "Accès anonyme interdit" msgid "Are you sure to delete this entry?" msgstr "Etes-vous sûr de vouloir supprimer cette entrée ?" -#: mail.php:869 mail.php:886 +#: mail.php:879 mail.php:896 #, php-format msgid "Attachment '%d' not found" msgstr "Fichier joint '%d' introuvable" @@ -67,7 +74,7 @@ msgstr "Erreur d'authentification" msgid "B" msgstr "o" -#: authentication.php:358 +#: authentication.php:364 msgid "Bad login/password" msgstr "Mauvais login/mot de passe" @@ -111,7 +118,7 @@ msgstr "Ne peut changer la clé primaire" msgid "Can not create cache directory %s" msgstr "Ne peut pas créer le répertoire de cache %s" -#: form.php:214 +#: form.php:247 msgid "Can not read the data from the form : Expired or missing CSRF Token" msgstr "Impossible de lire les données du formulaire : le ticket CSRF est expiré ou absent" @@ -119,7 +126,7 @@ msgstr "Impossible de lire les données du formulaire : le ticket CSRF est expir msgid "Can not store FALSE in cache" msgstr "Ne peut pas stocker FALSE en cache" -#: smtp.php:106 +#: smtp.php:107 #, php-format msgid "Can't activate STARTTLS %s" msgstr "Impossible d'activer STARTTLS %s" @@ -132,12 +139,12 @@ msgstr "Impossible de changer le mot de passe" msgid "Can't change the password if the user is not authenticated" msgstr "Impossible de changer le mot de passe si l'utilisateur n'est pas authentifié" -#: smtp.php:82 +#: smtp.php:83 #, php-format msgid "Can't connect to SMTP server : %s" msgstr "Ne peut se connecter au serveur SMTP : %s" -#: authsympa.php:71 +#: authsympa.php:72 msgid "Can't connect with provided email/password to sympa" msgstr "Ne peut pas se connecter avec le mail/mot de passe fourni à Sympa" @@ -162,15 +169,15 @@ msgstr "Ne peut pas créer un objet n'appartenant pas à moi-même" msgid "Can't create object with not owned group" msgstr "Ne peut créer un objet n'appartenant pas à un group" -#: mail.php:263 +#: mail.php:268 msgid "Can't find boundary in multipart/" msgstr "Boundary introuvable dans multipart/" -#: mail.php:528 +#: mail.php:536 msgid "Can't find the place to store the HTML" msgstr "Ne peut trouver la place de stockage pour le HTML" -#: mail.php:613 +#: mail.php:622 msgid "Can't find the place to store the TEXT" msgstr "Ne peut trouver la place de stockage pour le TEXT" @@ -191,7 +198,7 @@ msgstr "Impossible de supprimer une série de données si le nom n'est pas une c msgid "Can't save configuration file '%s'" msgstr "Ne peut pas sauvegarder le fichier de configuration '%s'" -#: smtp.php:171 smtp.php:201 smtp.php:213 +#: smtp.php:173 smtp.php:203 smtp.php:215 msgid "Can't send email : not connected to SMTP server" msgstr "Ne peut pas envoyer l'email : non connecté au serveur SMTP" @@ -200,13 +207,14 @@ msgstr "Ne peut pas envoyer l'email : non connecté au serveur SMTP" msgid "Can't send in JSON invalid data : %s" msgstr "Impossible d'envoyer en JSON des données invalides : %s" -#: dblayeroo.php:2757 +#: dblayeroo.php:2966 #, php-format msgid "Can't update multiple rows with unique value on col '%s'" msgstr "Impossible de mettre à jour plusieurs lignes avec la même valeur sur une colonne unique '%s'" #: authzgroups.php:286 authzgroups.php:306 authzgroups.php:332 -#: authzgroups.php:360 +#: authzgroups.php:360 authzgroupsoo.php:306 authzgroupsoo.php:324 +#: authzgroupsoo.php:347 authzgroupsoo.php:375 msgid "Comment" msgstr "Commentaire" @@ -225,19 +233,29 @@ msgstr "Création effectuée" #: authzgroups.php:380 authzgroups.php:565 authzgroups.php:580 #: authzgroups.php:596 authzgroups.php:614 authzgroups.php:634 -#: authzgroups.php:652 authzgroups.php:668 +#: authzgroups.php:652 authzgroups.php:668 authzgroupsoo.php:395 +#: authzgroupsoo.php:640 authzgroupsoo.php:658 authzgroupsoo.php:677 +#: authzgroupsoo.php:698 authzgroupsoo.php:721 authzgroupsoo.php:742 +#: authzgroupsoo.php:761 msgid "DB for Group is not connected" msgstr "DB pour Group n'est pas connectée" #: authzgroups.php:383 authzgroups.php:706 authzgroups.php:728 #: authzgroups.php:753 authzgroups.php:810 authzgroups.php:836 #: authzgroups.php:863 authzgroups.php:882 authzgroups.php:901 +#: authzgroupsoo.php:398 authzgroupsoo.php:801 authzgroupsoo.php:826 +#: authzgroupsoo.php:858 authzgroupsoo.php:926 authzgroupsoo.php:953 +#: authzgroupsoo.php:980 authzgroupsoo.php:1003 authzgroupsoo.php:1025 msgid "DB for GroupMember is not connected" msgstr "DB pour GroupMember n'est pas connectée" #: authzgroups.php:44 authzgroups.php:377 authzgroups.php:417 #: authzgroups.php:433 authzgroups.php:450 authzgroups.php:469 #: authzgroups.php:491 authzgroups.php:511 authzgroups.php:527 +#: authzgroupsoo.php:83 authzgroupsoo.php:392 authzgroupsoo.php:425 +#: authzgroupsoo.php:443 authzgroupsoo.php:468 authzgroupsoo.php:487 +#: authzgroupsoo.php:508 authzgroupsoo.php:531 authzgroupsoo.php:557 +#: authzgroupsoo.php:581 authzgroupsoo.php:600 msgid "DB for Object is not connected" msgstr "DB pour Object n'est pas connectée" @@ -245,14 +263,18 @@ msgstr "DB pour Object n'est pas connectée" #: authzgroups.php:1017 authzgroups.php:1034 authzgroups.php:1055 #: authzgroups.php:1087 authzgroups.php:1119 authzgroups.php:1141 #: authzgroups.php:1157 authzgroups.php:1171 authzgroups.php:1184 -#: authzgroups.php:1201 +#: authzgroups.php:1201 authzgroupsoo.php:402 authzgroupsoo.php:1072 +#: authzgroupsoo.php:1117 authzgroupsoo.php:1156 authzgroupsoo.php:1176 +#: authzgroupsoo.php:1200 authzgroupsoo.php:1236 authzgroupsoo.php:1272 +#: authzgroupsoo.php:1296 authzgroupsoo.php:1312 authzgroupsoo.php:1328 +#: authzgroupsoo.php:1343 authzgroupsoo.php:1362 msgid "DB for Right is not connected" msgstr "DB pour Right n'est pas connectée" #: dblayer.php:238 dblayer.php:257 dblayer.php:601 dblayer.php:712 #: dblayer.php:893 dblayer.php:995 dblayer.php:1049 dblayer.php:1079 -#: dblayeroo.php:243 dblayeroo.php:270 dblayeroo.php:334 dblayeroo.php:650 -#: dblayeroo.php:2374 +#: dblayeroo.php:248 dblayeroo.php:275 dblayeroo.php:339 dblayeroo.php:667 +#: dblayeroo.php:2549 msgid "Database not connected" msgstr "Base de données non connectée" @@ -282,7 +304,7 @@ msgstr "Le répertoire '%s' existe déjà" msgid "Directory '%s' available or not readable or not writeable" msgstr "Répertoire '%s' disponible ou non lisible ou non inscriptible" -#: dbjson.php:49 +#: dbjson.php:52 #, php-format msgid "Directory '%s' doesn't exists" msgstr "Répertoire '%s' inexistant" @@ -307,7 +329,7 @@ msgstr "Le répertoire '%s' n'est pas inscriptible" msgid "Directory '%s' not accessible by external check read-write" msgstr "Le répertoire '%s' n'est pas accessible par le test externe de lecture-écriture" -#: dbjson.php:55 +#: dbjson.php:58 #, php-format msgid "Directory '%s' not writeable and dbfile '%s' not exists" msgstr "Répertoire '%s' non inscriptible et le fichier '%s' n'existe pas" @@ -320,7 +342,7 @@ msgstr "Les informations à afficher ne sont pas fournies en tableau" msgid "Display the element {FIRST} to {LAST} on {COUNT} elements" msgstr "Affiche les éléments {FIRST} à {LAST} sur {COUNT} elements" -#: dblayer.php:140 dblayeroo.php:91 +#: dblayer.php:140 dblayeroo.php:96 #, php-format msgid "Driver PDO '%s' not available in PHP" msgstr "Pilote PDO '%s' non disponible dans le PHP" @@ -333,11 +355,11 @@ msgstr "Eo" msgid "Email address" msgstr "Adresse mail" -#: language.php:359 +#: language.php:360 msgid "English (GB)" msgstr "Anglais (GB)" -#: language.php:358 +#: language.php:359 msgid "English (US)" msgstr "Anglais (US)" @@ -349,7 +371,7 @@ msgstr "Entrée à modifier introuvable" msgid "Error in configuration file" msgstr "Erreur dans le fichier de configuration" -#: renderer.php:129 routeSQL.php:149 +#: renderer.php:131 routeSQL.php:149 msgid "Error!" msgstr "Erreur !" @@ -377,12 +399,12 @@ msgstr "Extension interdite" msgid "Field '%s' (defined in titles) not found in fields" msgstr "Champ '%s' (defini dans les titres) introuvable dans les champs" -#: dblayeroo.php:2708 +#: dblayeroo.php:2917 #, php-format msgid "Field '%s' : invalid SQL type (%s) in $this->fields " msgstr "Champ '%s' : type SQL invalide (%s) dans $this->fields" -#: dblayeroo.php:395 dblayeroo.php:493 dblayeroo.php:551 +#: dblayeroo.php:404 dblayeroo.php:506 dblayeroo.php:564 #, php-format msgid "Field '%s' is autoincrement but not primary" msgstr "Le champ '%s' est autoincrémental mais pas clé primaire" @@ -392,35 +414,39 @@ msgstr "Le champ '%s' est autoincrémental mais pas clé primaire" msgid "Field '%s' not allowed" msgstr "Champ '%s' non autorisé" -#: dblayeroo.php:2688 +#: dblayeroo.php:2897 msgid "Field data too long" msgstr "Données trop longues" -#: dblayeroo.php:2658 form.php:407 +#: dblayeroo.php:2861 form.php:457 msgid "Field mandatory and not provided" msgstr "Champ obligatoire et non fourni" -#: dblayeroo.php:2673 -msgid "Field not a string nor a integer" -msgstr "Champ ni chaîne ni entier" +#: dblayeroo.php:2876 +msgid "Field not a string nor numeric" +msgstr "Le champ n'est ni numérique ni textuel" -#: dblayeroo.php:2693 +#: dblayeroo.php:2902 msgid "Field not in date format" msgstr "Le champ fourni n'est pas une date" -#: dblayeroo.php:2699 +#: dblayeroo.php:2908 msgid "Field not in datetime format" msgstr "Le champ fourni n'est pas une date et heure" -#: dblayeroo.php:2683 +#: dblayeroo.php:2892 +msgid "Field not in float format" +msgstr "Le champ n'est pas en format flottant" + +#: dblayeroo.php:2886 msgid "Field not in integer format" msgstr "Le champ fourni n'est pas un entier" -#: dblayeroo.php:2704 +#: dblayeroo.php:2913 msgid "Field not in time format" msgstr "Le champ fourni n'est pas une heure" -#: dblayeroo.php:2666 +#: dblayeroo.php:2869 msgid "Field null and defined as NOT NULL and not Autoincrement" msgstr "Le champ fourni est null, mais défini à NOT NULL et pas Autoincrement" @@ -454,7 +480,7 @@ msgstr "Fichier '%s' non inscriptible" msgid "File '%s' not found" msgstr "Fichier '%s' introuvable" -#: dbjson.php:60 dbjson.php:63 inifile.php:24 +#: dbjson.php:64 dbjson.php:67 inifile.php:24 #, php-format msgid "File '%s' not readable" msgstr "Fichier '%s' non lisible" @@ -484,7 +510,7 @@ msgstr "Le fichier de cache %s n'est pas lisible" msgid "File cache %s is not writable" msgstr "Le fichier de cache %s n'est pas inscriptible" -#: language.php:357 +#: language.php:358 msgid "French" msgstr "Français" @@ -496,11 +522,11 @@ msgstr "Go" msgid "Go back to the calling page" msgstr "Retourner à la page appelante" -#: authzgroups.php:304 +#: authzgroups.php:304 authzgroupsoo.php:323 msgid "Group" msgstr "Groupe" -#: authzgroups.php:794 +#: authzgroups.php:794 authzgroupsoo.php:906 msgid "IDUser in IDGroup not found" msgstr "IDUser intouvable dans IDGroup" @@ -514,7 +540,7 @@ msgstr "Date fournie incorrecte pour le champ '%s'" msgid "Incorrect datetime provided for field '%s'" msgstr "DateHeure fournie incorrecte pour le champ '%s'" -#: renderer.php:137 +#: renderer.php:139 msgid "Info :" msgstr "Info :" @@ -534,7 +560,7 @@ msgstr "CIDR invalide" msgid "Invalid CIDR provided" msgstr "CIDR fourni invalide" -#: csrf.php:66 +#: csrf.php:76 msgid "Invalid CSRF token provided" msgstr "Ticket CSRF fourni invalide" @@ -565,15 +591,15 @@ msgstr "JSON fourni invalide: ne peut pas être converti en tableau" msgid "Invalid Network address" msgstr "Adresse de réseau invalide" -#: dblayeroo.php:3341 +#: dblayeroo.php:3634 msgid "Invalid UUID provided : invalid char" msgstr "UUID fourni invalide : caractère incorrect" -#: dblayeroo.php:3338 +#: dblayeroo.php:3631 msgid "Invalid UUID provided : invalid length" msgstr "UUID fourni invalide : longueur invalide" -#: dblayeroo.php:3344 +#: dblayeroo.php:3637 msgid "Invalid UUID provided : missing dash" msgstr "UUID fourni invalide : tiret manquant" @@ -601,7 +627,7 @@ msgstr "borderColor fourni invalide pour la légende du graph" msgid "Invalid bottom provided to graph Axis" msgstr "bottom fourni invalide pour l'axe du graph" -#: dblayeroo.php:3256 +#: dblayeroo.php:3549 msgid "Invalid char provided" msgstr "Caractère invalide fourni" @@ -630,39 +656,39 @@ msgstr "Données invalides pour l'axe du graph" msgid "Invalid data provided: line %d doesn't have the same number of elements as the first line (%d != %d elements)" msgstr "Données fournies invalides : la ligne %d n'a pas le même nombre d'éléments que la première ligne (%d != %d éléments)" -#: dbjson.php:43 +#: dbjson.php:45 msgid "Invalid database type provided in dbjson" msgstr "Type de base de données fourni invalide dans dbjson" -#: dblayeroo.php:3424 dblayeroo.php:3427 dblayeroo.php:3430 +#: dblayeroo.php:3717 dblayeroo.php:3720 dblayeroo.php:3723 msgid "Invalid date and time provided : can not parse the date" msgstr "Date et heure fournis invalides : impossible de comprendre la date" -#: dblayeroo.php:3420 +#: dblayeroo.php:3713 msgid "Invalid date and time provided : invalid chars" msgstr "Date et heure fournis invalides : caractères invalides" -#: dblayeroo.php:3417 +#: dblayeroo.php:3710 msgid "Invalid date and time provided : invalid length" msgstr "Date et heure fournis invalides : longueur invalide" -#: dblayeroo.php:3433 +#: dblayeroo.php:3726 msgid "Invalid date and time provided : the date doesn't exists" msgstr "Date et heure fournis invalides : la date n'existe pas" -#: dblayeroo.php:3364 dblayeroo.php:3367 dblayeroo.php:3370 +#: dblayeroo.php:3657 dblayeroo.php:3660 dblayeroo.php:3663 msgid "Invalid date provided : can not parse the date" msgstr "Date fournie invalide : impossible de comprendre la date" -#: dblayeroo.php:3360 +#: dblayeroo.php:3653 msgid "Invalid date provided : invalid chars" msgstr "Date fournie invalide : caractères invalides" -#: dblayeroo.php:3357 +#: dblayeroo.php:3650 msgid "Invalid date provided : invalid length" msgstr "Date fournie invalide : longueur invalide" -#: dblayeroo.php:3373 +#: dblayeroo.php:3666 msgid "Invalid date provided : the date doesn't exists" msgstr "Date fournie invalide : la date n'existe pas" @@ -678,24 +704,28 @@ msgstr "Email fourni invalide : pas une chaîne" msgid "Invalid email provided : too short" msgstr "Email fourni invalide : trop court" -#: mail.php:1499 +#: mail.php:1507 msgid "Invalid encoding provided to encodeHeaderStringWithPosition" msgstr "Encodage invalide fourni à encodeHeaderStringWithPosition" -#: mail.php:1464 +#: mail.php:1472 msgid "Invalid encoding provided to encodeHeaders" msgstr "Encodage invalide fourni à encodeHeaders" -#: mail.php:1442 +#: mail.php:1451 #, php-format msgid "Invalid encoding provided to encodingDecode : '%s'" msgstr "Encodage incorrect fourni à encodingDecode : '%s'" -#: mail.php:1422 +#: mail.php:1432 #, php-format msgid "Invalid encoding provided to encodingEncode : %s" msgstr "Encodage incorrect fourni à encodingEncode : %s" +#: queuefile.php:207 +msgid "Invalid entry requested" +msgstr "Entrée demandée invalide" + #: users.php:119 msgid "Invalid firstname provided : colon forbidden" msgstr "Prénom fourni invalide : double-points interdits" @@ -744,15 +774,15 @@ msgstr "height invalide fourni à graph" msgid "Invalid horizontalData provided to graph horizontalData" msgstr "horizontalData fournie invalide pour les données horizontales de graph" -#: dblayeroo.php:3228 +#: dblayeroo.php:3521 msgid "Invalid integer : can not start by Minus Zero" msgstr "Entier fourni invalide : ne peut commencer par Moins Zéro" -#: dblayeroo.php:3225 +#: dblayeroo.php:3518 msgid "Invalid integer : can not start by Zero" msgstr "Entier fourni invalide : ne peut commencer par Zéro" -#: dblayeroo.php:3222 +#: dblayeroo.php:3515 msgid "Invalid integer : invalid char" msgstr "Entier fourni invalide : caractère incorrect" @@ -776,7 +806,7 @@ msgstr "Longueur invalide" msgid "Invalid lineColor provided to line style" msgstr "lineColor fournie invalide pour le style de ligne" -#: dblayeroo.php:3325 +#: dblayeroo.php:3618 msgid "Invalid mail provided" msgstr "Mail fourni invalide" @@ -848,25 +878,25 @@ msgstr "pointShape invalide pour le style de ligne" msgid "Invalid pointWidth provided to line style" msgstr "pointWidth invalide pour le style de ligne" -#: dblayeroo.php:3207 +#: dblayeroo.php:3500 msgid "Invalid positive integer : can not start by Zero" msgstr "Entier positif invalide : ne peut commencer par Zéro" -#: dblayeroo.php:3201 +#: dblayeroo.php:3494 msgid "Invalid positive integer : can not start by minus sign" msgstr "Entier positif invalide : ne peut commencer par le signe Moins" -#: dblayeroo.php:3204 +#: dblayeroo.php:3497 msgid "Invalid positive integer : invalid char" msgstr "Entier positif invalide : caractère invalide" #: graph.php:1465 msgid "Invalid right provided to graph Axis" -msgstr "" +msgstr "Position droite demandée pour l'axe de graphique invalide" #: graph.php:1108 msgid "Invalid show value provided to graph legend" -msgstr "" +msgstr "Valeur d'affichage pour la légende de graphique invalide" #: graph.php:165 msgid "Invalid style provided to graph" @@ -880,23 +910,23 @@ msgstr "Style invalide pour la série" msgid "Invalid text provided to graph title" msgstr "Texte invalide pour le titre du graphique" -#: dblayeroo.php:3400 +#: dblayeroo.php:3693 msgid "Invalid time provided : can not parse the date" msgstr "Heure invalide : impossible de comprendre la date" -#: dblayeroo.php:3394 dblayeroo.php:3397 +#: dblayeroo.php:3687 dblayeroo.php:3690 msgid "Invalid time provided : can not parse the time" msgstr "Heure invalide : impossible de comprendre l'heure" -#: dblayeroo.php:3390 +#: dblayeroo.php:3683 msgid "Invalid time provided : invalid chars" msgstr "Heure invalide : caractères incorrects" -#: dblayeroo.php:3387 +#: dblayeroo.php:3680 msgid "Invalid time provided : invalid length" msgstr "Heure invalide : longueur incorrecte" -#: dblayeroo.php:3403 +#: dblayeroo.php:3696 msgid "Invalid time provided : the time doesn't exists" msgstr "Heure invalide : l'heure n'existe pas" @@ -916,11 +946,11 @@ msgstr "" msgid "Invalid top provided to graph Axis" msgstr "" -#: dblayeroo.php:3310 +#: dblayeroo.php:3603 msgid "Invalid value provided : do not match the regex" msgstr "Valeur invalide : ne correspond pas à la regex" -#: dblayeroo.php:3283 +#: dblayeroo.php:3576 msgid "Invalid value provided : not in allowed list" msgstr "Valeur invalide : non autorisée dans la liste" @@ -945,7 +975,7 @@ msgstr "Mo" msgid "Mandatory field '%s' is empty" msgstr "Le champ obligatoire '%s' est vide" -#: dblayer.php:317 dblayeroo.php:2628 +#: dblayer.php:317 dblayeroo.php:2831 #, php-format msgid "Mandatory field '%s' not provided" msgstr "Le champ obligatoire '%s' n'est pas fourni" @@ -960,19 +990,20 @@ msgstr "La valeur obligatoire pour le paramètre '%s' n'est pas fournie" msgid "Mandatory value for parameter '%s' is not provided after double-dash" msgstr "La valeur obligatoire du paramètre '%s' nest pas fournie après le double-tiret" -#: mail.php:431 +#: mail.php:437 msgid "Missing FileInfo PHP Extension" msgstr "Extension PHP FileInfo absente" -#: mail.php:433 +#: mail.php:440 msgid "Missing OpenSSL PHP Extension" msgstr "Extension PHP OpenSSL absente" -#: authzgroups.php:214 +#: authzgroups.php:214 authzgroupsoo.php:236 msgid "Modification forbidden" msgstr "Modification interdite" -#: authzgroups.php:282 authzgroups.php:302 +#: authzgroups.php:282 authzgroups.php:302 authzgroupsoo.php:304 +#: authzgroupsoo.php:322 msgid "Module" msgstr "Module" @@ -980,11 +1011,11 @@ msgstr "Module" msgid "Network and IP address are not compatible" msgstr "Adresse IP et réseau sont incompatibles" -#: dbjson.php:41 +#: dbjson.php:42 msgid "No DSN provided to dbjson" msgstr "Pas de DSN fourni pour dbjson" -#: dblayer.php:900 dblayer.php:1028 dblayer.php:1082 dblayeroo.php:337 +#: dblayer.php:900 dblayer.php:1028 dblayer.php:1082 dblayeroo.php:342 msgid "No Field defined" msgstr "Pas de Field défini" @@ -1008,7 +1039,7 @@ msgstr "Pas de support dans le PHP pour openssl_random_pseudo_bytes" msgid "No Primary defined" msgstr "Pas de Primary défini" -#: authsympa.php:45 +#: authsympa.php:46 msgid "No SOAP PHP library available" msgstr "Pas de bibliothèque PHP SOAP disponible" @@ -1025,7 +1056,7 @@ msgstr "Pas de taille fournie pour le champ varchar" msgid "No Size provided for varchar field '%s'" msgstr "Pas de taille fournie pour le champ varchar '%s'" -#: authsympa.php:53 +#: authsympa.php:54 msgid "No WSDL provided to Sympa auth" msgstr "Pas de WSDL fournir pour l'authentification Sympa" @@ -1033,7 +1064,7 @@ msgstr "Pas de WSDL fournir pour l'authentification Sympa" msgid "No authentication available" msgstr "Pas d'authentification disponible" -#: smtp.php:135 +#: smtp.php:137 msgid "No authentication method available for the server" msgstr "Pas de methode d'authentification disponible pour ce serveur" @@ -1041,7 +1072,7 @@ msgstr "Pas de methode d'authentification disponible pour ce serveur" msgid "No cache directory defined" msgstr "Pas de répertoire de cache défini" -#: dblayeroo.php:2796 dblayeroo.php:2808 +#: dblayeroo.php:3005 dblayeroo.php:3017 #, php-format msgid "No column '%s' defined but must be unique !" msgstr "Pas de champ '%s' défini, mais il doit être unique !" @@ -1060,7 +1091,7 @@ msgstr "Pas de connexion disponible pour l'authentification" msgid "No data defined for Axis" msgstr "Pas de données définies pour Axis" -#: outputhtml.php:58 +#: outputhtml.php:60 #, php-format msgid "No data provided from view %s::%s" msgstr "Pas de données fournies pour la vue %s::%s" @@ -1111,7 +1142,7 @@ msgstr "fieldLastname indéfini" msgid "No fieldPassword defined" msgstr "fieldPassword indéfni" -#: dblayeroo.php:2845 +#: dblayeroo.php:3069 #, php-format msgid "No foreign object configured to test the foreign key for table '%s'" msgstr "Pas de foreign object configuré pour tester la clé étrangère de la table '%s'" @@ -1136,6 +1167,10 @@ msgstr "Pas de type numérique fourni pour l'axe" msgid "No object removed" msgstr "Pas d'objet supprimé" +#: certificationauthority.php:62 +msgid "No openssl support in PHP" +msgstr "Pas de support OpenSSL dans le PHP" + #: getopts.php:487 msgid "No option defined" msgstr "Pas d'option définie" @@ -1152,11 +1187,11 @@ msgstr "Pas de changement de mot de passe disponible" msgid "No password overwrite available" msgstr "Pas de surcharge de mot de passe disponible" -#: csrf.php:61 +#: csrf.php:71 msgid "No previous CSRF token : abort" msgstr "Pas de ticket CSRF fourni : abandon" -#: dblayer.php:1085 dblayeroo.php:340 +#: dblayer.php:1085 dblayeroo.php:345 msgid "No table name defined to create the table" msgstr "Pas de nom de table défini pour créer la table" @@ -1164,11 +1199,11 @@ msgstr "Pas de nom de table défini pour créer la table" msgid "No table name defined to delete in the table" msgstr "Pas de nom de table défini pour supprimer dans la table" -#: dblayer.php:1052 dblayeroo.php:653 +#: dblayer.php:1052 dblayeroo.php:670 msgid "No table name defined to drop the table" msgstr "Pas de nom de table défini pour supprimer la table" -#: dblayer.php:605 dblayeroo.php:2377 +#: dblayer.php:605 dblayeroo.php:2552 msgid "No table name defined to insert in the table" msgstr "Pas de nom de table défini pour insérer dans la table" @@ -1180,11 +1215,11 @@ msgstr "Pas de nom de table défini pour lire dans la table" msgid "No table name defined to update in the table" msgstr "Pas de nom de table défini pour mettre à jour la table" -#: dblayer.php:136 dblayeroo.php:87 +#: dblayer.php:136 dblayeroo.php:92 msgid "No valid DSN provided" msgstr "DSN fourni invalide" -#: form.php:1073 +#: form.php:1176 msgid "No value provided" msgstr "Pas de valeur fournie" @@ -1199,7 +1234,7 @@ msgstr "Pas les droits d'écriture sur %s" msgid "Not authenticated" msgstr "Pas authentifié" -#: authzgroups.php:284 +#: authzgroups.php:284 authzgroupsoo.php:305 msgid "Object" msgstr "Objet" @@ -1227,7 +1262,7 @@ msgstr "L'objet ne commence pas pas un slash" msgid "Object not found" msgstr "Objet introuvable" -#: csrf.php:72 +#: csrf.php:82 msgid "Obsolete CSRF token provided" msgstr "Ticket CSRF fourni obsolète" @@ -1248,11 +1283,11 @@ msgstr "Po" msgid "PDO Engine not supported in dbLayer" msgstr "Pilote PDO non supporté dans dbLayer" -#: dblayeroo.php:635 dblayeroo.php:922 +#: dblayeroo.php:652 dblayeroo.php:1028 msgid "PDO Engine not supported in dbLayeroo" msgstr "PDO Engine non supporté par dbLayeroo" -#: mail.php:150 +#: mail.php:154 msgid "Param provided to sectionUpdate is not array" msgstr "Paramètre fourni à sectionUpdate non tableau" @@ -1321,7 +1356,7 @@ msgstr "Suppression de plus d'un objet" msgid "Restricted access" msgstr "Accès réservé" -#: authzgroups.php:358 +#: authzgroups.php:358 authzgroupsoo.php:374 msgid "Right" msgstr "Droit" @@ -1333,11 +1368,11 @@ msgstr "Sauve les données" msgid "Search:" msgstr "Recherche :" -#: mail.php:137 mail.php:148 mail.php:189 +#: mail.php:140 mail.php:151 mail.php:193 msgid "Section not found" msgstr "Section introuvable" -#: mail.php:112 mail.php:124 +#: mail.php:113 mail.php:126 msgid "Section parent not found" msgstr "Section parente introuvable" @@ -1354,11 +1389,11 @@ msgstr "Select introuvable pour id=%d" msgid "Serie" msgstr "Série" -#: smtp.php:113 +#: smtp.php:114 msgid "Server doesn't supports STARTTLS" msgstr "Le serveur ne supporte pas STARTTLS" -#: authshibboleth.php:98 +#: authshibboleth.php:99 msgid "Shibboleth is not configured to allow logout" msgstr "Shibboleth n'est pas configuré pour autoriser les déconnexions" @@ -1366,7 +1401,7 @@ msgstr "Shibboleth n'est pas configuré pour autoriser les déconnexions" msgid "Sign in" msgstr "Authentification" -#: renderer.php:141 +#: renderer.php:143 msgid "Success : " msgstr "Succès : " @@ -1388,7 +1423,7 @@ msgstr "Le fichier HTPasswd '%s' est introuvable" msgid "The HTPasswd file '%s' is not readable" msgstr "Le fichier HTPasswd '%s' est illisible" -#: authsympa.php:64 +#: authsympa.php:65 msgid "The SOAP connection is not opened" msgstr "La connexion SOAP n'est pas ouverte" @@ -1396,11 +1431,11 @@ msgstr "La connexion SOAP n'est pas ouverte" msgid "The SQL database is not connected" msgstr "La base de données SQL n'est pas connectée" -#: dblayer.php:155 dblayeroo.php:106 +#: dblayer.php:155 dblayeroo.php:111 msgid "The SQLite database file is write protected" msgstr "La base de données SQLite est protgée en écriture" -#: dblayer.php:1160 dblayeroo.php:412 +#: dblayer.php:1160 dblayeroo.php:421 msgid "The Unique field definition is not an array" msgstr "La définition des champs Unique n'est pas un tableau" @@ -1425,7 +1460,7 @@ msgstr "Le fichier modèle de configuration n'est pas lisible" msgid "The data provided to create are not array" msgstr "Les données fournies pour créer ne sont pas un tableau" -#: dblayer.php:151 dblayeroo.php:103 +#: dblayer.php:151 dblayeroo.php:108 msgid "The directory for SQLite database is write protected" msgstr "Le répertoire de la base SQLite est protégé en écriture" @@ -1434,12 +1469,12 @@ msgstr "Le répertoire de la base SQLite est protégé en écriture" msgid "The field '%s' doesn't exists in database" msgstr "Le champ '%s' n'existe pas dans la base de données" -#: dblayeroo.php:2839 +#: dblayeroo.php:3063 #, php-format msgid "The field '%s' must be test on foreign, but is not provided" msgstr "Le champ '%s' doit être testé en clé étrangère, mais il n'est pas fourni" -#: dblayeroo.php:2928 +#: dblayeroo.php:3160 msgid "The field can not be empty" msgstr "Le champ ne peut pas être vide" @@ -1463,7 +1498,7 @@ msgstr "La clé étrangère '%s' n'existe pas" msgid "The length of varchar field '%s' is not provided" msgstr "La longueur du champ varchar '%s' n'est pas fournie" -#: authsympa.php:67 +#: authsympa.php:68 msgid "The list to check is not defined" msgstr "La liste à vérifier n'est pas définie" @@ -1487,11 +1522,11 @@ msgstr "Le mot de passe ne peut être changé pour les utilisateurs IMAP" msgid "The password can't be change for LDAP users" msgstr "Le mot de passe ne peut pas être changé pour les utilisateurs LDAP" -#: authsession.php:58 +#: authsession.php:59 msgid "The password can't be change for SESSION users" msgstr "Le mot de passe ne peut pas être changé pour les utilisateurs SESSION" -#: authsympa.php:94 +#: authsympa.php:96 msgid "The password can't be change for SYMPA users" msgstr "Le mot de passe ne peut pas être changé pour les utilisateurs SYMPA" @@ -1507,7 +1542,7 @@ msgstr "Le mot de passe ne peut pas être surchargé pour les utilisateurs IMAP" msgid "The password can't be overwrite for LDAP users" msgstr "Le mot de passe ne peut pas être surchargé pour les utilisateurs LDAP" -#: authsession.php:71 +#: authsession.php:72 msgid "The password can't be overwrite for SESSION users" msgstr "Le mot de passe ne peut pas être surchargé pour les utilisateurs SESSION" @@ -1515,7 +1550,7 @@ msgstr "Le mot de passe ne peut pas être surchargé pour les utilisateurs SESSI msgid "The password can't be overwrite for Shibboleth users" msgstr "Le mot de passe ne peut pas être suchargé pour les utilisateurs Shibboleth" -#: authsympa.php:106 +#: authsympa.php:108 msgid "The password can't be overwrite for Sympa users" msgstr "Le mot de passe ne peut pas être surchargé pour les utilisateurs Sympa" @@ -1532,7 +1567,7 @@ msgstr "La racine ne peut pas être supprimée" msgid "The serie name in legend must not takes more than half of the graph" msgstr "Le nom de la série dans la légende ne doit pas prendre plus de la moitié du graphique" -#: dblayer.php:612 dblayeroo.php:2383 +#: dblayer.php:612 dblayeroo.php:2558 msgid "The unique configuration is not an array" msgstr "La configuration de unique n'est pas un tableau" @@ -1540,11 +1575,11 @@ msgstr "La configuration de unique n'est pas un tableau" msgid "The user must be in the wanted group" msgstr "L'utilisateur doit être dans le groupe voulu" -#: dblayeroo.php:2938 +#: dblayeroo.php:3170 msgid "The value is not a string" msgstr "La valeur n'est pas une chaîne" -#: dblayeroo.php:2876 +#: dblayeroo.php:3100 #, php-format msgid "The value of the foreign key '%s' doesn't exists in foreign table" msgstr "La valeur de clé étrangère '%s' n'existe pas dans la table étrangère" @@ -1576,28 +1611,28 @@ msgstr "Utilisateur introuvable : '%s'" msgid "Unable to get the user password from database" msgstr "Impossible d'obtenir le mot de passe utilisateur depuis la base de données" -#: dblayeroo.php:2735 +#: dblayeroo.php:2944 msgid "Unique def is not a string or an array" msgstr "Unique definition n'est ni une chaîne ni un tableau" -#: dblayer.php:609 dblayeroo.php:2380 +#: dblayer.php:609 dblayeroo.php:2555 msgid "Unique fields of table are not defined" msgstr "Les champs Uniques de la table ne sont pas définis" -#: form.php:200 +#: form.php:233 msgid "Unknown FORM method (GET or POST allowed)" msgstr "Méthode FORM inconnue (GET ou POST autorisés)" -#: dblayer.php:228 dblayeroo.php:193 +#: dblayer.php:228 dblayeroo.php:198 msgid "Unknown PDO driver provided" msgstr "Pilote PDO fourni inconnu" -#: dblayeroo.php:500 +#: dblayeroo.php:513 #, php-format msgid "Unknown additionnal '%s' parameter for field '%s'" msgstr "Paramètre additionnel '%s' inconnu pour le champ '%s'" -#: dblayeroo.php:401 dblayeroo.php:597 +#: dblayeroo.php:410 dblayeroo.php:614 #, php-format msgid "Unknown additionnal parameter '%s' for field '%s'" msgstr "Paramètre additionnel '%s' inconnu pour le champ '%s'" @@ -1612,7 +1647,7 @@ msgstr "Paramètre additionnel inconnu pour le champ '%s'" msgid "Unknown color provided to graphColor::textToRGB: '%s'" msgstr "Couleur inconnue fournie à graphColor::textToRGB: '%s'" -#: dblayer.php:291 dblayeroo.php:306 +#: dblayer.php:291 dblayeroo.php:311 msgid "Unknown database driver in listTables" msgstr "Pilote de base de données inconnu dans listTables" @@ -1629,16 +1664,24 @@ msgstr "Nom de palette fourni inconnu" msgid "Unknown pointShape for serie" msgstr "Forme de point pointShape inconnu pour la série" +#: authzgroupsoo.php:1125 authzgroupsoo.php:1244 +msgid "Unknown right provided (0/1/2 only)" +msgstr "Droit demandé inconnu (seulement 0/1/2)" + +#: authzgroupsoo.php:1082 authzgroupsoo.php:1208 +msgid "Unknown right provided (NO/RO/RW only)" +msgstr "Droit demandé inconnu (seulement NO/RO/RW)" + #: authzgroups.php:952 authzgroups.php:990 authzgroups.php:1062 #: authzgroups.php:1094 msgid "Unknown right provided (RO/RW only)" msgstr "Droit fourni unconnu (RO/RW seulement)" -#: authzgroups.php:105 +#: authzgroups.php:105 authzgroupsoo.php:127 msgid "Unknown right stored" msgstr "Droit inconnu sauvegardé" -#: dblayer.php:1131 dblayeroo.php:376 +#: dblayer.php:1131 dblayeroo.php:385 #, php-format msgid "Unknown type '%s' provided for field '%s'" msgstr "Type inconnu '%s' pour le champ '%s'" @@ -1648,7 +1691,7 @@ msgstr "Type inconnu '%s' pour le champ '%s'" msgid "Unknown type in imap_fetchstructure : %s" msgstr "Type inconnu dans imap_fetchstructure : %s" -#: dblayer.php:1224 dblayer.php:1323 dblayeroo.php:474 dblayeroo.php:579 +#: dblayer.php:1224 dblayer.php:1323 dblayeroo.php:487 dblayeroo.php:596 #, php-format msgid "Unknown type provided for field '%s'" msgstr "Type inconnu pour le champ '%s'" @@ -1662,11 +1705,16 @@ msgstr "Méthode de cache inconnue : " msgid "Update done" msgstr "Mise à jour effectuée" -#: authzgroups.php:328 +#: authzgroups.php:328 authzgroupsoo.php:345 msgid "User" msgstr "Utilisateur" -#: authzgroups.php:739 authzgroups.php:764 +#: authsympa.php:78 +msgid "User not in Sympa list or bad password" +msgstr "Utilisateur non disponible dans la liste Sympa ou mot de passe incorrect" + +#: authzgroups.php:739 authzgroups.php:764 authzgroupsoo.php:840 +#: authzgroupsoo.php:872 msgid "Wanted GroupMember not found" msgstr "Le GroupMember souhaité est introuvable" @@ -1674,22 +1722,31 @@ msgstr "Le GroupMember souhaité est introuvable" #: authzgroups.php:638 authzgroups.php:711 authzgroups.php:733 #: authzgroups.php:758 authzgroups.php:868 authzgroups.php:887 #: authzgroups.php:906 authzgroups.php:958 authzgroups.php:996 -#: authzgroups.php:1123 authzgroups.php:1145 +#: authzgroups.php:1123 authzgroups.php:1145 authzgroupsoo.php:662 +#: authzgroupsoo.php:681 authzgroupsoo.php:702 authzgroupsoo.php:725 +#: authzgroupsoo.php:806 authzgroupsoo.php:831 authzgroupsoo.php:863 +#: authzgroupsoo.php:985 authzgroupsoo.php:1008 authzgroupsoo.php:1030 +#: authzgroupsoo.php:1088 authzgroupsoo.php:1131 authzgroupsoo.php:1276 +#: authzgroupsoo.php:1300 msgid "Wanted group not found" msgstr "Le Group souhaité est introuvable" #: authzgroups.php:437 authzgroups.php:454 authzgroups.php:473 #: authzgroups.php:495 authzgroups.php:962 authzgroups.php:1000 -#: authzgroups.php:1127 authzgroups.php:1188 +#: authzgroups.php:1127 authzgroups.php:1188 authzgroupsoo.php:491 +#: authzgroupsoo.php:512 authzgroupsoo.php:535 authzgroupsoo.php:561 +#: authzgroupsoo.php:1092 authzgroupsoo.php:1135 authzgroupsoo.php:1280 +#: authzgroupsoo.php:1347 msgid "Wanted object not found" msgstr "L'Objet souhaité est introuvable" #: authzgroups.php:1021 authzgroups.php:1038 authzgroups.php:1068 -#: authzgroups.php:1100 +#: authzgroups.php:1100 authzgroupsoo.php:1160 authzgroupsoo.php:1180 +#: authzgroupsoo.php:1214 authzgroupsoo.php:1250 msgid "Wanted right not found" msgstr "Le Droit souhaité est introuvable" -#: renderer.php:133 routeSQL.php:151 +#: renderer.php:135 routeSQL.php:151 msgid "Warning!" msgstr "Attention !" @@ -1714,18 +1771,20 @@ msgid "elements" msgstr "elements" #: authzgroups.php:300 authzgroups.php:330 authzgroups.php:355 +#: authzgroupsoo.php:321 authzgroupsoo.php:346 authzgroupsoo.php:372 msgid "idgroup" msgstr "idgroup" -#: authzgroups.php:326 +#: authzgroups.php:326 authzgroupsoo.php:344 msgid "idgroupmember" msgstr "idgroupmember" -#: authzgroups.php:280 authzgroups.php:357 +#: authzgroups.php:280 authzgroups.php:357 authzgroupsoo.php:303 +#: authzgroupsoo.php:373 msgid "idobject" msgstr "idobject" -#: authzgroups.php:353 +#: authzgroups.php:353 authzgroupsoo.php:371 msgid "idright" msgstr "idright" @@ -1807,6 +1866,9 @@ msgstr "storageDir '%s' n'est pas inscriptible" #~ msgid "Field '%s' null and defined as NOT NULL and not Autoincrement" #~ msgstr "Le champ '%s' est null mais défini à NOT NULL et pas AUTOINCREMENT" +#~ msgid "Field not a string nor a integer" +#~ msgstr "Champ ni chaîne ni entier" + #~ msgid "Folder data not available" #~ msgstr "Dossier de données non disponible" diff --git a/mail.php b/mail.php index 06ed9a9..99c8722 100644 --- a/mail.php +++ b/mail.php @@ -109,7 +109,8 @@ class mail private function sectionAddChild ($sectionIDParent, $sectionIDchild) { if (! array_key_exists ($sectionIDParent, $this->sections)) - throw new \Exception (_("Section parent not found"), 404); + throw new \Exception (dgettext("domframework", + "Section parent not found"), 404); $this->sections[$sectionIDParent]["_partsIDchild"][] = $sectionIDchild; $this->sections[$sectionIDchild]["_parentID"] = $sectionIDParent; } @@ -121,7 +122,8 @@ class mail private function sectionAddChildFirst ($sectionIDParent, $sectionIDchild) { if (! array_key_exists ($sectionIDParent, $this->sections)) - throw new \Exception (_("Section parent not found"), 404); + throw new \Exception (dgettext("domframework", + "Section parent not found"), 404); array_unshift ($this->sections[$sectionIDParent]["_partsIDchild"], $sectionIDchild); $this->sections[$sectionIDchild]["_parentID"] = $sectionIDParent; @@ -134,7 +136,8 @@ class mail private function sectionDelChilds ($sectionID) { if (! array_key_exists ($sectionID, $this->sections)) - throw new \Exception (_("Section not found"), 404); + throw new \Exception (dgettext("domframework", + "Section not found"), 404); unset ($this->sections[$sectionID]["_partsIDchild"]); } @@ -145,10 +148,10 @@ class mail private function sectionUpdate ($sectionID, $param) { if (! array_key_exists ($sectionID, $this->sections)) - throw new \Exception (_("Section not found"), 404); + throw new \Exception (dgettext("domframework", "Section not found"), 404); if (! is_array ($param)) - throw new \Exception (_("Param provided to sectionUpdate is not array"), - 406); + throw new \Exception (dgettext("domframework", + "Param provided to sectionUpdate is not array"), 406); foreach ($param as $key=>$val) { $this->sections[$sectionID][$key] = $val; @@ -186,7 +189,8 @@ class mail private function sectionGet ($sectionID) { if (! array_key_exists ($sectionID, $this->sections)) - throw new \Exception (_("Section not found"), 404); + throw new \Exception (dgettext("domframework", + "Section not found"), 404); return $this->sections[$sectionID]; } @@ -260,7 +264,8 @@ class mail $boundaryCR = array_shift ($boundaryArray); } if ($boundary === false) - throw new \Exception (_("Can't find boundary in multipart/"), 406); + throw new \Exception (dgettext("domframework", + "Can't find boundary in multipart/"), 406); $boundary = substr ($boundary, 2); unset ($boundaryArray); $this->sectionUpdate ($sectionIDParent, @@ -428,9 +433,11 @@ class mail public function __construct () { if (! function_exists ("finfo_buffer")) - throw new \Exception (_("Missing FileInfo PHP Extension"), 500); + throw new \Exception (dgettext("domframework", + "Missing FileInfo PHP Extension"), 500); if (! function_exists ("openssl_random_pseudo_bytes")) - throw new \Exception (_("Missing OpenSSL PHP Extension"), 500); + throw new \Exception (dgettext("domframework", + "Missing OpenSSL PHP Extension"), 500); // Define default headers $this->addHeader ("Date", date ("r")); $this->addHeader ("Message-ID", $this->provideMessageID ()); @@ -525,7 +532,8 @@ class mail if ($sectionIDtoChange === "") { // No existing section found : need to create one - throw new \Exception (_("Can't find the place to store the HTML"), 500); + throw new \Exception (dgettext("domframework", + "Can't find the place to store the HTML"), 500); } $htmlContent = iconv ("utf-8", $charset, $htmlContent); $part["_charset"] = $charset; @@ -610,7 +618,8 @@ class mail if ($sectionIDtoChange === "") { // No existing section found : need to create one - throw new \Exception (_("Can't find the place to store the TEXT"), 500); + throw new \Exception (dgettext("domframework", + "Can't find the place to store the TEXT"), 500); } $textContent = iconv ("utf-8", $charset, $textContent); $part["_charset"] = $charset; @@ -866,8 +875,8 @@ class mail { $attachmentIDs = $this->getAttachmentID ($inline); if (! array_key_exists ($number, $attachmentIDs)) - throw new \Exception (sprintf (_("Attachment '%d' not found"), $number), - 404); + throw new \Exception (sprintf (dgettext("domframework", + "Attachment '%d' not found"), $number), 404); $part = $this->sectionGet ($attachmentIDs[$number]); $encoding = $this->getHeaderValue ("Content-Transfer-Encoding", $part["_headersArray"]); @@ -883,8 +892,8 @@ class mail { $attachmentIDs = $this->getAttachmentID ($inline); if (! array_key_exists ($number, $attachmentIDs)) - throw new \Exception (sprintf (_("Attachment '%d' not found"), $number), - 404); + throw new \Exception (sprintf (dgettext("domframework", + "Attachment '%d' not found"), $number), 404); $part = $this->sectionGet ($attachmentIDs[$number]); foreach ($part as $key=>$val) { @@ -1419,9 +1428,8 @@ class mail return chunk_split ($content); } throw new \Exception (sprintf ( - _("Invalid encoding provided to encodingEncode : %s"), - $encoding), - 500); + dgettext("domframework", + "Invalid encoding provided to encodingEncode : %s"), $encoding), 500); } /** Decode the content with correct encoding. @@ -1439,9 +1447,8 @@ class mail elseif ($encoding === "8bit" || $encoding === "7bit" || $encoding === false) return $content; throw new \Exception (sprintf ( - _("Invalid encoding provided to encodingDecode : '%s'"), - $encoding), - 500); + dgettext("domframework", + "Invalid encoding provided to encodingDecode : '%s'"), $encoding), 500); } /** Encode a string to be compliant with MIME (used in headers) @@ -1461,8 +1468,8 @@ class mail elseif ($encoding === "base64") $prefs["scheme"] = "B"; else - throw new \Exception (_("Invalid encoding provided to encodeHeaders"), - 500); + throw new \Exception (dgettext("domframework", + "Invalid encoding provided to encodeHeaders"), 500); return substr (iconv_mime_encode ($header, $content, $prefs), strlen ($header)+2); } @@ -1496,9 +1503,8 @@ class mail elseif ($encoding === "base64") $prefs["scheme"] = "B"; else - throw new \Exception (_("Invalid encoding provided to ". - "encodeHeaderStringWithPosition"), - 500); + throw new \Exception (dgettext("domframework", + "Invalid encoding provided to encodeHeaderStringWithPosition"), 500); return substr (iconv_mime_encode (str_repeat (" ", $blanks), $content, $prefs), $blanks+2); diff --git a/queuefile.php b/queuefile.php index 7c39c50..c9fac0f 100644 --- a/queuefile.php +++ b/queuefile.php @@ -203,7 +203,8 @@ class queuefile extends queue if (! key_exists ($i, $entries)) { $file->lockUN ($this->queue); - throw new \Exception ("Invalid entry requested", 406); + throw new \Exception (dgettext("domframework", + "Invalid entry requested"), 406); } $json = $entries[$i]; $content = json_decode ($json, true); diff --git a/smtp.php b/smtp.php index 1705134..bdd10d9 100644 --- a/smtp.php +++ b/smtp.php @@ -79,8 +79,8 @@ class smtp { if ($errstr === "" && $php_errormsg !== "") $errstr = $php_errormsg; - throw new \Exception (sprintf (_("Can't connect to SMTP server : %s"), - $errstr), 500); + throw new \Exception (sprintf (dgettext("domframework", + "Can't connect to SMTP server : %s"), $errstr), 500); } stream_set_timeout ($this->smtpStream, $this->timeout); // Wait for banner @@ -103,14 +103,15 @@ class smtp if (@stream_socket_enable_crypto ($this->smtpStream, true, STREAM_CRYPTO_METHOD_TLS_CLIENT) === false) - throw new \Exception (sprintf (_("Can't activate STARTTLS %s"), - strstr ($php_errormsg, ": ")), 500); + throw new \Exception (sprintf (dgettext("domframework", + "Can't activate STARTTLS %s"), strstr ($php_errormsg, ": ")), 500); ini_set('track_errors', 0); $this->debug ("STARTTLS ACTIVATED\n"); } } elseif ($this->starttls === "encrypt") - throw new \Exception (_("Server doesn't supports STARTTLS"), 500); + throw new \Exception (dgettext("domframework", + "Server doesn't supports STARTTLS"), 500); if ($this->user !== null && $this->password !== null) { @@ -132,8 +133,8 @@ class smtp } else throw new \Exception ( - _("No authentication method available for the server"), - 500); + dgettext("domframework", + "No authentication method available for the server"), 500); } } @@ -168,8 +169,8 @@ class smtp { if ($this->smtpStream === null) throw new \Exception ( - _("Can't send email : not connected to SMTP server"), - 500); + dgettext("domframework", + "Can't send email : not connected to SMTP server"), 500); $from = $this->cleanMail ($from); if (is_string ($to)) $to = explode (",", $to); @@ -198,8 +199,8 @@ class smtp { if ($this->smtpStream === null) throw new \Exception ( - _("Can't send email : not connected to SMTP server"), - 500); + dgettext("domframework", + "Can't send email : not connected to SMTP server"), 500); $this->putLine ("QUIT\r\n"); fclose ($this->smtpStream); } @@ -210,8 +211,8 @@ class smtp { if ($this->smtpStream === null) throw new \Exception ( - _("Can't send email : not connected to SMTP server"), - 500); + dgettext("domframework", + "Can't send email : not connected to SMTP server"), 500); $this->putLine ("RSET\r\n"); }