diff --git a/src/includes/class/class.LScli.php b/src/includes/class/class.LScli.php index 0e9ef9b2..7108d709 100644 --- a/src/includes/class/class.LScli.php +++ b/src/includes/class/class.LScli.php @@ -317,10 +317,13 @@ class LScli extends LSlog_staticLoggerClass { * @param[in] $command string|array The command. It's could be an array of the command with its arguments. * @param[in] $data_stdin string|null The command arguments (optional, default: null) * @param[in] $escape_command_args boolean If true, the command will be escaped (optional, default: true) + * @param[in] $cwd string|null The initial working dir for the command + * (optional, default: null = use current PHP + * process working directory) * * @retval false|array An array of return code, stdout and stderr result or False in case of fatal error **/ - public static function run_external_command($command, $data_stdin=null, $escape_command_args=true) { + public static function run_external_command($command, $data_stdin=null, $escape_command_args=true, $cwd=null) { if (array($command)) $command = implode(' ', $command); if ($escape_command_args) @@ -331,7 +334,7 @@ class LScli extends LSlog_staticLoggerClass { 1 => array("pipe", "w"), // stdout 2 => array("pipe", "w"), // stderr ); - $process = proc_open($command, $descriptorspec, $pipes); + $process = proc_open($command, $descriptorspec, $pipes, $cwd); if (!is_resource($process)) { self :: log_error("Fail to run external command: '$command'"); diff --git a/src/includes/class/class.LSlang.php b/src/includes/class/class.LSlang.php index 5537dbe6..85cf7807 100644 --- a/src/includes/class/class.LSlang.php +++ b/src/includes/class/class.LSlang.php @@ -1059,9 +1059,10 @@ function cli_generate_ldapsaisie_pot($command_args) { // List PHP files to parse $php_files = LScli :: run_external_command( - array('find', escapeshellarg(LS_ROOT_DIR), '-name', "'*.php'"), + array('find', '-name', "'*.php'"), null, // no STDIN data - false // do not escape command args (already done) + false, // do not escape command args (already done) + LS_ROOT_DIR // run in LdapSaisie root directory to retreive relative paths ); if (!is_array($php_files) || $php_files[0] != 0) { $LSlang_cli_logger -> fatal("Fail to list PHP files."); @@ -1071,7 +1072,6 @@ function cli_generate_ldapsaisie_pot($command_args) { $result = LScli :: run_external_command( array( "xgettext", - "--no-location", "--from-code utf-8", "--language=PHP", "-o", LS_I18N_DIR_PATH."/ldapsaisie-main.pot", // Output @@ -1080,7 +1080,9 @@ function cli_generate_ldapsaisie_pot($command_args) { "--keyword=___", // Handle custom ___() translation function "--files=-" // Read files to parse from STDIN ), - $php_files[1] // Pass PHP files list via STDIN + $php_files[1], // Pass PHP files list via STDIN + true, // Escape parameters + LS_ROOT_DIR // Run in LdapSaisie root directory ); if (!is_array($result) || $result[0] != 0) $LSlang_cli_logger -> fatal("Fail to extract messages from PHP files using xgettext."); diff --git a/src/lang/ldapsaisie.pot b/src/lang/ldapsaisie.pot index 187ac18f..7a657b89 100644 --- a/src/lang/ldapsaisie.pot +++ b/src/lang/ldapsaisie.pot @@ -1,906 +1,1172 @@ -msgid "Mrs." +#: includes/addons/LSaddons.ppolicy.php:26 +msgid "Password policy Support : The constant %{const} is not defined." msgstr "" -msgid "Mr." +#: includes/addons/LSaddons.ppolicy.php:29 +msgid "Password policy Support : The global array %{array} is not defined." msgstr "" -msgid "Backup" +#: includes/addons/LSaddons.ppolicy.php:32 +msgid "Password policy: An error occured generating CSV outfile memory space." msgstr "" -msgid "Personal" +#: includes/addons/LSaddons.ppolicy.php:35 +msgid "Password policy: An error occured executing the search." msgstr "" -msgid "Parents" +#: includes/addons/LSaddons.ppolicy.php:38 +msgid "Password policy: An error occured writing CSV header." msgstr "" -msgid "Professional" +#: includes/addons/LSaddons.ppolicy.php:41 +msgid "Password policy: An error occured writing a CSV row." msgstr "" -msgid "Temporary" +#: includes/addons/LSaddons.ppolicy.php:169 +#: includes/addons/LSaddons.ppolicy.php:175 +msgid "Never" msgstr "" -msgid "Personal mobile" +#: includes/addons/LSaddons.ppolicy.php:173 +msgid "Unknown" msgstr "" -msgid "Personal landline" +#: includes/addons/LSaddons.ppolicy.php:180 +#, php-format +msgid "Expired (since %s)" msgstr "" -msgid "Parents landline" +#: includes/addons/LSaddons.ppolicy.php:190 +#, php-format +msgid "Expire on %s" msgstr "" -msgid "Parents mobile" -msgstr "" - -msgid "Professional mobile" -msgstr "" - -msgid "Professional landline" -msgstr "" - -msgid "User account" -msgstr "" - -msgid "Mailbox" -msgstr "" - -msgid "Active" -msgstr "" - -msgid "Inactive" -msgstr "" - -msgid "Suspended" -msgstr "" - -msgid "Account created in advance, but not yet operational" -msgstr "" - -msgid "Account operational, but of which the user has not yet taken possession" -msgstr "" - -msgid "" -"Account operational and accessed by the user, in anticipation of their start " -"date of activity" -msgstr "" - -msgid "Account operational and accessed by the user in regular activity" -msgstr "" - -msgid "" -"Account operational and accessed by the user, suspended after the date of " -"end of activity" -msgstr "" - -msgid "" -"Account which is no longer operational, the date of end of activity and " -"possible suspension having passed, but whose cancellation deadlines have not " -"yet been reached" -msgstr "" - -msgid "" -"Non-operational account (without specifying the reason) whose deletion " -"deadlines have not yet been reached" -msgstr "" - -msgid "Expired account that has reached the data deletion deadline" -msgstr "" - -msgid "Expired account pending permanent deletion" -msgstr "" - -msgid "Account locked (without specifying the reason)" -msgstr "" - -msgid "" -"Account locked for administrative reasons (account suspension, charter " -"abuse, etc.)" -msgstr "" - -msgid "" -"Account locked for a technical reason (detection of a namesake, suspicion of " -"a hacked account, etc.)" -msgstr "" - -msgid "Female" -msgstr "" - -msgid "Male" -msgstr "" - -msgid "Other" -msgstr "" - -msgid "FTP Support : Pear::Net_FTP is missing." -msgstr "" - -msgid "FTP Support : The constant %{const} is not defined." -msgstr "" - -msgid "Net_FTP Error : %{msg}" -msgstr "" - -msgid "FTP Support : Unable to connect to FTP Server (Step : %{step})." -msgstr "" - -msgid "FTP Support : Unable to make directory %{dir} on the remote server." -msgstr "" - -msgid "FTP Support : Unable to delete directory %{dir} on the remote server." -msgstr "" - -msgid "" -"FTP Support : Unable to modify rights on the directory %{dir} on the remote " -"server." -msgstr "" - -msgid "" -"FTP Support : Unable to rename folder from %{old} to %{new} on the remote " -"server." -msgstr "" - -msgid "SSH Support : PhpSecLib is missing." -msgstr "" - -msgid "SSH Support : The constant %{const} is not defined." -msgstr "" - -msgid "SSH : Invalid connection paramater : %{param} parameter is missing." -msgstr "" - -msgid "" -"SSH : Authentication key file not found (or not accessible, file path : " -"'%{path}')" -msgstr "" - -msgid "SSH : Fail to load authentication key (%{path})." -msgstr "" - -msgid "SSH : Unable to connect to SSH Server (%{host}:%{port})." -msgstr "" - -msgid "SSH : Unable to make directory %{dir} on the remote server." -msgstr "" - -msgid "SSH : Unable to delete directory %{dir} on the remote server." -msgstr "" - -msgid "" -"SSH : Unable to rename folder from %{old} to %{new} on the remote server." -msgstr "" - -msgid "Asterisk Support : The constant %{const} is not defined." -msgstr "" - -msgid "Asterisk : The function %{function} only work with %{objectName}." -msgstr "" - -msgid "" -"Asterisk : The attribute %{dependency} is missing. Unable to generate MD5 " -"hashed password." -msgstr "" - -msgid "" -"Asterisk : Clear password not availlable. Unable to generate MD5 hashed " -"password." -msgstr "" - -msgid "SUPANN Support : The constant %{const} is not defined." -msgstr "" - -msgid "" -"SUPANN Support : The LSobject type %{type} does not exist. Can't work with " -"entities.." -msgstr "" - -msgid "SUPANN Support : The global array %{array} is not defined." -msgstr "" - -msgid "" -"SUPANN: The attribute %{dependency} is missing. Unable to forge the " -"attribute %{attr}." -msgstr "" - -msgid "" -"SUPANN: Can't get the basedn of entities. Unable to forge the attribute " -"%{attr}." -msgstr "" - -msgid "SUPANN: This entity have children entities and could be deleted." -msgstr "" - -msgid "SUPANN: Fail to load nomenclature %{nomenclature}." -msgstr "" - -msgid "Entity %{id} (unrecognized)" -msgstr "" - -msgid "Godfather %{dn} (unrecognized)" -msgstr "" - -msgid "%{value} (unrecognized value)" -msgstr "" - -msgid "Dynamic groups support: The constant %{const} is not defined." -msgstr "" - -msgid "" -"Dynamic groups support: You must at least define all constantes of dynamic " -"groups's by DN or by UID." -msgstr "" - -msgid "" -"Dynamic groups: The attribute %{dependency} is missing. Unable to forge the " -"attribute %{attr}." -msgstr "" - -msgid "Dynamic groups: Fail to parse %{attr} value : invalid number of parts." -msgstr "" - -msgid "" -"Members cache of %{count} dynamic group(s) have been updated because thes " -"were potentially impacted by your changes." -msgstr "" - -msgid "" -"Members cache of %{count} dynamic group(s) have NOT been updated but thes " -"were potentially impacted by your changes. A delay of some minutes could be " -"necessary to handle your changes on this groups." -msgstr "" - -msgid "" -"Organizational Chart Support : The global array %{array} is not defined." -msgstr "" - -msgid "" -"Organizational Chart Support : The global variable %{var} is not defined." -msgstr "" - -msgid "Organizational chart" -msgstr "" - -msgid "Organizational chart data" +#: includes/addons/LSaddons.ppolicy.php:258 +msgid "Not set" msgstr "" +#: includes/addons/LSaddons.samba.php:27 msgid "SAMBA Support: Unable to load smbHash class." msgstr "" +#: includes/addons/LSaddons.samba.php:30 msgid "SAMBA Support: The constant %{const} is not defined." msgstr "" +#: includes/addons/LSaddons.samba.php:34 msgid "" "SAMBA Support: The constants LS_SAMBA_SID_BASE_USER and " "LS_SAMBA_SID_BASE_GROUP must'nt have the same parity to keep SambaSID's " "unicity." msgstr "" +#: includes/addons/LSaddons.samba.php:39 msgid "" "SAMBA Support: The attribute %{dependency} is missing. Unable to forge the " "attribute %{attr}." msgstr "" +#: includes/addons/LSaddons.samba.php:42 msgid "SAMBA Support: Can't get the sambaUnixIdPool object." msgstr "" +#: includes/addons/LSaddons.samba.php:45 msgid "SAMBA Support: Error modifying the sambaUnixIdPool object." msgstr "" +#: includes/addons/LSaddons.samba.php:48 msgid "SAMBA Support: The %{attr} of the sambaUnixIdPool object is incorrect." msgstr "" -msgid "POSIX Support : The constant %{const} is not defined." +#: includes/addons/LSaddons.ssh.php:31 +msgid "SSH Support : PhpSecLib is missing." msgstr "" -msgid "POSIX Support : Unable to load LSaddon::FTP." +#: includes/addons/LSaddons.ssh.php:35 +msgid "SSH Support : The constant %{const} is not defined." msgstr "" +#: includes/addons/LSaddons.ssh.php:41 +msgid "SSH : Invalid connection paramater : %{param} parameter is missing." +msgstr "" + +#: includes/addons/LSaddons.ssh.php:44 msgid "" -"POSIX : The attribute %{dependency} is missing. Unable to forge the " -"attribute %{attr}." +"SSH : Authentication key file not found (or not accessible, file path : " +"'%{path}')" msgstr "" -msgid "PhpLdapAdmin Support : The constant %{const} is not defined." +#: includes/addons/LSaddons.ssh.php:47 +msgid "SSH : Fail to load authentication key (%{path})." msgstr "" -msgid "Password policy Support : The constant %{const} is not defined." +#: includes/addons/LSaddons.ssh.php:50 +msgid "SSH : Unable to connect to SSH Server (%{host}:%{port})." msgstr "" -msgid "Password policy Support : The global array %{array} is not defined." +#: includes/addons/LSaddons.ssh.php:53 +msgid "SSH : Unable to make directory %{dir} on the remote server." msgstr "" -msgid "Password policy: An error occured generating CSV outfile memory space." -msgstr "" - -msgid "Password policy: An error occured executing the search." -msgstr "" - -msgid "Password policy: An error occured writing CSV header." -msgstr "" - -msgid "Password policy: An error occured writing a CSV row." -msgstr "" - -msgid "Never" -msgstr "" - -msgid "Unknown" -msgstr "" - -#, php-format -msgid "Expired (since %s)" -msgstr "" - -#, php-format -msgid "Expire on %s" -msgstr "" - -msgid "Not set" -msgstr "" - -msgid "Access Right Matrix Support : The global array %{array} is not defined." -msgstr "" - -msgid "Access rights matrix" -msgstr "" - -msgid "All connected users" -msgstr "" - -msgid "Masked attributes" -msgstr "" - -msgid "The user him-self" -msgstr "" - -#: templates/default/showTechInfo.tpl:16 -msgid "Structural object class" -msgstr "" - -msgid "Creation date" -msgstr "" - -msgid "Creator DN" -msgstr "" - -msgid "Last modification date" -msgstr "" - -msgid "Last modifier DN" -msgstr "" - -msgid "LDAP entry change sequence number" -msgstr "" - -msgid "LDAP entry UUID" -msgstr "" - -msgid "LDAP entry has children" -msgstr "" - -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - -msgid "%{name}: Technical information" -msgstr "" - -msgid "Go back" -msgstr "" - -msgid "MAILQUOTA Support : The constant %{const} is not defined." -msgstr "" - -msgid "MAILQUOTA Support : The IMAP PHP module is not available." -msgstr "" - -msgid "MAILQUOTA : Fail to connect on IMAP server : %{error}" -msgstr "" - -msgid "MAILQUOTA : Unexpected error occured retreiving mailbox quota usage." -msgstr "" - -msgid "MAILQUOTA : Fail to compose IMAP mailbox username." +#: includes/addons/LSaddons.ssh.php:56 +msgid "SSH : Unable to delete directory %{dir} on the remote server." msgstr "" +#: includes/addons/LSaddons.ssh.php:59 msgid "" -"MAILQUOTA : No quota information retrieved from IMAP server. Make sure quota " -"is enabled on this IMAP server or/and for this mailbox." -msgstr "" - -msgid "Mailbox quota usage : %{usage} / %{limit}" -msgstr "" - -msgid "Unlimited" -msgstr "" - -msgid "MAILDIR Support : Unable to load LSaddon::FTP." -msgstr "" - -msgid "MAILDIR Support : The constant %{const} is not defined." -msgstr "" - -msgid "MAILDIR : Error creating maildir on the remote server." -msgstr "" - -msgid "MAILDIR : Error deleting the maildir on the remote server." -msgstr "" - -msgid "MAILDIR : Error renaming the maildir on the remote server." -msgstr "" - -msgid "MAILDIR : Error retrieving remote path of the maildir." -msgstr "" - -msgid "MAIL Support : Pear::MAIL is missing." -msgstr "" - -msgid "MAIL Support : Pear::MAIL_MIME is missing." -msgstr "" - -msgid "MAIL Error : %{msg}" -msgstr "" - -msgid "MAIL : Error sending your email" +"SSH : Unable to rename folder from %{old} to %{new} on the remote server." msgstr "" +#: includes/addons/LSaddons.exportSearchResultAsCSV.php:27 msgid "ExportSearchResultAsCSV Support : function fputcsv is not available." msgstr "" +#: includes/addons/LSaddons.exportSearchResultAsCSV.php:30 msgid "" "ExportSearchResultAsCSV Support : The constant %{const} is not defined.." msgstr "" +#: includes/addons/LSaddons.exportSearchResultAsCSV.php:35 msgid "" "ExportSearchResultAsCSV Error : An error occured generating CSV outfile " "memory space." msgstr "" +#: includes/addons/LSaddons.exportSearchResultAsCSV.php:38 msgid "ExportSearchResultAsCSV Error : An error occured executing the search." msgstr "" +#: includes/addons/LSaddons.exportSearchResultAsCSV.php:41 msgid "ExportSearchResultAsCSV Error : An error occured writing CSV header." msgstr "" +#: includes/addons/LSaddons.exportSearchResultAsCSV.php:44 msgid "ExportSearchResultAsCSV Error : An error occured writing a CSV row." msgstr "" -msgid "Home" +#: includes/addons/LSaddons.mail.php:27 +msgid "MAIL Support : Pear::MAIL is missing." msgstr "" -msgid "You must provide pattern for global search." +#: includes/addons/LSaddons.mail.php:30 +msgid "MAIL Support : Pear::MAIL_MIME is missing." msgstr "" -#: templates/default/select.tpl:29 -msgid "Refresh" +#: includes/addons/LSaddons.mail.php:35 +msgid "MAIL Error : %{msg}" msgstr "" -msgid "New" +#: includes/addons/LSaddons.mail.php:39 +msgid "MAIL : Error sending your email" msgstr "" -msgid "Import" +#: includes/addons/LSaddons.phpldapadmin.php:27 +msgid "PhpLdapAdmin Support : The constant %{const} is not defined." msgstr "" -msgid "Export" -msgstr "" - -msgid "Reset" -msgstr "" - -#: templates/default/select.tpl:28 templates/default/global_search.tpl:6 -msgid "Search" -msgstr "" - -#: templates/default/select.tpl:31 -msgid "Approximative search" -msgstr "" - -#: templates/default/select.tpl:32 -msgid "Recursive search" -msgstr "" - -msgid "undefined" +#: includes/addons/LSaddons.dyngroup.php:27 +msgid "Dynamic groups support: The constant %{const} is not defined." msgstr "" +#: includes/addons/LSaddons.dyngroup.php:30 msgid "" -"The custom action %{title} have been successfully execute on this search." +"Dynamic groups support: You must at least define all constantes of dynamic " +"groups's by DN or by UID." msgstr "" -msgid "Do you really want to execute custom action %{title} on this search ?" +#: includes/addons/LSaddons.dyngroup.php:34 +msgid "" +"Dynamic groups: The attribute %{dependency} is missing. Unable to forge the " +"attribute %{attr}." msgstr "" +#: includes/addons/LSaddons.dyngroup.php:37 +msgid "Dynamic groups: Fail to parse %{attr} value : invalid number of parts." +msgstr "" + +#: includes/addons/LSaddons.dyngroup.php:338 +msgid "" +"Members cache of %{count} dynamic group(s) have been updated because thes " +"were potentially impacted by your changes." +msgstr "" + +#: includes/addons/LSaddons.dyngroup.php:345 +msgid "" +"Members cache of %{count} dynamic group(s) have NOT been updated but thes " +"were potentially impacted by your changes. A delay of some minutes could be " +"necessary to handle your changes on this groups." +msgstr "" + +#: includes/addons/LSaddons.posix.php:27 +msgid "POSIX Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.posix.php:31 +msgid "POSIX Support : Unable to load LSaddon::FTP." +msgstr "" + +#: includes/addons/LSaddons.posix.php:36 +msgid "" +"POSIX : The attribute %{dependency} is missing. Unable to forge the " +"attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.orgchart.php:27 +msgid "" +"Organizational Chart Support : The global array %{array} is not defined." +msgstr "" + +#: includes/addons/LSaddons.orgchart.php:30 +msgid "" +"Organizational Chart Support : The global variable %{var} is not defined." +msgstr "" + +#: includes/addons/LSaddons.orgchart.php:67 +msgid "Organizational chart" +msgstr "" + +#: includes/addons/LSaddons.orgchart.php:75 +msgid "Organizational chart data" +msgstr "" + +#: includes/addons/LSaddons.supann.php:27 +msgid "SUPANN Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.supann.php:30 +msgid "" +"SUPANN Support : The LSobject type %{type} does not exist. Can't work with " +"entities.." +msgstr "" + +#: includes/addons/LSaddons.supann.php:33 +msgid "SUPANN Support : The global array %{array} is not defined." +msgstr "" + +#: includes/addons/LSaddons.supann.php:38 +msgid "" +"SUPANN: The attribute %{dependency} is missing. Unable to forge the " +"attribute %{attr}." +msgstr "" + +#: includes/addons/LSaddons.supann.php:41 +msgid "" +"SUPANN: Can't get the basedn of entities. Unable to forge the attribute " +"%{attr}." +msgstr "" + +#: includes/addons/LSaddons.supann.php:44 +msgid "SUPANN: This entity have children entities and could be deleted." +msgstr "" + +#: includes/addons/LSaddons.supann.php:47 +msgid "SUPANN: Fail to load nomenclature %{nomenclature}." +msgstr "" + +#: includes/addons/LSaddons.supann.php:376 +msgid "Entity %{id} (unrecognized)" +msgstr "" + +#: includes/addons/LSaddons.supann.php:448 +msgid "Godfather %{dn} (unrecognized)" +msgstr "" + +#: includes/addons/LSaddons.supann.php:575 +#: includes/class/class.LSformElement_select.php:58 +#: includes/class/class.LSformElement_select_object.php:102 +msgid "%{value} (unrecognized value)" +msgstr "" + +#: includes/addons/LSaddons.LSaccessRightsMatrixView.php:26 +msgid "Access Right Matrix Support : The global array %{array} is not defined." +msgstr "" + +#: includes/addons/LSaddons.LSaccessRightsMatrixView.php:52 +#: includes/addons/LSaddons.LSaccessRightsMatrixView.php:209 +msgid "Access rights matrix" +msgstr "" + +#: includes/addons/LSaddons.LSaccessRightsMatrixView.php:62 +msgid "All connected users" +msgstr "" + +#: includes/addons/LSaddons.LSaccessRightsMatrixView.php:184 +msgid "Masked attributes" +msgstr "" + +#: includes/addons/LSaddons.LSaccessRightsMatrixView.php:205 +msgid "The user him-self" +msgstr "" + +#: includes/addons/LSaddons.ftp.php:27 +msgid "FTP Support : Pear::Net_FTP is missing." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:31 +msgid "FTP Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:37 +msgid "Net_FTP Error : %{msg}" +msgstr "" + +#: includes/addons/LSaddons.ftp.php:41 +msgid "FTP Support : Unable to connect to FTP Server (Step : %{step})." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:44 +msgid "FTP Support : Unable to make directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:47 +msgid "FTP Support : Unable to delete directory %{dir} on the remote server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:50 +msgid "" +"FTP Support : Unable to modify rights on the directory %{dir} on the remote " +"server." +msgstr "" + +#: includes/addons/LSaddons.ftp.php:53 +msgid "" +"FTP Support : Unable to rename folder from %{old} to %{new} on the remote " +"server." +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:27 +msgid "MAILQUOTA Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:30 +msgid "MAILQUOTA Support : The IMAP PHP module is not available." +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:35 +msgid "MAILQUOTA : Fail to connect on IMAP server : %{error}" +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:38 +msgid "MAILQUOTA : Unexpected error occured retreiving mailbox quota usage." +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:41 +msgid "MAILQUOTA : Fail to compose IMAP mailbox username." +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:44 +msgid "" +"MAILQUOTA : No quota information retrieved from IMAP server. Make sure quota " +"is enabled on this IMAP server or/and for this mailbox." +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:154 +msgid "Mailbox quota usage : %{usage} / %{limit}" +msgstr "" + +#: includes/addons/LSaddons.mailquota.php:162 +msgid "Unlimited" +msgstr "" + +#: includes/addons/LSaddons.maildir.php:27 +msgid "MAILDIR Support : Unable to load LSaddon::FTP." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:30 +msgid "MAILDIR Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:35 +msgid "MAILDIR : Error creating maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:38 +msgid "MAILDIR : Error deleting the maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:41 +msgid "MAILDIR : Error renaming the maildir on the remote server." +msgstr "" + +#: includes/addons/LSaddons.maildir.php:44 +msgid "MAILDIR : Error retrieving remote path of the maildir." +msgstr "" + +#: includes/addons/LSaddons.watermark.php:78 +msgid "PRE-PRODUCTION" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:63 +#: templates/default/showTechInfo.tpl:16 +msgid "Structural object class" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:64 +msgid "Creation date" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:65 +msgid "Creator DN" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:66 +msgid "Last modification date" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:67 +#: includes/addons/LSaddons.showTechInfo.php:68 +msgid "Last modifier DN" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:69 +msgid "LDAP entry change sequence number" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:70 +msgid "LDAP entry UUID" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:71 +msgid "LDAP entry has children" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:92 +#: includes/class/class.LSformElement_boolean.php:60 +msgid "Yes" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:94 +#: includes/class/class.LSformElement_boolean.php:61 +msgid "No" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:114 +msgid "%{name}: Technical information" +msgstr "" + +#: includes/addons/LSaddons.showTechInfo.php:118 +msgid "Go back" +msgstr "" + +#: includes/addons/LSaddons.asterisk.php:27 +msgid "Asterisk Support : The constant %{const} is not defined." +msgstr "" + +#: includes/addons/LSaddons.asterisk.php:30 +msgid "Asterisk : The function %{function} only work with %{objectName}." +msgstr "" + +#: includes/addons/LSaddons.asterisk.php:33 +msgid "" +"Asterisk : The attribute %{dependency} is missing. Unable to generate MD5 " +"hashed password." +msgstr "" + +#: includes/addons/LSaddons.asterisk.php:36 +msgid "" +"Asterisk : Clear password not availlable. Unable to generate MD5 hashed " +"password." +msgstr "" + +#: includes/class/class.LSmail.php:74 +msgid "Your message has been sent successfully." +msgstr "" + +#: includes/class/class.LSformElement_supannRessourceEtat.php:40 +#: includes/class/class.LSformElement_supannRessourceEtatDate.php:40 +msgid "Resource" +msgstr "" + +#: includes/class/class.LSformElement_supannRessourceEtat.php:47 +#: includes/class/class.LSformElement_supannRessourceEtatDate.php:47 +msgid "State" +msgstr "" + +#: includes/class/class.LSformElement_supannRessourceEtat.php:54 +#: includes/class/class.LSformElement_supannRessourceEtatDate.php:54 +msgid "Sub-state" +msgstr "" + +#: includes/class/class.LSformRule.php:60 +msgid "Invalid syntax checking configuration: unknown rule %{rule}." +msgstr "" + +#: includes/class/class.LSformRule.php:81 +#: includes/class/class.LSformRule.php:283 +#: includes/class/class.LSattr_html_date.php:47 +#: includes/class/class.LSattr_html_select_list.php:63 +msgid "Invalid value" +msgstr "" + +#: includes/class/class.LSformRule.php:294 +msgid "LSformRule_%{type}: Parameter %{param} is not found." +msgstr "" + +#: includes/class/class.LSio.php:244 +msgid "Failed to set post data on creation form." +msgstr "" + +#: includes/class/class.LSio.php:250 +msgid "Error validating creation form." +msgstr "" + +#: includes/class/class.LSio.php:255 +msgid "Failed to validate object data." +msgstr "" + +#: includes/class/class.LSio.php:262 +msgid "Failed to generate DN for this object." +msgstr "" + +#: includes/class/class.LSio.php:276 +msgid "Error creating object on LDAP server." +msgstr "" + +#: includes/class/class.LSio.php:282 +msgid "An object already exist on LDAP server with DN %{dn}." +msgstr "" + +#: includes/class/class.LSio.php:293 +msgid "" +"Failed to load existing object %{dn} from LDAP server. Can't update object." +msgstr "" + +#: includes/class/class.LSio.php:301 +msgid "Failed to set post data on update form." +msgstr "" + +#: includes/class/class.LSio.php:307 +msgid "Error validating update form." +msgstr "" + +#: includes/class/class.LSio.php:317 +msgid "Error updating object on LDAP server." +msgstr "" + +#: includes/class/class.LSio.php:689 +msgid "LSio: Post data not found or not completed." +msgstr "" + +#: includes/class/class.LSio.php:692 +msgid "LSio: object type invalid." +msgstr "" + +#: includes/class/class.LSio.php:695 +msgid "LSio: input/output format %{format} invalid." +msgstr "" + +#: includes/class/class.LSio.php:698 +msgid "LSio: Fail to initialize input/output driver." +msgstr "" + +#: includes/class/class.LSio.php:701 +msgid "LSio: Fail to load objects's data from input file." +msgstr "" + +#: includes/class/class.LSio.php:704 +msgid "LSio: Fail to load objects's data to export from LDAP directory." +msgstr "" + +#: includes/class/class.LSio.php:707 +msgid "LSio: Fail to export objects's data." +msgstr "" + +#: includes/class/class.LSformElement_supannRessourceEtatDate.php:61 +msgid "Start date" +msgstr "" + +#: includes/class/class.LSformElement_supannRessourceEtatDate.php:67 +#: includes/class/class.LSformElement_supannEmpProfil.php:82 +#: includes/class/class.LSformElement_supannEtuInscription.php:120 +#: includes/class/class.LSformElement_supannExtProfil.php:81 +msgid "End date" +msgstr "" + +#: includes/class/class.LSattr_ldap_pwdHistory.php:77 +msgid "Unknown (%{raw_value})" +msgstr "" + +#: includes/class/class.LSconfirmBox.php:35 +msgid "Confirmation" +msgstr "" + +#: includes/class/class.LSconfirmBox.php:36 +msgid "You confirm your choice ?" +msgstr "" + +#: includes/class/class.LSconfirmBox.php:37 +#: includes/class/class.LSsmoothbox.php:39 includes/class/class.LSform.php:74 +#: includes/routes.php:632 includes/routes.php:1286 includes/routes.php:1432 #: templates/default/recoverpassword.tpl:21 msgid "Validate" msgstr "" -msgid "Data entry form" -msgstr "" - -msgid "Object has been added." -msgstr "" - -msgid "Modify" -msgstr "" - -msgid "Copy" -msgstr "" - -msgid "Delete" -msgstr "" - -msgid "My account" -msgstr "" - -msgid "The object has been partially modified." -msgstr "" - -msgid "The object has been modified successfully." -msgstr "" - -msgid "View" -msgstr "" - -msgid "%{objectname} has been successfully deleted." -msgstr "" - -msgid "Deleting : %{objectname}" -msgstr "" - -msgid "Do you really want to delete %{displayName} ?" +#: includes/class/class.LSconfirmBox.php:38 +msgid "Cancel" msgstr "" +#: includes/class/class.LSauthMethod_anonymous.php:72 msgid "" -"The custom action %{customAction} have been successfully execute on " -"%{objectname}." +"LSauthMethod_anonymous : You must define the LSAUTHMETHOD_ANONYMOUS_USER " +"contant in the configuration file." msgstr "" -msgid "" -"Do you really want to execute custom action %{customAction} on " -"%{objectname} ?" -msgstr "" - -msgid "" -"Function 'getFData' : The method %{meth} of the object %{obj} doesn't exist." -msgstr "" - -msgid "[not string value]" -msgstr "" - -msgid "Folder not found" -msgstr "" - -msgid "Password is too long (maximum: %{maxLength})." -msgstr "" - -msgid "Password is too short (minimum: %{minLength})." -msgstr "" - -msgid "" -"Password match with only %{valid} rule(s) (at least %{minValidRegex} are " -"required)." -msgstr "" - -msgid "This password is prohibited." -msgstr "" - -msgid "" -"LSformRule_password : Invalid regex configured : %{regex}. You must use PCRE " -"(begining by '/' caracter)." +#: includes/class/class.LSformElement.php:191 +msgid "Attribute" msgstr "" +#: includes/class/class.LSformElement_mailQuota.php:101 +#: includes/class/class.LSformElement_valueWithUnit.php:135 +#: includes/class/class.LSformElement_quota.php:102 #: templates/default/LSformElement_mailQuota_field.tpl:17 msgid "Incorrect value" msgstr "" +#: includes/class/class.LSformElement_mailQuota.php:171 msgid "Invalid value : \"%{value}\"." msgstr "" +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:138 +msgid "Account types" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:139 +msgid "Regular user account" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:140 +msgid "Workstation Trust Account" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:141 +msgid "Server Trust Account" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:142 +msgid "Domain Trust Account" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:143 +msgid "Majority Node Set (MNS) logon account" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:145 +msgid "Account settings" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:146 +msgid "Home directory required" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:147 +msgid "Account without password" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:148 +msgid "Password does not expire" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:149 +msgid "Account disabled" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:150 +msgid "Temporary duplicate of other account" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:151 +msgid "Account automatically locked" +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:162 +msgid "" +"LSattr_ldap_sambaAcctFlags: invalid attribute values count. This attribute " +"type could only handle single value attribute." +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:165 +msgid "" +"LSattr_ldap_sambaAcctFlags: invalid attribute value. Fail to parse current " +"flags set." +msgstr "" + +#: includes/class/class.LSattr_ldap_sambaAcctFlags.php:168 +msgid "" +"LSattr_ldap_sambaAcctFlags: invalid flag '%{flag}'. Can't format the LDAP " +"attribute value." +msgstr "" + +#: includes/class/class.LSformElement_ssh_key.php:83 +msgid "Display the full key." +msgstr "" + +#: includes/class/class.LSformElement_ssh_key.php:94 +msgid "Unknown type" +msgstr "" + +#: includes/class/class.LSformElement_valueWithUnit.php:243 +msgid "" +"LSformElement_valueWithUnit : Units configuration data are missing for the " +"attribute %{attr}." +msgstr "" + +#: includes/class/class.LSattr_html.php:164 +msgid "" +"LSattr_html : The method addToForm() of the HTML type of the attribute " +"%{attr} is not defined." +msgstr "" + +#: includes/class/class.LSattr_html.php:168 +msgid "%{type} : Multiple data are not supported for this field type." +msgstr "" + +#: includes/class/class.LSformElement_supannCompositeAttribute.php:186 +#: includes/class/class.LSrelation.php:701 +#: includes/class/class.LSformElement_select_object.php:68 +#: includes/class/class.LSformElement_supannLabeledValue.php:79 +#: includes/class/class.LSsearchEntry.php:177 includes/routes.php:1046 +#: includes/routes.php:1214 includes/routes.php:1299 includes/routes.php:1445 +msgid "Modify" +msgstr "" + +#: includes/class/class.LSformElement_supannCompositeAttribute.php:187 +#: includes/class/class.LSformElement_select_object.php:75 +#: includes/class/class.LSformElement_supannLabeledValue.php:80 msgid "No set value" msgstr "" +#: includes/class/class.LSformElement_supannCompositeAttribute.php:188 +#: includes/class/class.LSformElement_text.php:66 +#: includes/class/class.LSformElement_select_object.php:76 +#: includes/class/class.LSformElement_supannLabeledValue.php:81 msgid "No result" msgstr "" -msgid "%{value} (Unparsable value)" +#: includes/class/class.LSformElement_supannCompositeAttribute.php:276 +#: includes/class/class.LSformElement_supannCompositeAttribute.php:293 +msgid "%{val} (unrecognized)" msgstr "" -msgid "Invalid label: \"%{label}\"" +#: includes/class/class.LSformElement_supannCompositeAttribute.php:351 +msgid "Fail to decode composite value #%{idx}." msgstr "" -msgid "Invalid value: \"%{value}\"" +#: includes/class/class.LSformElement_supannCompositeAttribute.php:420 +#: includes/class/class.LSformElement_supannCompositeAttribute.php:430 +#: includes/class/class.LSformElement_supannCompositeAttribute.php:454 +#: includes/class/class.LSformElement_supannCompositeAttribute.php:460 +#: includes/class/class.LSformElement_supannCompositeAttribute.php:466 +msgid "Invalid value for component %{c}." msgstr "" -msgid "Unparsable value" -msgstr "" - -msgid "LSauthMethod_CAS : Failed to load phpCAS." -msgstr "" - -msgid "" -"LSauthMethod_CAS : Please check your configuration : you must configure CAS " -"server SSL certificate validation using one of the following constant : " -"LSAUTH_CAS_SERVER_SSL_CACERT or LSAUTH_CAS_SERVER_NO_SSL_VALIDATION" -msgstr "" - -msgid "Generate the value" -msgstr "" - -msgid "Actions" -msgstr "" - -#: templates/default/global_search.tpl:16 -msgid "This search didn't get any result." -msgstr "" - -msgid "LSsearch : Invalid filter : %{filter}." -msgstr "" - -msgid "LSsearch : Invalid basedn : %{basedn}." -msgstr "" - -msgid "LSsearch : Invalid value for %{param} parameter." -msgstr "" - -msgid "" -"LSsearch : Invalid size limit. Must be an integer greater or equal to 0." -msgstr "" - -msgid "LSsearch : Invalid parameter %{attr}. Must be an boolean." -msgstr "" - -msgid "" -"LSsearch : Invalid parameter attributes. Must be an string or an array of " -"strings." -msgstr "" - -msgid "LSsearch : Can't build attributes list for make filter." -msgstr "" - -msgid "" -"LSsearch : Error building filter with attribute '%{attr}' and pattern " -"'%{pattern}'" -msgstr "" - -msgid "LSsearch : Error combining filters." -msgstr "" - -msgid "LSsearch : Invalid pattern." -msgstr "" - -msgid "LSsearch : Invalid attribute %{attr} in parameters." -msgstr "" - -msgid "LSsearch : Error during the search." -msgstr "" - -msgid "LSsearch : Error sorting the search." -msgstr "" - -msgid "" -"LSsearch : The function of the custum information %{name} is not callable." -msgstr "" - -msgid "" -"LSsearch : Invalid predefinedFilter for LSobject type %{type} : %{label} " -"(filter : %{filter})." -msgstr "" - -msgid "LSsearch : Error during execution of the custom action %{customAction}." -msgstr "" - -msgid "LSsearch : Invalid search pattern." -msgstr "" - -msgid "Unknown (%{raw_value})" -msgstr "" - -msgid "Establishment" -msgstr "" - -msgid "EduPerson profil" -msgstr "" - -msgid "Entity type" -msgstr "" - -msgid "Assignment entity" -msgstr "" - -msgid "Godfather" -msgstr "" - -msgid "Activity" -msgstr "" - -msgid "Population" -msgstr "" - -msgid "End date" -msgstr "" - -msgid "Send a mail from here." -msgstr "" - -msgid "" -"LSformElement_mail: the autocomplete feature was moved to parent " -"LSformElement_text class and you still use old configuration style with " -"parameter mail_attributes (and its default value). Please upgrade your " -"configuration by renaming (or setting) this parameter to value_attributes." -msgstr "" - -msgid "Click to enlarge." -msgstr "" - -msgid "Click to delete the picture." -msgstr "" - -msgid "The uploaded file size exceeds the limit accepted by the server." -msgstr "" - -msgid "The uploaded file size exceeds the limit accepted by the HTML form." -msgstr "" - -msgid "The file was only partially uploaded." -msgstr "" - -msgid "No file was uploaded." -msgstr "" - -msgid "No temporary folder found to store this uploaded file." -msgstr "" - -msgid "Failed to write file on server disk." -msgstr "" - -msgid "A PHP extension stopped the file upload." -msgstr "" - -msgid "An unknown error occured sending this file." -msgstr "" - -msgid "LSformRule_callable : The given callable option is not callable" -msgstr "" - -msgid "Fail to decode JSON value #%{idx}." -msgstr "" - -msgid "Component %{c} must be defined" +#: includes/class/class.LSformElement_supannCompositeAttribute.php:424 +msgid "Unparsable value for component %{c}." msgstr "" +#: includes/class/class.LSformElement_supannCompositeAttribute.php:479 +#: includes/class/class.LSformElement_jsonCompositeAttribute.php:387 msgid "%{label}: %{error}" msgstr "" -msgid "Invalid value \"%{value}\" for component %{component}." +#: includes/class/class.LSformElement_supannCompositeAttribute.php:495 +#: includes/class/class.LSformElement_jsonCompositeAttribute.php:345 +msgid "Component %{c} must be defined" msgstr "" -msgid "Invalid value" +#: includes/class/class.LSformElement_labeledValue.php:64 +msgid "(unrecognized value)" msgstr "" +#: includes/class/class.LSformElement_labeledValue.php:65 +msgid "(unrecognized label)" +msgstr "" + +#: includes/class/class.LSformElement_labeledValue.php:138 +#: includes/class/class.LSformElement_supannLabeledValue.php:152 +msgid "Invalid value: \"%{value}\"" +msgstr "" + +#: includes/class/class.LSformElement_date.php:164 +msgid "Now." +msgstr "" + +#: includes/class/class.LSformElement_date.php:165 +msgid "Today." +msgstr "" + +#: includes/class/class.LSformElement_date.php:166 +msgid "Clear selected date." +msgstr "" + +#: includes/class/class.LStemplate.php:119 +msgid "LStemplate : compile directory is not writable (dir : %{dir})" +msgstr "" + +#: includes/class/class.LStemplate.php:138 +msgid "LStemplate : Can't load Smarty 2 support file" +msgstr "" + +#: includes/class/class.LStemplate.php:145 +msgid "LStemplate : Can't load Smarty 3 support file" +msgstr "" + +#: includes/class/class.LStemplate.php:149 +msgid "LStemplate : Smarty version not recognized." +msgstr "" + +#: includes/class/class.LStemplate.php:172 +msgid "LStemplate : Can't load Smarty." +msgstr "" + +#: includes/class/class.LStemplate.php:299 +msgid "" +"LStemplate : Request template '%{tpl}' is now deprecated. Please refer to " +"upgrade documentation to adapt your templates." +msgstr "" + +#: includes/class/class.LStemplate.php:437 +msgid "Smarty - An exception occured displaying template '%{template}'" +msgstr "" + +#: includes/class/class.LStemplate.php:457 +msgid "Smarty - An exception occured fetching template '%{template}'" +msgstr "" + +#: includes/class/class.LStemplate.php:472 +#: includes/class/class.LStemplate.php:486 +msgid "A fatal error occured. If problem persist, please contact support." +msgstr "" + +#: includes/class/class.LStemplate.php:482 +msgid "

Loop detected displaying this error:

%{error}
" +msgstr "" + +#: includes/class/class.LStemplate.php:485 +msgid "A fatal error occured." +msgstr "" + +#: includes/class/class.LStemplate.php:685 +msgid "LStemplate : Template %{file} not found." +msgstr "" + +#: includes/class/class.LStemplate.php:688 +msgid "" +"LStemplate : Fail to execute trigger %{callable} on event %{event} : is not " +"callable." +msgstr "" + +#: includes/class/class.LStemplate.php:691 +msgid "" +"LStemplate : Error during the execution of the trigger %{callable} on event " +"%{event}." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:400 +msgid "" +"LSattr_html_select_object : parameter '%{parameter}' is missing (attribute : " +"%{attr})." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:403 +msgid "" +"LSattr_html_select_object : the value of the parameter value_attribute in " +"the configuration of the attribute %{attr} is incorrect. Object " +"%{object_type} have no attribute %{value_attribute}." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:406 +msgid "" +"LSattr_html_select_object : more than one object returned corresponding to " +"value %{val} of attribute %{attr}." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:409 +msgid "" +"LSattr_html_select_object : selection of object type %{type} is configured " +"multiple time for attribute %{attr}." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:412 +msgid "" +"LSattr_html_select_object : the value '%{value}' seem to be duplicated in " +"values of the attribute %{attr}." +msgstr "" + +#: includes/class/class.LSattr_html_select_object.php:415 +msgid "" +"LSattr_html_select_object : selected object %{name} has no attribute %{attr} " +"value, you can't select it." +msgstr "" + +#: includes/class/class.LSformRule_differentPassword.php:95 +msgid "" +"LSformRule_differentPassword : Other password attribute is not configured." +msgstr "" + +#: includes/class/class.LSformRule_differentPassword.php:98 +msgid "" +"LSformRule_differentPassword : Fail to load LSattr_ldap :: password class." +msgstr "" + +#: includes/class/class.LSformRule_differentPassword.php:101 +msgid "" +"LSformRule_differentPassword : The other password attribute %{attr} does not " +"exist." +msgstr "" + +#: includes/class/class.LSformRule_differentPassword.php:104 +msgid "" +"LSformRule_differentPassword : The other password attribute could not be the " +"same of the current one." +msgstr "" + +#: includes/class/class.LSformRule_differentPassword.php:107 +msgid "" +"LSformRule_differentPassword : The other password attributes must use " +"LSattr_ldap :: password. It's not the case of the attribure %{attr}." +msgstr "" + +#: includes/class/class.LSattribute.php:755 +msgid "" +"LSattribute : Attribute %{attr} : LDAP or HTML types unknow (LDAP = %{ldap} " +"& HTML = %{html})." +msgstr "" + +#: includes/class/class.LSattribute.php:758 +msgid "" +"LSattribute : The function %{func} to display the attribute %{attr} is " +"unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:761 +msgid "" +"LSattribute : The rule %{rule} to validate the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:764 +msgid "" +"LSattribute : Configuration data to verify the attribute %{attr} are " +"incorrect." +msgstr "" + +#: includes/class/class.LSattribute.php:767 +msgid "" +"LSattribute : The function %{func} to save the attribute %{attr} is unknow." +msgstr "" + +#: includes/class/class.LSattribute.php:770 +msgid "LSattribute : The value of the attribute %{attr} can't be generated." +msgstr "" + +#: includes/class/class.LSattribute.php:773 +msgid "LSattribute : Generation of the attribute %{attr} failed." +msgstr "" + +#: includes/class/class.LSattribute.php:776 +msgid "" +"LSattribute : Generation of the attribute %{attr} did not return a correct " +"value." +msgstr "" + +#: includes/class/class.LSattribute.php:779 +msgid "" +"LSattribute : The attr_%{type} of the attribute %{name} is not yet defined." +msgstr "" + +#: includes/class/class.LSformRule_callable.php:71 +msgid "LSformRule_callable : The given callable option is not callable" +msgstr "" + +#: includes/class/class.LSformElement_postaladdress.php:73 +msgid "View on map" +msgstr "" + +#: includes/class/class.LSformElement_postaladdress.php:89 +msgid "" +"LSformElement_postaladdress : Map URL pattern generate function is not " +"callabled (%{function})." +msgstr "" + +#: includes/class/class.LSformRule_zxcvbn.php:88 +msgid "The security of this password is too weak." +msgstr "" + +#: includes/class/class.LSformElement_select.php:52 +msgid "Reset selection." +msgstr "" + +#: includes/class/class.LSsmoothbox.php:38 +msgid "Are you sure to want to close this window and lose all changes ?" +msgstr "" + +#: includes/class/class.LSformElement_textarea.php:51 +msgid "Clear" +msgstr "" + +#: includes/class/class.LSsession.php:381 msgid "Copy to clipboard" msgstr "" +#: includes/class/class.LSsession.php:382 msgid "Copied!" msgstr "" +#: includes/class/class.LSsession.php:1532 msgid "Connection" msgstr "" +#: includes/class/class.LSsession.php:1552 msgid "Recovery of your credentials" msgstr "" +#: includes/class/class.LSsession.php:1561 msgid "Please fill the identifier field to proceed recovery procedure" msgstr "" +#: includes/class/class.LSsession.php:1566 msgid "" "An email has been sent to %{mail}. Please follow the instructions on it." msgstr "" +#: includes/class/class.LSsession.php:1575 msgid "Your new password has been sent to %{mail}." msgstr "" -#: templates/default/select.tpl:20 templates/default/login.tpl:16 -#: templates/default/recoverpassword.tpl:17 +#: includes/class/class.LSsession.php:1745 includes/routes.php:157 +#: includes/routes.php:468 templates/default/select.tpl:29 +msgid "Refresh" +msgstr "" + +#: includes/class/class.LSsession.php:2840 templates/default/select.tpl:20 +#: templates/default/recoverpassword.tpl:17 templates/default/login.tpl:16 msgid "Level" msgstr "" +#: includes/class/class.LSsession.php:3008 msgid "LSsession : The constant '%{const}' is not defined." msgstr "" +#: includes/class/class.LSsession.php:3011 msgid "" "LSsession : The addon '%{addon}' support is uncertain. Verify system " "compatibility and the add-on configuration." msgstr "" +#: includes/class/class.LSsession.php:3014 msgid "" "LSsession : LDAP server's configuration data are invalid. Can't connect." msgstr "" +#: includes/class/class.LSsession.php:3017 msgid "LSsession : Failed to load LSobject type '%{type}' : unknon type." msgstr "" +#: includes/class/class.LSsession.php:3020 msgid "LSsession : Failed to load LSclass '%{class}'." msgstr "" +#: includes/class/class.LSsession.php:3023 msgid "LSsession : Login or password incorrect." msgstr "" +#: includes/class/class.LSsession.php:3026 msgid "LSsession : Impossible to identify you : Duplication of identities." msgstr "" +#: includes/class/class.LSsession.php:3029 msgid "LSsession : Can't load class of authentification (%{class})." msgstr "" +#: includes/class/class.LSsession.php:3032 msgid "LSsession : Can't connect to LDAP server." msgstr "" +#: includes/class/class.LSsession.php:3035 msgid "LSsession : Impossible to authenticate you." msgstr "" +#: includes/class/class.LSsession.php:3038 msgid "LSsession : Your are not authorized to do this action." msgstr "" +#: includes/class/class.LSsession.php:3041 msgid "LSsession : Some informations are missing to display this page." msgstr "" +#: includes/class/class.LSsession.php:3044 msgid "" "LSsession : The function '%{function}' of the custom action " "'%{customAction}' does not exists or is not configured." msgstr "" +#: includes/class/class.LSsession.php:3047 msgid "LSsession : Fail to retrieve user's LDAP credentials from LSauth." msgstr "" +#: includes/class/class.LSsession.php:3050 msgid "" "LSsession : Fail to reconnect to LDAP server with user's LDAP credentials." msgstr "" +#: includes/class/class.LSsession.php:3053 msgid "LSsession : No import/export format define for this object type." msgstr "" +#: includes/class/class.LSsession.php:3056 msgid "" "LSsession : Error during creation of list of levels. Contact administrators. " "(Code : %{code})" msgstr "" +#: includes/class/class.LSsession.php:3059 msgid "LSsession : The password recovery is disabled for this LDAP server." msgstr "" +#: includes/class/class.LSsession.php:3062 msgid "" "LSsession : Some informations are missing to recover your password. Contact " "administrators." msgstr "" +#: includes/class/class.LSsession.php:3065 msgid "" "LSsession : Error during password recovery. Contact administrators.(Step : " "%{step})" msgstr "" +#: includes/class/class.LSsession.php:3068 msgid "" "LSsession : The function '%{func}' configured for the view '%{view}' of the " "LSaddon '%{addon}' is not declared in the LSaddon file." msgstr "" +#: includes/class/class.LSsession.php:3071 msgid "LSsession : Failed to load resource file '%{file}'." msgstr "" +#: includes/class/class.LSsession.php:3074 msgid "" "LSsession : The function '%{func}' configured for the view '%{view}' of the " "LSaddon '%{addon}' doesn't exist." msgstr "" +#: includes/class/class.LSsession.php:3077 msgid "LSsession : invalid related object's DN pass in parameter." msgstr "" +#: includes/class/class.LSsession.php:3080 msgid "" "LSsession : the LSaddon %{addon} keep using old-style addon view URL. Please " "upgrade it." msgstr "" +#: includes/class/class.LSsession.php:3083 msgid "" "LSsession : You have been redirect from an old-style URL %{url}. Please " "upgrade this link." msgstr "" +#: includes/class/class.LSsession.php:3086 msgid "" "LSsession : You always seem to use %{old} in your custom code: Please " "upgrade it and use %{new}.
\n"
@@ -908,1058 +1174,1415 @@ msgid ""
 "%{context}
" msgstr "" -msgid "LSformRule_date : No date format specify." -msgstr "" - -msgid "LSioFormatCSV: function fputcsv is not available." -msgstr "" - -msgid "Resource" -msgstr "" - -msgid "State" -msgstr "" - -msgid "Sub-state" -msgstr "" - -msgid "Start date" -msgstr "" - -msgid "LSioFormat : IOformat driver %{driver} invalid or unavailable." -msgstr "" - -msgid "" -"LSattr_ldap_password : Encoding type %{type} is not supported. This password " -"will be stored in clear text." -msgstr "" - -msgid "" -"LSattr_ldap_password : Encoding function %{function} is not callable. This " -"password will be stored in clear text." -msgstr "" - -msgid "Display the full key." -msgstr "" - -msgid "Unknown type" -msgstr "" - -msgid "Add a field to add another values." -msgstr "" - -msgid "Delete this field." -msgstr "" - -msgid "" -"Unexpected error occurred submiting this form. Please retry again or contact " -"support." -msgstr "" - -msgid "Do you really want to delete \"%{name}\"?" -msgstr "" - -msgid "Caution" -msgstr "" - -msgid "%{label} attribute data is not valid." -msgstr "" - -msgid "Mandatory field" -msgstr "" - -msgid "LSform : Error during the recovery of the values of the form." -msgstr "" - -msgid "" -"LSform : Error durring the recovery of the value of the field '%{element}'." -msgstr "" - -msgid "LSform : The field %{element} doesn't exist." -msgstr "" - -msgid "LSfom : Field type unknow (%{type})." -msgstr "" - -msgid "LSform : Error during the creation of the element '%{element}'." -msgstr "" - -msgid "LSform : The data entry form %{name} doesn't exist." -msgstr "" - -msgid "LSform : The data entry form %{name} is not correctly configured." -msgstr "" - -msgid "" -"LSform : The element %{name}, listed as displayed in data entry form " -"configuration, doesn't exist." -msgstr "" - -msgid "Body of membership" -msgstr "" - -msgid "" -"LSformRule_differentPassword : Other password attribute is not configured." -msgstr "" - -msgid "" -"LSformRule_differentPassword : Fail to load LSattr_ldap :: password class." -msgstr "" - -msgid "" -"LSformRule_differentPassword : The other password attribute %{attr} does not " -"exist." -msgstr "" - -msgid "" -"LSformRule_differentPassword : The other password attribute could not be the " -"same of the current one." -msgstr "" - -msgid "" -"LSformRule_differentPassword : The other password attributes must use " -"LSattr_ldap :: password. It's not the case of the attribure %{attr}." -msgstr "" - -msgid "Confirmation" -msgstr "" - -msgid "You confirm your choice ?" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "Invalid syntax checking configuration: unknown rule %{rule}." -msgstr "" - -msgid "LSformRule_%{type}: Parameter %{param} is not found." -msgstr "" - -msgid "LdapSaisie - Authentication required" -msgstr "" - -msgid "LSauthMethod_HTTP : the %{var} environnement variable is missing." -msgstr "" - -msgid "Reset selection." -msgstr "" - -msgid "LSauth : Login or password incorrect." -msgstr "" - -msgid "LSauth : Impossible to identify you : Duplication of identities." -msgstr "" - -msgid "LSauth : Could not load type of identifiable objects %{type}." -msgstr "" - -msgid "LSauth : Can't load authentication method %{method}." -msgstr "" - -msgid "LSauth : Failed to build the authentication provider %{method}." -msgstr "" - -msgid "LSauth : Not correctly initialized." -msgstr "" - -msgid "LSauth : Failed to get authentication informations from provider." -msgstr "" - -msgid "LSauth : Method %{method} configured doesn't support API mode." -msgstr "" - -msgid "Chat with this person." -msgstr "" - +#: includes/class/class.LSformRule_mimetype.php:53 +#: includes/class/class.LSformRule_mimetype.php:57 msgid "Invalid file type (%{type})." msgstr "" -msgid "" -"LSformRule_inarray : Possible values has not been configured to validate " -"data." -msgstr "" - -msgid "" -"Maildir creation/modification on user creation/modification is enabled. " -"Click to disable." -msgstr "" - -msgid "" -"Click to enable maildir creation/modification on user creation/modification." -msgstr "" - -msgid "Display this website." -msgstr "" - -msgid "Add this website to my bookmarks." -msgstr "" - -msgid "Your message has been sent successfully." -msgstr "" - -msgid "Display RSS stack." -msgstr "" - -msgid "" -"LSattr_html : The method addToForm() of the HTML type of the attribute " -"%{attr} is not defined." -msgstr "" - -msgid "%{type} : Multiple data are not supported for this field type." -msgstr "" - -msgid "Account types" -msgstr "" - -msgid "Regular user account" -msgstr "" - -msgid "Workstation Trust Account" -msgstr "" - -msgid "Server Trust Account" -msgstr "" - -msgid "Domain Trust Account" -msgstr "" - -msgid "Majority Node Set (MNS) logon account" -msgstr "" - -msgid "Account settings" -msgstr "" - -msgid "Home directory required" -msgstr "" - -msgid "Account without password" -msgstr "" - -msgid "Password does not expire" -msgstr "" - -msgid "Account disabled" -msgstr "" - -msgid "Temporary duplicate of other account" -msgstr "" - -msgid "Account automatically locked" -msgstr "" - -msgid "" -"LSattr_ldap_sambaAcctFlags: invalid attribute values count. This attribute " -"type could only handle single value attribute." -msgstr "" - -msgid "" -"LSattr_ldap_sambaAcctFlags: invalid attribute value. Fail to parse current " -"flags set." -msgstr "" - -msgid "" -"LSattr_ldap_sambaAcctFlags: invalid flag '%{flag}'. Can't format the LDAP " -"attribute value." -msgstr "" - -msgid "(unrecognized value)" -msgstr "" - -msgid "(unrecognized label)" -msgstr "" - -msgid "View on map" -msgstr "" - -msgid "" -"LSformElement_postaladdress : Map URL pattern generate function is not " -"callabled (%{function})." -msgstr "" - +#: includes/class/class.LSldapObject.php:490 msgid "The attribute %{attr} is not valid." msgstr "" +#: includes/class/class.LSldapObject.php:3059 msgid "LSldapObject : Object type unknown." msgstr "" +#: includes/class/class.LSldapObject.php:3062 msgid "LSldapObject : Update form is not defined for the object %{obj}." msgstr "" +#: includes/class/class.LSldapObject.php:3065 msgid "LSldapObject : No form exists for the object %{obj}." msgstr "" +#: includes/class/class.LSldapObject.php:3068 msgid "" "LSldapObject : The function %{func} to validate the attribute %{attr} the " "object %{obj} is unknow." msgstr "" +#: includes/class/class.LSldapObject.php:3071 msgid "" "LSldapObject : Configuration data are missing to validate the attribute " "%{attr} of the object %{obj}." msgstr "" +#: includes/class/class.LSldapObject.php:3075 msgid "" "LSldapObject : The function %{func} to be executed on the object event " "%{event} doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3078 msgid "" "LSldapObject : The %{func} execution on the object event %{event} failed." msgstr "" +#: includes/class/class.LSldapObject.php:3082 msgid "" "LSldapObject : Class %{class}, which method %{meth} to be executed on the " "object event %{event}, doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3085 msgid "" "LSldapObject : Method %{meth} within %{class} class to be executed on object " "event %{event}, doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3088 msgid "" "LSldapObject : Error during execute %{meth} method within %{class} class, to " "be executed on object event %{event}." msgstr "" +#: includes/class/class.LSldapObject.php:3092 msgid "" "LSldapObject : Some configuration data of the object type %{obj} are missing " "to generate the DN of the new object." msgstr "" +#: includes/class/class.LSldapObject.php:3095 msgid "" "LSldapObject : The attibute %{attr} of the object is not yet defined. Can't " "generate DN." msgstr "" +#: includes/class/class.LSldapObject.php:3098 msgid "LSldapObject : Without DN, the object could not be changed." msgstr "" +#: includes/class/class.LSldapObject.php:3101 msgid "" "LSldapObject : The attribute %{attr_depend} depending on the attribute " "%{attr} doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3104 msgid "LSldapObject : Error during deleting the object %{objectname}." msgstr "" +#: includes/class/class.LSldapObject.php:3108 msgid "" "LSldapObject : Error during actions to be executed before renaming the objet." msgstr "" +#: includes/class/class.LSldapObject.php:3111 msgid "" "LSldapObject : Error during actions to be executed after renaming the objet." msgstr "" +#: includes/class/class.LSldapObject.php:3115 msgid "" "LSldapObject : Error during actions to be executed before deleting the objet." msgstr "" +#: includes/class/class.LSldapObject.php:3118 msgid "" "LSldapObject : Error during actions to be executed after deleting the objet." msgstr "" +#: includes/class/class.LSldapObject.php:3122 msgid "" "LSldapObject : Error during the actions to be executed before creating the " "object." msgstr "" +#: includes/class/class.LSldapObject.php:3125 msgid "" "LSldapObject : Error during the actions to be executed after creating the " "object. It was created anyway." msgstr "" +#: includes/class/class.LSldapObject.php:3129 msgid "" "LSldapObject : The function %{func} to be executed before creating the " "object doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3132 msgid "" "LSldapObject : Error executing the function %{func} to be execute after " "deleting the object." msgstr "" +#: includes/class/class.LSldapObject.php:3135 msgid "" "LSldapObject : The function %{func} to be executed after deleting the object " "doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3138 msgid "" "LSldapObject : Error executing the function %{func} to be execute after " "creating the object." msgstr "" +#: includes/class/class.LSldapObject.php:3142 msgid "" "LSldapObject : %{func} function, to be executed on object event %{event}, " "doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3145 msgid "" "LSldapObject : Error during the execution of %{func} function on object " "event %{event}." msgstr "" +#: includes/class/class.LSldapObject.php:3149 msgid "" "LSldapObject : %{meth} method, to be executed on object event %{event}, " "doesn't exist." msgstr "" +#: includes/class/class.LSldapObject.php:3152 msgid "" "LSldapObject : Error during execution of %{meth} method on object event " "%{event}." msgstr "" +#: includes/class/class.LSldapObject.php:3155 msgid "LSldapObject : Error during generate LDAP filter for %{LSobject}." msgstr "" +#: includes/class/class.LSldapObject.php:3159 msgid "" "LSldapObject : Error during execution of the custom action %{customAction} " "on %{objectname}." msgstr "" +#: includes/class/class.LSldapObject.php:3163 msgid "LSldapObject : Fail to retrieve container DN." msgstr "" +#: includes/class/class.LSldapObject.php:3166 msgid "" "LSldapObject : The function %{func} to generate container DN is not callable." msgstr "" +#: includes/class/class.LSldapObject.php:3169 msgid "LSldapObject : Error during generating container DN : %{error}" msgstr "" +#: includes/class/class.LSldapObject.php:3172 msgid "" "LSldapObject : An LDAP object with the same DN as generated for this new one " "already exists. Please verify your configuration." msgstr "" +#: includes/class/class.LSldapObject.php:3177 msgid "" "LSrelation : Some parameters are missing in the call of methods to handle " "standard relations (Method : %{meth})." msgstr "" +#: includes/class/class.LSformRule_password.php:60 +msgid "Password is too long (maximum: %{maxLength})." +msgstr "" + +#: includes/class/class.LSformRule_password.php:65 +msgid "Password is too short (minimum: %{minLength})." +msgstr "" + +#: includes/class/class.LSformRule_password.php:90 msgid "" -"Invalid parameter \"%{parameter}\".\n" -"Note: Command's parameter/argument must be place after the command." +"Password match with only %{valid} rule(s) (at least %{minValidRegex} are " +"required)." msgstr "" -msgid "LScli : The CLI command '%{command}' already exists." +#: includes/class/class.LSformRule_password.php:101 +msgid "This password is prohibited." msgstr "" -msgid "LScli : The CLI command '%{command}' handler is not callable." +#: includes/class/class.LSformRule_password.php:116 +msgid "" +"LSformRule_password : Invalid regex configured : %{regex}. You must use PCRE " +"(begining by '/' caracter)." msgstr "" -msgid "Reset the choice." +#: includes/class/class.LSldap.php:675 +msgid "The password expired" msgstr "" -msgid "The security of this password is too weak." +#: includes/class/class.LSldap.php:676 +msgid "The account is locked" msgstr "" +#: includes/class/class.LSldap.php:677 +msgid "The password was reset and must be changed" +msgstr "" + +#: includes/class/class.LSldap.php:678 +msgid "It is not possible to modify the password" +msgstr "" + +#: includes/class/class.LSldap.php:679 +msgid "The old password must be supplied" +msgstr "" + +#: includes/class/class.LSldap.php:680 +msgid "The password does not meet the quality requirements" +msgstr "" + +#: includes/class/class.LSldap.php:681 +msgid "The password is too short" +msgstr "" + +#: includes/class/class.LSldap.php:682 +msgid "It is too soon to change the password" +msgstr "" + +#: includes/class/class.LSldap.php:683 +msgid "This password was recently used and cannot be used again" +msgstr "" + +#: includes/class/class.LSldap.php:726 +msgid "LSldap: Error during the LDAP server connection (%{msg})." +msgstr "" + +#: includes/class/class.LSldap.php:729 +msgid "LSldap: Error during the LDAP search (%{msg})." +msgstr "" + +#: includes/class/class.LSldap.php:732 +msgid "LSldap: Object type unknown." +msgstr "" + +#: includes/class/class.LSldap.php:735 +msgid "LSldap: Error while fetching the LDAP entry." +msgstr "" + +#: includes/class/class.LSldap.php:738 +msgid "LSldap: Error while changing the LDAP entry (DN : %{dn})." +msgstr "" + +#: includes/class/class.LSldap.php:741 +msgid "LSldap: Error while deleting empty attributes." +msgstr "" + +#: includes/class/class.LSldap.php:744 +msgid "LSldap: Error while changing the DN of the object." +msgstr "" + +#: includes/class/class.LSldap.php:747 +msgid "LSldap: LDAP server base DN not configured." +msgstr "" + +#: includes/class/class.LSldap.php:750 +msgid "LSldap: Fail to set authz proxy option on LDAP server connection." +msgstr "" + +#: includes/class/class.LSldap.php:753 +msgid "LSldap: Error while changing the user password: %{msg}." +msgstr "" + +#: includes/class/class.LSldap.php:756 +msgid "LSldap: Unknown LDAP error while updating user password" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:59 +msgid "Invalid LDAP server URI (%{uri})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:75 +msgid "Invalid LDAP host (%{host})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:79 +msgid "Invalid LDAP port (%{port})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:83 +msgid "A LDAP URI could not contain port without host (%{host}:%{port})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:88 +msgid "LDAP host not provided but required" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:94 +msgid "Invalid base DN (%{basedn})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:100 +msgid "Search base DN not provided but required" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:112 +msgid "Invalid searched attributes count (%{attrCount} > %{maxAttrsCount})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:118 +msgid "Invalid attribute name (%{attr})" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:128 +msgid "Attribute name not provided but required" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:138 +msgid "" +"Invalid search scope (%{scope}). Must be one of the following value : base, " +"one or sub." +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:147 +msgid "Search scope not provided but required" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:165 +msgid "Invalid LDAP filter (\"%{filter}\")" +msgstr "" + +#: includes/class/class.LSformRule_ldapSearchURI.php:172 +msgid "Search filter not provided but required" +msgstr "" + +#: includes/class/class.LSrelation.php:331 +msgid "listing related objects" +msgstr "" + +#: includes/class/class.LSrelation.php:397 +msgid "getting key value" +msgstr "" + +#: includes/class/class.LSrelation.php:449 +#: includes/class/class.LSrelation.php:551 +msgid "checking right on relation with specific object" +msgstr "" + +#: includes/class/class.LSrelation.php:498 +msgid "removing relation with specific object" +msgstr "" + +#: includes/class/class.LSrelation.php:623 +msgid "updating relations" +msgstr "" + +#: includes/class/class.LSrelation.php:642 +msgid "Do you really want to delete" +msgstr "" + +#: includes/class/class.LSrelation.php:643 +msgid "Warning" +msgstr "" + +#: includes/class/class.LSrelation.php:644 includes/class/class.LSform.php:249 +#: includes/class/class.LSformElement_select_object.php:69 +#: includes/class/class.LSformElement_select_object.php:85 +#: includes/class/class.LSsearchEntry.php:193 includes/routes.php:1062 +#: includes/routes.php:1206 +msgid "Delete" +msgstr "" + +#: includes/class/class.LSrelation.php:682 +#: includes/class/class.LSrelation.php:932 +msgid "No object." +msgstr "" + +#: includes/class/class.LSrelation.php:712 includes/routes.php:450 +#: includes/routes.php:991 +msgid "New" +msgstr "" + +#: includes/class/class.LSrelation.php:1001 +msgid "" +"LSrelation : Invalid parameter '%{parameter}' of the relation %{relation}: " +"objects %{LSobject} have no function '%{function}'." +msgstr "" + +#: includes/class/class.LSrelation.php:1004 +msgid "LSrelation : Relation %{relation} of object type %{LSobject} unknown." +msgstr "" + +#: includes/class/class.LSrelation.php:1007 +msgid "LSrelation : Error during relation update of the relation %{relation}." +msgstr "" + +#: includes/class/class.LSrelation.php:1010 +msgid "LSrelation : Object type %{LSobject} unknown (Relation : %{relation})." +msgstr "" + +#: includes/class/class.LSrelation.php:1013 +msgid "" +"LSrelation : Incomplete configuration for LSrelation %{relation} of object " +"type %{LSobject} for action : %{action}." +msgstr "" + +#: includes/class/class.LSrelation.php:1016 +msgid "" +"LSrelation : Invalid editable attribute for LSrelation %{relation} with " +"LSobject %{LSobject}." +msgstr "" + +#: includes/class/class.LSrelation.php:1019 +msgid "" +"LSrelation : The configuration parameter '%{parameter}' of the relation " +"%{relation} of %{LSobject} is missing." +msgstr "" + +#: includes/class/class.LSrelation.php:1022 +msgid "" +"LSrelation : The configuration parameter '%{parameter}' of the relation " +"%{relation} of %{LSobject} is invalid." +msgstr "" + +#: includes/class/class.LSformElement_password.php:93 msgid "%{label}: passwords entered did not match." msgstr "" +#: includes/class/class.LSformElement_password.php:143 msgid "%{label}: invalid email address provided to send new password." msgstr "" +#: includes/class/class.LSformElement_password.php:184 msgid "Generate a password." msgstr "" +#: includes/class/class.LSformElement_password.php:185 msgid "Compare with stored password." msgstr "" +#: includes/class/class.LSformElement_password.php:186 msgid "Display password." msgstr "" +#: includes/class/class.LSformElement_password.php:187 msgid "Display hashed password." msgstr "" +#: includes/class/class.LSformElement_password.php:188 msgid "Hide password." msgstr "" +#: includes/class/class.LSformElement_password.php:189 msgid "" "The password will be sent by mail if changed. Click to disable automatic " "notification." msgstr "" +#: includes/class/class.LSformElement_password.php:190 msgid "" "The password will not be sent if changed. Click to enable automatic " "notification." msgstr "" +#: includes/class/class.LSformElement_password.php:191 msgid "Modify the mail sent to notice the user" msgstr "" +#: includes/class/class.LSformElement_password.php:219 msgid "%{label}: Do you confirm the password change?" msgstr "" +#: includes/class/class.LSformElement_password.php:227 msgid "Passwords entered did not match." msgstr "" +#: includes/class/class.LSformElement_password.php:359 msgid "Notice mail sent." msgstr "" +#: includes/class/class.LSformElement_password.php:469 msgid "" "LSformElement_password : No valid contact mail address available : Can't " "send new password." msgstr "" +#: includes/class/class.LSformElement_password.php:472 msgid "LSformElement_password : Fail to send new password by email to %{mail}." msgstr "" +#: includes/class/class.LSformElement_password.php:475 msgid "" "LSformElement_password : Fail to exec pwgen. Check it's correctly installed." msgstr "" +#: includes/class/class.LSformElement_password.php:478 msgid "" "LSformElement_password : Fail to determine witch e-mail attribute to use to " "send new password : get_mail_attr_function parameter not refer to a valid " "function." msgstr "" +#: includes/class/class.LSformElement_password.php:481 msgid "" "LSformElement_password : Fail to determine witch e-mail attribute to use to " "send new password : get_mail_attr_function throwed an exception : %{msg}" msgstr "" +#: includes/class/class.LSformElement_url.php:51 +msgid "Display this website." +msgstr "" + +#: includes/class/class.LSformElement_url.php:52 +msgid "Add this website to my bookmarks." +msgstr "" + +#: includes/class/class.LSformElement_text.php:62 +msgid "Generate the value" +msgstr "" + +#: includes/class/class.LSformRule_filesize.php:55 +msgid "File is too big." +msgstr "" + +#: includes/class/class.LSformRule_filesize.php:59 +msgid "File is too light." +msgstr "" + +#: includes/class/class.LSauthMethod_CAS.php:140 +msgid "LSauthMethod_CAS : Failed to load phpCAS." +msgstr "" + +#: includes/class/class.LSauthMethod_CAS.php:143 +msgid "" +"LSauthMethod_CAS : Please check your configuration : you must configure CAS " +"server SSL certificate validation using one of the following constant : " +"LSAUTH_CAS_SERVER_SSL_CACERT or LSAUTH_CAS_SERVER_NO_SSL_VALIDATION" +msgstr "" + +#: includes/class/class.LSformRule_numberOfValues.php:52 msgid "max (or min)" msgstr "" +#: includes/class/class.LSformRule_numberOfValues.php:65 msgid "At least one value is required." msgid_plural "At least %{min} values are required." msgstr[0] "" msgstr[1] "" +#: includes/class/class.LSformRule_numberOfValues.php:77 msgid "Maximum one value is allowed." msgid_plural "Maximum %{max} values are allowed." msgstr[0] "" msgstr[1] "" +#: includes/class/class.LSformRule_numberOfValues.php:93 msgid "" "LSformRule_numberOfValues: Parameter max could not be lower than parameter " "min." msgstr "" -msgid "Fail to determine the requested URL." +#: includes/class/class.LSform.php:126 +msgid "Add a field to add another values." msgstr "" -msgid "No URL patterns configured !" -msgstr "" - -msgid "Fail to determine the requested URL (loop detected)." -msgstr "" - -msgid "The requested page was not found." -msgstr "" - -msgid "This request could not be handled." -msgstr "" - -msgid "This request could not be processed correctly." -msgstr "" - -msgid "Value is too short (minimum: %{limit})." -msgstr "" - -msgid "Value is too long (maximum: %{limit})." -msgstr "" - -msgid "listing related objects" -msgstr "" - -msgid "getting key value" -msgstr "" - -msgid "checking right on relation with specific object" -msgstr "" - -msgid "removing relation with specific object" -msgstr "" - -msgid "updating relations" -msgstr "" - -msgid "Do you really want to delete" -msgstr "" - -msgid "Warning" -msgstr "" - -msgid "No object." +#: includes/class/class.LSform.php:127 +msgid "Delete this field." msgstr "" +#: includes/class/class.LSform.php:200 msgid "" -"LSrelation : Invalid parameter '%{parameter}' of the relation %{relation}: " -"objects %{LSobject} have no function '%{function}'." +"Unexpected error occurred submiting this form. Please retry again or contact " +"support." msgstr "" -msgid "LSrelation : Relation %{relation} of object type %{LSobject} unknown." -msgstr "" - -msgid "LSrelation : Error during relation update of the relation %{relation}." -msgstr "" - -msgid "LSrelation : Object type %{LSobject} unknown (Relation : %{relation})." +#: includes/class/class.LSform.php:230 includes/routes.php:628 +msgid "Do you really want to execute custom action %{title} on this search ?" msgstr "" +#: includes/class/class.LSform.php:236 includes/routes.php:1426 msgid "" -"LSrelation : Incomplete configuration for LSrelation %{relation} of object " -"type %{LSobject} for action : %{action}." +"Do you really want to execute custom action %{customAction} on " +"%{objectname} ?" msgstr "" +#: includes/class/class.LSform.php:247 +msgid "Do you really want to delete \"%{name}\"?" +msgstr "" + +#: includes/class/class.LSform.php:248 +msgid "Caution" +msgstr "" + +#: includes/class/class.LSform.php:302 +msgid "%{label} attribute data is not valid." +msgstr "" + +#: includes/class/class.LSform.php:385 +msgid "Mandatory field" +msgstr "" + +#: includes/class/class.LSform.php:874 +msgid "LSform : Error during the recovery of the values of the form." +msgstr "" + +#: includes/class/class.LSform.php:877 msgid "" -"LSrelation : Invalid editable attribute for LSrelation %{relation} with " -"LSobject %{LSobject}." +"LSform : Error durring the recovery of the value of the field '%{element}'." msgstr "" +#: includes/class/class.LSform.php:884 +msgid "LSform : The field %{element} doesn't exist." +msgstr "" + +#: includes/class/class.LSform.php:887 +msgid "LSfom : Field type unknow (%{type})." +msgstr "" + +#: includes/class/class.LSform.php:890 +msgid "LSform : Error during the creation of the element '%{element}'." +msgstr "" + +#: includes/class/class.LSform.php:893 +msgid "LSform : The data entry form %{name} doesn't exist." +msgstr "" + +#: includes/class/class.LSform.php:896 +msgid "LSform : The data entry form %{name} is not correctly configured." +msgstr "" + +#: includes/class/class.LSform.php:899 msgid "" -"LSrelation : The configuration parameter '%{parameter}' of the relation " -"%{relation} of %{LSobject} is missing." +"LSform : The element %{name}, listed as displayed in data entry form " +"configuration, doesn't exist." msgstr "" +#: includes/class/class.LSformElement_maildir.php:70 msgid "" -"LSrelation : The configuration parameter '%{parameter}' of the relation " -"%{relation} of %{LSobject} is invalid." -msgstr "" - -msgid "Now." -msgstr "" - -msgid "Today." -msgstr "" - -msgid "Clear selected date." -msgstr "" - -msgid "Role" -msgstr "" - -msgid "Entity" -msgstr "" - -msgid "Failed to set post data on creation form." -msgstr "" - -msgid "Error validating creation form." -msgstr "" - -msgid "Failed to validate object data." -msgstr "" - -msgid "Failed to generate DN for this object." -msgstr "" - -msgid "Error creating object on LDAP server." -msgstr "" - -msgid "An object already exist on LDAP server with DN %{dn}." +"Maildir creation/modification on user creation/modification is enabled. " +"Click to disable." msgstr "" +#: includes/class/class.LSformElement_maildir.php:71 msgid "" -"Failed to load existing object %{dn} from LDAP server. Can't update object." -msgstr "" - -msgid "Failed to set post data on update form." -msgstr "" - -msgid "Error validating update form." -msgstr "" - -msgid "Error updating object on LDAP server." -msgstr "" - -msgid "LSio: Post data not found or not completed." -msgstr "" - -msgid "LSio: object type invalid." -msgstr "" - -msgid "LSio: input/output format %{format} invalid." -msgstr "" - -msgid "LSio: Fail to initialize input/output driver." -msgstr "" - -msgid "LSio: Fail to load objects's data from input file." -msgstr "" - -msgid "LSio: Fail to load objects's data to export from LDAP directory." -msgstr "" - -msgid "LSio: Fail to export objects's data." -msgstr "" - -msgid "Clear" -msgstr "" - -msgid "The password expired" -msgstr "" - -msgid "The account is locked" -msgstr "" - -msgid "The password was reset and must be changed" -msgstr "" - -msgid "It is not possible to modify the password" -msgstr "" - -msgid "The old password must be supplied" -msgstr "" - -msgid "The password does not meet the quality requirements" -msgstr "" - -msgid "The password is too short" -msgstr "" - -msgid "It is too soon to change the password" -msgstr "" - -msgid "This password was recently used and cannot be used again" -msgstr "" - -msgid "LSldap: Error during the LDAP server connection (%{msg})." -msgstr "" - -msgid "LSldap: Error during the LDAP search (%{msg})." -msgstr "" - -msgid "LSldap: Object type unknown." -msgstr "" - -msgid "LSldap: Error while fetching the LDAP entry." -msgstr "" - -msgid "LSldap: Error while changing the LDAP entry (DN : %{dn})." -msgstr "" - -msgid "LSldap: Error while deleting empty attributes." -msgstr "" - -msgid "LSldap: Error while changing the DN of the object." -msgstr "" - -msgid "LSldap: LDAP server base DN not configured." -msgstr "" - -msgid "LSldap: Fail to set authz proxy option on LDAP server connection." -msgstr "" - -msgid "LSldap: Error while changing the user password: %{msg}." -msgstr "" - -msgid "LSldap: Unknown LDAP error while updating user password" -msgstr "" - -msgid "" -"LSattribute : Attribute %{attr} : LDAP or HTML types unknow (LDAP = %{ldap} " -"& HTML = %{html})." -msgstr "" - -msgid "" -"LSattribute : The function %{func} to display the attribute %{attr} is " -"unknow." -msgstr "" - -msgid "" -"LSattribute : The rule %{rule} to validate the attribute %{attr} is unknow." -msgstr "" - -msgid "" -"LSattribute : Configuration data to verify the attribute %{attr} are " -"incorrect." -msgstr "" - -msgid "" -"LSattribute : The function %{func} to save the attribute %{attr} is unknow." -msgstr "" - -msgid "LSattribute : The value of the attribute %{attr} can't be generated." -msgstr "" - -msgid "LSattribute : Generation of the attribute %{attr} failed." -msgstr "" - -msgid "" -"LSattribute : Generation of the attribute %{attr} did not return a correct " -"value." -msgstr "" - -msgid "" -"LSattribute : The attr_%{type} of the attribute %{name} is not yet defined." -msgstr "" - -msgid "File is too big." -msgstr "" - -msgid "File is too light." -msgstr "" - -msgid "" -"LSauthMethod_anonymous : You must define the LSAUTHMETHOD_ANONYMOUS_USER " -"contant in the configuration file." -msgstr "" - -msgid "The mailbox has been moved." -msgstr "" - -msgid "The mailbox has been created." -msgstr "" - -msgid "The mailbox has been archived successfully." -msgstr "" - -msgid "The mailbox has been deleted." -msgstr "" - -msgid "Are you sure to want to close this window and lose all changes ?" -msgstr "" - -msgid "Unknown property !" -msgstr "" - -msgid "" -"LSsearchEntry : Invalid formaterFunction %{func} for extraDisplayedColumns " -"%{column}." -msgstr "" - -msgid "LStemplate : compile directory is not writable (dir : %{dir})" -msgstr "" - -msgid "LStemplate : Can't load Smarty 2 support file" -msgstr "" - -msgid "LStemplate : Can't load Smarty 3 support file" -msgstr "" - -msgid "LStemplate : Smarty version not recognized." -msgstr "" - -msgid "LStemplate : Can't load Smarty." -msgstr "" - -msgid "" -"LStemplate : Request template '%{tpl}' is now deprecated. Please refer to " -"upgrade documentation to adapt your templates." -msgstr "" - -msgid "Smarty - An exception occured displaying template '%{template}'" -msgstr "" - -msgid "Smarty - An exception occured fetching template '%{template}'" -msgstr "" - -msgid "A fatal error occured. If problem persist, please contact support." -msgstr "" - -msgid "

Loop detected displaying this error:

%{error}
" -msgstr "" - -msgid "A fatal error occured." -msgstr "" - -msgid "LStemplate : Template %{file} not found." -msgstr "" - -msgid "" -"LStemplate : Fail to execute trigger %{callable} on event %{event} : is not " -"callable." -msgstr "" - -msgid "" -"LStemplate : Error during the execution of the trigger %{callable} on event " -"%{event}." -msgstr "" - -#: templates/default/import.tpl:43 -msgid "Errors" -msgstr "" - -msgid "Stop" -msgstr "" - -msgid "Unknown error" -msgstr "" - -msgid "Unknown error : %{error}" +"Click to enable maildir creation/modification on user creation/modification." msgstr "" +#: includes/class/class.LSformRule_regex.php:67 msgid "LSformRule_regex : Regex has not been configured to validate data." msgstr "" -msgid "%{val} (unrecognized)" +#: includes/class/class.LSformElement_supannEmpProfil.php:40 +#: includes/class/class.LSformElement_supannExtProfil.php:40 +msgid "Establishment" msgstr "" -msgid "Fail to decode composite value #%{idx}." +#: includes/class/class.LSformElement_supannEmpProfil.php:46 +#: includes/class/class.LSformElement_supannExtProfil.php:46 +msgid "EduPerson profil" msgstr "" -msgid "Invalid value for component %{c}." +#: includes/class/class.LSformElement_supannEmpProfil.php:53 +msgid "Body of membership" msgstr "" -msgid "Unparsable value for component %{c}." +#: includes/class/class.LSformElement_supannEmpProfil.php:59 +#: includes/class/class.LSformElement_supannExtProfil.php:53 +#: includes/class/class.LSformElement_supannRoleEntite.php:46 +msgid "Entity type" msgstr "" -msgid "LSlog : Fail to load logging handler %{handler}." +#: includes/class/class.LSformElement_supannEmpProfil.php:65 +#: includes/class/class.LSformElement_supannExtProfil.php:59 +msgid "Assignment entity" msgstr "" -msgid "Invalid LDAP server URI (%{uri})" +#: includes/class/class.LSformElement_supannEmpProfil.php:70 +#: includes/class/class.LSformElement_supannExtProfil.php:69 +msgid "Activity" msgstr "" -msgid "Invalid LDAP host (%{host})" -msgstr "" - -msgid "Invalid LDAP port (%{port})" -msgstr "" - -msgid "A LDAP URI could not contain port without host (%{host}:%{port})" -msgstr "" - -msgid "LDAP host not provided but required" -msgstr "" - -msgid "Invalid base DN (%{basedn})" -msgstr "" - -msgid "Search base DN not provided but required" -msgstr "" - -msgid "Invalid searched attributes count (%{attrCount} > %{maxAttrsCount})" -msgstr "" - -msgid "Invalid attribute name (%{attr})" -msgstr "" - -msgid "Attribute name not provided but required" -msgstr "" - -msgid "" -"Invalid search scope (%{scope}). Must be one of the following value : base, " -"one or sub." -msgstr "" - -msgid "Search scope not provided but required" -msgstr "" - -msgid "Invalid LDAP filter (\"%{filter}\")" -msgstr "" - -msgid "Search filter not provided but required" +#: includes/class/class.LSformElement_supannEmpProfil.php:76 +#: includes/class/class.LSformElement_supannEtuInscription.php:114 +#: includes/class/class.LSformElement_supannExtProfil.php:75 +msgid "Population" msgstr "" +#: includes/class/class.LSformElement_select_object.php:70 msgid "Move up" msgstr "" +#: includes/class/class.LSformElement_select_object.php:71 msgid "Move down" msgstr "" +#: includes/class/class.LSformElement_select_object.php:83 msgid "Fast Add" msgstr "" +#: includes/class/class.LSformElement_select_object.php:84 msgid "Display advanced search and selection panel." msgstr "" -msgid "" -"LSformElement_valueWithUnit : Units configuration data are missing for the " -"attribute %{attr}." +#: includes/class/class.LSurl.php:117 +msgid "Fail to determine the requested URL." msgstr "" +#: includes/class/class.LSurl.php:121 +msgid "No URL patterns configured !" +msgstr "" + +#: includes/class/class.LSurl.php:228 +msgid "Fail to determine the requested URL (loop detected)." +msgstr "" + +#: includes/class/class.LSurl.php:250 +msgid "The requested page was not found." +msgstr "" + +#: includes/class/class.LSurl.php:277 +msgid "This request could not be handled." +msgstr "" + +#: includes/class/class.LSurl.php:304 +msgid "This request could not be processed correctly." +msgstr "" + +#: includes/class/class.LSformRule_rangelength.php:55 +msgid "Value is too short (minimum: %{limit})." +msgstr "" + +#: includes/class/class.LSformRule_rangelength.php:59 +msgid "Value is too long (maximum: %{limit})." +msgstr "" + +#: includes/class/class.LSauthMethod_HTTP.php:103 +msgid "LdapSaisie - Authentication required" +msgstr "" + +#: includes/class/class.LSauthMethod_HTTP.php:150 +msgid "LSauthMethod_HTTP : the %{var} environnement variable is missing." +msgstr "" + +#: includes/class/class.LSformElement_mail.php:87 +msgid "Send a mail from here." +msgstr "" + +#: includes/class/class.LSformElement_mail.php:119 +msgid "" +"LSformElement_mail: the autocomplete feature was moved to parent " +"LSformElement_text class and you still use old configuration style with " +"parameter mail_attributes (and its default value). Please upgrade your " +"configuration by renaming (or setting) this parameter to value_attributes." +msgstr "" + +#: includes/class/class.LSformElement_boolean.php:52 +msgid "Reset the choice." +msgstr "" + +#: includes/class/class.LSformElement_rss.php:50 +msgid "Display RSS stack." +msgstr "" + +#: includes/class/class.LSattr_ldap_password.php:100 includes/routes.php:581 +#: includes/routes.php:1373 +msgid "undefined" +msgstr "" + +#: includes/class/class.LSattr_ldap_password.php:375 +msgid "" +"LSattr_ldap_password : Encoding type %{type} is not supported. This password " +"will be stored in clear text." +msgstr "" + +#: includes/class/class.LSattr_ldap_password.php:378 +msgid "" +"LSattr_ldap_password : Encoding function %{function} is not callable. This " +"password will be stored in clear text." +msgstr "" + +#: includes/class/class.LSauth.php:308 +msgid "LSauth : Login or password incorrect." +msgstr "" + +#: includes/class/class.LSauth.php:311 +msgid "LSauth : Impossible to identify you : Duplication of identities." +msgstr "" + +#: includes/class/class.LSauth.php:314 +msgid "LSauth : Could not load type of identifiable objects %{type}." +msgstr "" + +#: includes/class/class.LSauth.php:317 +msgid "LSauth : Can't load authentication method %{method}." +msgstr "" + +#: includes/class/class.LSauth.php:320 +msgid "LSauth : Failed to build the authentication provider %{method}." +msgstr "" + +#: includes/class/class.LSauth.php:323 +msgid "LSauth : Not correctly initialized." +msgstr "" + +#: includes/class/class.LSauth.php:326 +msgid "LSauth : Failed to get authentication informations from provider." +msgstr "" + +#: includes/class/class.LSauth.php:329 +msgid "LSauth : Method %{method} configured doesn't support API mode." +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:41 +msgid "Organism" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:47 +msgid "Registration year" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:52 +msgid "Registration year must be an integer" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:61 +msgid "Registration regime" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:67 +msgid "Discipline sector" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:73 +msgid "Diploma type" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:79 +msgid "Cursus & Year" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:91 +#: includes/class/class.LSformElement_supannRoleEntite.php:52 +msgid "Entity" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:96 +msgid "Diploma" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:102 +msgid "Step" +msgstr "" + +#: includes/class/class.LSformElement_supannEtuInscription.php:108 +msgid "Pedagogical element" +msgstr "" + +#: includes/class/class.LSsearch.php:1201 +msgid "Actions" +msgstr "" + +#: includes/class/class.LSsearch.php:1204 +#: templates/default/global_search.tpl:16 +msgid "This search didn't get any result." +msgstr "" + +#: includes/class/class.LSsearch.php:1843 +msgid "LSsearch : Invalid filter : %{filter}." +msgstr "" + +#: includes/class/class.LSsearch.php:1846 +msgid "LSsearch : Invalid basedn : %{basedn}." +msgstr "" + +#: includes/class/class.LSsearch.php:1849 +msgid "LSsearch : Invalid value for %{param} parameter." +msgstr "" + +#: includes/class/class.LSsearch.php:1852 +msgid "" +"LSsearch : Invalid size limit. Must be an integer greater or equal to 0." +msgstr "" + +#: includes/class/class.LSsearch.php:1855 +msgid "LSsearch : Invalid parameter %{attr}. Must be an boolean." +msgstr "" + +#: includes/class/class.LSsearch.php:1858 +msgid "" +"LSsearch : Invalid parameter attributes. Must be an string or an array of " +"strings." +msgstr "" + +#: includes/class/class.LSsearch.php:1861 +msgid "LSsearch : Can't build attributes list for make filter." +msgstr "" + +#: includes/class/class.LSsearch.php:1864 +msgid "" +"LSsearch : Error building filter with attribute '%{attr}' and pattern " +"'%{pattern}'" +msgstr "" + +#: includes/class/class.LSsearch.php:1867 +msgid "LSsearch : Error combining filters." +msgstr "" + +#: includes/class/class.LSsearch.php:1870 +msgid "LSsearch : Invalid pattern." +msgstr "" + +#: includes/class/class.LSsearch.php:1873 +msgid "LSsearch : Invalid attribute %{attr} in parameters." +msgstr "" + +#: includes/class/class.LSsearch.php:1876 +msgid "LSsearch : Error during the search." +msgstr "" + +#: includes/class/class.LSsearch.php:1879 +msgid "LSsearch : Error sorting the search." +msgstr "" + +#: includes/class/class.LSsearch.php:1882 +msgid "" +"LSsearch : The function of the custum information %{name} is not callable." +msgstr "" + +#: includes/class/class.LSsearch.php:1885 +msgid "" +"LSsearch : Invalid predefinedFilter for LSobject type %{type} : %{label} " +"(filter : %{filter})." +msgstr "" + +#: includes/class/class.LSsearch.php:1888 +msgid "LSsearch : Error during execution of the custom action %{customAction}." +msgstr "" + +#: includes/class/class.LSsearch.php:1891 +msgid "LSsearch : Invalid search pattern." +msgstr "" + +#: includes/class/class.LSformElement_image.php:53 +msgid "Click to enlarge." +msgstr "" + +#: includes/class/class.LSformElement_image.php:54 +msgid "Click to delete the picture." +msgstr "" + +#: includes/class/class.LSformElement_image.php:149 +msgid "The uploaded file size exceeds the limit accepted by the server." +msgstr "" + +#: includes/class/class.LSformElement_image.php:151 +msgid "The uploaded file size exceeds the limit accepted by the HTML form." +msgstr "" + +#: includes/class/class.LSformElement_image.php:153 +msgid "The file was only partially uploaded." +msgstr "" + +#: includes/class/class.LSformElement_image.php:155 +msgid "No file was uploaded." +msgstr "" + +#: includes/class/class.LSformElement_image.php:157 +msgid "No temporary folder found to store this uploaded file." +msgstr "" + +#: includes/class/class.LSformElement_image.php:159 +msgid "Failed to write file on server disk." +msgstr "" + +#: includes/class/class.LSformElement_image.php:161 +msgid "A PHP extension stopped the file upload." +msgstr "" + +#: includes/class/class.LSformElement_image.php:164 +msgid "An unknown error occured sending this file." +msgstr "" + +#: includes/class/class.LSformElement_xmpp.php:50 +msgid "Chat with this person." +msgstr "" + +#: includes/class/class.LSformElement_supannLabeledValue.php:114 +msgid "%{value} (Unparsable value)" +msgstr "" + +#: includes/class/class.LSformElement_supannLabeledValue.php:143 +msgid "Invalid label: \"%{label}\"" +msgstr "" + +#: includes/class/class.LSformElement_supannLabeledValue.php:157 +msgid "Unparsable value" +msgstr "" + +#: includes/class/class.LSattr_html_select_list.php:436 msgid "" "LSattr_html_select_list: Configuration data are missing to generate the " "select list of the attribute %{attr}." msgstr "" +#: includes/class/class.LSattr_html_select_list.php:439 msgid "" "LSattr_html_select_list: Invalid attribute %{attr} reference as " "OTHER_ATTRIBUTE possible values." msgstr "" +#: includes/class/class.LSattr_html_select_list.php:442 msgid "" "LSattr_html_select_list: Attribute %{attr} referenced as OTHER_ATTRIBUTE " "possible values is not a jsonCompositeAttribute." msgstr "" +#: includes/class/class.LSattr_html_select_list.php:445 msgid "" "LSattr_html_select_list: Fail to decode the following attribute %{attr} " "value as JSON : %{value}" msgstr "" +#: includes/class/class.LSattr_html_select_list.php:448 msgid "" "LSattr_html_select_list: No component %{component} found in the following " "attribute %{attr} JSON value : %{value}" msgstr "" +#: includes/class/class.LSattr_html_select_list.php:451 msgid "" "LSattr_html_select_list: Invalid get_possible_values parameter found in " "configuration of attribute %{attr}: must be a callable." msgstr "" +#: includes/class/class.LSattr_html_select_list.php:454 msgid "" "LSattr_html_select_list: fail to retrieve possible values of attribute " "%{attr} using configured function %{callable}." msgstr "" +#: includes/class/class.LSformRule_inarray.php:66 msgid "" -"LSattr_html_select_object : parameter '%{parameter}' is missing (attribute : " -"%{attr})." +"LSformRule_inarray : Possible values has not been configured to validate " +"data." msgstr "" +#: includes/class/class.LSformElement_jsonCompositeAttribute.php:260 +msgid "Fail to decode JSON value #%{idx}." +msgstr "" + +#: includes/class/class.LSformElement_jsonCompositeAttribute.php:412 +msgid "Invalid value \"%{value}\" for component %{component}." +msgstr "" + +#: includes/class/class.LSformElement_supannExtProfil.php:64 +msgid "Godfather" +msgstr "" + +#: includes/class/class.LSformRule_date.php:72 +msgid "LSformRule_date : No date format specify." +msgstr "" + +#: includes/class/class.LSattr_html_maildir.php:58 +msgid "The mailbox has been moved." +msgstr "" + +#: includes/class/class.LSattr_html_maildir.php:65 +msgid "The mailbox has been created." +msgstr "" + +#: includes/class/class.LSattr_html_maildir.php:85 +msgid "The mailbox has been archived successfully." +msgstr "" + +#: includes/class/class.LSattr_html_maildir.php:96 +msgid "The mailbox has been deleted." +msgstr "" + +#: includes/class/class.LSformElement_supannRoleEntite.php:40 +msgid "Role" +msgstr "" + +#: includes/class/class.LScli.php:210 msgid "" -"LSattr_html_select_object : the value of the parameter value_attribute in " -"the configuration of the attribute %{attr} is incorrect. Object " -"%{object_type} have no attribute %{value_attribute}." +"Invalid parameter \"%{parameter}\".\n" +"Note: Command's parameter/argument must be place after the command." msgstr "" +#: includes/class/class.LScli.php:835 +msgid "LScli : The CLI command '%{command}' already exists." +msgstr "" + +#: includes/class/class.LScli.php:838 +msgid "LScli : The CLI command '%{command}' handler is not callable." +msgstr "" + +#: includes/class/class.LSioFormatCSV.php:246 +msgid "LSioFormatCSV: function fputcsv is not available." +msgstr "" + +#: includes/class/class.LSlog.php:480 +msgid "LSlog : Fail to load logging handler %{handler}." +msgstr "" + +#: includes/class/class.LSerror.php:109 templates/default/import.tpl:43 +msgid "Errors" +msgstr "" + +#: includes/class/class.LSerror.php:112 +msgid "Stop" +msgstr "" + +#: includes/class/class.LSerror.php:150 +msgid "Unknown error" +msgstr "" + +#: includes/class/class.LSerror.php:210 +msgid "Unknown error : %{error}" +msgstr "" + +#: includes/class/class.LSsearchEntry.php:169 includes/routes.php:1198 +#: includes/routes.php:1291 includes/routes.php:1437 +msgid "View" +msgstr "" + +#: includes/class/class.LSsearchEntry.php:185 includes/routes.php:1054 +msgid "Copy" +msgstr "" + +#: includes/class/class.LSsearchEntry.php:261 +msgid "Unknown property !" +msgstr "" + +#: includes/class/class.LSsearchEntry.php:283 msgid "" -"LSattr_html_select_object : more than one object returned corresponding to " -"value %{val} of attribute %{attr}." +"LSsearchEntry : Invalid formaterFunction %{func} for extraDisplayedColumns " +"%{column}." msgstr "" +#: includes/class/class.LSioFormat.php:154 +msgid "LSioFormat : IOformat driver %{driver} invalid or unavailable." +msgstr "" + +#: includes/routes.php:39 +msgid "Home" +msgstr "" + +#: includes/routes.php:151 +msgid "You must provide pattern for global search." +msgstr "" + +#: includes/routes.php:456 includes/routes.php:812 +msgid "Import" +msgstr "" + +#: includes/routes.php:461 includes/routes.php:878 +msgid "Export" +msgstr "" + +#: includes/routes.php:473 +msgid "Reset" +msgstr "" + +#: includes/routes.php:511 templates/default/select.tpl:28 +#: templates/default/global_search.tpl:6 +msgid "Search" +msgstr "" + +#: includes/routes.php:512 templates/default/select.tpl:31 +msgid "Approximative search" +msgstr "" + +#: includes/routes.php:513 templates/default/select.tpl:32 +msgid "Recursive search" +msgstr "" + +#: includes/routes.php:602 msgid "" -"LSattr_html_select_object : selection of object type %{type} is configured " -"multiple time for attribute %{attr}." +"The custom action %{title} have been successfully execute on this search." msgstr "" +#: includes/routes.php:950 +msgid "Data entry form" +msgstr "" + +#: includes/routes.php:956 includes/routes.php:1730 +msgid "Object has been added." +msgstr "" + +#: includes/routes.php:1093 +msgid "My account" +msgstr "" + +#: includes/routes.php:1156 includes/routes.php:1902 +msgid "The object has been partially modified." +msgstr "" + +#: includes/routes.php:1159 includes/routes.php:1905 +msgid "The object has been modified successfully." +msgstr "" + +#: includes/routes.php:1274 includes/routes.php:1945 +msgid "%{objectname} has been successfully deleted." +msgstr "" + +#: includes/routes.php:1283 +msgid "Deleting : %{objectname}" +msgstr "" + +#: includes/routes.php:1284 +msgid "Do you really want to delete %{displayName} ?" +msgstr "" + +#: includes/routes.php:1394 msgid "" -"LSattr_html_select_object : the value '%{value}' seem to be duplicated in " -"values of the attribute %{attr}." +"The custom action %{customAction} have been successfully execute on " +"%{objectname}." msgstr "" +#: includes/functions.php:115 msgid "" -"LSattr_html_select_object : selected object %{name} has no attribute %{attr} " -"value, you can't select it." +"Function 'getFData' : The method %{meth} of the object %{obj} doesn't exist." msgstr "" -msgid "Attribute" +#: includes/functions.php:208 +msgid "[not string value]" msgstr "" -msgid "Organism" +#: includes/functions.php:254 +msgid "Folder not found" msgstr "" -msgid "Registration year" +#: conf/LSaddons/config.LSaddons.supann.php:97 +msgid "Mrs." msgstr "" -msgid "Registration year must be an integer" +#: conf/LSaddons/config.LSaddons.supann.php:98 +msgid "Mr." msgstr "" -msgid "Registration regime" +#: conf/LSaddons/config.LSaddons.supann.php:108 +#: conf/LSaddons/config.LSaddons.supann.php:126 +msgid "Backup" msgstr "" -msgid "Discipline sector" +#: conf/LSaddons/config.LSaddons.supann.php:109 +#: conf/LSaddons/config.LSaddons.supann.php:115 +msgid "Personal" msgstr "" -msgid "Diploma type" +#: conf/LSaddons/config.LSaddons.supann.php:110 +#: conf/LSaddons/config.LSaddons.supann.php:116 +msgid "Parents" msgstr "" -msgid "Cursus & Year" +#: conf/LSaddons/config.LSaddons.supann.php:111 +#: conf/LSaddons/config.LSaddons.supann.php:117 +msgid "Professional" msgstr "" -msgid "Diploma" +#: conf/LSaddons/config.LSaddons.supann.php:114 +msgid "Temporary" msgstr "" -msgid "Step" +#: conf/LSaddons/config.LSaddons.supann.php:120 +msgid "Personal mobile" msgstr "" -msgid "Pedagogical element" +#: conf/LSaddons/config.LSaddons.supann.php:121 +msgid "Personal landline" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:122 +msgid "Parents landline" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:123 +msgid "Parents mobile" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:124 +msgid "Professional mobile" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:125 +msgid "Professional landline" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:129 +msgid "User account" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:130 +msgid "Mailbox" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:133 +msgid "Active" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:134 +msgid "Inactive" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:135 +msgid "Suspended" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:138 +msgid "Account created in advance, but not yet operational" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:139 +msgid "Account operational, but of which the user has not yet taken possession" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:140 +msgid "" +"Account operational and accessed by the user, in anticipation of their start " +"date of activity" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:141 +msgid "Account operational and accessed by the user in regular activity" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:142 +msgid "" +"Account operational and accessed by the user, suspended after the date of " +"end of activity" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:143 +msgid "" +"Account which is no longer operational, the date of end of activity and " +"possible suspension having passed, but whose cancellation deadlines have not " +"yet been reached" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:144 +msgid "" +"Non-operational account (without specifying the reason) whose deletion " +"deadlines have not yet been reached" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:145 +msgid "Expired account that has reached the data deletion deadline" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:146 +msgid "Expired account pending permanent deletion" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:147 +msgid "Account locked (without specifying the reason)" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:148 +msgid "" +"Account locked for administrative reasons (account suspension, charter " +"abuse, etc.)" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:149 +msgid "" +"Account locked for a technical reason (detection of a namesake, suspicion of " +"a hacked account, etc.)" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:166 +msgid "Female" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:167 +msgid "Male" +msgstr "" + +#: conf/LSaddons/config.LSaddons.supann.php:168 +msgid "Other" msgstr "" #: templates/default/LSaccessRightsMatrixView.tpl:115 @@ -2012,7 +2635,7 @@ msgstr "" msgid "Forgot your password ?" msgstr "" -#: templates/default/import.tpl:13 templates/default/export.tpl:9 +#: templates/default/export.tpl:9 templates/default/import.tpl:13 msgid "Format" msgstr "" @@ -2022,7 +2645,7 @@ msgstr "" msgid "Global search" msgstr "" -#: templates/default/login.tpl:18 templates/default/recoverpassword.tpl:19 +#: templates/default/recoverpassword.tpl:19 templates/default/login.tpl:18 msgid "Identifier" msgstr "" @@ -2030,13 +2653,12 @@ msgstr "" msgid "Imported objects" msgstr "" -#: templates/default/login.tpl:12 templates/default/recoverpassword.tpl:13 +#: templates/default/recoverpassword.tpl:13 templates/default/login.tpl:12 msgid "LDAP server" msgstr "" -#: templates/default/login.tpl:22 templates/default/login.tpl:33 -#: templates/default/recoverpassword.tpl:27 -#: templates/default/base_connected.tpl:40 +#: templates/default/recoverpassword.tpl:27 templates/default/login.tpl:22 +#: templates/default/login.tpl:33 templates/default/base_connected.tpl:40 msgid "Language" msgstr "" @@ -2174,7 +2796,7 @@ msgstr "" msgid "Updated objects" msgstr "" -#: templates/default/import.tpl:36 templates/default/export.tpl:16 +#: templates/default/export.tpl:16 templates/default/import.tpl:36 msgid "Valid" msgstr ""