Fix merge conflict

This commit is contained in:
Johannes Starosta 2015-08-01 10:19:58 +02:00
commit 5b9f0f0286
61 changed files with 131 additions and 15 deletions

View File

@ -5,6 +5,6 @@
<description>User registration</description> <description>User registration</description>
<licence>AGPL</licence> <licence>AGPL</licence>
<author>Pellaeon Lin</author> <author>Pellaeon Lin</author>
<version>0.0.3</version> <version>0.0.4</version>
<requiremin>8.0.0</requiremin> <requiremin>8.0.0</requiremin>
</info> </info>

View File

@ -1 +1 @@
0.0.3 0.0.4

View File

@ -130,7 +130,7 @@ class RegisterController extends Controller {
$msg = $res->render(); $msg = $res->render();
try { try {
$this->mail->sendMail($email, 'ownCloud User', $this->l10n->t('Verify your ownCloud registration request'), $msg, $from, 'ownCloud'); $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.'); \OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.');
return; return;
} }
@ -177,11 +177,12 @@ class RegisterController extends Controller {
$password = $this->request->getParam('password'); $password = $this->request->getParam('password');
try { try {
$user = $this->usermanager->createUser($username, $password); $user = $this->usermanager->createUser($username, $password);
} catch (Exception $e) { } catch (\Exception $e) {
return new TemplateResponse('registration', 'form', return new TemplateResponse('registration', 'form',
array('email' => $email, array('email' => $email,
'entered_data' => array('username' => $username), 'entered_data' => array('username' => $username),
'errormsgs' => array($e->message, $username, $password)), 'guest'); 'errormsgs' => array($e->getMessage()),
'token' => $token), 'guest');
} }
if ( $user === false ) { if ( $user === false ) {
return new TemplateResponse('', 'error', array( return new TemplateResponse('', 'error', array(
@ -194,11 +195,13 @@ class RegisterController extends Controller {
// Set user email // Set user email
try { try {
$this->config->setUserValue($user->getUID(), 'settings', 'email', $email); $this->config->setUserValue($user->getUID(), 'settings', 'email', $email);
} catch (Exception $e) { } catch (\Exception $e) {
return new TemplateResponse('registration', 'form', return new TemplateResponse('', 'error', array(
array('email' => $email, 'errors' => array(array(
'entered_data' => array('username' => $username), 'error' => $this->l10n->t('Unable to set user email: '.$e->getMessage()),
'errormsgs' => array($e->message, $username, $password)), 'guest'); 'hint' => ''
))
), 'error');
} }
// Add user to group // Add user to group
@ -207,7 +210,7 @@ class RegisterController extends Controller {
try { try {
$group = $this->groupmanager->get($registered_user_group); $group = $this->groupmanager->get($registered_user_group);
$group->addUser($user); $group->addUser($user);
} catch (Exception $e) { } catch (\Exception $e) {
return new TemplateResponse('', 'error', array( return new TemplateResponse('', 'error', array(
'errors' => array(array( 'errors' => array(array(
'error' => $e->message, 'error' => $e->message,

View File

@ -21,7 +21,11 @@ class PendingRegist {
public function save($email) { public function save($email) {
$query = $this->db->prepareQuery( 'INSERT INTO `*PREFIX*registration`' $query = $this->db->prepareQuery( 'INSERT INTO `*PREFIX*registration`'
.' ( `email`, `token`, `requested` ) VALUES( ?, ?, NOW() )' ); .' ( `email`, `token`, `requested` ) VALUES( ?, ?, NOW() )' );
do {
$token = $this->random->generate(30); $token = $this->random->generate(30);
} while (preg_match('/[\/]++/', $token));
$query->execute(array( $email, $token )); $query->execute(array( $email, $token ));
return $token; return $token;
} }

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Ověřovací email úspěšně odeslán.", "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.", "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 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", "Failed to delete pending registration request" : "Selhalo smazání čekajících požadavků na registraci",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Váš účet byl úspěšně vytvořen, můžete se nyní <a href=\"{link}\">přihlásit</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Váš účet byl úspěšně vytvořen, můžete se nyní <a href=\"{link}\">přihlásit</a>.",
"Your settings have been updated." : "Vaše nastavení bylo aktualizováno.", "Your settings have been updated." : "Vaše nastavení bylo aktualizováno.",
@ -16,6 +17,7 @@ OC.L10N.register(
"Registration" : "Registrace", "Registration" : "Registrace",
"Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele", "Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele",
"None" : "Žádné", "None" : "Žádné",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Pro vytvoření nového účtu v ownCloud klikněte na následující odkaz:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Vítejte, svůj účet si můžete založit níže.", "Welcome, you can create your account below." : "Vítejte, svůj účet si můžete založit níže.",
"Username" : "Uživatelské jméno", "Username" : "Uživatelské jméno",
"Password" : "Heslo", "Password" : "Heslo",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Ověřovací email úspěšně odeslán.", "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.", "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 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", "Failed to delete pending registration request" : "Selhalo smazání čekajících požadavků na registraci",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Váš účet byl úspěšně vytvořen, můžete se nyní <a href=\"{link}\">přihlásit</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Váš účet byl úspěšně vytvořen, můžete se nyní <a href=\"{link}\">přihlásit</a>.",
"Your settings have been updated." : "Vaše nastavení bylo aktualizováno.", "Your settings have been updated." : "Vaše nastavení bylo aktualizováno.",
@ -14,6 +15,7 @@
"Registration" : "Registrace", "Registration" : "Registrace",
"Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele", "Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele",
"None" : "Žádné", "None" : "Žádné",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Pro vytvoření nového účtu v ownCloud klikněte na následující odkaz:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Vítejte, svůj účet si můžete založit níže.", "Welcome, you can create your account below." : "Vítejte, svůj účet si můžete založit níže.",
"Username" : "Uživatelské jméno", "Username" : "Uživatelské jméno",
"Password" : "Heslo", "Password" : "Heslo",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Ověřovací email úspěšně odeslán.", "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.", "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 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", "Failed to delete pending registration request" => "Selhalo smazání čekajících požadavků na registraci",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Váš účet byl úspěšně vytvořen, můžete se nyní <a href=\"{link}\">přihlásit</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Váš účet byl úspěšně vytvořen, můžete se nyní <a href=\"{link}\">přihlásit</a>.",
"Your settings have been updated." => "Vaše nastavení bylo aktualizováno.", "Your settings have been updated." => "Vaše nastavení bylo aktualizováno.",
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
"Registration" => "Registrace", "Registration" => "Registrace",
"Default group that all registered users belong" => "Výchozí skupina pro všechny nově registrované uživatele", "Default group that all registered users belong" => "Výchozí skupina pro všechny nově registrované uživatele",
"None" => "Žádné", "None" => "Žádné",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Pro vytvoření nového účtu v ownCloud klikněte na následující odkaz:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Vítejte, svůj účet si můžete založit níže.", "Welcome, you can create your account below." => "Vítejte, svůj účet si můžete založit níže.",
"Username" => "Uživatelské jméno", "Username" => "Uživatelské jméno",
"Password" => "Heslo", "Password" => "Heslo",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Bekræftelse er blevet sendt med e-mail.", "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.", "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 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", "Failed to delete pending registration request" : "Det lykkedes ikke at slette ventende registreringsanmodning",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Din konto er blevet oprettet, og du kan <a href=\"{link}\">logge ind nu</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Din konto er blevet oprettet, og du kan <a href=\"{link}\">logge ind nu</a>.",
"Your settings have been updated." : "Dine indstillinger er blevet opdateret.", "Your settings have been updated." : "Dine indstillinger er blevet opdateret.",
@ -16,6 +17,7 @@ OC.L10N.register(
"Registration" : "Tilmelding", "Registration" : "Tilmelding",
"Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til", "Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til",
"None" : "Ingen", "None" : "Ingen",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "For at oprette en ny konto på ownCloud, klik følgende link:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Velkommen, du kan oprette din konto nedenfor.", "Welcome, you can create your account below." : "Velkommen, du kan oprette din konto nedenfor.",
"Username" : "Brugernavn", "Username" : "Brugernavn",
"Password" : "Adgangskode", "Password" : "Adgangskode",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Bekræftelse er blevet sendt med e-mail.", "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.", "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 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", "Failed to delete pending registration request" : "Det lykkedes ikke at slette ventende registreringsanmodning",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Din konto er blevet oprettet, og du kan <a href=\"{link}\">logge ind nu</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Din konto er blevet oprettet, og du kan <a href=\"{link}\">logge ind nu</a>.",
"Your settings have been updated." : "Dine indstillinger er blevet opdateret.", "Your settings have been updated." : "Dine indstillinger er blevet opdateret.",
@ -14,6 +15,7 @@
"Registration" : "Tilmelding", "Registration" : "Tilmelding",
"Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til", "Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til",
"None" : "Ingen", "None" : "Ingen",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "For at oprette en ny konto på ownCloud, klik følgende link:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Velkommen, du kan oprette din konto nedenfor.", "Welcome, you can create your account below." : "Velkommen, du kan oprette din konto nedenfor.",
"Username" : "Brugernavn", "Username" : "Brugernavn",
"Password" : "Adgangskode", "Password" : "Adgangskode",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Bekræftelse er blevet sendt med e-mail.", "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.", "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 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", "Failed to delete pending registration request" => "Det lykkedes ikke at slette ventende registreringsanmodning",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Din konto er blevet oprettet, og du kan <a href=\"{link}\">logge ind nu</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Din konto er blevet oprettet, og du kan <a href=\"{link}\">logge ind nu</a>.",
"Your settings have been updated." => "Dine indstillinger er blevet opdateret.", "Your settings have been updated." => "Dine indstillinger er blevet opdateret.",
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
"Registration" => "Tilmelding", "Registration" => "Tilmelding",
"Default group that all registered users belong" => "Standardgruppen som alle tilmeldte brugere hører til", "Default group that all registered users belong" => "Standardgruppen som alle tilmeldte brugere hører til",
"None" => "Ingen", "None" => "Ingen",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "For at oprette en ny konto på ownCloud, klik følgende link:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Velkommen, du kan oprette din konto nedenfor.", "Welcome, you can create your account below." => "Velkommen, du kan oprette din konto nedenfor.",
"Username" => "Brugernavn", "Username" => "Brugernavn",
"Password" => "Adgangskode", "Password" => "Adgangskode",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "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.", "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 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", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Dein Konto wurde erfolgreich erstellt, Du kannst dich <a href=\"{link}\">jetzt anmelden</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Dein Konto wurde erfolgreich erstellt, Du kannst dich <a href=\"{link}\">jetzt anmelden</a>.",
"Your settings have been updated." : "Deine Einstellungen wurden aktualisiert.", "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", "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
"Save" : "Speichern", "Save" : "Speichern",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Bitte klicke auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.", "Welcome, you can create your account below." : "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.",
"Username" : "Benutzername", "Username" : "Benutzername",
"Password" : "Passwort", "Password" : "Passwort",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "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.", "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 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", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Dein Konto wurde erfolgreich erstellt, Du kannst dich <a href=\"{link}\">jetzt anmelden</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Dein Konto wurde erfolgreich erstellt, Du kannst dich <a href=\"{link}\">jetzt anmelden</a>.",
"Your settings have been updated." : "Deine Einstellungen wurden aktualisiert.", "Your settings have been updated." : "Deine Einstellungen wurden aktualisiert.",
@ -18,6 +19,7 @@
"Allowed domains for registration" : "Für Registrierung freigeschaltete Domains", "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
"Save" : "Speichern", "Save" : "Speichern",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Bitte klicke auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.", "Welcome, you can create your account below." : "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.",
"Username" : "Benutzername", "Username" : "Benutzername",
"Password" : "Passwort", "Password" : "Passwort",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "E-Mail zur Bestätigung erfolgreich gesendet.", "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.", "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 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", "Failed to delete pending registration request" => "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Dein Konto wurde erfolgreich erstellt, Du kannst dich <a href=\"{link}\">jetzt anmelden</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Dein Konto wurde erfolgreich erstellt, Du kannst dich <a href=\"{link}\">jetzt anmelden</a>.",
"Your settings have been updated." => "Deine Einstellungen wurden aktualisiert.", "Your settings have been updated." => "Deine Einstellungen wurden aktualisiert.",
@ -19,6 +20,7 @@ $TRANSLATIONS = array(
"Allowed domains for registration" => "Für Registrierung freigeschaltete Domains", "Allowed domains for registration" => "Für Registrierung freigeschaltete Domains",
"Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:", "Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:",
"Save" => "Speichern", "Save" => "Speichern",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Bitte klicke auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.", "Welcome, you can create your account below." => "Willkommen, Du kannst im unteren Teil Dein Konto anlegen.",
"Username" => "Benutzername", "Username" => "Benutzername",
"Password" => "Passwort", "Password" => "Passwort",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "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.", "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 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", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ihr Konto wurde erfolgreich erstellt, Sie können sich <a href=\"{link}\">jetzt anmelden</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ihr Konto wurde erfolgreich erstellt, Sie können sich <a href=\"{link}\">jetzt anmelden</a>.",
"Your settings have been updated." : "Ihre Einstellungen wurden aktualisiert.", "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", "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
"Save" : "Speichern", "Save" : "Speichern",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Bitte klicken Sie auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.", "Welcome, you can create your account below." : "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.",
"Username" : "Benutzername", "Username" : "Benutzername",
"Password" : "Passwort", "Password" : "Passwort",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.", "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.", "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 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", "Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ihr Konto wurde erfolgreich erstellt, Sie können sich <a href=\"{link}\">jetzt anmelden</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ihr Konto wurde erfolgreich erstellt, Sie können sich <a href=\"{link}\">jetzt anmelden</a>.",
"Your settings have been updated." : "Ihre Einstellungen wurden aktualisiert.", "Your settings have been updated." : "Ihre Einstellungen wurden aktualisiert.",
@ -18,6 +19,8 @@
"Allowed domains for registration" : "Für Registrierung freigeschaltete Domains", "Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:", "Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
"Save" : "Speichern", "Save" : "Speichern",
=======
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Bitte klicken Sie auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.", "Welcome, you can create your account below." : "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.",
"Username" : "Benutzername", "Username" : "Benutzername",
"Password" : "Passwort", "Password" : "Passwort",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "E-Mail zur Bestätigung erfolgreich gesendet.", "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.", "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 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", "Failed to delete pending registration request" => "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Ihr Konto wurde erfolgreich erstellt, Sie können sich <a href=\"{link}\">jetzt anmelden</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Ihr Konto wurde erfolgreich erstellt, Sie können sich <a href=\"{link}\">jetzt anmelden</a>.",
"Your settings have been updated." => "Ihre Einstellungen wurden aktualisiert.", "Your settings have been updated." => "Ihre Einstellungen wurden aktualisiert.",
@ -19,6 +20,7 @@ $TRANSLATIONS = array(
"Allowed domains for registration" => "Für Registrierung freigeschaltete Domains", "Allowed domains for registration" => "Für Registrierung freigeschaltete Domains",
"Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:", "Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:",
"Save" => "Speichern", "Save" => "Speichern",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Bitte klicken Sie auf den folgenden Link, um ein neues ownCloud-Konto zu erstellen:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.", "Welcome, you can create your account below." => "Willkommen, Sie können im unteren Teil Ihr Konto anlegen.",
"Username" => "Benutzername", "Username" => "Benutzername",
"Password" => "Passwort", "Password" => "Passwort",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Mensaje de verificación enviado con éxito.", "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.", "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 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", "Failed to delete pending registration request" : "Fallo al eliminar la petición de registro pendiente",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Su cuenta ha sido creada, puede <a href=\"{link}\">ingresar ahora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Su cuenta ha sido creada, puede <a href=\"{link}\">ingresar ahora</a>.",
"Your settings have been updated." : "Sus ajustes han sido actualizados.", "Your settings have been updated." : "Sus ajustes han sido actualizados.",
@ -16,6 +17,7 @@ OC.L10N.register(
"Registration" : "Registro", "Registration" : "Registro",
"Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados", "Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados",
"None" : "Ninguno", "None" : "Ninguno",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Para crear una nueva cuenta en ownCloud, solo haga clic en el siguiente enlace: <br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Bienvenido, puede crear una cuenta más abajo.", "Welcome, you can create your account below." : "Bienvenido, puede crear una cuenta más abajo.",
"Username" : "Nombre de usuario", "Username" : "Nombre de usuario",
"Password" : "Contraseña", "Password" : "Contraseña",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Mensaje de verificación enviado con éxito.", "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.", "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 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", "Failed to delete pending registration request" : "Fallo al eliminar la petición de registro pendiente",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Su cuenta ha sido creada, puede <a href=\"{link}\">ingresar ahora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Su cuenta ha sido creada, puede <a href=\"{link}\">ingresar ahora</a>.",
"Your settings have been updated." : "Sus ajustes han sido actualizados.", "Your settings have been updated." : "Sus ajustes han sido actualizados.",
@ -14,6 +15,7 @@
"Registration" : "Registro", "Registration" : "Registro",
"Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados", "Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados",
"None" : "Ninguno", "None" : "Ninguno",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Para crear una nueva cuenta en ownCloud, solo haga clic en el siguiente enlace: <br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Bienvenido, puede crear una cuenta más abajo.", "Welcome, you can create your account below." : "Bienvenido, puede crear una cuenta más abajo.",
"Username" : "Nombre de usuario", "Username" : "Nombre de usuario",
"Password" : "Contraseña", "Password" : "Contraseña",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Mensaje de verificación enviado con éxito.", "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.", "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 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", "Failed to delete pending registration request" => "Fallo al eliminar la petición de registro pendiente",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Su cuenta ha sido creada, puede <a href=\"{link}\">ingresar ahora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Su cuenta ha sido creada, puede <a href=\"{link}\">ingresar ahora</a>.",
"Your settings have been updated." => "Sus ajustes han sido actualizados.", "Your settings have been updated." => "Sus ajustes han sido actualizados.",
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
"Registration" => "Registro", "Registration" => "Registro",
"Default group that all registered users belong" => "Grupo predeterminado al cual pertenecen todos los usuarios registrados", "Default group that all registered users belong" => "Grupo predeterminado al cual pertenecen todos los usuarios registrados",
"None" => "Ninguno", "None" => "Ninguno",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Para crear una nueva cuenta en ownCloud, solo haga clic en el siguiente enlace: <br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Bienvenido, puede crear una cuenta más abajo.", "Welcome, you can create your account below." => "Bienvenido, puede crear una cuenta más abajo.",
"Username" => "Nombre de usuario", "Username" => "Nombre de usuario",
"Password" => "Contraseña", "Password" => "Contraseña",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Kinnituskiri on saadetud.", "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.", "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 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", "Failed to delete pending registration request" : "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sinu konto on loodud, sa võid <a href=\"{link}\">kohe sisse logida</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sinu konto on loodud, sa võid <a href=\"{link}\">kohe sisse logida</a>.",
"Your settings have been updated." : "Seaded on uuendatud.", "Your settings have been updated." : "Seaded on uuendatud.",
@ -16,6 +17,7 @@ OC.L10N.register(
"Registration" : "Registreerumine", "Registration" : "Registreerumine",
"Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse", "Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse",
"None" : "Pole", "None" : "Pole",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloudi uue kasutajakonto loomiseks kliki lihtsalt järgnevale lingile:\n<br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Teretulemast, sa võid konto luua allpool.", "Welcome, you can create your account below." : "Teretulemast, sa võid konto luua allpool.",
"Username" : "Kasutajanimi", "Username" : "Kasutajanimi",
"Password" : "Parool", "Password" : "Parool",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Kinnituskiri on saadetud.", "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.", "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 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", "Failed to delete pending registration request" : "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sinu konto on loodud, sa võid <a href=\"{link}\">kohe sisse logida</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sinu konto on loodud, sa võid <a href=\"{link}\">kohe sisse logida</a>.",
"Your settings have been updated." : "Seaded on uuendatud.", "Your settings have been updated." : "Seaded on uuendatud.",
@ -14,6 +15,7 @@
"Registration" : "Registreerumine", "Registration" : "Registreerumine",
"Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse", "Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse",
"None" : "Pole", "None" : "Pole",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloudi uue kasutajakonto loomiseks kliki lihtsalt järgnevale lingile:\n<br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Teretulemast, sa võid konto luua allpool.", "Welcome, you can create your account below." : "Teretulemast, sa võid konto luua allpool.",
"Username" : "Kasutajanimi", "Username" : "Kasutajanimi",
"Password" : "Parool", "Password" : "Parool",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Kinnituskiri on saadetud.", "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.", "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 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", "Failed to delete pending registration request" => "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Sinu konto on loodud, sa võid <a href=\"{link}\">kohe sisse logida</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Sinu konto on loodud, sa võid <a href=\"{link}\">kohe sisse logida</a>.",
"Your settings have been updated." => "Seaded on uuendatud.", "Your settings have been updated." => "Seaded on uuendatud.",
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
"Registration" => "Registreerumine", "Registration" => "Registreerumine",
"Default group that all registered users belong" => "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse", "Default group that all registered users belong" => "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse",
"None" => "Pole", "None" => "Pole",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "ownCloudi uue kasutajakonto loomiseks kliki lihtsalt järgnevale lingile:\n<br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Teretulemast, sa võid konto luua allpool.", "Welcome, you can create your account below." => "Teretulemast, sa võid konto luua allpool.",
"Username" => "Kasutajanimi", "Username" => "Kasutajanimi",
"Password" => "Parool", "Password" => "Parool",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Vahvistussähköposti lähetettiin onnistuneesti.", "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öä.", "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 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", "Failed to delete pending registration request" : "Odottavan rekisteröintipyynnön poistaminen epäonnistui",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Tilisi on luotu onnistuneesti. Voit <a href=\"{link}\">kirjautua sisään</a> nyt.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Tilisi on luotu onnistuneesti. Voit <a href=\"{link}\">kirjautua sisään</a> nyt.",
"Your settings have been updated." : "Asetuksesi on päivitetty.", "Your settings have been updated." : "Asetuksesi on päivitetty.",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Vahvistussähköposti lähetettiin onnistuneesti.", "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öä.", "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 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", "Failed to delete pending registration request" : "Odottavan rekisteröintipyynnön poistaminen epäonnistui",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Tilisi on luotu onnistuneesti. Voit <a href=\"{link}\">kirjautua sisään</a> nyt.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Tilisi on luotu onnistuneesti. Voit <a href=\"{link}\">kirjautua sisään</a> nyt.",
"Your settings have been updated." : "Asetuksesi on päivitetty.", "Your settings have been updated." : "Asetuksesi on päivitetty.",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Vahvistussähköposti lähetettiin onnistuneesti.", "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öä.", "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 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", "Failed to delete pending registration request" => "Odottavan rekisteröintipyynnön poistaminen epäonnistui",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Tilisi on luotu onnistuneesti. Voit <a href=\"{link}\">kirjautua sisään</a> nyt.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Tilisi on luotu onnistuneesti. Voit <a href=\"{link}\">kirjautua sisään</a> nyt.",
"Your settings have been updated." => "Asetuksesi on päivitetty.", "Your settings have been updated." => "Asetuksesi on päivitetty.",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Courriel de vérification envoyé avec succès.", "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.", "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 linfrastructure utilisateur.", "Unable to create user, there are problems with user backend." : "Impossible de créer l'utilisateur, problèmes avec linfrastructure 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", "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 <a href=\"{link}\">log in now</a>." : "Votre compte a bien été créé, vous pouvez maintenant <a href=\"{link}\">vous connecter</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Votre compte a bien été créé, vous pouvez maintenant <a href=\"{link}\">vous connecter</a>.",
"Your settings have been updated." : "Vos paramètres ont été mis à jour.", "Your settings have been updated." : "Vos paramètres ont été mis à jour.",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Courriel de vérification envoyé avec succès.", "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.", "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 linfrastructure utilisateur.", "Unable to create user, there are problems with user backend." : "Impossible de créer l'utilisateur, problèmes avec linfrastructure 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", "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 <a href=\"{link}\">log in now</a>." : "Votre compte a bien été créé, vous pouvez maintenant <a href=\"{link}\">vous connecter</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Votre compte a bien été créé, vous pouvez maintenant <a href=\"{link}\">vous connecter</a>.",
"Your settings have been updated." : "Vos paramètres ont été mis à jour.", "Your settings have been updated." : "Vos paramètres ont été mis à jour.",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Courriel de vérification envoyé avec succès.", "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.", "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 linfrastructure utilisateur.", "Unable to create user, there are problems with user backend." => "Impossible de créer l'utilisateur, problèmes avec linfrastructure 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", "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 <a href=\"{link}\">log in now</a>." => "Votre compte a bien été créé, vous pouvez maintenant <a href=\"{link}\">vous connecter</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Votre compte a bien été créé, vous pouvez maintenant <a href=\"{link}\">vous connecter</a>.",
"Your settings have been updated." => "Vos paramètres ont été mis à jour.", "Your settings have been updated." => "Vos paramètres ont été mis à jour.",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Correo de verificación enviado correctamente", "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.", "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 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", "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 <a href=\"{link}\">log in now</a>." : "A súa conta foi creada satisfactoriamente, pode <a href=\"{link}\">conectarse agora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "A súa conta foi creada satisfactoriamente, pode <a href=\"{link}\">conectarse agora</a>.",
"Your settings have been updated." : "Actualizaronse os axustes.", "Your settings have been updated." : "Actualizaronse os axustes.",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Correo de verificación enviado correctamente", "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.", "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 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", "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 <a href=\"{link}\">log in now</a>." : "A súa conta foi creada satisfactoriamente, pode <a href=\"{link}\">conectarse agora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "A súa conta foi creada satisfactoriamente, pode <a href=\"{link}\">conectarse agora</a>.",
"Your settings have been updated." : "Actualizaronse os axustes.", "Your settings have been updated." : "Actualizaronse os axustes.",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Correo de verificación enviado correctamente", "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.", "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 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", "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 <a href=\"{link}\">log in now</a>." => "A súa conta foi creada satisfactoriamente, pode <a href=\"{link}\">conectarse agora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "A súa conta foi creada satisfactoriamente, pode <a href=\"{link}\">conectarse agora</a>.",
"Your settings have been updated." => "Actualizaronse os axustes.", "Your settings have been updated." => "Actualizaronse os axustes.",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Email verifikasi berhasil dikirim", "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.", "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 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", "Failed to delete pending registration request" : "Gagal menghapus permintaan penundaan pendaftaran",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Akun Anda telah berhasil dibuat, Anda dapat <a href=\"{link}\">masuk sekarang</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Akun Anda telah berhasil dibuat, Anda dapat <a href=\"{link}\">masuk sekarang</a>.",
"Your settings have been updated." : "Pengaturan Anda telah diperbarui.", "Your settings have been updated." : "Pengaturan Anda telah diperbarui.",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Email verifikasi berhasil dikirim", "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.", "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 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", "Failed to delete pending registration request" : "Gagal menghapus permintaan penundaan pendaftaran",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Akun Anda telah berhasil dibuat, Anda dapat <a href=\"{link}\">masuk sekarang</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Akun Anda telah berhasil dibuat, Anda dapat <a href=\"{link}\">masuk sekarang</a>.",
"Your settings have been updated." : "Pengaturan Anda telah diperbarui.", "Your settings have been updated." : "Pengaturan Anda telah diperbarui.",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Email verifikasi berhasil dikirim", "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.", "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 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", "Failed to delete pending registration request" => "Gagal menghapus permintaan penundaan pendaftaran",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Akun Anda telah berhasil dibuat, Anda dapat <a href=\"{link}\">masuk sekarang</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Akun Anda telah berhasil dibuat, Anda dapat <a href=\"{link}\">masuk sekarang</a>.",
"Your settings have been updated." => "Pengaturan Anda telah diperbarui.", "Your settings have been updated." => "Pengaturan Anda telah diperbarui.",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Email di verifica inviata correttamente.", "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.", "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 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", "Failed to delete pending registration request" : "L'eliminazione della richiesta di registrazione in corso non è riuscita",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Il tuo account è stato creato correttamente, ora puoi <a href=\"{link}\">effettuare l'accesso</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Il tuo account è stato creato correttamente, ora puoi <a href=\"{link}\">effettuare l'accesso</a>.",
"Your settings have been updated." : "Le tue impostazioni sono state aggiornate.", "Your settings have been updated." : "Le tue impostazioni sono state aggiornate.",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Email di verifica inviata correttamente.", "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.", "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 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", "Failed to delete pending registration request" : "L'eliminazione della richiesta di registrazione in corso non è riuscita",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Il tuo account è stato creato correttamente, ora puoi <a href=\"{link}\">effettuare l'accesso</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Il tuo account è stato creato correttamente, ora puoi <a href=\"{link}\">effettuare l'accesso</a>.",
"Your settings have been updated." : "Le tue impostazioni sono state aggiornate.", "Your settings have been updated." : "Le tue impostazioni sono state aggiornate.",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Email di verifica inviata correttamente.", "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.", "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 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", "Failed to delete pending registration request" => "L'eliminazione della richiesta di registrazione in corso non è riuscita",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Il tuo account è stato creato correttamente, ora puoi <a href=\"{link}\">effettuare l'accesso</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Il tuo account è stato creato correttamente, ora puoi <a href=\"{link}\">effettuare l'accesso</a>.",
"Your settings have been updated." => "Le tue impostazioni sono state aggiornate.", "Your settings have been updated." => "Le tue impostazioni sono state aggiornate.",

View File

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

View File

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

View File

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

View File

@ -4,13 +4,20 @@ OC.L10N.register(
"Register" : "등록", "Register" : "등록",
"Email address you entered is not valid" : "입력한 이메일 주소가 올바르지 않음", "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 가입 요청 확인", "Verify your ownCloud registration request" : "ownCloud 가입 요청 확인",
"Verification email successfully sent." : "확인 이메일을 보냈습니다.", "Verification email successfully sent." : "확인 이메일을 보냈습니다.",
"Invalid verification URL. No registration request with this verification URL is found." : "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.", "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 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 <a href=\"{link}\">log in now</a>." : "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.",
"Your settings have been updated." : "설정이 업데이트 되었습니다.", "Your settings have been updated." : "설정이 업데이트 되었습니다.",
"No such group" : "그룹이 존재하지 않음",
"Registration" : "등록",
"Default group that all registered users belong" : "모든 등록 사용자가 속한 기본 그룹",
"None" : "없음", "None" : "없음",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.", "Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.",
"Username" : "사용자 이름", "Username" : "사용자 이름",
"Password" : "암호", "Password" : "암호",

View File

@ -2,13 +2,20 @@
"Register" : "등록", "Register" : "등록",
"Email address you entered is not valid" : "입력한 이메일 주소가 올바르지 않음", "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 가입 요청 확인", "Verify your ownCloud registration request" : "ownCloud 가입 요청 확인",
"Verification email successfully sent." : "확인 이메일을 보냈습니다.", "Verification email successfully sent." : "확인 이메일을 보냈습니다.",
"Invalid verification URL. No registration request with this verification URL is found." : "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.", "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 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 <a href=\"{link}\">log in now</a>." : "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.",
"Your settings have been updated." : "설정이 업데이트 되었습니다.", "Your settings have been updated." : "설정이 업데이트 되었습니다.",
"No such group" : "그룹이 존재하지 않음",
"Registration" : "등록",
"Default group that all registered users belong" : "모든 등록 사용자가 속한 기본 그룹",
"None" : "없음", "None" : "없음",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.", "Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.",
"Username" : "사용자 이름", "Username" : "사용자 이름",
"Password" : "암호", "Password" : "암호",

View File

@ -3,13 +3,20 @@ $TRANSLATIONS = array(
"Register" => "등록", "Register" => "등록",
"Email address you entered is not valid" => "입력한 이메일 주소가 올바르지 않음", "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 가입 요청 확인", "Verify your ownCloud registration request" => "ownCloud 가입 요청 확인",
"Verification email successfully sent." => "확인 이메일을 보냈습니다.", "Verification email successfully sent." => "확인 이메일을 보냈습니다.",
"Invalid verification URL. No registration request with this verification URL is found." => "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.", "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 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 <a href=\"{link}\">log in now</a>." => "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.",
"Your settings have been updated." => "설정이 업데이트 되었습니다.", "Your settings have been updated." => "설정이 업데이트 되었습니다.",
"No such group" => "그룹이 존재하지 않음",
"Registration" => "등록",
"Default group that all registered users belong" => "모든 등록 사용자가 속한 기본 그룹",
"None" => "없음", "None" => "없음",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "안녕하세요, 아래에서 회원 가입할 수 있습니다.", "Welcome, you can create your account below." => "안녕하세요, 아래에서 회원 가입할 수 있습니다.",
"Username" => "사용자 이름", "Username" => "사용자 이름",
"Password" => "암호", "Password" => "암호",

View File

@ -16,6 +16,7 @@ OC.L10N.register(
"Registration" : "Registrering", "Registration" : "Registrering",
"Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i", "Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i",
"None" : "Ingen", "None" : "Ingen",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Klkk denne lenken for å opprette en ny konto på ownCloud:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Velkommen, du kan opprette kontoen din nedenfor.", "Welcome, you can create your account below." : "Velkommen, du kan opprette kontoen din nedenfor.",
"Username" : "Brukernavn", "Username" : "Brukernavn",
"Password" : "Passord", "Password" : "Passord",

View File

@ -14,6 +14,7 @@
"Registration" : "Registrering", "Registration" : "Registrering",
"Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i", "Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i",
"None" : "Ingen", "None" : "Ingen",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Klkk denne lenken for å opprette en ny konto på ownCloud:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Velkommen, du kan opprette kontoen din nedenfor.", "Welcome, you can create your account below." : "Velkommen, du kan opprette kontoen din nedenfor.",
"Username" : "Brukernavn", "Username" : "Brukernavn",
"Password" : "Passord", "Password" : "Passord",

View File

@ -15,6 +15,7 @@ $TRANSLATIONS = array(
"Registration" => "Registrering", "Registration" => "Registrering",
"Default group that all registered users belong" => "Standard gruppe som alle registrerte brukere er med i", "Default group that all registered users belong" => "Standard gruppe som alle registrerte brukere er med i",
"None" => "Ingen", "None" => "Ingen",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Klkk denne lenken for å opprette en ny konto på ownCloud:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Velkommen, du kan opprette kontoen din nedenfor.", "Welcome, you can create your account below." => "Velkommen, du kan opprette kontoen din nedenfor.",
"Username" => "Brukernavn", "Username" => "Brukernavn",
"Password" => "Passord", "Password" => "Passord",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Verificatie e-mailbericht succesvol verstuurd.", "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.", "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 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 ", "Failed to delete pending registration request" : "Verwijderen van de lopende registratieaanvraag is niet gelukt ",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Er is met succes een account voor u gemaakt, u kunt <a href=\"{link}\">nu inloggen</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Er is met succes een account voor u gemaakt, u kunt <a href=\"{link}\">nu inloggen</a>.",
"Your settings have been updated." : "Uw instellingen zijn bijgewerkt", "Your settings have been updated." : "Uw instellingen zijn bijgewerkt",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Verificatie e-mailbericht succesvol verstuurd.", "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.", "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 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 ", "Failed to delete pending registration request" : "Verwijderen van de lopende registratieaanvraag is niet gelukt ",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Er is met succes een account voor u gemaakt, u kunt <a href=\"{link}\">nu inloggen</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Er is met succes een account voor u gemaakt, u kunt <a href=\"{link}\">nu inloggen</a>.",
"Your settings have been updated." : "Uw instellingen zijn bijgewerkt", "Your settings have been updated." : "Uw instellingen zijn bijgewerkt",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Verificatie e-mailbericht succesvol verstuurd.", "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.", "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 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 ", "Failed to delete pending registration request" => "Verwijderen van de lopende registratieaanvraag is niet gelukt ",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Er is met succes een account voor u gemaakt, u kunt <a href=\"{link}\">nu inloggen</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Er is met succes een account voor u gemaakt, u kunt <a href=\"{link}\">nu inloggen</a>.",
"Your settings have been updated." => "Uw instellingen zijn bijgewerkt", "Your settings have been updated." => "Uw instellingen zijn bijgewerkt",

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "Verificação de email enviado com sucesso.", "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.", "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 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", "Failed to delete pending registration request" : "Falha ao excluir o pedido de registro pendente",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sua conta foi criada com sucesso, você pode <a href=\"{link}\">fazer login agora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sua conta foi criada com sucesso, você pode <a href=\"{link}\">fazer login agora</a>.",
"Your settings have been updated." : "Suas configurações foram atualizadas.", "Your settings have been updated." : "Suas configurações foram atualizadas.",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "Verificação de email enviado com sucesso.", "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.", "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 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", "Failed to delete pending registration request" : "Falha ao excluir o pedido de registro pendente",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sua conta foi criada com sucesso, você pode <a href=\"{link}\">fazer login agora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Sua conta foi criada com sucesso, você pode <a href=\"{link}\">fazer login agora</a>.",
"Your settings have been updated." : "Suas configurações foram atualizadas.", "Your settings have been updated." : "Suas configurações foram atualizadas.",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "Verificação de email enviado com sucesso.", "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.", "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 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", "Failed to delete pending registration request" => "Falha ao excluir o pedido de registro pendente",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Sua conta foi criada com sucesso, você pode <a href=\"{link}\">fazer login agora</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Sua conta foi criada com sucesso, você pode <a href=\"{link}\">fazer login agora</a>.",
"Your settings have been updated." => "Suas configurações foram atualizadas.", "Your settings have been updated." => "Suas configurações foram atualizadas.",

View File

@ -4,16 +4,19 @@ OC.L10N.register(
"Register" : "Zaregistrovať sa", "Register" : "Zaregistrovať sa",
"Email address you entered is not valid" : "Zadaná emailová adresa nie je správna", "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 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", "Verify your ownCloud registration request" : "Overte svoju požiadavku na registráciu do ownCloud",
"Verification email successfully sent." : "Overovací email bol úspešne odoslaný.", "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.", "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.", "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 <a href=\"{link}\">log in now</a>." : "Váš účet bol vytvorený, teraz sa môžete <a href=\"{link}\">prihlásiť</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Váš účet bol vytvorený, teraz sa môžete <a href=\"{link}\">prihlásiť</a>.",
"Your settings have been updated." : "Vaše nastavenia boli aktualizované.", "Your settings have been updated." : "Vaše nastavenia boli aktualizované.",
"No such group" : "Takáto skupina neexistuje", "No such group" : "Takáto skupina neexistuje",
"Registration" : "Registrácia", "Registration" : "Registrácia",
"Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov", "Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov",
"None" : "Žiadny", "None" : "Žiadny",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Pre vytvorenie nového účtu v ownCloude kliknite na nasledujúci odkaz:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Vitajte. Účet si môžete založiť nižšie.", "Welcome, you can create your account below." : "Vitajte. Účet si môžete založiť nižšie.",
"Username" : "Používateľské meno", "Username" : "Používateľské meno",
"Password" : "Heslo", "Password" : "Heslo",

View File

@ -2,16 +2,19 @@
"Register" : "Zaregistrovať sa", "Register" : "Zaregistrovať sa",
"Email address you entered is not valid" : "Zadaná emailová adresa nie je správna", "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 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", "Verify your ownCloud registration request" : "Overte svoju požiadavku na registráciu do ownCloud",
"Verification email successfully sent." : "Overovací email bol úspešne odoslaný.", "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.", "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.", "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 <a href=\"{link}\">log in now</a>." : "Váš účet bol vytvorený, teraz sa môžete <a href=\"{link}\">prihlásiť</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Váš účet bol vytvorený, teraz sa môžete <a href=\"{link}\">prihlásiť</a>.",
"Your settings have been updated." : "Vaše nastavenia boli aktualizované.", "Your settings have been updated." : "Vaše nastavenia boli aktualizované.",
"No such group" : "Takáto skupina neexistuje", "No such group" : "Takáto skupina neexistuje",
"Registration" : "Registrácia", "Registration" : "Registrácia",
"Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov", "Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov",
"None" : "Žiadny", "None" : "Žiadny",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Pre vytvorenie nového účtu v ownCloude kliknite na nasledujúci odkaz:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Vitajte. Účet si môžete založiť nižšie.", "Welcome, you can create your account below." : "Vitajte. Účet si môžete založiť nižšie.",
"Username" : "Používateľské meno", "Username" : "Používateľské meno",
"Password" : "Heslo", "Password" : "Heslo",

View File

@ -3,16 +3,19 @@ $TRANSLATIONS = array(
"Register" => "Zaregistrovať sa", "Register" => "Zaregistrovať sa",
"Email address you entered is not valid" => "Zadaná emailová adresa nie je správna", "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 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", "Verify your ownCloud registration request" => "Overte svoju požiadavku na registráciu do ownCloud",
"Verification email successfully sent." => "Overovací email bol úspešne odoslaný.", "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.", "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.", "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 <a href=\"{link}\">log in now</a>." => "Váš účet bol vytvorený, teraz sa môžete <a href=\"{link}\">prihlásiť</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Váš účet bol vytvorený, teraz sa môžete <a href=\"{link}\">prihlásiť</a>.",
"Your settings have been updated." => "Vaše nastavenia boli aktualizované.", "Your settings have been updated." => "Vaše nastavenia boli aktualizované.",
"No such group" => "Takáto skupina neexistuje", "No such group" => "Takáto skupina neexistuje",
"Registration" => "Registrácia", "Registration" => "Registrácia",
"Default group that all registered users belong" => "Základná skupina pre všetkých novo zaregistrovaných používateľov", "Default group that all registered users belong" => "Základná skupina pre všetkých novo zaregistrovaných používateľov",
"None" => "Žiadny", "None" => "Žiadny",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Pre vytvorenie nového účtu v ownCloude kliknite na nasledujúci odkaz:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." => "Vitajte. Účet si môžete založiť nižšie.", "Welcome, you can create your account below." => "Vitajte. Účet si môžete založiť nižšie.",
"Username" => "Používateľské meno", "Username" => "Používateľské meno",
"Password" => "Heslo", "Password" => "Heslo",

View File

@ -9,12 +9,15 @@ OC.L10N.register(
"Verification email successfully sent." : "Порука за потврду је успешно послата", "Verification email successfully sent." : "Порука за потврду је успешно послата",
"Invalid verification URL. No registration request with this verification URL is found." : "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.", "Invalid verification URL. No registration request with this verification URL is found." : "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.",
"Unable to create user, there are problems with user backend." : "Не могу да створим корисника. Постоји проблем са позадином за корисника.", "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 <a href=\"{link}\">log in now</a>." : "Ваш налог је успешно створен. Можете се <a href=\"{link}\">пријавити сада</a>.", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ваш налог је успешно створен. Можете се <a href=\"{link}\">пријавити сада</a>.",
"Your settings have been updated." : "Поставке су ажуриране.", "Your settings have been updated." : "Поставке су ажуриране.",
"No such group" : "Нема такве групе", "No such group" : "Нема такве групе",
"Registration" : "Регистрација", "Registration" : "Регистрација",
"Default group that all registered users belong" : "Подразумевана група где сви корисници припадају", "Default group that all registered users belong" : "Подразумевана група где сви корисници припадају",
"None" : "Ништа", "None" : "Ништа",
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Да направите нови налог на оунКлауду, кликните на следећу везу:<br/><br/>\n<a href=\"{link}\">{link}</a>",
"Welcome, you can create your account below." : "Добро дошли. Испод можете направити ваш налог.", "Welcome, you can create your account below." : "Добро дошли. Испод можете направити ваш налог.",
"Username" : "Корисничко име", "Username" : "Корисничко име",
"Password" : "Лозинка", "Password" : "Лозинка",

View File

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

View File

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

View File

@ -9,6 +9,7 @@ OC.L10N.register(
"Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว", "Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว",
"Invalid verification URL. No registration request with this verification URL is found." : "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน", "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 create user, there are problems with user backend." : "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้",
"Unable to set user email: " : "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:",
"Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ", "Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>",
"Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง", "Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง",

View File

@ -7,6 +7,7 @@
"Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว", "Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว",
"Invalid verification URL. No registration request with this verification URL is found." : "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน", "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 create user, there are problems with user backend." : "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้",
"Unable to set user email: " : "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:",
"Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ", "Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>",
"Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง", "Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง",

View File

@ -8,6 +8,7 @@ $TRANSLATIONS = array(
"Verification email successfully sent." => "ส่งอีเมลยืนยันเรียบร้อยแล้ว", "Verification email successfully sent." => "ส่งอีเมลยืนยันเรียบร้อยแล้ว",
"Invalid verification URL. No registration request with this verification URL is found." => "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน", "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 create user, there are problems with user backend." => "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้",
"Unable to set user email: " => "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:",
"Failed to delete pending registration request" => "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ", "Failed to delete pending registration request" => "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ",
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>", "Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>",
"Your settings have been updated." => "การตั้งค่าของคุณได้รับการปรับปรุง", "Your settings have been updated." => "การตั้งค่าของคุณได้รับการปรับปรุง",