diff --git a/appinfo/info.xml b/appinfo/info.xml index 4dae60d..648f77f 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,6 +5,6 @@ User registration AGPL Pellaeon Lin - 0.0.3 + 0.0.4 8.0.0 diff --git a/appinfo/version b/appinfo/version index bcab45a..81340c7 100644 --- a/appinfo/version +++ b/appinfo/version @@ -1 +1 @@ -0.0.3 +0.0.4 diff --git a/controller/registercontroller.php b/controller/registercontroller.php index 8d27b44..7565d5a 100644 --- a/controller/registercontroller.php +++ b/controller/registercontroller.php @@ -130,7 +130,7 @@ class RegisterController extends Controller { $msg = $res->render(); try { $this->mail->sendMail($email, 'ownCloud User', $this->l10n->t('Verify your ownCloud registration request'), $msg, $from, 'ownCloud'); - } catch (Exception $e) { + } catch (\Exception $e) { \OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.'); return; } @@ -177,11 +177,12 @@ class RegisterController extends Controller { $password = $this->request->getParam('password'); try { $user = $this->usermanager->createUser($username, $password); - } catch (Exception $e) { + } catch (\Exception $e) { return new TemplateResponse('registration', 'form', array('email' => $email, 'entered_data' => array('username' => $username), - 'errormsgs' => array($e->message, $username, $password)), 'guest'); + 'errormsgs' => array($e->getMessage()), + 'token' => $token), 'guest'); } if ( $user === false ) { return new TemplateResponse('', 'error', array( @@ -194,11 +195,13 @@ class RegisterController extends Controller { // Set user email try { $this->config->setUserValue($user->getUID(), 'settings', 'email', $email); - } catch (Exception $e) { - return new TemplateResponse('registration', 'form', - array('email' => $email, - 'entered_data' => array('username' => $username), - 'errormsgs' => array($e->message, $username, $password)), 'guest'); + } catch (\Exception $e) { + return new TemplateResponse('', 'error', array( + 'errors' => array(array( + 'error' => $this->l10n->t('Unable to set user email: '.$e->getMessage()), + 'hint' => '' + )) + ), 'error'); } // Add user to group @@ -207,7 +210,7 @@ class RegisterController extends Controller { try { $group = $this->groupmanager->get($registered_user_group); $group->addUser($user); - } catch (Exception $e) { + } catch (\Exception $e) { return new TemplateResponse('', 'error', array( 'errors' => array(array( 'error' => $e->message, diff --git a/db/pendingregist.php b/db/pendingregist.php index c656c2b..b662705 100644 --- a/db/pendingregist.php +++ b/db/pendingregist.php @@ -21,7 +21,11 @@ class PendingRegist { public function save($email) { $query = $this->db->prepareQuery( 'INSERT INTO `*PREFIX*registration`' .' ( `email`, `token`, `requested` ) VALUES( ?, ?, NOW() )' ); - $token = $this->random->generate(30); + + do { + $token = $this->random->generate(30); + } while (preg_match('/[\/]++/', $token)); + $query->execute(array( $email, $token )); return $token; } diff --git a/l10n/cs_CZ.js b/l10n/cs_CZ.js index f739363..64050ae 100644 --- a/l10n/cs_CZ.js +++ b/l10n/cs_CZ.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Ověřovací email úspěšně odeslán.", "Invalid verification URL. No registration request with this verification URL is found." : "Neplatná ověřovací URL. Nebyl nalezen žádný registrační požadavek pro tuto ověřovací URL.", "Unable to create user, there are problems with user backend." : "Není možné vytvořit uživatelský účet, nastaly potíže v systému úložiště uživatelů.", + "Unable to set user email: " : "Nelze nastavit email uživatele:", "Failed to delete pending registration request" : "Selhalo smazání čekajících požadavků na registraci", "Your account has been successfully created, you can log in now." : "Váš účet byl úspěšně vytvořen, můžete se nyní přihlásit.", "Your settings have been updated." : "Vaše nastavení bylo aktualizováno.", @@ -16,6 +17,7 @@ OC.L10N.register( "Registration" : "Registrace", "Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele", "None" : "Žádné", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Pro vytvoření nového účtu v ownCloud klikněte na následující odkaz:

\n{link}", "Welcome, you can create your account below." : "Vítejte, svůj účet si můžete založit níže.", "Username" : "Uživatelské jméno", "Password" : "Heslo", diff --git a/l10n/cs_CZ.json b/l10n/cs_CZ.json index 71ebd7c..980d5c9 100644 --- a/l10n/cs_CZ.json +++ b/l10n/cs_CZ.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Ověřovací email úspěšně odeslán.", "Invalid verification URL. No registration request with this verification URL is found." : "Neplatná ověřovací URL. Nebyl nalezen žádný registrační požadavek pro tuto ověřovací URL.", "Unable to create user, there are problems with user backend." : "Není možné vytvořit uživatelský účet, nastaly potíže v systému úložiště uživatelů.", + "Unable to set user email: " : "Nelze nastavit email uživatele:", "Failed to delete pending registration request" : "Selhalo smazání čekajících požadavků na registraci", "Your account has been successfully created, you can log in now." : "Váš účet byl úspěšně vytvořen, můžete se nyní přihlásit.", "Your settings have been updated." : "Vaše nastavení bylo aktualizováno.", @@ -14,6 +15,7 @@ "Registration" : "Registrace", "Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele", "None" : "Žádné", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Pro vytvoření nového účtu v ownCloud klikněte na následující odkaz:

\n{link}", "Welcome, you can create your account below." : "Vítejte, svůj účet si můžete založit níže.", "Username" : "Uživatelské jméno", "Password" : "Heslo", diff --git a/l10n/cs_CZ.php b/l10n/cs_CZ.php index bd72b39..fbcb6fb 100644 --- a/l10n/cs_CZ.php +++ b/l10n/cs_CZ.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Ověřovací email úspěšně odeslán.", "Invalid verification URL. No registration request with this verification URL is found." => "Neplatná ověřovací URL. Nebyl nalezen žádný registrační požadavek pro tuto ověřovací URL.", "Unable to create user, there are problems with user backend." => "Není možné vytvořit uživatelský účet, nastaly potíže v systému úložiště uživatelů.", +"Unable to set user email: " => "Nelze nastavit email uživatele:", "Failed to delete pending registration request" => "Selhalo smazání čekajících požadavků na registraci", "Your account has been successfully created, you can log in now." => "Váš účet byl úspěšně vytvořen, můžete se nyní přihlásit.", "Your settings have been updated." => "Vaše nastavení bylo aktualizováno.", @@ -15,6 +16,7 @@ $TRANSLATIONS = array( "Registration" => "Registrace", "Default group that all registered users belong" => "Výchozí skupina pro všechny nově registrované uživatele", "None" => "Žádné", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Pro vytvoření nového účtu v ownCloud klikněte na následující odkaz:

\n{link}", "Welcome, you can create your account below." => "Vítejte, svůj účet si můžete založit níže.", "Username" => "Uživatelské jméno", "Password" => "Heslo", diff --git a/l10n/da.js b/l10n/da.js index a4bdcac..91df9d7 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Bekræftelse er blevet sendt med e-mail.", "Invalid verification URL. No registration request with this verification URL is found." : "Ugyldig verifikations-URL. Der blev ikke fundet nogen forespørgsel om tilmelding med denne verifikations-URL.", "Unable to create user, there are problems with user backend." : "Kan ikke oprette bruger - der er problemer med bruger-backend.", + "Unable to set user email: " : "Kan ikke angive e-mail for bruger:", "Failed to delete pending registration request" : "Det lykkedes ikke at slette ventende registreringsanmodning", "Your account has been successfully created, you can log in now." : "Din konto er blevet oprettet, og du kan logge ind nu.", "Your settings have been updated." : "Dine indstillinger er blevet opdateret.", @@ -16,6 +17,7 @@ OC.L10N.register( "Registration" : "Tilmelding", "Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til", "None" : "Ingen", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "For at oprette en ny konto på ownCloud, klik følgende link:

\n{link}", "Welcome, you can create your account below." : "Velkommen, du kan oprette din konto nedenfor.", "Username" : "Brugernavn", "Password" : "Adgangskode", diff --git a/l10n/da.json b/l10n/da.json index 2cd579f..bc5fabf 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Bekræftelse er blevet sendt med e-mail.", "Invalid verification URL. No registration request with this verification URL is found." : "Ugyldig verifikations-URL. Der blev ikke fundet nogen forespørgsel om tilmelding med denne verifikations-URL.", "Unable to create user, there are problems with user backend." : "Kan ikke oprette bruger - der er problemer med bruger-backend.", + "Unable to set user email: " : "Kan ikke angive e-mail for bruger:", "Failed to delete pending registration request" : "Det lykkedes ikke at slette ventende registreringsanmodning", "Your account has been successfully created, you can log in now." : "Din konto er blevet oprettet, og du kan logge ind nu.", "Your settings have been updated." : "Dine indstillinger er blevet opdateret.", @@ -14,6 +15,7 @@ "Registration" : "Tilmelding", "Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til", "None" : "Ingen", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "For at oprette en ny konto på ownCloud, klik følgende link:

\n{link}", "Welcome, you can create your account below." : "Velkommen, du kan oprette din konto nedenfor.", "Username" : "Brugernavn", "Password" : "Adgangskode", diff --git a/l10n/da.php b/l10n/da.php index 5500856..1122037 100644 --- a/l10n/da.php +++ b/l10n/da.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Bekræftelse er blevet sendt med e-mail.", "Invalid verification URL. No registration request with this verification URL is found." => "Ugyldig verifikations-URL. Der blev ikke fundet nogen forespørgsel om tilmelding med denne verifikations-URL.", "Unable to create user, there are problems with user backend." => "Kan ikke oprette bruger - der er problemer med bruger-backend.", +"Unable to set user email: " => "Kan ikke angive e-mail for bruger:", "Failed to delete pending registration request" => "Det lykkedes ikke at slette ventende registreringsanmodning", "Your account has been successfully created, you can log in now." => "Din konto er blevet oprettet, og du kan logge ind nu.", "Your settings have been updated." => "Dine indstillinger er blevet opdateret.", @@ -15,6 +16,7 @@ $TRANSLATIONS = array( "Registration" => "Tilmelding", "Default group that all registered users belong" => "Standardgruppen som alle tilmeldte brugere hører til", "None" => "Ingen", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "For at oprette en ny konto på ownCloud, klik følgende link:

\n{link}", "Welcome, you can create your account below." => "Velkommen, du kan oprette din konto nedenfor.", "Username" => "Brugernavn", "Password" => "Adgangskode", diff --git a/l10n/de.js b/l10n/de.js index 4017c23..41a85c9 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierungsanfrage mit dieser Bestätigungsadresse gefunden.", "Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzerhintergrundprogramm.", + "Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen", "Your account has been successfully created, you can log in now." : "Dein Konto wurde erfolgreich erstellt, Du kannst dich jetzt anmelden.", "Your settings have been updated." : "Deine Einstellungen wurden aktualisiert.", @@ -20,6 +21,7 @@ OC.L10N.register( "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Save" : "Speichern", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Bitte klicke auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:

\n{link}", "Welcome, you can create your account below." : "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.", "Username" : "Benutzername", "Password" : "Passwort", diff --git a/l10n/de.json b/l10n/de.json index 9e0b00b..c1f62b0 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierungsanfrage mit dieser Bestätigungsadresse gefunden.", "Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzerhintergrundprogramm.", + "Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen", "Your account has been successfully created, you can log in now." : "Dein Konto wurde erfolgreich erstellt, Du kannst dich jetzt anmelden.", "Your settings have been updated." : "Deine Einstellungen wurden aktualisiert.", @@ -18,6 +19,7 @@ "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Save" : "Speichern", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Bitte klicke auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:

\n{link}", "Welcome, you can create your account below." : "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.", "Username" : "Benutzername", "Password" : "Passwort", diff --git a/l10n/de.php b/l10n/de.php index 56021ec..7dfd8c6 100644 --- a/l10n/de.php +++ b/l10n/de.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "E-Mail zur Bestätigung erfolgreich gesendet.", "Invalid verification URL. No registration request with this verification URL is found." => "Ungültige Bestätigungsadresse. Keine Registrierungsanfrage mit dieser Bestätigungsadresse gefunden.", "Unable to create user, there are problems with user backend." => "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzerhintergrundprogramm.", +"Unable to set user email: " => "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:", "Failed to delete pending registration request" => "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen", "Your account has been successfully created, you can log in now." => "Dein Konto wurde erfolgreich erstellt, Du kannst dich jetzt anmelden.", "Your settings have been updated." => "Deine Einstellungen wurden aktualisiert.", @@ -19,6 +20,7 @@ $TRANSLATIONS = array( "Allowed domains for registration" => "Für Registrierung freigeschaltete Domains", "Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:", "Save" => "Speichern", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Bitte klicke auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:

\n{link}", "Welcome, you can create your account below." => "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.", "Username" => "Benutzername", "Password" => "Passwort", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 0879546..8e09de8 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierunganfrage mit dieser Bestätigungsadresse gefunden.", "Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzer-Backend.", + "Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen", "Your account has been successfully created, you can log in now." : "Ihr Konto wurde erfolgreich erstellt, Sie können sich jetzt anmelden.", "Your settings have been updated." : "Ihre Einstellungen wurden aktualisiert.", @@ -20,6 +21,7 @@ OC.L10N.register( "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Save" : "Speichern", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Bitte klicken Sie auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:

\n{link}", "Welcome, you can create your account below." : "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.", "Username" : "Benutzername", "Password" : "Passwort", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 2abf0e3..79747b7 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierunganfrage mit dieser Bestätigungsadresse gefunden.", "Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzer-Backend.", + "Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen", "Your account has been successfully created, you can log in now." : "Ihr Konto wurde erfolgreich erstellt, Sie können sich jetzt anmelden.", "Your settings have been updated." : "Ihre Einstellungen wurden aktualisiert.", @@ -18,6 +19,8 @@ "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Save" : "Speichern", +======= + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Bitte klicken Sie auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:

\n{link}", "Welcome, you can create your account below." : "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.", "Username" : "Benutzername", "Password" : "Passwort", diff --git a/l10n/de_DE.php b/l10n/de_DE.php index 451b5b9..533759c 100644 --- a/l10n/de_DE.php +++ b/l10n/de_DE.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "E-Mail zur Bestätigung erfolgreich gesendet.", "Invalid verification URL. No registration request with this verification URL is found." => "Ungültige Bestätigungsadresse. Keine Registrierunganfrage mit dieser Bestätigungsadresse gefunden.", "Unable to create user, there are problems with user backend." => "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzer-Backend.", +"Unable to set user email: " => "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:", "Failed to delete pending registration request" => "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen", "Your account has been successfully created, you can log in now." => "Ihr Konto wurde erfolgreich erstellt, Sie können sich jetzt anmelden.", "Your settings have been updated." => "Ihre Einstellungen wurden aktualisiert.", @@ -19,6 +20,7 @@ $TRANSLATIONS = array( "Allowed domains for registration" => "Für Registrierung freigeschaltete Domains", "Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:", "Save" => "Speichern", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Bitte klicken Sie auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:

\n{link}", "Welcome, you can create your account below." => "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.", "Username" => "Benutzername", "Password" => "Passwort", diff --git a/l10n/es.js b/l10n/es.js index 846d130..a20a30c 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Mensaje de verificación enviado con éxito.", "Invalid verification URL. No registration request with this verification URL is found." : "URL de verificación inválido. No se ha encontrado ninguna solicitud de registro con este URL de verificación.", "Unable to create user, there are problems with user backend." : "No es posible crear el usuario; hay problemas con el backend.", + "Unable to set user email: " : "No se puede establecer correo electrónico del usuario:", "Failed to delete pending registration request" : "Fallo al eliminar la petición de registro pendiente", "Your account has been successfully created, you can log in now." : "Su cuenta ha sido creada, puede ingresar ahora.", "Your settings have been updated." : "Sus ajustes han sido actualizados.", @@ -16,6 +17,7 @@ OC.L10N.register( "Registration" : "Registro", "Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados", "None" : "Ninguno", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Para crear una nueva cuenta en ownCloud, solo haga clic en el siguiente enlace:

\n{link}", "Welcome, you can create your account below." : "Bienvenido, puede crear una cuenta más abajo.", "Username" : "Nombre de usuario", "Password" : "Contraseña", diff --git a/l10n/es.json b/l10n/es.json index 5a3f6c2..8007b69 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Mensaje de verificación enviado con éxito.", "Invalid verification URL. No registration request with this verification URL is found." : "URL de verificación inválido. No se ha encontrado ninguna solicitud de registro con este URL de verificación.", "Unable to create user, there are problems with user backend." : "No es posible crear el usuario; hay problemas con el backend.", + "Unable to set user email: " : "No se puede establecer correo electrónico del usuario:", "Failed to delete pending registration request" : "Fallo al eliminar la petición de registro pendiente", "Your account has been successfully created, you can log in now." : "Su cuenta ha sido creada, puede ingresar ahora.", "Your settings have been updated." : "Sus ajustes han sido actualizados.", @@ -14,6 +15,7 @@ "Registration" : "Registro", "Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados", "None" : "Ninguno", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Para crear una nueva cuenta en ownCloud, solo haga clic en el siguiente enlace:

\n{link}", "Welcome, you can create your account below." : "Bienvenido, puede crear una cuenta más abajo.", "Username" : "Nombre de usuario", "Password" : "Contraseña", diff --git a/l10n/es.php b/l10n/es.php index 632525e..0a05af0 100644 --- a/l10n/es.php +++ b/l10n/es.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Mensaje de verificación enviado con éxito.", "Invalid verification URL. No registration request with this verification URL is found." => "URL de verificación inválido. No se ha encontrado ninguna solicitud de registro con este URL de verificación.", "Unable to create user, there are problems with user backend." => "No es posible crear el usuario; hay problemas con el backend.", +"Unable to set user email: " => "No se puede establecer correo electrónico del usuario:", "Failed to delete pending registration request" => "Fallo al eliminar la petición de registro pendiente", "Your account has been successfully created, you can log in now." => "Su cuenta ha sido creada, puede ingresar ahora.", "Your settings have been updated." => "Sus ajustes han sido actualizados.", @@ -15,6 +16,7 @@ $TRANSLATIONS = array( "Registration" => "Registro", "Default group that all registered users belong" => "Grupo predeterminado al cual pertenecen todos los usuarios registrados", "None" => "Ninguno", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Para crear una nueva cuenta en ownCloud, solo haga clic en el siguiente enlace:

\n{link}", "Welcome, you can create your account below." => "Bienvenido, puede crear una cuenta más abajo.", "Username" => "Nombre de usuario", "Password" => "Contraseña", diff --git a/l10n/et_EE.js b/l10n/et_EE.js index eca8642..8cefe2e 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Kinnituskiri on saadetud.", "Invalid verification URL. No registration request with this verification URL is found." : "Vigane kinnituse URL. Selle kinnitus URL-iga registreerimise päringut ei leitud.", "Unable to create user, there are problems with user backend." : "Kasutaja loomine ebaõnnestus, kasutaja adminiliidesega oli probleeme.", + "Unable to set user email: " : "Kasutaja e-posti määramine ebaõnnestus:", "Failed to delete pending registration request" : "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus", "Your account has been successfully created, you can log in now." : "Sinu konto on loodud, sa võid kohe sisse logida.", "Your settings have been updated." : "Seaded on uuendatud.", @@ -16,6 +17,7 @@ OC.L10N.register( "Registration" : "Registreerumine", "Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse", "None" : "Pole", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "ownCloudi uue kasutajakonto loomiseks kliki lihtsalt järgnevale lingile:\n
\n{link}", "Welcome, you can create your account below." : "Teretulemast, sa võid konto luua allpool.", "Username" : "Kasutajanimi", "Password" : "Parool", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 379d664..9b29e01 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Kinnituskiri on saadetud.", "Invalid verification URL. No registration request with this verification URL is found." : "Vigane kinnituse URL. Selle kinnitus URL-iga registreerimise päringut ei leitud.", "Unable to create user, there are problems with user backend." : "Kasutaja loomine ebaõnnestus, kasutaja adminiliidesega oli probleeme.", + "Unable to set user email: " : "Kasutaja e-posti määramine ebaõnnestus:", "Failed to delete pending registration request" : "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus", "Your account has been successfully created, you can log in now." : "Sinu konto on loodud, sa võid kohe sisse logida.", "Your settings have been updated." : "Seaded on uuendatud.", @@ -14,6 +15,7 @@ "Registration" : "Registreerumine", "Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse", "None" : "Pole", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "ownCloudi uue kasutajakonto loomiseks kliki lihtsalt järgnevale lingile:\n
\n{link}", "Welcome, you can create your account below." : "Teretulemast, sa võid konto luua allpool.", "Username" : "Kasutajanimi", "Password" : "Parool", diff --git a/l10n/et_EE.php b/l10n/et_EE.php index 7e922f9..7cc1e3c 100644 --- a/l10n/et_EE.php +++ b/l10n/et_EE.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Kinnituskiri on saadetud.", "Invalid verification URL. No registration request with this verification URL is found." => "Vigane kinnituse URL. Selle kinnitus URL-iga registreerimise päringut ei leitud.", "Unable to create user, there are problems with user backend." => "Kasutaja loomine ebaõnnestus, kasutaja adminiliidesega oli probleeme.", +"Unable to set user email: " => "Kasutaja e-posti määramine ebaõnnestus:", "Failed to delete pending registration request" => "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus", "Your account has been successfully created, you can log in now." => "Sinu konto on loodud, sa võid kohe sisse logida.", "Your settings have been updated." => "Seaded on uuendatud.", @@ -15,6 +16,7 @@ $TRANSLATIONS = array( "Registration" => "Registreerumine", "Default group that all registered users belong" => "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse", "None" => "Pole", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "ownCloudi uue kasutajakonto loomiseks kliki lihtsalt järgnevale lingile:\n
\n{link}", "Welcome, you can create your account below." => "Teretulemast, sa võid konto luua allpool.", "Username" => "Kasutajanimi", "Password" => "Parool", diff --git a/l10n/fi_FI.js b/l10n/fi_FI.js index 8cf0f03..0e78772 100644 --- a/l10n/fi_FI.js +++ b/l10n/fi_FI.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Vahvistussähköposti lähetettiin onnistuneesti.", "Invalid verification URL. No registration request with this verification URL is found." : "Virheellinen vahvistuksen verkko-osoite. Kyseisellä osoitteella ei löytynyt rekisteröintipyyntöä.", "Unable to create user, there are problems with user backend." : "Käyttäjän luominen ei onnistunut käyttäjätaustaosan kanssa olevien ongelmien vuoksi.", + "Unable to set user email: " : "Käyttäjän sähköpostin asettaminen epäonnistui:", "Failed to delete pending registration request" : "Odottavan rekisteröintipyynnön poistaminen epäonnistui", "Your account has been successfully created, you can log in now." : "Tilisi on luotu onnistuneesti. Voit kirjautua sisään nyt.", "Your settings have been updated." : "Asetuksesi on päivitetty.", diff --git a/l10n/fi_FI.json b/l10n/fi_FI.json index 2498349..78498ef 100644 --- a/l10n/fi_FI.json +++ b/l10n/fi_FI.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Vahvistussähköposti lähetettiin onnistuneesti.", "Invalid verification URL. No registration request with this verification URL is found." : "Virheellinen vahvistuksen verkko-osoite. Kyseisellä osoitteella ei löytynyt rekisteröintipyyntöä.", "Unable to create user, there are problems with user backend." : "Käyttäjän luominen ei onnistunut käyttäjätaustaosan kanssa olevien ongelmien vuoksi.", + "Unable to set user email: " : "Käyttäjän sähköpostin asettaminen epäonnistui:", "Failed to delete pending registration request" : "Odottavan rekisteröintipyynnön poistaminen epäonnistui", "Your account has been successfully created, you can log in now." : "Tilisi on luotu onnistuneesti. Voit kirjautua sisään nyt.", "Your settings have been updated." : "Asetuksesi on päivitetty.", diff --git a/l10n/fi_FI.php b/l10n/fi_FI.php index 89ca0a8..18d4699 100644 --- a/l10n/fi_FI.php +++ b/l10n/fi_FI.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Vahvistussähköposti lähetettiin onnistuneesti.", "Invalid verification URL. No registration request with this verification URL is found." => "Virheellinen vahvistuksen verkko-osoite. Kyseisellä osoitteella ei löytynyt rekisteröintipyyntöä.", "Unable to create user, there are problems with user backend." => "Käyttäjän luominen ei onnistunut käyttäjätaustaosan kanssa olevien ongelmien vuoksi.", +"Unable to set user email: " => "Käyttäjän sähköpostin asettaminen epäonnistui:", "Failed to delete pending registration request" => "Odottavan rekisteröintipyynnön poistaminen epäonnistui", "Your account has been successfully created, you can log in now." => "Tilisi on luotu onnistuneesti. Voit kirjautua sisään nyt.", "Your settings have been updated." => "Asetuksesi on päivitetty.", diff --git a/l10n/fr.js b/l10n/fr.js index 3d22f68..f1f5731 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Courriel de vérification envoyé avec succès.", "Invalid verification URL. No registration request with this verification URL is found." : "Lien de vérification non valable. Aucune demande d'inscription correspondante n'a été trouvée.", "Unable to create user, there are problems with user backend." : "Impossible de créer l'utilisateur, problèmes avec l’infrastructure utilisateur.", + "Unable to set user email: " : "Impossible de définir l'email utilisateur :", "Failed to delete pending registration request" : "Erreur lors de la suppression de la demande d'enregistrement en attente", "Your account has been successfully created, you can log in now." : "Votre compte a bien été créé, vous pouvez maintenant vous connecter.", "Your settings have been updated." : "Vos paramètres ont été mis à jour.", diff --git a/l10n/fr.json b/l10n/fr.json index 395d74a..3bff3b8 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Courriel de vérification envoyé avec succès.", "Invalid verification URL. No registration request with this verification URL is found." : "Lien de vérification non valable. Aucune demande d'inscription correspondante n'a été trouvée.", "Unable to create user, there are problems with user backend." : "Impossible de créer l'utilisateur, problèmes avec l’infrastructure utilisateur.", + "Unable to set user email: " : "Impossible de définir l'email utilisateur :", "Failed to delete pending registration request" : "Erreur lors de la suppression de la demande d'enregistrement en attente", "Your account has been successfully created, you can log in now." : "Votre compte a bien été créé, vous pouvez maintenant vous connecter.", "Your settings have been updated." : "Vos paramètres ont été mis à jour.", diff --git a/l10n/fr.php b/l10n/fr.php index 4ed7315..f41f98a 100644 --- a/l10n/fr.php +++ b/l10n/fr.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Courriel de vérification envoyé avec succès.", "Invalid verification URL. No registration request with this verification URL is found." => "Lien de vérification non valable. Aucune demande d'inscription correspondante n'a été trouvée.", "Unable to create user, there are problems with user backend." => "Impossible de créer l'utilisateur, problèmes avec l’infrastructure utilisateur.", +"Unable to set user email: " => "Impossible de définir l'email utilisateur :", "Failed to delete pending registration request" => "Erreur lors de la suppression de la demande d'enregistrement en attente", "Your account has been successfully created, you can log in now." => "Votre compte a bien été créé, vous pouvez maintenant vous connecter.", "Your settings have been updated." => "Vos paramètres ont été mis à jour.", diff --git a/l10n/gl.js b/l10n/gl.js index f401233..2d67d06 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Correo de verificación enviado correctamente", "Invalid verification URL. No registration request with this verification URL is found." : "O URL de verificación no é correcto. Non se atopou ningunha petición de rexistro con este URL de verificación.", "Unable to create user, there are problems with user backend." : "Non é posíbel crear o usuario, existen problemas coa infraestrutura de usuarios.", + "Unable to set user email: " : "Non é posíbel estabelecer o usuario de correo:", "Failed to delete pending registration request" : "Non foi posíbel eliminar a solicitude de rexistro en trámite", "Your account has been successfully created, you can log in now." : "A súa conta foi creada satisfactoriamente, pode conectarse agora.", "Your settings have been updated." : "Actualizaronse os axustes.", diff --git a/l10n/gl.json b/l10n/gl.json index 7c61014..f9bbc75 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Correo de verificación enviado correctamente", "Invalid verification URL. No registration request with this verification URL is found." : "O URL de verificación no é correcto. Non se atopou ningunha petición de rexistro con este URL de verificación.", "Unable to create user, there are problems with user backend." : "Non é posíbel crear o usuario, existen problemas coa infraestrutura de usuarios.", + "Unable to set user email: " : "Non é posíbel estabelecer o usuario de correo:", "Failed to delete pending registration request" : "Non foi posíbel eliminar a solicitude de rexistro en trámite", "Your account has been successfully created, you can log in now." : "A súa conta foi creada satisfactoriamente, pode conectarse agora.", "Your settings have been updated." : "Actualizaronse os axustes.", diff --git a/l10n/gl.php b/l10n/gl.php index 0ff31fb..60cc788 100644 --- a/l10n/gl.php +++ b/l10n/gl.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Correo de verificación enviado correctamente", "Invalid verification URL. No registration request with this verification URL is found." => "O URL de verificación no é correcto. Non se atopou ningunha petición de rexistro con este URL de verificación.", "Unable to create user, there are problems with user backend." => "Non é posíbel crear o usuario, existen problemas coa infraestrutura de usuarios.", +"Unable to set user email: " => "Non é posíbel estabelecer o usuario de correo:", "Failed to delete pending registration request" => "Non foi posíbel eliminar a solicitude de rexistro en trámite", "Your account has been successfully created, you can log in now." => "A súa conta foi creada satisfactoriamente, pode conectarse agora.", "Your settings have been updated." => "Actualizaronse os axustes.", diff --git a/l10n/id.js b/l10n/id.js index 60d4edb..98db05e 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Email verifikasi berhasil dikirim", "Invalid verification URL. No registration request with this verification URL is found." : "URL verifikasi tidak sah. Tidak ada permintaan pendaftaran dengan URL verifikasi ini yang ditemukan.", "Unable to create user, there are problems with user backend." : "Tidak dapat membuat pengguna, terdapat masalah dengan backend pengguna.", + "Unable to set user email: " : "Tidak dapat mengatur email pengguna:", "Failed to delete pending registration request" : "Gagal menghapus permintaan penundaan pendaftaran", "Your account has been successfully created, you can log in now." : "Akun Anda telah berhasil dibuat, Anda dapat masuk sekarang.", "Your settings have been updated." : "Pengaturan Anda telah diperbarui.", diff --git a/l10n/id.json b/l10n/id.json index d9257a9..51e88bd 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Email verifikasi berhasil dikirim", "Invalid verification URL. No registration request with this verification URL is found." : "URL verifikasi tidak sah. Tidak ada permintaan pendaftaran dengan URL verifikasi ini yang ditemukan.", "Unable to create user, there are problems with user backend." : "Tidak dapat membuat pengguna, terdapat masalah dengan backend pengguna.", + "Unable to set user email: " : "Tidak dapat mengatur email pengguna:", "Failed to delete pending registration request" : "Gagal menghapus permintaan penundaan pendaftaran", "Your account has been successfully created, you can log in now." : "Akun Anda telah berhasil dibuat, Anda dapat masuk sekarang.", "Your settings have been updated." : "Pengaturan Anda telah diperbarui.", diff --git a/l10n/id.php b/l10n/id.php index 500443e..0e689e0 100644 --- a/l10n/id.php +++ b/l10n/id.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Email verifikasi berhasil dikirim", "Invalid verification URL. No registration request with this verification URL is found." => "URL verifikasi tidak sah. Tidak ada permintaan pendaftaran dengan URL verifikasi ini yang ditemukan.", "Unable to create user, there are problems with user backend." => "Tidak dapat membuat pengguna, terdapat masalah dengan backend pengguna.", +"Unable to set user email: " => "Tidak dapat mengatur email pengguna:", "Failed to delete pending registration request" => "Gagal menghapus permintaan penundaan pendaftaran", "Your account has been successfully created, you can log in now." => "Akun Anda telah berhasil dibuat, Anda dapat masuk sekarang.", "Your settings have been updated." => "Pengaturan Anda telah diperbarui.", diff --git a/l10n/it.js b/l10n/it.js index 22c7647..a028f4d 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Email di verifica inviata correttamente.", "Invalid verification URL. No registration request with this verification URL is found." : "URL di verifica non valido. Nessuna richiesta di registrazione trovata con questo URL di verifica.", "Unable to create user, there are problems with user backend." : "Impossibile creare l'utente, ci sono problemi con il motore degli utenti.", + "Unable to set user email: " : "Impossibile impostare l'indirizzo email dell'utente:", "Failed to delete pending registration request" : "L'eliminazione della richiesta di registrazione in corso non è riuscita", "Your account has been successfully created, you can log in now." : "Il tuo account è stato creato correttamente, ora puoi effettuare l'accesso.", "Your settings have been updated." : "Le tue impostazioni sono state aggiornate.", diff --git a/l10n/it.json b/l10n/it.json index e78d3e0..426fb52 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Email di verifica inviata correttamente.", "Invalid verification URL. No registration request with this verification URL is found." : "URL di verifica non valido. Nessuna richiesta di registrazione trovata con questo URL di verifica.", "Unable to create user, there are problems with user backend." : "Impossibile creare l'utente, ci sono problemi con il motore degli utenti.", + "Unable to set user email: " : "Impossibile impostare l'indirizzo email dell'utente:", "Failed to delete pending registration request" : "L'eliminazione della richiesta di registrazione in corso non è riuscita", "Your account has been successfully created, you can log in now." : "Il tuo account è stato creato correttamente, ora puoi effettuare l'accesso.", "Your settings have been updated." : "Le tue impostazioni sono state aggiornate.", diff --git a/l10n/it.php b/l10n/it.php index 1aa51fe..db94f0d 100644 --- a/l10n/it.php +++ b/l10n/it.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Email di verifica inviata correttamente.", "Invalid verification URL. No registration request with this verification URL is found." => "URL di verifica non valido. Nessuna richiesta di registrazione trovata con questo URL di verifica.", "Unable to create user, there are problems with user backend." => "Impossibile creare l'utente, ci sono problemi con il motore degli utenti.", +"Unable to set user email: " => "Impossibile impostare l'indirizzo email dell'utente:", "Failed to delete pending registration request" => "L'eliminazione della richiesta di registrazione in corso non è riuscita", "Your account has been successfully created, you can log in now." => "Il tuo account è stato creato correttamente, ora puoi effettuare l'accesso.", "Your settings have been updated." => "Le tue impostazioni sono state aggiornate.", diff --git a/l10n/ja.js b/l10n/ja.js index 04d7ddd..5e84f53 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -3,12 +3,13 @@ OC.L10N.register( { "Register" : "登録", "Email address you entered is not valid" : "入力されたメールアドレスが正しくありません", - "There is already a pending registration with this email" : "このメールアドレスで登録中断しているものがあります。", + "There is already a pending registration with this email" : "このメールアドレスで保留中の登録がすでに存在します", "There is an existing user with this email" : "このメールアドレスのユーザーがすでに存在します", "Verify your ownCloud registration request" : "ownCloud 登録リクエストを確認してください", "Verification email successfully sent." : "確認メールを送信しました。", "Invalid verification URL. No registration request with this verification URL is found." : "確認URLが不正です。この確認URLに紐付く登録リクエストは、ありません。", "Unable to create user, there are problems with user backend." : "ユーザーを作成できません。バックエンドのユーザー管理システムに問題があります。", + "Unable to set user email: " : "ユーザーメールを設定できません:", "Failed to delete pending registration request" : "保留中の登録リクエストの削除に失敗しました", "Your account has been successfully created, you can log in now." : "アカウントは無事作成されました。 こちらのリンクからログインしてください。", "Your settings have been updated." : "設定を更新しました。", @@ -16,6 +17,7 @@ OC.L10N.register( "Registration" : "登録", "Default group that all registered users belong" : "すべての登録ユーザーが属しているデフォルトのグループ", "None" : "なし", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "ownCloud に新しいアカウントを作成するには、以下のリンクをクリックしてください:

\n{link}", "Welcome, you can create your account below." : "ようこそ、以下から新しくアカウントを作成できます。", "Username" : "ユーザーID", "Password" : "パスワード", diff --git a/l10n/ja.json b/l10n/ja.json index 1cedb8b..a6e706d 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -1,12 +1,13 @@ { "translations": { "Register" : "登録", "Email address you entered is not valid" : "入力されたメールアドレスが正しくありません", - "There is already a pending registration with this email" : "このメールアドレスで登録中断しているものがあります。", + "There is already a pending registration with this email" : "このメールアドレスで保留中の登録がすでに存在します", "There is an existing user with this email" : "このメールアドレスのユーザーがすでに存在します", "Verify your ownCloud registration request" : "ownCloud 登録リクエストを確認してください", "Verification email successfully sent." : "確認メールを送信しました。", "Invalid verification URL. No registration request with this verification URL is found." : "確認URLが不正です。この確認URLに紐付く登録リクエストは、ありません。", "Unable to create user, there are problems with user backend." : "ユーザーを作成できません。バックエンドのユーザー管理システムに問題があります。", + "Unable to set user email: " : "ユーザーメールを設定できません:", "Failed to delete pending registration request" : "保留中の登録リクエストの削除に失敗しました", "Your account has been successfully created, you can log in now." : "アカウントは無事作成されました。 こちらのリンクからログインしてください。", "Your settings have been updated." : "設定を更新しました。", @@ -14,6 +15,7 @@ "Registration" : "登録", "Default group that all registered users belong" : "すべての登録ユーザーが属しているデフォルトのグループ", "None" : "なし", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "ownCloud に新しいアカウントを作成するには、以下のリンクをクリックしてください:

\n{link}", "Welcome, you can create your account below." : "ようこそ、以下から新しくアカウントを作成できます。", "Username" : "ユーザーID", "Password" : "パスワード", diff --git a/l10n/ja.php b/l10n/ja.php index 0fda474..0013236 100644 --- a/l10n/ja.php +++ b/l10n/ja.php @@ -2,12 +2,13 @@ $TRANSLATIONS = array( "Register" => "登録", "Email address you entered is not valid" => "入力されたメールアドレスが正しくありません", -"There is already a pending registration with this email" => "このメールアドレスで登録中断しているものがあります。", +"There is already a pending registration with this email" => "このメールアドレスで保留中の登録がすでに存在します", "There is an existing user with this email" => "このメールアドレスのユーザーがすでに存在します", "Verify your ownCloud registration request" => "ownCloud 登録リクエストを確認してください", "Verification email successfully sent." => "確認メールを送信しました。", "Invalid verification URL. No registration request with this verification URL is found." => "確認URLが不正です。この確認URLに紐付く登録リクエストは、ありません。", "Unable to create user, there are problems with user backend." => "ユーザーを作成できません。バックエンドのユーザー管理システムに問題があります。", +"Unable to set user email: " => "ユーザーメールを設定できません:", "Failed to delete pending registration request" => "保留中の登録リクエストの削除に失敗しました", "Your account has been successfully created, you can log in now." => "アカウントは無事作成されました。 こちらのリンクからログインしてください。", "Your settings have been updated." => "設定を更新しました。", @@ -15,6 +16,7 @@ $TRANSLATIONS = array( "Registration" => "登録", "Default group that all registered users belong" => "すべての登録ユーザーが属しているデフォルトのグループ", "None" => "なし", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "ownCloud に新しいアカウントを作成するには、以下のリンクをクリックしてください:

\n{link}", "Welcome, you can create your account below." => "ようこそ、以下から新しくアカウントを作成できます。", "Username" => "ユーザーID", "Password" => "パスワード", diff --git a/l10n/ko.js b/l10n/ko.js index 5466154..5ccc9aa 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -4,13 +4,20 @@ OC.L10N.register( "Register" : "등록", "Email address you entered is not valid" : "입력한 이메일 주소가 올바르지 않음", "There is already a pending registration with this email" : "입력한 이메일 주소로 가입 대기 중", + "There is an existing user with this email" : "같은 이메일을 사용하는 사용자가 이미 존재함", "Verify your ownCloud registration request" : "ownCloud 가입 요청 확인", "Verification email successfully sent." : "확인 이메일을 보냈습니다.", "Invalid verification URL. No registration request with this verification URL is found." : "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.", "Unable to create user, there are problems with user backend." : "사용자 백엔드 오류로 사용자를 등록할 수 없습니다.", + "Unable to set user email: " : "사용자 이메일을 설정할 수 없음: ", + "Failed to delete pending registration request" : "대기 중인 등록 요청을 삭제할 수 없음", "Your account has been successfully created, you can log in now." : "회원 가입이 완료되었으며 로그인할 수 있습니다.", "Your settings have been updated." : "설정이 업데이트 되었습니다.", + "No such group" : "그룹이 존재하지 않음", + "Registration" : "등록", + "Default group that all registered users belong" : "모든 등록 사용자가 속한 기본 그룹", "None" : "없음", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:

\n{link}", "Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.", "Username" : "사용자 이름", "Password" : "암호", diff --git a/l10n/ko.json b/l10n/ko.json index 9075064..cda47d7 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -2,13 +2,20 @@ "Register" : "등록", "Email address you entered is not valid" : "입력한 이메일 주소가 올바르지 않음", "There is already a pending registration with this email" : "입력한 이메일 주소로 가입 대기 중", + "There is an existing user with this email" : "같은 이메일을 사용하는 사용자가 이미 존재함", "Verify your ownCloud registration request" : "ownCloud 가입 요청 확인", "Verification email successfully sent." : "확인 이메일을 보냈습니다.", "Invalid verification URL. No registration request with this verification URL is found." : "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.", "Unable to create user, there are problems with user backend." : "사용자 백엔드 오류로 사용자를 등록할 수 없습니다.", + "Unable to set user email: " : "사용자 이메일을 설정할 수 없음: ", + "Failed to delete pending registration request" : "대기 중인 등록 요청을 삭제할 수 없음", "Your account has been successfully created, you can log in now." : "회원 가입이 완료되었으며 로그인할 수 있습니다.", "Your settings have been updated." : "설정이 업데이트 되었습니다.", + "No such group" : "그룹이 존재하지 않음", + "Registration" : "등록", + "Default group that all registered users belong" : "모든 등록 사용자가 속한 기본 그룹", "None" : "없음", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:

\n{link}", "Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.", "Username" : "사용자 이름", "Password" : "암호", diff --git a/l10n/ko.php b/l10n/ko.php index c09801c..b39d504 100644 --- a/l10n/ko.php +++ b/l10n/ko.php @@ -3,13 +3,20 @@ $TRANSLATIONS = array( "Register" => "등록", "Email address you entered is not valid" => "입력한 이메일 주소가 올바르지 않음", "There is already a pending registration with this email" => "입력한 이메일 주소로 가입 대기 중", +"There is an existing user with this email" => "같은 이메일을 사용하는 사용자가 이미 존재함", "Verify your ownCloud registration request" => "ownCloud 가입 요청 확인", "Verification email successfully sent." => "확인 이메일을 보냈습니다.", "Invalid verification URL. No registration request with this verification URL is found." => "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.", "Unable to create user, there are problems with user backend." => "사용자 백엔드 오류로 사용자를 등록할 수 없습니다.", +"Unable to set user email: " => "사용자 이메일을 설정할 수 없음: ", +"Failed to delete pending registration request" => "대기 중인 등록 요청을 삭제할 수 없음", "Your account has been successfully created, you can log in now." => "회원 가입이 완료되었으며 로그인할 수 있습니다.", "Your settings have been updated." => "설정이 업데이트 되었습니다.", +"No such group" => "그룹이 존재하지 않음", +"Registration" => "등록", +"Default group that all registered users belong" => "모든 등록 사용자가 속한 기본 그룹", "None" => "없음", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:

\n{link}", "Welcome, you can create your account below." => "안녕하세요, 아래에서 회원 가입할 수 있습니다.", "Username" => "사용자 이름", "Password" => "암호", diff --git a/l10n/nb_NO.js b/l10n/nb_NO.js index 16d573f..270854a 100644 --- a/l10n/nb_NO.js +++ b/l10n/nb_NO.js @@ -16,6 +16,7 @@ OC.L10N.register( "Registration" : "Registrering", "Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i", "None" : "Ingen", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Klkk denne lenken for å opprette en ny konto på ownCloud:

\n{link}", "Welcome, you can create your account below." : "Velkommen, du kan opprette kontoen din nedenfor.", "Username" : "Brukernavn", "Password" : "Passord", diff --git a/l10n/nb_NO.json b/l10n/nb_NO.json index 7082a26..55e4ac9 100644 --- a/l10n/nb_NO.json +++ b/l10n/nb_NO.json @@ -14,6 +14,7 @@ "Registration" : "Registrering", "Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i", "None" : "Ingen", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Klkk denne lenken for å opprette en ny konto på ownCloud:

\n{link}", "Welcome, you can create your account below." : "Velkommen, du kan opprette kontoen din nedenfor.", "Username" : "Brukernavn", "Password" : "Passord", diff --git a/l10n/nb_NO.php b/l10n/nb_NO.php index a4af73e..5d205ff 100644 --- a/l10n/nb_NO.php +++ b/l10n/nb_NO.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Registration" => "Registrering", "Default group that all registered users belong" => "Standard gruppe som alle registrerte brukere er med i", "None" => "Ingen", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Klkk denne lenken for å opprette en ny konto på ownCloud:

\n{link}", "Welcome, you can create your account below." => "Velkommen, du kan opprette kontoen din nedenfor.", "Username" => "Brukernavn", "Password" => "Passord", diff --git a/l10n/nl.js b/l10n/nl.js index f4f85df..8dde339 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Verificatie e-mailbericht succesvol verstuurd.", "Invalid verification URL. No registration request with this verification URL is found." : "Ongeldige verificatie URL. Er is geen aanvraag voor registratie met deze URL gevonden.", "Unable to create user, there are problems with user backend." : "Kan gebruikersaccount niet creëren, er zijn problemen met gebruiker's backend.", + "Unable to set user email: " : "Kan e-mailadres van gebruiker niet instellen:", "Failed to delete pending registration request" : "Verwijderen van de lopende registratieaanvraag is niet gelukt ", "Your account has been successfully created, you can log in now." : "Er is met succes een account voor u gemaakt, u kunt nu inloggen.", "Your settings have been updated." : "Uw instellingen zijn bijgewerkt", diff --git a/l10n/nl.json b/l10n/nl.json index 9c32644..31f6f05 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Verificatie e-mailbericht succesvol verstuurd.", "Invalid verification URL. No registration request with this verification URL is found." : "Ongeldige verificatie URL. Er is geen aanvraag voor registratie met deze URL gevonden.", "Unable to create user, there are problems with user backend." : "Kan gebruikersaccount niet creëren, er zijn problemen met gebruiker's backend.", + "Unable to set user email: " : "Kan e-mailadres van gebruiker niet instellen:", "Failed to delete pending registration request" : "Verwijderen van de lopende registratieaanvraag is niet gelukt ", "Your account has been successfully created, you can log in now." : "Er is met succes een account voor u gemaakt, u kunt nu inloggen.", "Your settings have been updated." : "Uw instellingen zijn bijgewerkt", diff --git a/l10n/nl.php b/l10n/nl.php index fbb99e0..5584859 100644 --- a/l10n/nl.php +++ b/l10n/nl.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Verificatie e-mailbericht succesvol verstuurd.", "Invalid verification URL. No registration request with this verification URL is found." => "Ongeldige verificatie URL. Er is geen aanvraag voor registratie met deze URL gevonden.", "Unable to create user, there are problems with user backend." => "Kan gebruikersaccount niet creëren, er zijn problemen met gebruiker's backend.", +"Unable to set user email: " => "Kan e-mailadres van gebruiker niet instellen:", "Failed to delete pending registration request" => "Verwijderen van de lopende registratieaanvraag is niet gelukt ", "Your account has been successfully created, you can log in now." => "Er is met succes een account voor u gemaakt, u kunt nu inloggen.", "Your settings have been updated." => "Uw instellingen zijn bijgewerkt", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index ae5c6c4..bdd06e4 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "Verificação de email enviado com sucesso.", "Invalid verification URL. No registration request with this verification URL is found." : "URL de verificação inválido. Nenhum pedido de registro com este URL de verificação foi encontrado.", "Unable to create user, there are problems with user backend." : "Não é possível criar usuário, há problemas com backend do usuário.", + "Unable to set user email: " : "Não é possível definir um e-mail para o usuário:", "Failed to delete pending registration request" : "Falha ao excluir o pedido de registro pendente", "Your account has been successfully created, you can log in now." : "Sua conta foi criada com sucesso, você pode fazer login agora.", "Your settings have been updated." : "Suas configurações foram atualizadas.", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 0fc331a..89b3659 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "Verificação de email enviado com sucesso.", "Invalid verification URL. No registration request with this verification URL is found." : "URL de verificação inválido. Nenhum pedido de registro com este URL de verificação foi encontrado.", "Unable to create user, there are problems with user backend." : "Não é possível criar usuário, há problemas com backend do usuário.", + "Unable to set user email: " : "Não é possível definir um e-mail para o usuário:", "Failed to delete pending registration request" : "Falha ao excluir o pedido de registro pendente", "Your account has been successfully created, you can log in now." : "Sua conta foi criada com sucesso, você pode fazer login agora.", "Your settings have been updated." : "Suas configurações foram atualizadas.", diff --git a/l10n/pt_BR.php b/l10n/pt_BR.php index 5117f63..00b7540 100644 --- a/l10n/pt_BR.php +++ b/l10n/pt_BR.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Verificação de email enviado com sucesso.", "Invalid verification URL. No registration request with this verification URL is found." => "URL de verificação inválido. Nenhum pedido de registro com este URL de verificação foi encontrado.", "Unable to create user, there are problems with user backend." => "Não é possível criar usuário, há problemas com backend do usuário.", +"Unable to set user email: " => "Não é possível definir um e-mail para o usuário:", "Failed to delete pending registration request" => "Falha ao excluir o pedido de registro pendente", "Your account has been successfully created, you can log in now." => "Sua conta foi criada com sucesso, você pode fazer login agora.", "Your settings have been updated." => "Suas configurações foram atualizadas.", diff --git a/l10n/sk_SK.js b/l10n/sk_SK.js index 54232fd..e90ba33 100644 --- a/l10n/sk_SK.js +++ b/l10n/sk_SK.js @@ -4,16 +4,19 @@ OC.L10N.register( "Register" : "Zaregistrovať sa", "Email address you entered is not valid" : "Zadaná emailová adresa nie je správna", "There is already a pending registration with this email" : "Registrácia s touto emailovou adresou už čaká na overenie registrácie", + "There is an existing user with this email" : "Používateľ s touto emailovou adresou už existuje", "Verify your ownCloud registration request" : "Overte svoju požiadavku na registráciu do ownCloud", "Verification email successfully sent." : "Overovací email bol úspešne odoslaný.", "Invalid verification URL. No registration request with this verification URL is found." : "Neplatná overovacia URL. Nebola nájdená žiadna požiadavka o registráciu pre túto overovaciu URL.", "Unable to create user, there are problems with user backend." : "Nedá sa vytvoriť používateľský účet. Nastala chyba v používateľskom backende.", + "Failed to delete pending registration request" : "Zlyhalo zmazanie čakajúcich žiadostí na registráciu", "Your account has been successfully created, you can log in now." : "Váš účet bol vytvorený, teraz sa môžete prihlásiť.", "Your settings have been updated." : "Vaše nastavenia boli aktualizované.", "No such group" : "Takáto skupina neexistuje", "Registration" : "Registrácia", "Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov", "None" : "Žiadny", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Pre vytvorenie nového účtu v ownCloude kliknite na nasledujúci odkaz:

\n{link}", "Welcome, you can create your account below." : "Vitajte. Účet si môžete založiť nižšie.", "Username" : "Používateľské meno", "Password" : "Heslo", diff --git a/l10n/sk_SK.json b/l10n/sk_SK.json index 9f53388..df5b336 100644 --- a/l10n/sk_SK.json +++ b/l10n/sk_SK.json @@ -2,16 +2,19 @@ "Register" : "Zaregistrovať sa", "Email address you entered is not valid" : "Zadaná emailová adresa nie je správna", "There is already a pending registration with this email" : "Registrácia s touto emailovou adresou už čaká na overenie registrácie", + "There is an existing user with this email" : "Používateľ s touto emailovou adresou už existuje", "Verify your ownCloud registration request" : "Overte svoju požiadavku na registráciu do ownCloud", "Verification email successfully sent." : "Overovací email bol úspešne odoslaný.", "Invalid verification URL. No registration request with this verification URL is found." : "Neplatná overovacia URL. Nebola nájdená žiadna požiadavka o registráciu pre túto overovaciu URL.", "Unable to create user, there are problems with user backend." : "Nedá sa vytvoriť používateľský účet. Nastala chyba v používateľskom backende.", + "Failed to delete pending registration request" : "Zlyhalo zmazanie čakajúcich žiadostí na registráciu", "Your account has been successfully created, you can log in now." : "Váš účet bol vytvorený, teraz sa môžete prihlásiť.", "Your settings have been updated." : "Vaše nastavenia boli aktualizované.", "No such group" : "Takáto skupina neexistuje", "Registration" : "Registrácia", "Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov", "None" : "Žiadny", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Pre vytvorenie nového účtu v ownCloude kliknite na nasledujúci odkaz:

\n{link}", "Welcome, you can create your account below." : "Vitajte. Účet si môžete založiť nižšie.", "Username" : "Používateľské meno", "Password" : "Heslo", diff --git a/l10n/sk_SK.php b/l10n/sk_SK.php index 3365038..0424bbd 100644 --- a/l10n/sk_SK.php +++ b/l10n/sk_SK.php @@ -3,16 +3,19 @@ $TRANSLATIONS = array( "Register" => "Zaregistrovať sa", "Email address you entered is not valid" => "Zadaná emailová adresa nie je správna", "There is already a pending registration with this email" => "Registrácia s touto emailovou adresou už čaká na overenie registrácie", +"There is an existing user with this email" => "Používateľ s touto emailovou adresou už existuje", "Verify your ownCloud registration request" => "Overte svoju požiadavku na registráciu do ownCloud", "Verification email successfully sent." => "Overovací email bol úspešne odoslaný.", "Invalid verification URL. No registration request with this verification URL is found." => "Neplatná overovacia URL. Nebola nájdená žiadna požiadavka o registráciu pre túto overovaciu URL.", "Unable to create user, there are problems with user backend." => "Nedá sa vytvoriť používateľský účet. Nastala chyba v používateľskom backende.", +"Failed to delete pending registration request" => "Zlyhalo zmazanie čakajúcich žiadostí na registráciu", "Your account has been successfully created, you can log in now." => "Váš účet bol vytvorený, teraz sa môžete prihlásiť.", "Your settings have been updated." => "Vaše nastavenia boli aktualizované.", "No such group" => "Takáto skupina neexistuje", "Registration" => "Registrácia", "Default group that all registered users belong" => "Základná skupina pre všetkých novo zaregistrovaných používateľov", "None" => "Žiadny", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Pre vytvorenie nového účtu v ownCloude kliknite na nasledujúci odkaz:

\n{link}", "Welcome, you can create your account below." => "Vitajte. Účet si môžete založiť nižšie.", "Username" => "Používateľské meno", "Password" => "Heslo", diff --git a/l10n/sr.js b/l10n/sr.js index 858ce23..c42504d 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -9,12 +9,15 @@ OC.L10N.register( "Verification email successfully sent." : "Порука за потврду је успешно послата", "Invalid verification URL. No registration request with this verification URL is found." : "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.", "Unable to create user, there are problems with user backend." : "Не могу да створим корисника. Постоји проблем са позадином за корисника.", + "Unable to set user email: " : "Не могу да поставим е-адресу корисника:", + "Failed to delete pending registration request" : "Неуспело брисање текућег захтева за регистрацију", "Your account has been successfully created, you can log in now." : "Ваш налог је успешно створен. Можете се пријавити сада.", "Your settings have been updated." : "Поставке су ажуриране.", "No such group" : "Нема такве групе", "Registration" : "Регистрација", "Default group that all registered users belong" : "Подразумевана група где сви корисници припадају", "None" : "Ништа", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Да направите нови налог на оунКлауду, кликните на следећу везу:

\n{link}", "Welcome, you can create your account below." : "Добро дошли. Испод можете направити ваш налог.", "Username" : "Корисничко име", "Password" : "Лозинка", diff --git a/l10n/sr.json b/l10n/sr.json index 6c46af4..91508b2 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -7,12 +7,15 @@ "Verification email successfully sent." : "Порука за потврду је успешно послата", "Invalid verification URL. No registration request with this verification URL is found." : "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.", "Unable to create user, there are problems with user backend." : "Не могу да створим корисника. Постоји проблем са позадином за корисника.", + "Unable to set user email: " : "Не могу да поставим е-адресу корисника:", + "Failed to delete pending registration request" : "Неуспело брисање текућег захтева за регистрацију", "Your account has been successfully created, you can log in now." : "Ваш налог је успешно створен. Можете се пријавити сада.", "Your settings have been updated." : "Поставке су ажуриране.", "No such group" : "Нема такве групе", "Registration" : "Регистрација", "Default group that all registered users belong" : "Подразумевана група где сви корисници припадају", "None" : "Ништа", + "To create a new account on ownCloud, just click the following link:

\n{link}" : "Да направите нови налог на оунКлауду, кликните на следећу везу:

\n{link}", "Welcome, you can create your account below." : "Добро дошли. Испод можете направити ваш налог.", "Username" : "Корисничко име", "Password" : "Лозинка", diff --git a/l10n/sr.php b/l10n/sr.php index c33822e..051914a 100644 --- a/l10n/sr.php +++ b/l10n/sr.php @@ -8,12 +8,15 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "Порука за потврду је успешно послата", "Invalid verification URL. No registration request with this verification URL is found." => "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.", "Unable to create user, there are problems with user backend." => "Не могу да створим корисника. Постоји проблем са позадином за корисника.", +"Unable to set user email: " => "Не могу да поставим е-адресу корисника:", +"Failed to delete pending registration request" => "Неуспело брисање текућег захтева за регистрацију", "Your account has been successfully created, you can log in now." => "Ваш налог је успешно створен. Можете се пријавити сада.", "Your settings have been updated." => "Поставке су ажуриране.", "No such group" => "Нема такве групе", "Registration" => "Регистрација", "Default group that all registered users belong" => "Подразумевана група где сви корисници припадају", "None" => "Ништа", +"To create a new account on ownCloud, just click the following link:

\n{link}" => "Да направите нови налог на оунКлауду, кликните на следећу везу:

\n{link}", "Welcome, you can create your account below." => "Добро дошли. Испод можете направити ваш налог.", "Username" => "Корисничко име", "Password" => "Лозинка", diff --git a/l10n/th_TH.js b/l10n/th_TH.js index 61d4d32..4d69f74 100644 --- a/l10n/th_TH.js +++ b/l10n/th_TH.js @@ -9,6 +9,7 @@ OC.L10N.register( "Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว", "Invalid verification URL. No registration request with this verification URL is found." : "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน", "Unable to create user, there are problems with user backend." : "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้", + "Unable to set user email: " : "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:", "Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ", "Your account has been successfully created, you can log in now." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ เข้าสู่ระบบได้ที่นี่", "Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง", diff --git a/l10n/th_TH.json b/l10n/th_TH.json index 5d475dc..9c4ecaa 100644 --- a/l10n/th_TH.json +++ b/l10n/th_TH.json @@ -7,6 +7,7 @@ "Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว", "Invalid verification URL. No registration request with this verification URL is found." : "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน", "Unable to create user, there are problems with user backend." : "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้", + "Unable to set user email: " : "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:", "Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ", "Your account has been successfully created, you can log in now." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ เข้าสู่ระบบได้ที่นี่", "Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง", diff --git a/l10n/th_TH.php b/l10n/th_TH.php index 6426ba0..34c53ff 100644 --- a/l10n/th_TH.php +++ b/l10n/th_TH.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Verification email successfully sent." => "ส่งอีเมลยืนยันเรียบร้อยแล้ว", "Invalid verification URL. No registration request with this verification URL is found." => "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน", "Unable to create user, there are problems with user backend." => "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้", +"Unable to set user email: " => "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:", "Failed to delete pending registration request" => "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ", "Your account has been successfully created, you can log in now." => "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ เข้าสู่ระบบได้ที่นี่", "Your settings have been updated." => "การตั้งค่าของคุณได้รับการปรับปรุง",