Update translator documentation.

L10n/i18n updates.
Whitespace updates.
Break long lines in README files.
This commit is contained in:
Siebrand Mazeland
2011-04-24 19:28:26 +02:00
parent 413d9e2fd0
commit e6d053ac41
17 changed files with 82 additions and 50 deletions

View File

@@ -60,12 +60,15 @@ class LdapCommon
$this->ldap_config = $this->get_ldap_config();
if(!isset($this->host)){
throw new Exception(_m("A host must be specified."));
// TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration.
throw new Exception(_m('A host must be specified.'));
}
if(!isset($this->basedn)){
// TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration.
throw new Exception(_m('"basedn" must be specified.'));
}
if(!isset($this->attributes['username'])){
// TRANS: Exception thrown when initialising the LDAP Common plugin fails because of an incorrect configuration.
throw new Exception(_m('The username attribute must be set.'));
}
}
@@ -122,9 +125,13 @@ class LdapCommon
// if we were called with a config, assume caller will handle
// incorrect username/password (LDAP_INVALID_CREDENTIALS)
if (isset($config) && $err->getCode() == 0x31) {
throw new LdapInvalidCredentialsException('Could not connect to LDAP server: '.$err->getMessage());
// TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available.
// TRANS: %s is the error message.
throw new LdapInvalidCredentialsException(sprintf(_m('Could not connect to LDAP server: %s'),$err->getMessage()));
}
throw new Exception('Could not connect to LDAP server: '.$err->getMessage());
// TRANS: Exception thrown in the LDAP Common plugin when LDAP server is not available.
// TRANS: %s is the error message.
throw new Exception(sprintf(_m('Could not connect to LDAP server: %s.'),$err->getMessage()));
}
$c = Cache::instance();
if (!empty($c)) {