Fix merge conflict
This commit is contained in:
commit
5b9f0f0286
|
|
@ -5,6 +5,6 @@
|
|||
<description>User registration</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Pellaeon Lin</author>
|
||||
<version>0.0.3</version>
|
||||
<version>0.0.4</version>
|
||||
<requiremin>8.0.0</requiremin>
|
||||
</info>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
0.0.3
|
||||
0.0.4
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ class RegisterController extends Controller {
|
|||
$msg = $res->render();
|
||||
try {
|
||||
$this->mail->sendMail($email, 'ownCloud User', $this->l10n->t('Verify your ownCloud registration request'), $msg, $from, 'ownCloud');
|
||||
} catch (Exception $e) {
|
||||
} catch (\Exception $e) {
|
||||
\OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.');
|
||||
return;
|
||||
}
|
||||
|
|
@ -177,11 +177,12 @@ class RegisterController extends Controller {
|
|||
$password = $this->request->getParam('password');
|
||||
try {
|
||||
$user = $this->usermanager->createUser($username, $password);
|
||||
} catch (Exception $e) {
|
||||
} catch (\Exception $e) {
|
||||
return new TemplateResponse('registration', 'form',
|
||||
array('email' => $email,
|
||||
'entered_data' => array('username' => $username),
|
||||
'errormsgs' => array($e->message, $username, $password)), 'guest');
|
||||
'errormsgs' => array($e->getMessage()),
|
||||
'token' => $token), 'guest');
|
||||
}
|
||||
if ( $user === false ) {
|
||||
return new TemplateResponse('', 'error', array(
|
||||
|
|
@ -194,11 +195,13 @@ class RegisterController extends Controller {
|
|||
// Set user email
|
||||
try {
|
||||
$this->config->setUserValue($user->getUID(), 'settings', 'email', $email);
|
||||
} catch (Exception $e) {
|
||||
return new TemplateResponse('registration', 'form',
|
||||
array('email' => $email,
|
||||
'entered_data' => array('username' => $username),
|
||||
'errormsgs' => array($e->message, $username, $password)), 'guest');
|
||||
} catch (\Exception $e) {
|
||||
return new TemplateResponse('', 'error', array(
|
||||
'errors' => array(array(
|
||||
'error' => $this->l10n->t('Unable to set user email: '.$e->getMessage()),
|
||||
'hint' => ''
|
||||
))
|
||||
), 'error');
|
||||
}
|
||||
|
||||
// Add user to group
|
||||
|
|
@ -207,7 +210,7 @@ class RegisterController extends Controller {
|
|||
try {
|
||||
$group = $this->groupmanager->get($registered_user_group);
|
||||
$group->addUser($user);
|
||||
} catch (Exception $e) {
|
||||
} catch (\Exception $e) {
|
||||
return new TemplateResponse('', 'error', array(
|
||||
'errors' => array(array(
|
||||
'error' => $e->message,
|
||||
|
|
|
|||
|
|
@ -21,7 +21,11 @@ class PendingRegist {
|
|||
public function save($email) {
|
||||
$query = $this->db->prepareQuery( 'INSERT INTO `*PREFIX*registration`'
|
||||
.' ( `email`, `token`, `requested` ) VALUES( ?, ?, NOW() )' );
|
||||
$token = $this->random->generate(30);
|
||||
|
||||
do {
|
||||
$token = $this->random->generate(30);
|
||||
} while (preg_match('/[\/]++/', $token));
|
||||
|
||||
$query->execute(array( $email, $token ));
|
||||
return $token;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Ověřovací email úspěšně odeslán.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Neplatná ověřovací URL. Nebyl nalezen žádný registrační požadavek pro tuto ověřovací URL.",
|
||||
"Unable to create user, there are problems with user backend." : "Není možné vytvořit uživatelský účet, nastaly potíže v systému úložiště uživatelů.",
|
||||
"Unable to set user email: " : "Nelze nastavit email uživatele:",
|
||||
"Failed to delete pending registration request" : "Selhalo smazání čekajících požadavků na registraci",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -16,6 +17,7 @@ OC.L10N.register(
|
|||
"Registration" : "Registrace",
|
||||
"Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele",
|
||||
"None" : "Žádné",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Uživatelské jméno",
|
||||
"Password" : "Heslo",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Ověřovací email úspěšně odeslán.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Neplatná ověřovací URL. Nebyl nalezen žádný registrační požadavek pro tuto ověřovací URL.",
|
||||
"Unable to create user, there are problems with user backend." : "Není možné vytvořit uživatelský účet, nastaly potíže v systému úložiště uživatelů.",
|
||||
"Unable to set user email: " : "Nelze nastavit email uživatele:",
|
||||
"Failed to delete pending registration request" : "Selhalo smazání čekajících požadavků na registraci",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -14,6 +15,7 @@
|
|||
"Registration" : "Registrace",
|
||||
"Default group that all registered users belong" : "Výchozí skupina pro všechny nově registrované uživatele",
|
||||
"None" : "Žádné",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Uživatelské jméno",
|
||||
"Password" : "Heslo",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Ověřovací email úspěšně odeslán.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Neplatná ověřovací URL. Nebyl nalezen žádný registrační požadavek pro tuto ověřovací URL.",
|
||||
"Unable to create user, there are problems with user backend." => "Není možné vytvořit uživatelský účet, nastaly potíže v systému úložiště uživatelů.",
|
||||
"Unable to set user email: " => "Nelze nastavit email uživatele:",
|
||||
"Failed to delete pending registration request" => "Selhalo smazání čekajících požadavků na registraci",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
|
|||
"Registration" => "Registrace",
|
||||
"Default group that all registered users belong" => "Výchozí skupina pro všechny nově registrované uživatele",
|
||||
"None" => "Žádné",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Uživatelské jméno",
|
||||
"Password" => "Heslo",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Bekræftelse er blevet sendt med e-mail.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ugyldig verifikations-URL. Der blev ikke fundet nogen forespørgsel om tilmelding med denne verifikations-URL.",
|
||||
"Unable to create user, there are problems with user backend." : "Kan ikke oprette bruger - der er problemer med bruger-backend.",
|
||||
"Unable to set user email: " : "Kan ikke angive e-mail for bruger:",
|
||||
"Failed to delete pending registration request" : "Det lykkedes ikke at slette ventende registreringsanmodning",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -16,6 +17,7 @@ OC.L10N.register(
|
|||
"Registration" : "Tilmelding",
|
||||
"Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til",
|
||||
"None" : "Ingen",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Brugernavn",
|
||||
"Password" : "Adgangskode",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Bekræftelse er blevet sendt med e-mail.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ugyldig verifikations-URL. Der blev ikke fundet nogen forespørgsel om tilmelding med denne verifikations-URL.",
|
||||
"Unable to create user, there are problems with user backend." : "Kan ikke oprette bruger - der er problemer med bruger-backend.",
|
||||
"Unable to set user email: " : "Kan ikke angive e-mail for bruger:",
|
||||
"Failed to delete pending registration request" : "Det lykkedes ikke at slette ventende registreringsanmodning",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -14,6 +15,7 @@
|
|||
"Registration" : "Tilmelding",
|
||||
"Default group that all registered users belong" : "Standardgruppen som alle tilmeldte brugere hører til",
|
||||
"None" : "Ingen",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Brugernavn",
|
||||
"Password" : "Adgangskode",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Bekræftelse er blevet sendt med e-mail.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Ugyldig verifikations-URL. Der blev ikke fundet nogen forespørgsel om tilmelding med denne verifikations-URL.",
|
||||
"Unable to create user, there are problems with user backend." => "Kan ikke oprette bruger - der er problemer med bruger-backend.",
|
||||
"Unable to set user email: " => "Kan ikke angive e-mail for bruger:",
|
||||
"Failed to delete pending registration request" => "Det lykkedes ikke at slette ventende registreringsanmodning",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
|
|||
"Registration" => "Tilmelding",
|
||||
"Default group that all registered users belong" => "Standardgruppen som alle tilmeldte brugere hører til",
|
||||
"None" => "Ingen",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Brugernavn",
|
||||
"Password" => "Adgangskode",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierungsanfrage mit dieser Bestätigungsadresse gefunden.",
|
||||
"Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzerhintergrundprogramm.",
|
||||
"Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:",
|
||||
"Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -20,6 +21,7 @@ OC.L10N.register(
|
|||
"Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
|
||||
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
|
||||
"Save" : "Speichern",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Benutzername",
|
||||
"Password" : "Passwort",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierungsanfrage mit dieser Bestätigungsadresse gefunden.",
|
||||
"Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzerhintergrundprogramm.",
|
||||
"Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:",
|
||||
"Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -18,6 +19,7 @@
|
|||
"Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
|
||||
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
|
||||
"Save" : "Speichern",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Benutzername",
|
||||
"Password" : "Passwort",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "E-Mail zur Bestätigung erfolgreich gesendet.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Ungültige Bestätigungsadresse. Keine Registrierungsanfrage mit dieser Bestätigungsadresse gefunden.",
|
||||
"Unable to create user, there are problems with user backend." => "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzerhintergrundprogramm.",
|
||||
"Unable to set user email: " => "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:",
|
||||
"Failed to delete pending registration request" => "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -19,6 +20,7 @@ $TRANSLATIONS = array(
|
|||
"Allowed domains for registration" => "Für Registrierung freigeschaltete Domains",
|
||||
"Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:",
|
||||
"Save" => "Speichern",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Benutzername",
|
||||
"Password" => "Passwort",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierunganfrage mit dieser Bestätigungsadresse gefunden.",
|
||||
"Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzer-Backend.",
|
||||
"Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:",
|
||||
"Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -20,6 +21,7 @@ OC.L10N.register(
|
|||
"Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
|
||||
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
|
||||
"Save" : "Speichern",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Benutzername",
|
||||
"Password" : "Passwort",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "E-Mail zur Bestätigung erfolgreich gesendet.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ungültige Bestätigungsadresse. Keine Registrierunganfrage mit dieser Bestätigungsadresse gefunden.",
|
||||
"Unable to create user, there are problems with user backend." : "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzer-Backend.",
|
||||
"Unable to set user email: " : "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:",
|
||||
"Failed to delete pending registration request" : "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -18,6 +19,8 @@
|
|||
"Allowed domains for registration" : "Für Registrierung freigeschaltete Domains",
|
||||
"Registration is only allowed for following domains:" : "Registrierung ist nur für folgende Domains freigeschaltet:",
|
||||
"Save" : "Speichern",
|
||||
=======
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Benutzername",
|
||||
"Password" : "Passwort",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "E-Mail zur Bestätigung erfolgreich gesendet.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Ungültige Bestätigungsadresse. Keine Registrierunganfrage mit dieser Bestätigungsadresse gefunden.",
|
||||
"Unable to create user, there are problems with user backend." => "Benutzer konnte nicht erstellt werden, es gibt Probleme mit dem Benutzer-Backend.",
|
||||
"Unable to set user email: " => "Die E-Mail-Adresse des Benutzers konnte nicht gespeichert werden:",
|
||||
"Failed to delete pending registration request" => "Das Löschen der in Bearbeitung befindlichen Registrierungsanfrage ist fehlgeschlagen",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -19,6 +20,7 @@ $TRANSLATIONS = array(
|
|||
"Allowed domains for registration" => "Für Registrierung freigeschaltete Domains",
|
||||
"Registration is only allowed for following domains:" => "Registrierung ist nur für folgende Domains freigeschaltet:",
|
||||
"Save" => "Speichern",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Benutzername",
|
||||
"Password" => "Passwort",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Mensaje de verificación enviado con éxito.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL de verificación inválido. No se ha encontrado ninguna solicitud de registro con este URL de verificación.",
|
||||
"Unable to create user, there are problems with user backend." : "No es posible crear el usuario; hay problemas con el backend.",
|
||||
"Unable to set user email: " : "No se puede establecer correo electrónico del usuario:",
|
||||
"Failed to delete pending registration request" : "Fallo al eliminar la petición de registro pendiente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -16,6 +17,7 @@ OC.L10N.register(
|
|||
"Registration" : "Registro",
|
||||
"Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados",
|
||||
"None" : "Ninguno",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Nombre de usuario",
|
||||
"Password" : "Contraseña",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Mensaje de verificación enviado con éxito.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL de verificación inválido. No se ha encontrado ninguna solicitud de registro con este URL de verificación.",
|
||||
"Unable to create user, there are problems with user backend." : "No es posible crear el usuario; hay problemas con el backend.",
|
||||
"Unable to set user email: " : "No se puede establecer correo electrónico del usuario:",
|
||||
"Failed to delete pending registration request" : "Fallo al eliminar la petición de registro pendiente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -14,6 +15,7 @@
|
|||
"Registration" : "Registro",
|
||||
"Default group that all registered users belong" : "Grupo predeterminado al cual pertenecen todos los usuarios registrados",
|
||||
"None" : "Ninguno",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Nombre de usuario",
|
||||
"Password" : "Contraseña",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Mensaje de verificación enviado con éxito.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "URL de verificación inválido. No se ha encontrado ninguna solicitud de registro con este URL de verificación.",
|
||||
"Unable to create user, there are problems with user backend." => "No es posible crear el usuario; hay problemas con el backend.",
|
||||
"Unable to set user email: " => "No se puede establecer correo electrónico del usuario:",
|
||||
"Failed to delete pending registration request" => "Fallo al eliminar la petición de registro pendiente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
|
|||
"Registration" => "Registro",
|
||||
"Default group that all registered users belong" => "Grupo predeterminado al cual pertenecen todos los usuarios registrados",
|
||||
"None" => "Ninguno",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Nombre de usuario",
|
||||
"Password" => "Contraseña",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Kinnituskiri on saadetud.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Vigane kinnituse URL. Selle kinnitus URL-iga registreerimise päringut ei leitud.",
|
||||
"Unable to create user, there are problems with user backend." : "Kasutaja loomine ebaõnnestus, kasutaja adminiliidesega oli probleeme.",
|
||||
"Unable to set user email: " : "Kasutaja e-posti määramine ebaõnnestus:",
|
||||
"Failed to delete pending registration request" : "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -16,6 +17,7 @@ OC.L10N.register(
|
|||
"Registration" : "Registreerumine",
|
||||
"Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse",
|
||||
"None" : "Pole",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Kasutajanimi",
|
||||
"Password" : "Parool",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Kinnituskiri on saadetud.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Vigane kinnituse URL. Selle kinnitus URL-iga registreerimise päringut ei leitud.",
|
||||
"Unable to create user, there are problems with user backend." : "Kasutaja loomine ebaõnnestus, kasutaja adminiliidesega oli probleeme.",
|
||||
"Unable to set user email: " : "Kasutaja e-posti määramine ebaõnnestus:",
|
||||
"Failed to delete pending registration request" : "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -14,6 +15,7 @@
|
|||
"Registration" : "Registreerumine",
|
||||
"Default group that all registered users belong" : "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse",
|
||||
"None" : "Pole",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Kasutajanimi",
|
||||
"Password" : "Parool",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Kinnituskiri on saadetud.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Vigane kinnituse URL. Selle kinnitus URL-iga registreerimise päringut ei leitud.",
|
||||
"Unable to create user, there are problems with user backend." => "Kasutaja loomine ebaõnnestus, kasutaja adminiliidesega oli probleeme.",
|
||||
"Unable to set user email: " => "Kasutaja e-posti määramine ebaõnnestus:",
|
||||
"Failed to delete pending registration request" => "Ootel oleva registreeringutaotluse kustutamine ebaõnnestus",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
|
|||
"Registration" => "Registreerumine",
|
||||
"Default group that all registered users belong" => "Vaikimisi grupp, kuhu kõik uued registreerunud kasutajad vaikimisi pannakse",
|
||||
"None" => "Pole",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Kasutajanimi",
|
||||
"Password" => "Parool",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Vahvistussähköposti lähetettiin onnistuneesti.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Virheellinen vahvistuksen verkko-osoite. Kyseisellä osoitteella ei löytynyt rekisteröintipyyntöä.",
|
||||
"Unable to create user, there are problems with user backend." : "Käyttäjän luominen ei onnistunut käyttäjätaustaosan kanssa olevien ongelmien vuoksi.",
|
||||
"Unable to set user email: " : "Käyttäjän sähköpostin asettaminen epäonnistui:",
|
||||
"Failed to delete pending registration request" : "Odottavan rekisteröintipyynnön poistaminen epäonnistui",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Vahvistussähköposti lähetettiin onnistuneesti.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Virheellinen vahvistuksen verkko-osoite. Kyseisellä osoitteella ei löytynyt rekisteröintipyyntöä.",
|
||||
"Unable to create user, there are problems with user backend." : "Käyttäjän luominen ei onnistunut käyttäjätaustaosan kanssa olevien ongelmien vuoksi.",
|
||||
"Unable to set user email: " : "Käyttäjän sähköpostin asettaminen epäonnistui:",
|
||||
"Failed to delete pending registration request" : "Odottavan rekisteröintipyynnön poistaminen epäonnistui",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Vahvistussähköposti lähetettiin onnistuneesti.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Virheellinen vahvistuksen verkko-osoite. Kyseisellä osoitteella ei löytynyt rekisteröintipyyntöä.",
|
||||
"Unable to create user, there are problems with user backend." => "Käyttäjän luominen ei onnistunut käyttäjätaustaosan kanssa olevien ongelmien vuoksi.",
|
||||
"Unable to set user email: " => "Käyttäjän sähköpostin asettaminen epäonnistui:",
|
||||
"Failed to delete pending registration request" => "Odottavan rekisteröintipyynnön poistaminen epäonnistui",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Courriel de vérification envoyé avec succès.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Lien de vérification non valable. Aucune demande d'inscription correspondante n'a été trouvée.",
|
||||
"Unable to create user, there are problems with user backend." : "Impossible de créer l'utilisateur, problèmes avec l’infrastructure utilisateur.",
|
||||
"Unable to set user email: " : "Impossible de définir l'email utilisateur :",
|
||||
"Failed to delete pending registration request" : "Erreur lors de la suppression de la demande d'enregistrement en attente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Courriel de vérification envoyé avec succès.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Lien de vérification non valable. Aucune demande d'inscription correspondante n'a été trouvée.",
|
||||
"Unable to create user, there are problems with user backend." : "Impossible de créer l'utilisateur, problèmes avec l’infrastructure utilisateur.",
|
||||
"Unable to set user email: " : "Impossible de définir l'email utilisateur :",
|
||||
"Failed to delete pending registration request" : "Erreur lors de la suppression de la demande d'enregistrement en attente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Courriel de vérification envoyé avec succès.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Lien de vérification non valable. Aucune demande d'inscription correspondante n'a été trouvée.",
|
||||
"Unable to create user, there are problems with user backend." => "Impossible de créer l'utilisateur, problèmes avec l’infrastructure utilisateur.",
|
||||
"Unable to set user email: " => "Impossible de définir l'email utilisateur :",
|
||||
"Failed to delete pending registration request" => "Erreur lors de la suppression de la demande d'enregistrement en attente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Correo de verificación enviado correctamente",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "O URL de verificación no é correcto. Non se atopou ningunha petición de rexistro con este URL de verificación.",
|
||||
"Unable to create user, there are problems with user backend." : "Non é posíbel crear o usuario, existen problemas coa infraestrutura de usuarios.",
|
||||
"Unable to set user email: " : "Non é posíbel estabelecer o usuario de correo:",
|
||||
"Failed to delete pending registration request" : "Non foi posíbel eliminar a solicitude de rexistro en trámite",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Correo de verificación enviado correctamente",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "O URL de verificación no é correcto. Non se atopou ningunha petición de rexistro con este URL de verificación.",
|
||||
"Unable to create user, there are problems with user backend." : "Non é posíbel crear o usuario, existen problemas coa infraestrutura de usuarios.",
|
||||
"Unable to set user email: " : "Non é posíbel estabelecer o usuario de correo:",
|
||||
"Failed to delete pending registration request" : "Non foi posíbel eliminar a solicitude de rexistro en trámite",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Correo de verificación enviado correctamente",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "O URL de verificación no é correcto. Non se atopou ningunha petición de rexistro con este URL de verificación.",
|
||||
"Unable to create user, there are problems with user backend." => "Non é posíbel crear o usuario, existen problemas coa infraestrutura de usuarios.",
|
||||
"Unable to set user email: " => "Non é posíbel estabelecer o usuario de correo:",
|
||||
"Failed to delete pending registration request" => "Non foi posíbel eliminar a solicitude de rexistro en trámite",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Email verifikasi berhasil dikirim",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL verifikasi tidak sah. Tidak ada permintaan pendaftaran dengan URL verifikasi ini yang ditemukan.",
|
||||
"Unable to create user, there are problems with user backend." : "Tidak dapat membuat pengguna, terdapat masalah dengan backend pengguna.",
|
||||
"Unable to set user email: " : "Tidak dapat mengatur email pengguna:",
|
||||
"Failed to delete pending registration request" : "Gagal menghapus permintaan penundaan pendaftaran",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Email verifikasi berhasil dikirim",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL verifikasi tidak sah. Tidak ada permintaan pendaftaran dengan URL verifikasi ini yang ditemukan.",
|
||||
"Unable to create user, there are problems with user backend." : "Tidak dapat membuat pengguna, terdapat masalah dengan backend pengguna.",
|
||||
"Unable to set user email: " : "Tidak dapat mengatur email pengguna:",
|
||||
"Failed to delete pending registration request" : "Gagal menghapus permintaan penundaan pendaftaran",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Email verifikasi berhasil dikirim",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "URL verifikasi tidak sah. Tidak ada permintaan pendaftaran dengan URL verifikasi ini yang ditemukan.",
|
||||
"Unable to create user, there are problems with user backend." => "Tidak dapat membuat pengguna, terdapat masalah dengan backend pengguna.",
|
||||
"Unable to set user email: " => "Tidak dapat mengatur email pengguna:",
|
||||
"Failed to delete pending registration request" => "Gagal menghapus permintaan penundaan pendaftaran",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Email di verifica inviata correttamente.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL di verifica non valido. Nessuna richiesta di registrazione trovata con questo URL di verifica.",
|
||||
"Unable to create user, there are problems with user backend." : "Impossibile creare l'utente, ci sono problemi con il motore degli utenti.",
|
||||
"Unable to set user email: " : "Impossibile impostare l'indirizzo email dell'utente:",
|
||||
"Failed to delete pending registration request" : "L'eliminazione della richiesta di registrazione in corso non è riuscita",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Email di verifica inviata correttamente.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL di verifica non valido. Nessuna richiesta di registrazione trovata con questo URL di verifica.",
|
||||
"Unable to create user, there are problems with user backend." : "Impossibile creare l'utente, ci sono problemi con il motore degli utenti.",
|
||||
"Unable to set user email: " : "Impossibile impostare l'indirizzo email dell'utente:",
|
||||
"Failed to delete pending registration request" : "L'eliminazione della richiesta di registrazione in corso non è riuscita",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Email di verifica inviata correttamente.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "URL di verifica non valido. Nessuna richiesta di registrazione trovata con questo URL di verifica.",
|
||||
"Unable to create user, there are problems with user backend." => "Impossibile creare l'utente, ci sono problemi con il motore degli utenti.",
|
||||
"Unable to set user email: " => "Impossibile impostare l'indirizzo email dell'utente:",
|
||||
"Failed to delete pending registration request" => "L'eliminazione della richiesta di registrazione in corso non è riuscita",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -3,12 +3,13 @@ OC.L10N.register(
|
|||
{
|
||||
"Register" : "登録",
|
||||
"Email address you entered is not valid" : "入力されたメールアドレスが正しくありません",
|
||||
"There is already a pending registration with this email" : "このメールアドレスで登録中断しているものがあります。",
|
||||
"There is already a pending registration with this email" : "このメールアドレスで保留中の登録がすでに存在します",
|
||||
"There is an existing user with this email" : "このメールアドレスのユーザーがすでに存在します",
|
||||
"Verify your ownCloud registration request" : "ownCloud 登録リクエストを確認してください",
|
||||
"Verification email successfully sent." : "確認メールを送信しました。",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "確認URLが不正です。この確認URLに紐付く登録リクエストは、ありません。",
|
||||
"Unable to create user, there are problems with user backend." : "ユーザーを作成できません。バックエンドのユーザー管理システムに問題があります。",
|
||||
"Unable to set user email: " : "ユーザーメールを設定できません:",
|
||||
"Failed to delete pending registration request" : "保留中の登録リクエストの削除に失敗しました",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "アカウントは無事作成されました。 こちらのリンクから<a href=\"{link}\">ログイン</a>してください。",
|
||||
"Your settings have been updated." : "設定を更新しました。",
|
||||
|
|
@ -16,6 +17,7 @@ OC.L10N.register(
|
|||
"Registration" : "登録",
|
||||
"Default group that all registered users belong" : "すべての登録ユーザーが属しているデフォルトのグループ",
|
||||
"None" : "なし",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloud に新しいアカウントを作成するには、以下のリンクをクリックしてください:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." : "ようこそ、以下から新しくアカウントを作成できます。",
|
||||
"Username" : "ユーザーID",
|
||||
"Password" : "パスワード",
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
{ "translations": {
|
||||
"Register" : "登録",
|
||||
"Email address you entered is not valid" : "入力されたメールアドレスが正しくありません",
|
||||
"There is already a pending registration with this email" : "このメールアドレスで登録中断しているものがあります。",
|
||||
"There is already a pending registration with this email" : "このメールアドレスで保留中の登録がすでに存在します",
|
||||
"There is an existing user with this email" : "このメールアドレスのユーザーがすでに存在します",
|
||||
"Verify your ownCloud registration request" : "ownCloud 登録リクエストを確認してください",
|
||||
"Verification email successfully sent." : "確認メールを送信しました。",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "確認URLが不正です。この確認URLに紐付く登録リクエストは、ありません。",
|
||||
"Unable to create user, there are problems with user backend." : "ユーザーを作成できません。バックエンドのユーザー管理システムに問題があります。",
|
||||
"Unable to set user email: " : "ユーザーメールを設定できません:",
|
||||
"Failed to delete pending registration request" : "保留中の登録リクエストの削除に失敗しました",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "アカウントは無事作成されました。 こちらのリンクから<a href=\"{link}\">ログイン</a>してください。",
|
||||
"Your settings have been updated." : "設定を更新しました。",
|
||||
|
|
@ -14,6 +15,7 @@
|
|||
"Registration" : "登録",
|
||||
"Default group that all registered users belong" : "すべての登録ユーザーが属しているデフォルトのグループ",
|
||||
"None" : "なし",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloud に新しいアカウントを作成するには、以下のリンクをクリックしてください:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." : "ようこそ、以下から新しくアカウントを作成できます。",
|
||||
"Username" : "ユーザーID",
|
||||
"Password" : "パスワード",
|
||||
|
|
|
|||
|
|
@ -2,12 +2,13 @@
|
|||
$TRANSLATIONS = array(
|
||||
"Register" => "登録",
|
||||
"Email address you entered is not valid" => "入力されたメールアドレスが正しくありません",
|
||||
"There is already a pending registration with this email" => "このメールアドレスで登録中断しているものがあります。",
|
||||
"There is already a pending registration with this email" => "このメールアドレスで保留中の登録がすでに存在します",
|
||||
"There is an existing user with this email" => "このメールアドレスのユーザーがすでに存在します",
|
||||
"Verify your ownCloud registration request" => "ownCloud 登録リクエストを確認してください",
|
||||
"Verification email successfully sent." => "確認メールを送信しました。",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "確認URLが不正です。この確認URLに紐付く登録リクエストは、ありません。",
|
||||
"Unable to create user, there are problems with user backend." => "ユーザーを作成できません。バックエンドのユーザー管理システムに問題があります。",
|
||||
"Unable to set user email: " => "ユーザーメールを設定できません:",
|
||||
"Failed to delete pending registration request" => "保留中の登録リクエストの削除に失敗しました",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "アカウントは無事作成されました。 こちらのリンクから<a href=\"{link}\">ログイン</a>してください。",
|
||||
"Your settings have been updated." => "設定を更新しました。",
|
||||
|
|
@ -15,6 +16,7 @@ $TRANSLATIONS = array(
|
|||
"Registration" => "登録",
|
||||
"Default group that all registered users belong" => "すべての登録ユーザーが属しているデフォルトのグループ",
|
||||
"None" => "なし",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "ownCloud に新しいアカウントを作成するには、以下のリンクをクリックしてください:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." => "ようこそ、以下から新しくアカウントを作成できます。",
|
||||
"Username" => "ユーザーID",
|
||||
"Password" => "パスワード",
|
||||
|
|
|
|||
|
|
@ -4,13 +4,20 @@ OC.L10N.register(
|
|||
"Register" : "등록",
|
||||
"Email address you entered is not valid" : "입력한 이메일 주소가 올바르지 않음",
|
||||
"There is already a pending registration with this email" : "입력한 이메일 주소로 가입 대기 중",
|
||||
"There is an existing user with this email" : "같은 이메일을 사용하는 사용자가 이미 존재함",
|
||||
"Verify your ownCloud registration request" : "ownCloud 가입 요청 확인",
|
||||
"Verification email successfully sent." : "확인 이메일을 보냈습니다.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.",
|
||||
"Unable to create user, there are problems with user backend." : "사용자 백엔드 오류로 사용자를 등록할 수 없습니다.",
|
||||
"Unable to set user email: " : "사용자 이메일을 설정할 수 없음: ",
|
||||
"Failed to delete pending registration request" : "대기 중인 등록 요청을 삭제할 수 없음",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.",
|
||||
"Your settings have been updated." : "설정이 업데이트 되었습니다.",
|
||||
"No such group" : "그룹이 존재하지 않음",
|
||||
"Registration" : "등록",
|
||||
"Default group that all registered users belong" : "모든 등록 사용자가 속한 기본 그룹",
|
||||
"None" : "없음",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.",
|
||||
"Username" : "사용자 이름",
|
||||
"Password" : "암호",
|
||||
|
|
|
|||
|
|
@ -2,13 +2,20 @@
|
|||
"Register" : "등록",
|
||||
"Email address you entered is not valid" : "입력한 이메일 주소가 올바르지 않음",
|
||||
"There is already a pending registration with this email" : "입력한 이메일 주소로 가입 대기 중",
|
||||
"There is an existing user with this email" : "같은 이메일을 사용하는 사용자가 이미 존재함",
|
||||
"Verify your ownCloud registration request" : "ownCloud 가입 요청 확인",
|
||||
"Verification email successfully sent." : "확인 이메일을 보냈습니다.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.",
|
||||
"Unable to create user, there are problems with user backend." : "사용자 백엔드 오류로 사용자를 등록할 수 없습니다.",
|
||||
"Unable to set user email: " : "사용자 이메일을 설정할 수 없음: ",
|
||||
"Failed to delete pending registration request" : "대기 중인 등록 요청을 삭제할 수 없음",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.",
|
||||
"Your settings have been updated." : "설정이 업데이트 되었습니다.",
|
||||
"No such group" : "그룹이 존재하지 않음",
|
||||
"Registration" : "등록",
|
||||
"Default group that all registered users belong" : "모든 등록 사용자가 속한 기본 그룹",
|
||||
"None" : "없음",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." : "안녕하세요, 아래에서 회원 가입할 수 있습니다.",
|
||||
"Username" : "사용자 이름",
|
||||
"Password" : "암호",
|
||||
|
|
|
|||
|
|
@ -3,13 +3,20 @@ $TRANSLATIONS = array(
|
|||
"Register" => "등록",
|
||||
"Email address you entered is not valid" => "입력한 이메일 주소가 올바르지 않음",
|
||||
"There is already a pending registration with this email" => "입력한 이메일 주소로 가입 대기 중",
|
||||
"There is an existing user with this email" => "같은 이메일을 사용하는 사용자가 이미 존재함",
|
||||
"Verify your ownCloud registration request" => "ownCloud 가입 요청 확인",
|
||||
"Verification email successfully sent." => "확인 이메일을 보냈습니다.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "확인 URL이 잘못되었습니다. 이 확인 URL과 연결된 가입 요청이 없습니다.",
|
||||
"Unable to create user, there are problems with user backend." => "사용자 백엔드 오류로 사용자를 등록할 수 없습니다.",
|
||||
"Unable to set user email: " => "사용자 이메일을 설정할 수 없음: ",
|
||||
"Failed to delete pending registration request" => "대기 중인 등록 요청을 삭제할 수 없음",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "회원 가입이 완료되었으며 <a href=\"{link}\">로그인할 수 있습니다</a>.",
|
||||
"Your settings have been updated." => "설정이 업데이트 되었습니다.",
|
||||
"No such group" => "그룹이 존재하지 않음",
|
||||
"Registration" => "등록",
|
||||
"Default group that all registered users belong" => "모든 등록 사용자가 속한 기본 그룹",
|
||||
"None" => "없음",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "ownCloud에 새 계정을 등록하려면 다음 링크를 누르십시오:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." => "안녕하세요, 아래에서 회원 가입할 수 있습니다.",
|
||||
"Username" => "사용자 이름",
|
||||
"Password" => "암호",
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ OC.L10N.register(
|
|||
"Registration" : "Registrering",
|
||||
"Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i",
|
||||
"None" : "Ingen",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Brukernavn",
|
||||
"Password" : "Passord",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"Registration" : "Registrering",
|
||||
"Default group that all registered users belong" : "Standard gruppe som alle registrerte brukere er med i",
|
||||
"None" : "Ingen",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Brukernavn",
|
||||
"Password" : "Passord",
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ $TRANSLATIONS = array(
|
|||
"Registration" => "Registrering",
|
||||
"Default group that all registered users belong" => "Standard gruppe som alle registrerte brukere er med i",
|
||||
"None" => "Ingen",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Brukernavn",
|
||||
"Password" => "Passord",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Verificatie e-mailbericht succesvol verstuurd.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ongeldige verificatie URL. Er is geen aanvraag voor registratie met deze URL gevonden.",
|
||||
"Unable to create user, there are problems with user backend." : "Kan gebruikersaccount niet creëren, er zijn problemen met gebruiker's backend.",
|
||||
"Unable to set user email: " : "Kan e-mailadres van gebruiker niet instellen:",
|
||||
"Failed to delete pending registration request" : "Verwijderen van de lopende registratieaanvraag is niet gelukt ",
|
||||
"Your account has been successfully created, you can <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",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Verificatie e-mailbericht succesvol verstuurd.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Ongeldige verificatie URL. Er is geen aanvraag voor registratie met deze URL gevonden.",
|
||||
"Unable to create user, there are problems with user backend." : "Kan gebruikersaccount niet creëren, er zijn problemen met gebruiker's backend.",
|
||||
"Unable to set user email: " : "Kan e-mailadres van gebruiker niet instellen:",
|
||||
"Failed to delete pending registration request" : "Verwijderen van de lopende registratieaanvraag is niet gelukt ",
|
||||
"Your account has been successfully created, you can <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",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Verificatie e-mailbericht succesvol verstuurd.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Ongeldige verificatie URL. Er is geen aanvraag voor registratie met deze URL gevonden.",
|
||||
"Unable to create user, there are problems with user backend." => "Kan gebruikersaccount niet creëren, er zijn problemen met gebruiker's backend.",
|
||||
"Unable to set user email: " => "Kan e-mailadres van gebruiker niet instellen:",
|
||||
"Failed to delete pending registration request" => "Verwijderen van de lopende registratieaanvraag is niet gelukt ",
|
||||
"Your account has been successfully created, you can <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",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Verificação de email enviado com sucesso.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL de verificação inválido. Nenhum pedido de registro com este URL de verificação foi encontrado.",
|
||||
"Unable to create user, there are problems with user backend." : "Não é possível criar usuário, há problemas com backend do usuário.",
|
||||
"Unable to set user email: " : "Não é possível definir um e-mail para o usuário:",
|
||||
"Failed to delete pending registration request" : "Falha ao excluir o pedido de registro pendente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "Verificação de email enviado com sucesso.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "URL de verificação inválido. Nenhum pedido de registro com este URL de verificação foi encontrado.",
|
||||
"Unable to create user, there are problems with user backend." : "Não é possível criar usuário, há problemas com backend do usuário.",
|
||||
"Unable to set user email: " : "Não é possível definir um e-mail para o usuário:",
|
||||
"Failed to delete pending registration request" : "Falha ao excluir o pedido de registro pendente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Verificação de email enviado com sucesso.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "URL de verificação inválido. Nenhum pedido de registro com este URL de verificação foi encontrado.",
|
||||
"Unable to create user, there are problems with user backend." => "Não é possível criar usuário, há problemas com backend do usuário.",
|
||||
"Unable to set user email: " => "Não é possível definir um e-mail para o usuário:",
|
||||
"Failed to delete pending registration request" => "Falha ao excluir o pedido de registro pendente",
|
||||
"Your account has been successfully created, you can <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.",
|
||||
|
|
|
|||
|
|
@ -4,16 +4,19 @@ OC.L10N.register(
|
|||
"Register" : "Zaregistrovať sa",
|
||||
"Email address you entered is not valid" : "Zadaná emailová adresa nie je správna",
|
||||
"There is already a pending registration with this email" : "Registrácia s touto emailovou adresou už čaká na overenie registrácie",
|
||||
"There is an existing user with this email" : "Používateľ s touto emailovou adresou už existuje",
|
||||
"Verify your ownCloud registration request" : "Overte svoju požiadavku na registráciu do ownCloud",
|
||||
"Verification email successfully sent." : "Overovací email bol úspešne odoslaný.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Neplatná overovacia URL. Nebola nájdená žiadna požiadavka o registráciu pre túto overovaciu URL.",
|
||||
"Unable to create user, there are problems with user backend." : "Nedá sa vytvoriť používateľský účet. Nastala chyba v používateľskom backende.",
|
||||
"Failed to delete pending registration request" : "Zlyhalo zmazanie čakajúcich žiadostí na registráciu",
|
||||
"Your account has been successfully created, you can <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é.",
|
||||
"No such group" : "Takáto skupina neexistuje",
|
||||
"Registration" : "Registrácia",
|
||||
"Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov",
|
||||
"None" : "Žiadny",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Používateľské meno",
|
||||
"Password" : "Heslo",
|
||||
|
|
|
|||
|
|
@ -2,16 +2,19 @@
|
|||
"Register" : "Zaregistrovať sa",
|
||||
"Email address you entered is not valid" : "Zadaná emailová adresa nie je správna",
|
||||
"There is already a pending registration with this email" : "Registrácia s touto emailovou adresou už čaká na overenie registrácie",
|
||||
"There is an existing user with this email" : "Používateľ s touto emailovou adresou už existuje",
|
||||
"Verify your ownCloud registration request" : "Overte svoju požiadavku na registráciu do ownCloud",
|
||||
"Verification email successfully sent." : "Overovací email bol úspešne odoslaný.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Neplatná overovacia URL. Nebola nájdená žiadna požiadavka o registráciu pre túto overovaciu URL.",
|
||||
"Unable to create user, there are problems with user backend." : "Nedá sa vytvoriť používateľský účet. Nastala chyba v používateľskom backende.",
|
||||
"Failed to delete pending registration request" : "Zlyhalo zmazanie čakajúcich žiadostí na registráciu",
|
||||
"Your account has been successfully created, you can <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é.",
|
||||
"No such group" : "Takáto skupina neexistuje",
|
||||
"Registration" : "Registrácia",
|
||||
"Default group that all registered users belong" : "Základná skupina pre všetkých novo zaregistrovaných používateľov",
|
||||
"None" : "Žiadny",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" : "Používateľské meno",
|
||||
"Password" : "Heslo",
|
||||
|
|
|
|||
|
|
@ -3,16 +3,19 @@ $TRANSLATIONS = array(
|
|||
"Register" => "Zaregistrovať sa",
|
||||
"Email address you entered is not valid" => "Zadaná emailová adresa nie je správna",
|
||||
"There is already a pending registration with this email" => "Registrácia s touto emailovou adresou už čaká na overenie registrácie",
|
||||
"There is an existing user with this email" => "Používateľ s touto emailovou adresou už existuje",
|
||||
"Verify your ownCloud registration request" => "Overte svoju požiadavku na registráciu do ownCloud",
|
||||
"Verification email successfully sent." => "Overovací email bol úspešne odoslaný.",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Neplatná overovacia URL. Nebola nájdená žiadna požiadavka o registráciu pre túto overovaciu URL.",
|
||||
"Unable to create user, there are problems with user backend." => "Nedá sa vytvoriť používateľský účet. Nastala chyba v používateľskom backende.",
|
||||
"Failed to delete pending registration request" => "Zlyhalo zmazanie čakajúcich žiadostí na registráciu",
|
||||
"Your account has been successfully created, you can <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é.",
|
||||
"No such group" => "Takáto skupina neexistuje",
|
||||
"Registration" => "Registrácia",
|
||||
"Default group that all registered users belong" => "Základná skupina pre všetkých novo zaregistrovaných používateľov",
|
||||
"None" => "Žiadny",
|
||||
"To create a new account on ownCloud, just click the following link:<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.",
|
||||
"Username" => "Používateľské meno",
|
||||
"Password" => "Heslo",
|
||||
|
|
|
|||
|
|
@ -9,12 +9,15 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "Порука за потврду је успешно послата",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.",
|
||||
"Unable to create user, there are problems with user backend." : "Не могу да створим корисника. Постоји проблем са позадином за корисника.",
|
||||
"Unable to set user email: " : "Не могу да поставим е-адресу корисника:",
|
||||
"Failed to delete pending registration request" : "Неуспело брисање текућег захтева за регистрацију",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ваш налог је успешно створен. Можете се <a href=\"{link}\">пријавити сада</a>.",
|
||||
"Your settings have been updated." : "Поставке су ажуриране.",
|
||||
"No such group" : "Нема такве групе",
|
||||
"Registration" : "Регистрација",
|
||||
"Default group that all registered users belong" : "Подразумевана група где сви корисници припадају",
|
||||
"None" : "Ништа",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Да направите нови налог на оунКлауду, кликните на следећу везу:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." : "Добро дошли. Испод можете направити ваш налог.",
|
||||
"Username" : "Корисничко име",
|
||||
"Password" : "Лозинка",
|
||||
|
|
|
|||
|
|
@ -7,12 +7,15 @@
|
|||
"Verification email successfully sent." : "Порука за потврду је успешно послата",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.",
|
||||
"Unable to create user, there are problems with user backend." : "Не могу да створим корисника. Постоји проблем са позадином за корисника.",
|
||||
"Unable to set user email: " : "Не могу да поставим е-адресу корисника:",
|
||||
"Failed to delete pending registration request" : "Неуспело брисање текућег захтева за регистрацију",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "Ваш налог је успешно створен. Можете се <a href=\"{link}\">пријавити сада</a>.",
|
||||
"Your settings have been updated." : "Поставке су ажуриране.",
|
||||
"No such group" : "Нема такве групе",
|
||||
"Registration" : "Регистрација",
|
||||
"Default group that all registered users belong" : "Подразумевана група где сви корисници припадају",
|
||||
"None" : "Ништа",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" : "Да направите нови налог на оунКлауду, кликните на следећу везу:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." : "Добро дошли. Испод можете направити ваш налог.",
|
||||
"Username" : "Корисничко име",
|
||||
"Password" : "Лозинка",
|
||||
|
|
|
|||
|
|
@ -8,12 +8,15 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "Порука за потврду је успешно послата",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "Неисправан УРЛ за потврду. Ниједан захтев за регистрацију са овим УРЛ-ом није пронађен.",
|
||||
"Unable to create user, there are problems with user backend." => "Не могу да створим корисника. Постоји проблем са позадином за корисника.",
|
||||
"Unable to set user email: " => "Не могу да поставим е-адресу корисника:",
|
||||
"Failed to delete pending registration request" => "Неуспело брисање текућег захтева за регистрацију",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "Ваш налог је успешно створен. Можете се <a href=\"{link}\">пријавити сада</a>.",
|
||||
"Your settings have been updated." => "Поставке су ажуриране.",
|
||||
"No such group" => "Нема такве групе",
|
||||
"Registration" => "Регистрација",
|
||||
"Default group that all registered users belong" => "Подразумевана група где сви корисници припадају",
|
||||
"None" => "Ништа",
|
||||
"To create a new account on ownCloud, just click the following link:<br/><br/>\n<a href=\"{link}\">{link}</a>" => "Да направите нови налог на оунКлауду, кликните на следећу везу:<br/><br/>\n<a href=\"{link}\">{link}</a>",
|
||||
"Welcome, you can create your account below." => "Добро дошли. Испод можете направити ваш налог.",
|
||||
"Username" => "Корисничко име",
|
||||
"Password" => "Лозинка",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ OC.L10N.register(
|
|||
"Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน",
|
||||
"Unable to create user, there are problems with user backend." : "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้",
|
||||
"Unable to set user email: " : "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:",
|
||||
"Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>",
|
||||
"Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง",
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
"Verification email successfully sent." : "ส่งอีเมลยืนยันเรียบร้อยแล้ว",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." : "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน",
|
||||
"Unable to create user, there are problems with user backend." : "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้",
|
||||
"Unable to set user email: " : "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:",
|
||||
"Failed to delete pending registration request" : "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." : "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>",
|
||||
"Your settings have been updated." : "การตั้งค่าของคุณได้รับการปรับปรุง",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ $TRANSLATIONS = array(
|
|||
"Verification email successfully sent." => "ส่งอีเมลยืนยันเรียบร้อยแล้ว",
|
||||
"Invalid verification URL. No registration request with this verification URL is found." => "ตรวจสอบ URL ไม่ถูกต้องไม่มีคำขอการลงทะเบียน",
|
||||
"Unable to create user, there are problems with user backend." => "ไม่สามารถสร้างผู้ใช้ที่มีปัญหาเกี่ยวกับแบ็กเอนด์ของผู้ใช้",
|
||||
"Unable to set user email: " => "ไม่สามารถตั้งค่าอีเมลของผู้ใช้:",
|
||||
"Failed to delete pending registration request" => "ไม่สามารถลบคำขอลงทะเบียนที่รอดำเนินการ",
|
||||
"Your account has been successfully created, you can <a href=\"{link}\">log in now</a>." => "เราได้สร้างบัญชีของคุณเรียบร้อยแล้วคุณสามารถ <a href=\"{link}\">เข้าสู่ระบบได้ที่นี่</a>",
|
||||
"Your settings have been updated." => "การตั้งค่าของคุณได้รับการปรับปรุง",
|
||||
|
|
|
|||
Loading…
Reference in New Issue