diff options
437 files changed, 1932 insertions, 1227 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Auth.php b/apps/dav/lib/Connector/Sabre/Auth.php index 69301096b49..cbb2c2b63bd 100644 --- a/apps/dav/lib/Connector/Sabre/Auth.php +++ b/apps/dav/lib/Connector/Sabre/Auth.php @@ -103,9 +103,8 @@ class Auth extends AbstractBasic { return true; } else { \OC_Util::setUpFS(); //login hooks may need early access to the filesystem - // TODO: do not allow basic auth if the user is 2FA enforced - if($this->userSession->login($username, $password)) { - $this->userSession->createSessionToken($this->request, $username, $password); + if($this->userSession->logClientIn($username, $password)) { + $this->userSession->createSessionToken($this->request, $this->userSession->getUser()->getUID(), $username, $password); \OC_Util::setUpFS($this->userSession->getUser()->getUID()); $this->session->set(self::DAV_AUTHENTICATED, $this->userSession->getUser()->getUID()); $this->session->close(); diff --git a/apps/dav/tests/unit/connector/sabre/auth.php b/apps/dav/tests/unit/connector/sabre/auth.php index a0168e435e2..d3f697ba8e6 100644 --- a/apps/dav/tests/unit/connector/sabre/auth.php +++ b/apps/dav/tests/unit/connector/sabre/auth.php @@ -149,7 +149,7 @@ class Auth extends TestCase { $user = $this->getMockBuilder('\OCP\IUser') ->disableOriginalConstructor() ->getMock(); - $user->expects($this->exactly(3)) + $user->expects($this->exactly(4)) ->method('getUID') ->will($this->returnValue('MyTestUser')); $this->userSession @@ -157,7 +157,7 @@ class Auth extends TestCase { ->method('isLoggedIn') ->will($this->returnValue(true)); $this->userSession - ->expects($this->exactly(3)) + ->expects($this->exactly(4)) ->method('getUser') ->will($this->returnValue($user)); $this->session @@ -167,13 +167,13 @@ class Auth extends TestCase { ->will($this->returnValue('AnotherUser')); $this->userSession ->expects($this->once()) - ->method('login') + ->method('logClientIn') ->with('MyTestUser', 'MyTestPassword') ->will($this->returnValue(true)); $this->userSession ->expects($this->once()) ->method('createSessionToken') - ->with($this->request, 'MyTestUser', 'MyTestPassword'); + ->with($this->request, 'MyTestUser', 'MyTestUser', 'MyTestPassword'); $this->session ->expects($this->once()) ->method('set') @@ -192,7 +192,7 @@ class Auth extends TestCase { ->will($this->returnValue(false)); $this->userSession ->expects($this->once()) - ->method('login') + ->method('logClientIn') ->with('MyTestUser', 'MyTestPassword') ->will($this->returnValue(false)); $this->session @@ -560,7 +560,7 @@ class Auth extends TestCase { ->getMock(); $this->userSession ->expects($this->once()) - ->method('login') + ->method('logClientIn') ->with('username', 'password') ->will($this->returnValue(true)); $this->userSession @@ -569,11 +569,11 @@ class Auth extends TestCase { $user = $this->getMockBuilder('\OCP\IUser') ->disableOriginalConstructor() ->getMock(); - $user->expects($this->exactly(3)) + $user->expects($this->exactly(4)) ->method('getUID') ->will($this->returnValue('MyTestUser')); $this->userSession - ->expects($this->exactly(3)) + ->expects($this->exactly(4)) ->method('getUser') ->will($this->returnValue($user)); $response = $this->auth->check($server->httpRequest, $server->httpResponse); @@ -602,7 +602,7 @@ class Auth extends TestCase { ->getMock(); $this->userSession ->expects($this->once()) - ->method('login') + ->method('logClientIn') ->with('username', 'password') ->will($this->returnValue(false)); $response = $this->auth->check($server->httpRequest, $server->httpResponse); diff --git a/apps/federatedfilesharing/l10n/cs_CZ.js b/apps/federatedfilesharing/l10n/cs_CZ.js index 02055fb06f3..2b23276f382 100644 --- a/apps/federatedfilesharing/l10n/cs_CZ.js +++ b/apps/federatedfilesharing/l10n/cs_CZ.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Propojené sdílení", "Invalid Federated Cloud ID" : "Neplatné sdružené cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílena", "Not allowed to create a federated share with the same user" : "Není povoleno vytvořit propojené sdílení s tím samým uživatelem", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Sdílení %s selhalo, %s se nepodařilo nalézt, server pravděpodobně právě není dostupný.", + "Accept" : "Přijmout", + "Decline" : "Zamítnout", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Sdílej se mnou pomocí mého #ownCloud sdruženého cloud ID, více na %s", "Share with me through my #ownCloud Federated Cloud ID" : "Sdílej se mnou pomocí mého #ownCloud sdruženého cloud ID", "Federated Cloud Sharing" : "Propojené cloudové sdílení", diff --git a/apps/federatedfilesharing/l10n/cs_CZ.json b/apps/federatedfilesharing/l10n/cs_CZ.json index 165848afeb2..b3dbdec39cc 100644 --- a/apps/federatedfilesharing/l10n/cs_CZ.json +++ b/apps/federatedfilesharing/l10n/cs_CZ.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Propojené sdílení", "Invalid Federated Cloud ID" : "Neplatné sdružené cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílena", "Not allowed to create a federated share with the same user" : "Není povoleno vytvořit propojené sdílení s tím samým uživatelem", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Sdílení %s selhalo, %s se nepodařilo nalézt, server pravděpodobně právě není dostupný.", + "Accept" : "Přijmout", + "Decline" : "Zamítnout", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Sdílej se mnou pomocí mého #ownCloud sdruženého cloud ID, více na %s", "Share with me through my #ownCloud Federated Cloud ID" : "Sdílej se mnou pomocí mého #ownCloud sdruženého cloud ID", "Federated Cloud Sharing" : "Propojené cloudové sdílení", diff --git a/apps/federatedfilesharing/l10n/da.js b/apps/federatedfilesharing/l10n/da.js index 7d9959e030b..67464c09146 100644 --- a/apps/federatedfilesharing/l10n/da.js +++ b/apps/federatedfilesharing/l10n/da.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Datafællesskabsdeling", "Invalid Federated Cloud ID" : "Ugyldigt Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Der skete en fejl ved deling af %s, objektet er allerede delt med %s", "Not allowed to create a federated share with the same user" : "Det er ikke tilladt at danne et datafællesskab med samme bruger", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Deling af %s mislykkedes - kunne ikke finde %s. Måske er serveren ikke tilgængelig i øjeblikket.", + "Accept" : "Acceptér", + "Decline" : "Afvis", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Del med mig gennem min #ownCloud Federated Cloud ID, se %s", "Share with me through my #ownCloud Federated Cloud ID" : "Del med mig gennem min #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Sammensluttet Cloud deling", diff --git a/apps/federatedfilesharing/l10n/da.json b/apps/federatedfilesharing/l10n/da.json index 1994feb6884..6d5561ad852 100644 --- a/apps/federatedfilesharing/l10n/da.json +++ b/apps/federatedfilesharing/l10n/da.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Datafællesskabsdeling", "Invalid Federated Cloud ID" : "Ugyldigt Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Der skete en fejl ved deling af %s, objektet er allerede delt med %s", "Not allowed to create a federated share with the same user" : "Det er ikke tilladt at danne et datafællesskab med samme bruger", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Deling af %s mislykkedes - kunne ikke finde %s. Måske er serveren ikke tilgængelig i øjeblikket.", + "Accept" : "Acceptér", + "Decline" : "Afvis", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Del med mig gennem min #ownCloud Federated Cloud ID, se %s", "Share with me through my #ownCloud Federated Cloud ID" : "Del med mig gennem min #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Sammensluttet Cloud deling", diff --git a/apps/federatedfilesharing/l10n/de.js b/apps/federatedfilesharing/l10n/de.js index ab90b424dc5..420a15e3d36 100644 --- a/apps/federatedfilesharing/l10n/de.js +++ b/apps/federatedfilesharing/l10n/de.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federated-Sharing", "Invalid Federated Cloud ID" : "Ungültige Federated-Cloud-ID", "Sharing %s failed, because this item is already shared with %s" : "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Freigabe von %s fehlgeschlagen, da %s nicht gefunden wurde. Möglicherweise ist der Server nicht erreichbar.", + "Accept" : "Ok", + "Decline" : "Abgelehnt", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Teile mit mir über meine #ownCloud Federated-Cloud-ID, siehe %s", "Share with me through my #ownCloud Federated Cloud ID" : "Teile mit mir über meine #ownCloud Federated-Cloud-ID", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", diff --git a/apps/federatedfilesharing/l10n/de.json b/apps/federatedfilesharing/l10n/de.json index 3fd04ae7ec6..8d07ad358b0 100644 --- a/apps/federatedfilesharing/l10n/de.json +++ b/apps/federatedfilesharing/l10n/de.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Federated-Sharing", "Invalid Federated Cloud ID" : "Ungültige Federated-Cloud-ID", "Sharing %s failed, because this item is already shared with %s" : "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Freigabe von %s fehlgeschlagen, da %s nicht gefunden wurde. Möglicherweise ist der Server nicht erreichbar.", + "Accept" : "Ok", + "Decline" : "Abgelehnt", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Teile mit mir über meine #ownCloud Federated-Cloud-ID, siehe %s", "Share with me through my #ownCloud Federated Cloud ID" : "Teile mit mir über meine #ownCloud Federated-Cloud-ID", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", diff --git a/apps/federatedfilesharing/l10n/de_DE.js b/apps/federatedfilesharing/l10n/de_DE.js index c2c336ad9db..bd957b7e347 100644 --- a/apps/federatedfilesharing/l10n/de_DE.js +++ b/apps/federatedfilesharing/l10n/de_DE.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federated-Sharing", "Invalid Federated Cloud ID" : "Ungültige Federated-Cloud-ID", "Sharing %s failed, because this item is already shared with %s" : "Die Freigabe von %s ist fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Die Freigabe von %s ist fehlgeschlagen, da %s nicht gefunden wurde. Möglicherweise ist der Server nicht erreichbar.", + "Accept" : "Akzeptieren", + "Decline" : "Ablehnen", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Teilen Sie mit mir über meine #ownCloud Federated-Cloud-ID, siehe %s", "Share with me through my #ownCloud Federated Cloud ID" : "Teilen Sie mit mir über meine #ownCloud Federated-Cloud-ID", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", diff --git a/apps/federatedfilesharing/l10n/de_DE.json b/apps/federatedfilesharing/l10n/de_DE.json index 840827cbb08..ad71044a753 100644 --- a/apps/federatedfilesharing/l10n/de_DE.json +++ b/apps/federatedfilesharing/l10n/de_DE.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Federated-Sharing", "Invalid Federated Cloud ID" : "Ungültige Federated-Cloud-ID", "Sharing %s failed, because this item is already shared with %s" : "Die Freigabe von %s ist fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Die Freigabe von %s ist fehlgeschlagen, da %s nicht gefunden wurde. Möglicherweise ist der Server nicht erreichbar.", + "Accept" : "Akzeptieren", + "Decline" : "Ablehnen", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Teilen Sie mit mir über meine #ownCloud Federated-Cloud-ID, siehe %s", "Share with me through my #ownCloud Federated Cloud ID" : "Teilen Sie mit mir über meine #ownCloud Federated-Cloud-ID", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", diff --git a/apps/federatedfilesharing/l10n/el.js b/apps/federatedfilesharing/l10n/el.js index 23d0c9ae6cf..59872512e87 100644 --- a/apps/federatedfilesharing/l10n/el.js +++ b/apps/federatedfilesharing/l10n/el.js @@ -4,6 +4,8 @@ OC.L10N.register( "Invalid Federated Cloud ID" : "Μη έγκυρο Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο ήδη με τον χρήστη %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Αποτυχία διαμοιρασμού %s, δεν βρέθηκε το %s, μπορεί ο διακομιστής να είναι προσωρινά απροσπέλαστος.", + "Accept" : "Αποδοχή", + "Decline" : "Απόρριψη", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Διαμοιρασμός με εμένα μέσω του #ownCloud Federated Cloud ID μου, δείτε %s", "Share with me through my #ownCloud Federated Cloud ID" : "Διαμοιρασμός με εμένα μέσω του #ownCloud Federated Cloud ID μου", "Federated Cloud Sharing" : "Διαμοιρασμός σε ομόσπονδα σύννεφα ", diff --git a/apps/federatedfilesharing/l10n/el.json b/apps/federatedfilesharing/l10n/el.json index bd133b05cd2..10b362dc3e1 100644 --- a/apps/federatedfilesharing/l10n/el.json +++ b/apps/federatedfilesharing/l10n/el.json @@ -2,6 +2,8 @@ "Invalid Federated Cloud ID" : "Μη έγκυρο Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο ήδη με τον χρήστη %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Αποτυχία διαμοιρασμού %s, δεν βρέθηκε το %s, μπορεί ο διακομιστής να είναι προσωρινά απροσπέλαστος.", + "Accept" : "Αποδοχή", + "Decline" : "Απόρριψη", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Διαμοιρασμός με εμένα μέσω του #ownCloud Federated Cloud ID μου, δείτε %s", "Share with me through my #ownCloud Federated Cloud ID" : "Διαμοιρασμός με εμένα μέσω του #ownCloud Federated Cloud ID μου", "Federated Cloud Sharing" : "Διαμοιρασμός σε ομόσπονδα σύννεφα ", diff --git a/apps/federatedfilesharing/l10n/en_GB.js b/apps/federatedfilesharing/l10n/en_GB.js index de214687f99..a086be772a9 100644 --- a/apps/federatedfilesharing/l10n/en_GB.js +++ b/apps/federatedfilesharing/l10n/en_GB.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federated sharing", "Invalid Federated Cloud ID" : "Invalid Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Sharing %s failed, because this item is already shared with %s", "Not allowed to create a federated share with the same user" : "Not allowed to create a federated share with the same user", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Sharing %s failed, could not find %s, maybe the server is currently unreachable.", + "Accept" : "Accept", + "Decline" : "Decline", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Share with me through my #ownCloud Federated Cloud ID, see %s", "Share with me through my #ownCloud Federated Cloud ID" : "Share with me through my #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/en_GB.json b/apps/federatedfilesharing/l10n/en_GB.json index 05215fead67..6d63365cf12 100644 --- a/apps/federatedfilesharing/l10n/en_GB.json +++ b/apps/federatedfilesharing/l10n/en_GB.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Federated sharing", "Invalid Federated Cloud ID" : "Invalid Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Sharing %s failed, because this item is already shared with %s", "Not allowed to create a federated share with the same user" : "Not allowed to create a federated share with the same user", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Sharing %s failed, could not find %s, maybe the server is currently unreachable.", + "Accept" : "Accept", + "Decline" : "Decline", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Share with me through my #ownCloud Federated Cloud ID, see %s", "Share with me through my #ownCloud Federated Cloud ID" : "Share with me through my #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/eo.js b/apps/federatedfilesharing/l10n/eo.js index 18a502628bf..5c0a6ef11b5 100644 --- a/apps/federatedfilesharing/l10n/eo.js +++ b/apps/federatedfilesharing/l10n/eo.js @@ -1,8 +1,11 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federa kunhavado", "Sharing %s failed, because this item is already shared with %s" : "Kunhavigo de %s malsukcesis, ĉar la ero jam kunhavatas kun %s", "Not allowed to create a federated share with the same user" : "Vi ne permesas krei federan kunhavon kun la sama uzanto", + "Accept" : "Akcepti", + "Decline" : "Malakcepti", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Kunhavigi kun mi per mia identigilo de #ownCloud-federnuba identigilo; vidu %s", "Share with me through my #ownCloud Federated Cloud ID" : "Kunhavigi kun mi per mia #ownCloud-federnuba identigilo", "Federated Cloud Sharing" : "Federnuba kunhavado", diff --git a/apps/federatedfilesharing/l10n/eo.json b/apps/federatedfilesharing/l10n/eo.json index 3396c643076..28c57678d6a 100644 --- a/apps/federatedfilesharing/l10n/eo.json +++ b/apps/federatedfilesharing/l10n/eo.json @@ -1,6 +1,9 @@ { "translations": { + "Federated sharing" : "Federa kunhavado", "Sharing %s failed, because this item is already shared with %s" : "Kunhavigo de %s malsukcesis, ĉar la ero jam kunhavatas kun %s", "Not allowed to create a federated share with the same user" : "Vi ne permesas krei federan kunhavon kun la sama uzanto", + "Accept" : "Akcepti", + "Decline" : "Malakcepti", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Kunhavigi kun mi per mia identigilo de #ownCloud-federnuba identigilo; vidu %s", "Share with me through my #ownCloud Federated Cloud ID" : "Kunhavigi kun mi per mia #ownCloud-federnuba identigilo", "Federated Cloud Sharing" : "Federnuba kunhavado", diff --git a/apps/federatedfilesharing/l10n/es.js b/apps/federatedfilesharing/l10n/es.js index 9b39eb669ad..5f03e78d1d7 100644 --- a/apps/federatedfilesharing/l10n/es.js +++ b/apps/federatedfilesharing/l10n/es.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Compartido federado", "Invalid Federated Cloud ID" : "ID Nube federada inválida", "Sharing %s failed, because this item is already shared with %s" : "Se falló al compartir %s, ya que este elemento ya está compartido con %s", "Not allowed to create a federated share with the same user" : "No se permite crear un recurso compartido federado con el mismo usuario", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Se falló al compartir %s. No se pudo hallar %s, quizás haya un problema de conexión con el servidor.", + "Accept" : "Aceptar", + "Decline" : "Denegar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Compartirlo conmigo a través de mi ID Nube Federada #ownCloud, ver %s", "Share with me through my #ownCloud Federated Cloud ID" : "Compartirlo conmigo a través de mi ID Nube Federada #ownCloud", "Federated Cloud Sharing" : "Compartido en Cloud Federado", diff --git a/apps/federatedfilesharing/l10n/es.json b/apps/federatedfilesharing/l10n/es.json index a23dfe6c2e9..14b3682fc84 100644 --- a/apps/federatedfilesharing/l10n/es.json +++ b/apps/federatedfilesharing/l10n/es.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Compartido federado", "Invalid Federated Cloud ID" : "ID Nube federada inválida", "Sharing %s failed, because this item is already shared with %s" : "Se falló al compartir %s, ya que este elemento ya está compartido con %s", "Not allowed to create a federated share with the same user" : "No se permite crear un recurso compartido federado con el mismo usuario", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Se falló al compartir %s. No se pudo hallar %s, quizás haya un problema de conexión con el servidor.", + "Accept" : "Aceptar", + "Decline" : "Denegar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Compartirlo conmigo a través de mi ID Nube Federada #ownCloud, ver %s", "Share with me through my #ownCloud Federated Cloud ID" : "Compartirlo conmigo a través de mi ID Nube Federada #ownCloud", "Federated Cloud Sharing" : "Compartido en Cloud Federado", diff --git a/apps/federatedfilesharing/l10n/et_EE.js b/apps/federatedfilesharing/l10n/et_EE.js index 13ba34661e9..63f96142417 100644 --- a/apps/federatedfilesharing/l10n/et_EE.js +++ b/apps/federatedfilesharing/l10n/et_EE.js @@ -2,6 +2,8 @@ OC.L10N.register( "federatedfilesharing", { "Sharing %s failed, because this item is already shared with %s" : "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud %s", + "Accept" : "Nõustu", + "Decline" : "Lükka tagasi", "Open documentation" : "Ava dokumentatsioon", "Allow users on this server to send shares to other servers" : "Luba selle serveri kasutajatel saata faile teistesse serveritesse", "Allow users on this server to receive shares from other servers" : "Luba selle serveri kasutajatel võtta vastu jagamisi teistest serveritest", diff --git a/apps/federatedfilesharing/l10n/et_EE.json b/apps/federatedfilesharing/l10n/et_EE.json index fc605a5c4b1..8c0b658b780 100644 --- a/apps/federatedfilesharing/l10n/et_EE.json +++ b/apps/federatedfilesharing/l10n/et_EE.json @@ -1,5 +1,7 @@ { "translations": { "Sharing %s failed, because this item is already shared with %s" : "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud %s", + "Accept" : "Nõustu", + "Decline" : "Lükka tagasi", "Open documentation" : "Ava dokumentatsioon", "Allow users on this server to send shares to other servers" : "Luba selle serveri kasutajatel saata faile teistesse serveritesse", "Allow users on this server to receive shares from other servers" : "Luba selle serveri kasutajatel võtta vastu jagamisi teistest serveritest", diff --git a/apps/federatedfilesharing/l10n/fa.js b/apps/federatedfilesharing/l10n/fa.js index a96919f5252..aa8625e10e6 100644 --- a/apps/federatedfilesharing/l10n/fa.js +++ b/apps/federatedfilesharing/l10n/fa.js @@ -1,6 +1,7 @@ OC.L10N.register( "federatedfilesharing", { + "Accept" : "قبول", "Open documentation" : "بازکردن مستند", "HTML Code:" : "کد HTML :" }, diff --git a/apps/federatedfilesharing/l10n/fa.json b/apps/federatedfilesharing/l10n/fa.json index 131e83df6d8..4bc34351fd2 100644 --- a/apps/federatedfilesharing/l10n/fa.json +++ b/apps/federatedfilesharing/l10n/fa.json @@ -1,4 +1,5 @@ { "translations": { + "Accept" : "قبول", "Open documentation" : "بازکردن مستند", "HTML Code:" : "کد HTML :" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/apps/federatedfilesharing/l10n/fi_FI.js b/apps/federatedfilesharing/l10n/fi_FI.js index 5380916d11a..feacb31454c 100644 --- a/apps/federatedfilesharing/l10n/fi_FI.js +++ b/apps/federatedfilesharing/l10n/fi_FI.js @@ -1,10 +1,14 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federoitu jakaminen", "Invalid Federated Cloud ID" : "Virheellinen federoidun pilven tunniste", "Sharing %s failed, because this item is already shared with %s" : "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa", "Not allowed to create a federated share with the same user" : "Saman käyttäjän kanssa ei ole sallittua luoda federoitua jakoa", + "File is already shared with %s" : "Tiedosto on jo jaettu kohteen %s kanssa", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Kohteen %s jakaminen epäonnistui, kohdetta %s ei löytynyt. Kenties palvelin ei ole juuri nyt tavoitettavissa.", + "Accept" : "Hyväksy", + "Decline" : "Kieltäydy", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Jaa kanssani käyttäen #ownCloud ja federoitua pilvitunnistetta, katso %s", "Share with me through my #ownCloud Federated Cloud ID" : "Jaa kanssani käyttäen #ownCloud ja federoitua pilvitunnistetta", "Federated Cloud Sharing" : "Federoitu pilvijakaminen", diff --git a/apps/federatedfilesharing/l10n/fi_FI.json b/apps/federatedfilesharing/l10n/fi_FI.json index 526c3883ef4..e160e182c51 100644 --- a/apps/federatedfilesharing/l10n/fi_FI.json +++ b/apps/federatedfilesharing/l10n/fi_FI.json @@ -1,8 +1,12 @@ { "translations": { + "Federated sharing" : "Federoitu jakaminen", "Invalid Federated Cloud ID" : "Virheellinen federoidun pilven tunniste", "Sharing %s failed, because this item is already shared with %s" : "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa", "Not allowed to create a federated share with the same user" : "Saman käyttäjän kanssa ei ole sallittua luoda federoitua jakoa", + "File is already shared with %s" : "Tiedosto on jo jaettu kohteen %s kanssa", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Kohteen %s jakaminen epäonnistui, kohdetta %s ei löytynyt. Kenties palvelin ei ole juuri nyt tavoitettavissa.", + "Accept" : "Hyväksy", + "Decline" : "Kieltäydy", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Jaa kanssani käyttäen #ownCloud ja federoitua pilvitunnistetta, katso %s", "Share with me through my #ownCloud Federated Cloud ID" : "Jaa kanssani käyttäen #ownCloud ja federoitua pilvitunnistetta", "Federated Cloud Sharing" : "Federoitu pilvijakaminen", diff --git a/apps/federatedfilesharing/l10n/fr.js b/apps/federatedfilesharing/l10n/fr.js index c13b161125e..6628a75d6c6 100644 --- a/apps/federatedfilesharing/l10n/fr.js +++ b/apps/federatedfilesharing/l10n/fr.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federated sharing", "Invalid Federated Cloud ID" : "ID Federated Cloud incorrect", "Sharing %s failed, because this item is already shared with %s" : "Le partage de %s a échoué car cet élément est déjà partagé avec %s", "Not allowed to create a federated share with the same user" : "Non autorisé à créer un partage fédéré avec le même utilisateur", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Le partage de %s a échoué : impossible de trouver %s. Peut-être le serveur est-il momentanément injoignable.", + "Accept" : "Accepter", + "Decline" : "Refuser", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Partagez avec moi grâce à mon identifiant Federated Cloud #owncloud %s", "Share with me through my #ownCloud Federated Cloud ID" : "Partagez avec moi grâce à mon identifiant Federated Cloud #owncloud", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/fr.json b/apps/federatedfilesharing/l10n/fr.json index 651b14a210b..d27fb80af3d 100644 --- a/apps/federatedfilesharing/l10n/fr.json +++ b/apps/federatedfilesharing/l10n/fr.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Federated sharing", "Invalid Federated Cloud ID" : "ID Federated Cloud incorrect", "Sharing %s failed, because this item is already shared with %s" : "Le partage de %s a échoué car cet élément est déjà partagé avec %s", "Not allowed to create a federated share with the same user" : "Non autorisé à créer un partage fédéré avec le même utilisateur", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Le partage de %s a échoué : impossible de trouver %s. Peut-être le serveur est-il momentanément injoignable.", + "Accept" : "Accepter", + "Decline" : "Refuser", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Partagez avec moi grâce à mon identifiant Federated Cloud #owncloud %s", "Share with me through my #ownCloud Federated Cloud ID" : "Partagez avec moi grâce à mon identifiant Federated Cloud #owncloud", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/gl.js b/apps/federatedfilesharing/l10n/gl.js index 0c3acb791ff..3ea3fd5938f 100644 --- a/apps/federatedfilesharing/l10n/gl.js +++ b/apps/federatedfilesharing/l10n/gl.js @@ -5,6 +5,7 @@ OC.L10N.register( "Sharing %s failed, because this item is already shared with %s" : "Fallou a compartición de %s, este elemento xa está compartido con %s", "Not allowed to create a federated share with the same user" : "Non está permitido crear unha compartición federada co mesmo usuario", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Fallou a compartición de %s, non foi posíbel atopar %s,é probábel que o servidor non estea accesíbel.", + "Accept" : "Aceptar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Comparte comigo a través do meu ID da nube federada do #ownCloud , vexa %s", "Share with me through my #ownCloud Federated Cloud ID" : "Comparte comigo a través do meu ID da nube federada do #ownCloud", "Federated Cloud Sharing" : "Nube federada compartida", diff --git a/apps/federatedfilesharing/l10n/gl.json b/apps/federatedfilesharing/l10n/gl.json index aeba950d052..e279098ab77 100644 --- a/apps/federatedfilesharing/l10n/gl.json +++ b/apps/federatedfilesharing/l10n/gl.json @@ -3,6 +3,7 @@ "Sharing %s failed, because this item is already shared with %s" : "Fallou a compartición de %s, este elemento xa está compartido con %s", "Not allowed to create a federated share with the same user" : "Non está permitido crear unha compartición federada co mesmo usuario", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Fallou a compartición de %s, non foi posíbel atopar %s,é probábel que o servidor non estea accesíbel.", + "Accept" : "Aceptar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Comparte comigo a través do meu ID da nube federada do #ownCloud , vexa %s", "Share with me through my #ownCloud Federated Cloud ID" : "Comparte comigo a través do meu ID da nube federada do #ownCloud", "Federated Cloud Sharing" : "Nube federada compartida", diff --git a/apps/federatedfilesharing/l10n/he.js b/apps/federatedfilesharing/l10n/he.js index 15c0bde9aa8..2384fc6a8d1 100644 --- a/apps/federatedfilesharing/l10n/he.js +++ b/apps/federatedfilesharing/l10n/he.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "שיתוף מאוגד", "Invalid Federated Cloud ID" : "זיהוי ענן מאוגד לא חוקי", "Sharing %s failed, because this item is already shared with %s" : "שיתוף %s נכשל, כיוון שפריט זה כבר משותף עם %s", "Not allowed to create a federated share with the same user" : "אסור ליצור שיתוף מאוגד עם אותו משתמש", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "שיתוף %s נכשל, לא ניתן לאתר %s, ייתכן שהשרת לא ניתן להשגה כרגע.", + "Accept" : "אישור", + "Decline" : "סירוב", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "שיתוף איתי באמצעות מספר זהות שרת ה- #ownCloud המאוגד שלי, ניתן לראות %s", "Share with me through my #ownCloud Federated Cloud ID" : "שיתוף איתי באמצעות מספר זהות שרת ה- #ownCloud המאוגד שלי", "Federated Cloud Sharing" : "ענן שיתוף מאוגד", diff --git a/apps/federatedfilesharing/l10n/he.json b/apps/federatedfilesharing/l10n/he.json index a0f156f42e8..c5a16f2545f 100644 --- a/apps/federatedfilesharing/l10n/he.json +++ b/apps/federatedfilesharing/l10n/he.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "שיתוף מאוגד", "Invalid Federated Cloud ID" : "זיהוי ענן מאוגד לא חוקי", "Sharing %s failed, because this item is already shared with %s" : "שיתוף %s נכשל, כיוון שפריט זה כבר משותף עם %s", "Not allowed to create a federated share with the same user" : "אסור ליצור שיתוף מאוגד עם אותו משתמש", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "שיתוף %s נכשל, לא ניתן לאתר %s, ייתכן שהשרת לא ניתן להשגה כרגע.", + "Accept" : "אישור", + "Decline" : "סירוב", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "שיתוף איתי באמצעות מספר זהות שרת ה- #ownCloud המאוגד שלי, ניתן לראות %s", "Share with me through my #ownCloud Federated Cloud ID" : "שיתוף איתי באמצעות מספר זהות שרת ה- #ownCloud המאוגד שלי", "Federated Cloud Sharing" : "ענן שיתוף מאוגד", diff --git a/apps/federatedfilesharing/l10n/hu_HU.js b/apps/federatedfilesharing/l10n/hu_HU.js index 4e17934c032..0f0ffdd1295 100644 --- a/apps/federatedfilesharing/l10n/hu_HU.js +++ b/apps/federatedfilesharing/l10n/hu_HU.js @@ -5,6 +5,8 @@ OC.L10N.register( "Sharing %s failed, because this item is already shared with %s" : "%s megosztása nem sikerült, mert ez már meg van osztva vele: %s", "Not allowed to create a federated share with the same user" : "Azonos felhasználóval nem lehet létrehozni egyesített megosztást", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s megosztása sikertelen, mert %s nem található; talán a szerver jelenleg nem elérhető.", + "Accept" : "Elfogadás", + "Decline" : "Elutasítás", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Ossza meg velem az #ownCloud Egyesített Felhő Azonosító segítségével, lásd %s", "Share with me through my #ownCloud Federated Cloud ID" : "Ossza meg velem az #ownCloud Egyesített Felhő Azonosító segítségével ", "Federated Cloud Sharing" : "Megosztás Egyesített Felhőben", diff --git a/apps/federatedfilesharing/l10n/hu_HU.json b/apps/federatedfilesharing/l10n/hu_HU.json index 0ceac624c27..24e25b6aa4c 100644 --- a/apps/federatedfilesharing/l10n/hu_HU.json +++ b/apps/federatedfilesharing/l10n/hu_HU.json @@ -3,6 +3,8 @@ "Sharing %s failed, because this item is already shared with %s" : "%s megosztása nem sikerült, mert ez már meg van osztva vele: %s", "Not allowed to create a federated share with the same user" : "Azonos felhasználóval nem lehet létrehozni egyesített megosztást", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s megosztása sikertelen, mert %s nem található; talán a szerver jelenleg nem elérhető.", + "Accept" : "Elfogadás", + "Decline" : "Elutasítás", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Ossza meg velem az #ownCloud Egyesített Felhő Azonosító segítségével, lásd %s", "Share with me through my #ownCloud Federated Cloud ID" : "Ossza meg velem az #ownCloud Egyesített Felhő Azonosító segítségével ", "Federated Cloud Sharing" : "Megosztás Egyesített Felhőben", diff --git a/apps/federatedfilesharing/l10n/id.js b/apps/federatedfilesharing/l10n/id.js index fa407c02af8..b7206c0ae62 100644 --- a/apps/federatedfilesharing/l10n/id.js +++ b/apps/federatedfilesharing/l10n/id.js @@ -4,6 +4,8 @@ OC.L10N.register( "Invalid Federated Cloud ID" : "Federated Cloud ID tidak sah", "Sharing %s failed, because this item is already shared with %s" : "Gagal membagkan %s, karena item ini sudah dibagikan dengan %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Berbagi %s gagal, tidak menemukan %s, kemungkinan saat ini server tidak dapat dijangkau.", + "Accept" : "Terima", + "Decline" : "Tolak", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Dibagikan pada saya melalui #ownCloud Federated Cloud ID saya, lihat %s", "Share with me through my #ownCloud Federated Cloud ID" : "Dibagikan pada saya melalui #ownCloud Federated Cloud ID saya", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/id.json b/apps/federatedfilesharing/l10n/id.json index d21649ba386..71695b07546 100644 --- a/apps/federatedfilesharing/l10n/id.json +++ b/apps/federatedfilesharing/l10n/id.json @@ -2,6 +2,8 @@ "Invalid Federated Cloud ID" : "Federated Cloud ID tidak sah", "Sharing %s failed, because this item is already shared with %s" : "Gagal membagkan %s, karena item ini sudah dibagikan dengan %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Berbagi %s gagal, tidak menemukan %s, kemungkinan saat ini server tidak dapat dijangkau.", + "Accept" : "Terima", + "Decline" : "Tolak", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Dibagikan pada saya melalui #ownCloud Federated Cloud ID saya, lihat %s", "Share with me through my #ownCloud Federated Cloud ID" : "Dibagikan pada saya melalui #ownCloud Federated Cloud ID saya", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/is.js b/apps/federatedfilesharing/l10n/is.js index fbe6d2ee2d5..14e1c4a3aa8 100644 --- a/apps/federatedfilesharing/l10n/is.js +++ b/apps/federatedfilesharing/l10n/is.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Deiling milli þjóna", "Invalid Federated Cloud ID" : "Ógilt skýjasambandsauðkenni (Federated Cloud ID)", "Sharing %s failed, because this item is already shared with %s" : "Deiling %s mistókst, því þessu atriði er þegar deilt með %s", "Not allowed to create a federated share with the same user" : "Ekki er heimilt að búa til skýjasambandssameign með sama notanda", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Deiling %s mistókst, gat ekki fundið %s, hugsanlega er þjónninn ekki tiltækur í augnablikinu.", + "Accept" : "Samþykkja", + "Decline" : "Hafna", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #ownCloud Federated Cloud ID, sjá %s", "Share with me through my #ownCloud Federated Cloud ID" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Deiling með skýjasambandi", diff --git a/apps/federatedfilesharing/l10n/is.json b/apps/federatedfilesharing/l10n/is.json index 9600e01aed3..650ebaf2cf1 100644 --- a/apps/federatedfilesharing/l10n/is.json +++ b/apps/federatedfilesharing/l10n/is.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Deiling milli þjóna", "Invalid Federated Cloud ID" : "Ógilt skýjasambandsauðkenni (Federated Cloud ID)", "Sharing %s failed, because this item is already shared with %s" : "Deiling %s mistókst, því þessu atriði er þegar deilt með %s", "Not allowed to create a federated share with the same user" : "Ekki er heimilt að búa til skýjasambandssameign með sama notanda", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Deiling %s mistókst, gat ekki fundið %s, hugsanlega er þjónninn ekki tiltækur í augnablikinu.", + "Accept" : "Samþykkja", + "Decline" : "Hafna", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #ownCloud Federated Cloud ID, sjá %s", "Share with me through my #ownCloud Federated Cloud ID" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Deiling með skýjasambandi", diff --git a/apps/federatedfilesharing/l10n/it.js b/apps/federatedfilesharing/l10n/it.js index f2e2461e888..ae77c6edcaf 100644 --- a/apps/federatedfilesharing/l10n/it.js +++ b/apps/federatedfilesharing/l10n/it.js @@ -1,10 +1,16 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Condivisione federata", "Invalid Federated Cloud ID" : "ID di cloud federata non valido", "Sharing %s failed, because this item is already shared with %s" : "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", "Not allowed to create a federated share with the same user" : "Non è consentito creare una condivisione federata con lo stesso utente", + "File is already shared with %s" : "Il file è già condiviso con %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "La condivisione di %s non è riuscita, impossibile trovare %s, è probabile che il server non sia al momento raggiungibile.", + "You received \"/%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Hai ricevuto \"/%3$s\" come condivisione remota da %1$s (per conto di %2$s)", + "You received \"/%3$s\" as a remote share from %1$s" : "Hai ricevuto \"/%3$s\" come condivisione remota da %1$s", + "Accept" : "Accetta", + "Decline" : "Rifiuta", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Condividi con me attraverso il mio ID di cloud federata #ownCloud, vedi %s", "Share with me through my #ownCloud Federated Cloud ID" : "Condividi con me attraverso il mio ID di cloud federata #ownCloud", "Federated Cloud Sharing" : "Condivisione cloud federata", diff --git a/apps/federatedfilesharing/l10n/it.json b/apps/federatedfilesharing/l10n/it.json index fdf76b20e54..98fae86b269 100644 --- a/apps/federatedfilesharing/l10n/it.json +++ b/apps/federatedfilesharing/l10n/it.json @@ -1,8 +1,14 @@ { "translations": { + "Federated sharing" : "Condivisione federata", "Invalid Federated Cloud ID" : "ID di cloud federata non valido", "Sharing %s failed, because this item is already shared with %s" : "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", "Not allowed to create a federated share with the same user" : "Non è consentito creare una condivisione federata con lo stesso utente", + "File is already shared with %s" : "Il file è già condiviso con %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "La condivisione di %s non è riuscita, impossibile trovare %s, è probabile che il server non sia al momento raggiungibile.", + "You received \"/%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Hai ricevuto \"/%3$s\" come condivisione remota da %1$s (per conto di %2$s)", + "You received \"/%3$s\" as a remote share from %1$s" : "Hai ricevuto \"/%3$s\" come condivisione remota da %1$s", + "Accept" : "Accetta", + "Decline" : "Rifiuta", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Condividi con me attraverso il mio ID di cloud federata #ownCloud, vedi %s", "Share with me through my #ownCloud Federated Cloud ID" : "Condividi con me attraverso il mio ID di cloud federata #ownCloud", "Federated Cloud Sharing" : "Condivisione cloud federata", diff --git a/apps/federatedfilesharing/l10n/ja.js b/apps/federatedfilesharing/l10n/ja.js index 5522ae279e6..d33b8103b40 100644 --- a/apps/federatedfilesharing/l10n/ja.js +++ b/apps/federatedfilesharing/l10n/ja.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "連携共有", "Invalid Federated Cloud ID" : "無効な統合されたクラウドID", "Sharing %s failed, because this item is already shared with %s" : "%s を共有できませんでした。このアイテムはすでに %s に共有されています。", "Not allowed to create a federated share with the same user" : "同じユーザーでフェデレーション共有を作成することは出来ません", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s を共有できませんでした。%s が見つかりませんでした。現在サーバーに接続できないようです。", + "Accept" : "承諾", + "Decline" : "拒否《はてなキーワード》", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "#ownCloud の「クラウド連携ID」で私と共有できます。こちらを見てください。%s", "Share with me through my #ownCloud Federated Cloud ID" : "#ownCloud の「クラウド連携ID」で私と共有できます。", "Federated Cloud Sharing" : "統合されたクラウド共有", diff --git a/apps/federatedfilesharing/l10n/ja.json b/apps/federatedfilesharing/l10n/ja.json index 6a7ca1b59d5..833731983d2 100644 --- a/apps/federatedfilesharing/l10n/ja.json +++ b/apps/federatedfilesharing/l10n/ja.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "連携共有", "Invalid Federated Cloud ID" : "無効な統合されたクラウドID", "Sharing %s failed, because this item is already shared with %s" : "%s を共有できませんでした。このアイテムはすでに %s に共有されています。", "Not allowed to create a federated share with the same user" : "同じユーザーでフェデレーション共有を作成することは出来ません", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s を共有できませんでした。%s が見つかりませんでした。現在サーバーに接続できないようです。", + "Accept" : "承諾", + "Decline" : "拒否《はてなキーワード》", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "#ownCloud の「クラウド連携ID」で私と共有できます。こちらを見てください。%s", "Share with me through my #ownCloud Federated Cloud ID" : "#ownCloud の「クラウド連携ID」で私と共有できます。", "Federated Cloud Sharing" : "統合されたクラウド共有", diff --git a/apps/federatedfilesharing/l10n/ko.js b/apps/federatedfilesharing/l10n/ko.js index 4e6294e66ca..cb21b7b15c4 100644 --- a/apps/federatedfilesharing/l10n/ko.js +++ b/apps/federatedfilesharing/l10n/ko.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "연합 공유", "Invalid Federated Cloud ID" : "잘못된 연합 클라우드 ID", "Sharing %s failed, because this item is already shared with %s" : "%s을(를) 공유할 수 없습니다. 이미 %s 님과 공유되어 있습니다", "Not allowed to create a federated share with the same user" : "같은 사용자와 연합 공유를 만들 수 없음", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s을(를) 공유할 수 없습니다. %s을(를) 찾을 수 없습니다. 서버에 접근하지 못할 수도 있습니다.", + "Accept" : "수락", + "Decline" : "거절", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "내 #ownCloud 연합 클라우드 ID를 통해서 공유됨, 더 알아보기: %s", "Share with me through my #ownCloud Federated Cloud ID" : "내 #ownCloud 연합 클라우드 ID를 통해서 공유됨", "Federated Cloud Sharing" : "클라우드 연합 공유", diff --git a/apps/federatedfilesharing/l10n/ko.json b/apps/federatedfilesharing/l10n/ko.json index 0e1a2247ba9..6240975855e 100644 --- a/apps/federatedfilesharing/l10n/ko.json +++ b/apps/federatedfilesharing/l10n/ko.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "연합 공유", "Invalid Federated Cloud ID" : "잘못된 연합 클라우드 ID", "Sharing %s failed, because this item is already shared with %s" : "%s을(를) 공유할 수 없습니다. 이미 %s 님과 공유되어 있습니다", "Not allowed to create a federated share with the same user" : "같은 사용자와 연합 공유를 만들 수 없음", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s을(를) 공유할 수 없습니다. %s을(를) 찾을 수 없습니다. 서버에 접근하지 못할 수도 있습니다.", + "Accept" : "수락", + "Decline" : "거절", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "내 #ownCloud 연합 클라우드 ID를 통해서 공유됨, 더 알아보기: %s", "Share with me through my #ownCloud Federated Cloud ID" : "내 #ownCloud 연합 클라우드 ID를 통해서 공유됨", "Federated Cloud Sharing" : "클라우드 연합 공유", diff --git a/apps/federatedfilesharing/l10n/lt_LT.js b/apps/federatedfilesharing/l10n/lt_LT.js index c6d05f617a4..89fe9525d8f 100644 --- a/apps/federatedfilesharing/l10n/lt_LT.js +++ b/apps/federatedfilesharing/l10n/lt_LT.js @@ -1,6 +1,8 @@ OC.L10N.register( "federatedfilesharing", { + "Accept" : "Priimti", + "Decline" : "Atmesti", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Pasidalink su manimi per #ownCloud padebesius, plačiau %s", "Share with me through my #ownCloud Federated Cloud ID" : "Pasidalink su manimi per #ownCloud padebesius", "Federated Cloud Sharing" : "Viešas dalijimasis padebesiu", diff --git a/apps/federatedfilesharing/l10n/lt_LT.json b/apps/federatedfilesharing/l10n/lt_LT.json index 4b295d4c1b7..318aa8d2771 100644 --- a/apps/federatedfilesharing/l10n/lt_LT.json +++ b/apps/federatedfilesharing/l10n/lt_LT.json @@ -1,4 +1,6 @@ { "translations": { + "Accept" : "Priimti", + "Decline" : "Atmesti", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Pasidalink su manimi per #ownCloud padebesius, plačiau %s", "Share with me through my #ownCloud Federated Cloud ID" : "Pasidalink su manimi per #ownCloud padebesius", "Federated Cloud Sharing" : "Viešas dalijimasis padebesiu", diff --git a/apps/federatedfilesharing/l10n/mk.js b/apps/federatedfilesharing/l10n/mk.js index 4d5fc92658b..cb4b8b8ca27 100644 --- a/apps/federatedfilesharing/l10n/mk.js +++ b/apps/federatedfilesharing/l10n/mk.js @@ -1,6 +1,8 @@ OC.L10N.register( "federatedfilesharing", { + "Accept" : "Прифати", + "Decline" : "Одбиј", "Federated Cloud Sharing" : "Федерирано клауд споделување", "Open documentation" : "Отвори ја документацијата", "Federated Cloud" : "Федериран клауд", diff --git a/apps/federatedfilesharing/l10n/mk.json b/apps/federatedfilesharing/l10n/mk.json index 9862c2ecf89..bf03603e193 100644 --- a/apps/federatedfilesharing/l10n/mk.json +++ b/apps/federatedfilesharing/l10n/mk.json @@ -1,4 +1,6 @@ { "translations": { + "Accept" : "Прифати", + "Decline" : "Одбиј", "Federated Cloud Sharing" : "Федерирано клауд споделување", "Open documentation" : "Отвори ја документацијата", "Federated Cloud" : "Федериран клауд", diff --git a/apps/federatedfilesharing/l10n/nb_NO.js b/apps/federatedfilesharing/l10n/nb_NO.js index c6ee1cc632f..8dc49c13a27 100644 --- a/apps/federatedfilesharing/l10n/nb_NO.js +++ b/apps/federatedfilesharing/l10n/nb_NO.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Sammenknyttet deling", "Invalid Federated Cloud ID" : "Ugyldig ID for sammenknyttet sky", "Sharing %s failed, because this item is already shared with %s" : "Deling av %s feilet, fordi dette elementet allerede er delt med %s", "Not allowed to create a federated share with the same user" : "Ikke tillatt å opprette en Sammenknyttet sky-deling med den samme brukeren", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Deling %s feilet, fant ikke %s, kanskje servern er utilgjengelig for øyeblikket.", + "Accept" : "Aksepter", + "Decline" : "Avslå", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Del med meg gjennom min #ownCloud ID for sammenknyttet sky, se %s", "Share with me through my #ownCloud Federated Cloud ID" : "Del med meg gjennom min #ownCloud ID for sammenknyttet sky", "Federated Cloud Sharing" : "Sammenknyttet sky-deling", diff --git a/apps/federatedfilesharing/l10n/nb_NO.json b/apps/federatedfilesharing/l10n/nb_NO.json index 89a23700e5c..3616ca1f6c5 100644 --- a/apps/federatedfilesharing/l10n/nb_NO.json +++ b/apps/federatedfilesharing/l10n/nb_NO.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Sammenknyttet deling", "Invalid Federated Cloud ID" : "Ugyldig ID for sammenknyttet sky", "Sharing %s failed, because this item is already shared with %s" : "Deling av %s feilet, fordi dette elementet allerede er delt med %s", "Not allowed to create a federated share with the same user" : "Ikke tillatt å opprette en Sammenknyttet sky-deling med den samme brukeren", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Deling %s feilet, fant ikke %s, kanskje servern er utilgjengelig for øyeblikket.", + "Accept" : "Aksepter", + "Decline" : "Avslå", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Del med meg gjennom min #ownCloud ID for sammenknyttet sky, se %s", "Share with me through my #ownCloud Federated Cloud ID" : "Del med meg gjennom min #ownCloud ID for sammenknyttet sky", "Federated Cloud Sharing" : "Sammenknyttet sky-deling", diff --git a/apps/federatedfilesharing/l10n/nl.js b/apps/federatedfilesharing/l10n/nl.js index d46f7c30389..805abd08777 100644 --- a/apps/federatedfilesharing/l10n/nl.js +++ b/apps/federatedfilesharing/l10n/nl.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federated sharing", "Invalid Federated Cloud ID" : "Ongeldige Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Delen van %s is mislukt, omdat het object al wordt gedeeld met %s", "Not allowed to create a federated share with the same user" : "Het is niet toegestaan om een gefedereerde share met dezelfde gebruikersserver te maken", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Delen van %s mislukt, kon %s niet vinden, misschien is de server niet bereikbaar.", + "Accept" : "Accepteren", + "Decline" : "Afwijzen", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Deel met mij via mijn #ownCloud federated Cloud ID, zie %s", "Share with me through my #ownCloud Federated Cloud ID" : "Deel met mij via mijn #ownCloud federated Cloud ID", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/nl.json b/apps/federatedfilesharing/l10n/nl.json index 849af078f92..c208126327c 100644 --- a/apps/federatedfilesharing/l10n/nl.json +++ b/apps/federatedfilesharing/l10n/nl.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Federated sharing", "Invalid Federated Cloud ID" : "Ongeldige Federated Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Delen van %s is mislukt, omdat het object al wordt gedeeld met %s", "Not allowed to create a federated share with the same user" : "Het is niet toegestaan om een gefedereerde share met dezelfde gebruikersserver te maken", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Delen van %s mislukt, kon %s niet vinden, misschien is de server niet bereikbaar.", + "Accept" : "Accepteren", + "Decline" : "Afwijzen", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Deel met mij via mijn #ownCloud federated Cloud ID, zie %s", "Share with me through my #ownCloud Federated Cloud ID" : "Deel met mij via mijn #ownCloud federated Cloud ID", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/oc.js b/apps/federatedfilesharing/l10n/oc.js index c337f1ca2b1..d491a9eb1b7 100644 --- a/apps/federatedfilesharing/l10n/oc.js +++ b/apps/federatedfilesharing/l10n/oc.js @@ -4,6 +4,8 @@ OC.L10N.register( "Invalid Federated Cloud ID" : "ID Federated Cloud incorrècte", "Sharing %s failed, because this item is already shared with %s" : "Lo partiment de %s a fracassat perque aqueste objècte es ja partejat amb %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Lo partiment de %s a fracassat : impossible de trobar %s. Benlèu que lo servidor es momentanèament injonhable.", + "Accept" : "Acceptar", + "Decline" : "Refusar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Partejatz amb ieu gràcias a mon identificant Federated Cloud #owncloud %s", "Share with me through my #ownCloud Federated Cloud ID" : "Partejatz amb ieu gràcias a mon identificant Federated Cloud #owncloud", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/oc.json b/apps/federatedfilesharing/l10n/oc.json index 81bce1d1577..8047f9fc5bc 100644 --- a/apps/federatedfilesharing/l10n/oc.json +++ b/apps/federatedfilesharing/l10n/oc.json @@ -2,6 +2,8 @@ "Invalid Federated Cloud ID" : "ID Federated Cloud incorrècte", "Sharing %s failed, because this item is already shared with %s" : "Lo partiment de %s a fracassat perque aqueste objècte es ja partejat amb %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Lo partiment de %s a fracassat : impossible de trobar %s. Benlèu que lo servidor es momentanèament injonhable.", + "Accept" : "Acceptar", + "Decline" : "Refusar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Partejatz amb ieu gràcias a mon identificant Federated Cloud #owncloud %s", "Share with me through my #ownCloud Federated Cloud ID" : "Partejatz amb ieu gràcias a mon identificant Federated Cloud #owncloud", "Federated Cloud Sharing" : "Federated Cloud Sharing", diff --git a/apps/federatedfilesharing/l10n/pl.js b/apps/federatedfilesharing/l10n/pl.js index 7293e72689e..9bd5edd9b56 100644 --- a/apps/federatedfilesharing/l10n/pl.js +++ b/apps/federatedfilesharing/l10n/pl.js @@ -3,6 +3,7 @@ OC.L10N.register( { "Sharing %s failed, because this item is already shared with %s" : "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Współdzielenie %s nie powiodło się, nie można odnaleźć %s. Prawdopobnie serwer nie jest teraz osiągalny.", + "Accept" : "Akceptuj", "Open documentation" : "Otwórz dokumentację", "Add to your website" : "Dodaj do swojej strony" }, diff --git a/apps/federatedfilesharing/l10n/pl.json b/apps/federatedfilesharing/l10n/pl.json index d8b5219b963..5fd8fb130b7 100644 --- a/apps/federatedfilesharing/l10n/pl.json +++ b/apps/federatedfilesharing/l10n/pl.json @@ -1,6 +1,7 @@ { "translations": { "Sharing %s failed, because this item is already shared with %s" : "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Współdzielenie %s nie powiodło się, nie można odnaleźć %s. Prawdopobnie serwer nie jest teraz osiągalny.", + "Accept" : "Akceptuj", "Open documentation" : "Otwórz dokumentację", "Add to your website" : "Dodaj do swojej strony" },"pluralForm" :"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" diff --git a/apps/federatedfilesharing/l10n/pt_BR.js b/apps/federatedfilesharing/l10n/pt_BR.js index 34c6357b8e0..a6f2a081a35 100644 --- a/apps/federatedfilesharing/l10n/pt_BR.js +++ b/apps/federatedfilesharing/l10n/pt_BR.js @@ -1,18 +1,22 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Compartilhamento associado", "Invalid Federated Cloud ID" : "Inválida Associação de Nuvem ID", "Sharing %s failed, because this item is already shared with %s" : "Compartilhamento %s falhou, porque este ítem já está compartilhado com %s", "Not allowed to create a federated share with the same user" : "Não é permitido criar um compartilhamento associado com o mesmo usuário", + "File is already shared with %s" : "O arquivo já é compartilhado com %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "O compartilhamento %s falhou, porque não foi possível encontrar %s, talvez o servidor esteja inacessível.", - "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Associada, veja %s", - "Share with me through my #ownCloud Federated Cloud ID" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Associada", - "Federated Cloud Sharing" : "Compartilhamento de Nuvem Associada", + "Accept" : "Aceitar", + "Decline" : "Rejeitar", + "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Federada, veja %s", + "Share with me through my #ownCloud Federated Cloud ID" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Federada", + "Federated Cloud Sharing" : "Nuvem Associada Federada", "Open documentation" : "Abrir documentação", "Allow users on this server to send shares to other servers" : "Permitir que os usuários deste servidor enviem compartilhamentos para outros servidores", "Allow users on this server to receive shares from other servers" : "Permitir que os usuários nesse servidor recebam compartilhamentos de outros servidores", - "Federated Cloud" : "Nuvem Associada", - "Your Federated Cloud ID:" : "Sua ID na Nuvem Associada:", + "Federated Cloud" : "Nuvem Federada", + "Your Federated Cloud ID:" : "Sua ID na Nuvem Federada:", "Share it:" : "Compartilhe:", "Add to your website" : "Adicione ao seu website", "Share with me via ownCloud" : "Compartilhe comigo via ownCloud", diff --git a/apps/federatedfilesharing/l10n/pt_BR.json b/apps/federatedfilesharing/l10n/pt_BR.json index 2fdb6a45f4d..645dfad3bc5 100644 --- a/apps/federatedfilesharing/l10n/pt_BR.json +++ b/apps/federatedfilesharing/l10n/pt_BR.json @@ -1,16 +1,20 @@ { "translations": { + "Federated sharing" : "Compartilhamento associado", "Invalid Federated Cloud ID" : "Inválida Associação de Nuvem ID", "Sharing %s failed, because this item is already shared with %s" : "Compartilhamento %s falhou, porque este ítem já está compartilhado com %s", "Not allowed to create a federated share with the same user" : "Não é permitido criar um compartilhamento associado com o mesmo usuário", + "File is already shared with %s" : "O arquivo já é compartilhado com %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "O compartilhamento %s falhou, porque não foi possível encontrar %s, talvez o servidor esteja inacessível.", - "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Associada, veja %s", - "Share with me through my #ownCloud Federated Cloud ID" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Associada", - "Federated Cloud Sharing" : "Compartilhamento de Nuvem Associada", + "Accept" : "Aceitar", + "Decline" : "Rejeitar", + "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Federada, veja %s", + "Share with me through my #ownCloud Federated Cloud ID" : "Compartilhe comigo através do meu #ownCloud Nuvem ID Federada", + "Federated Cloud Sharing" : "Nuvem Associada Federada", "Open documentation" : "Abrir documentação", "Allow users on this server to send shares to other servers" : "Permitir que os usuários deste servidor enviem compartilhamentos para outros servidores", "Allow users on this server to receive shares from other servers" : "Permitir que os usuários nesse servidor recebam compartilhamentos de outros servidores", - "Federated Cloud" : "Nuvem Associada", - "Your Federated Cloud ID:" : "Sua ID na Nuvem Associada:", + "Federated Cloud" : "Nuvem Federada", + "Your Federated Cloud ID:" : "Sua ID na Nuvem Federada:", "Share it:" : "Compartilhe:", "Add to your website" : "Adicione ao seu website", "Share with me via ownCloud" : "Compartilhe comigo via ownCloud", diff --git a/apps/federatedfilesharing/l10n/pt_PT.js b/apps/federatedfilesharing/l10n/pt_PT.js index f11078268a4..65c82b34839 100644 --- a/apps/federatedfilesharing/l10n/pt_PT.js +++ b/apps/federatedfilesharing/l10n/pt_PT.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Partilha federada", "Invalid Federated Cloud ID" : "Id. de Nuvem Federada Inválida", "Sharing %s failed, because this item is already shared with %s" : "A partilha %s falhou, porque o item já está a ser partilhado com %s", "Not allowed to create a federated share with the same user" : "Não é possível criar uma partilha federada com o mesmo utilizador", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "A partilha de %s falhou, não foi possível encontrar %s. É possível que o servidor esteja inacessível.", + "Accept" : "Aceitar", + "Decline" : "Recusar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Partilhe comigo através da minha Id. da Nuvem Federada #ownCloud, veja %s", "Share with me through my #ownCloud Federated Cloud ID" : "Partilhe comigo através da minha Id. da Nuvem Federada #ownCloud", "Federated Cloud Sharing" : "Partilha de Nuvem Federada", diff --git a/apps/federatedfilesharing/l10n/pt_PT.json b/apps/federatedfilesharing/l10n/pt_PT.json index 5f254812859..5d8bd758b6d 100644 --- a/apps/federatedfilesharing/l10n/pt_PT.json +++ b/apps/federatedfilesharing/l10n/pt_PT.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Partilha federada", "Invalid Federated Cloud ID" : "Id. de Nuvem Federada Inválida", "Sharing %s failed, because this item is already shared with %s" : "A partilha %s falhou, porque o item já está a ser partilhado com %s", "Not allowed to create a federated share with the same user" : "Não é possível criar uma partilha federada com o mesmo utilizador", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "A partilha de %s falhou, não foi possível encontrar %s. É possível que o servidor esteja inacessível.", + "Accept" : "Aceitar", + "Decline" : "Recusar", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Partilhe comigo através da minha Id. da Nuvem Federada #ownCloud, veja %s", "Share with me through my #ownCloud Federated Cloud ID" : "Partilhe comigo através da minha Id. da Nuvem Federada #ownCloud", "Federated Cloud Sharing" : "Partilha de Nuvem Federada", diff --git a/apps/federatedfilesharing/l10n/ru.js b/apps/federatedfilesharing/l10n/ru.js index f8f5c998e84..1b28a417245 100644 --- a/apps/federatedfilesharing/l10n/ru.js +++ b/apps/federatedfilesharing/l10n/ru.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Общий доступ из объединенного общего хранилища", "Invalid Federated Cloud ID" : "Неверный ID в объединении облачных хранилищ.", "Sharing %s failed, because this item is already shared with %s" : "Не удалось поделиться %s, пользователь %s уже имеет доступ к этому элементу", "Not allowed to create a federated share with the same user" : "Не допускается создание федеративного общего ресурса с тем-же пользователем", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Не удалось поделиться %s, не удалось найти %s, возможно, сервер не доступен.", + "Accept" : "Принять", + "Decline" : "Отклонить", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Поделитесь со мной через мой #ownCloud ID в объединении облачных хранилищ, смотрите %s", "Share with me through my #ownCloud Federated Cloud ID" : "Поделитесь со мной через мой #ownCloud ID в объединении облачных хранилищ", "Federated Cloud Sharing" : "Объединение облачных хранилищ", diff --git a/apps/federatedfilesharing/l10n/ru.json b/apps/federatedfilesharing/l10n/ru.json index 713f61d0982..f596784ad49 100644 --- a/apps/federatedfilesharing/l10n/ru.json +++ b/apps/federatedfilesharing/l10n/ru.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Общий доступ из объединенного общего хранилища", "Invalid Federated Cloud ID" : "Неверный ID в объединении облачных хранилищ.", "Sharing %s failed, because this item is already shared with %s" : "Не удалось поделиться %s, пользователь %s уже имеет доступ к этому элементу", "Not allowed to create a federated share with the same user" : "Не допускается создание федеративного общего ресурса с тем-же пользователем", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Не удалось поделиться %s, не удалось найти %s, возможно, сервер не доступен.", + "Accept" : "Принять", + "Decline" : "Отклонить", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Поделитесь со мной через мой #ownCloud ID в объединении облачных хранилищ, смотрите %s", "Share with me through my #ownCloud Federated Cloud ID" : "Поделитесь со мной через мой #ownCloud ID в объединении облачных хранилищ", "Federated Cloud Sharing" : "Объединение облачных хранилищ", diff --git a/apps/federatedfilesharing/l10n/sk_SK.js b/apps/federatedfilesharing/l10n/sk_SK.js index 61bf85b79d5..fbced761dd5 100644 --- a/apps/federatedfilesharing/l10n/sk_SK.js +++ b/apps/federatedfilesharing/l10n/sk_SK.js @@ -4,6 +4,8 @@ OC.L10N.register( "Invalid Federated Cloud ID" : "Neplatné združené Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Zdieľanie %s zlyhalo, pretože táto položka už je zdieľaná s %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Zdieľanie %s zlyhalo, nepodarilo sa nájsť %s, možno je server v súčasnej dobe nedostupný.", + "Accept" : "Schváliť", + "Decline" : "Odmietnuť", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Zdieľajte so mnou pomocou môjho #ownCloud Federated Cloud ID, viac n %s", "Share with me through my #ownCloud Federated Cloud ID" : "Zdieľajte so mnou pomocou môjho #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Združené cloudové zdieľanie", diff --git a/apps/federatedfilesharing/l10n/sk_SK.json b/apps/federatedfilesharing/l10n/sk_SK.json index 4c56aaa23b6..56fe356ba77 100644 --- a/apps/federatedfilesharing/l10n/sk_SK.json +++ b/apps/federatedfilesharing/l10n/sk_SK.json @@ -2,6 +2,8 @@ "Invalid Federated Cloud ID" : "Neplatné združené Cloud ID", "Sharing %s failed, because this item is already shared with %s" : "Zdieľanie %s zlyhalo, pretože táto položka už je zdieľaná s %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Zdieľanie %s zlyhalo, nepodarilo sa nájsť %s, možno je server v súčasnej dobe nedostupný.", + "Accept" : "Schváliť", + "Decline" : "Odmietnuť", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Zdieľajte so mnou pomocou môjho #ownCloud Federated Cloud ID, viac n %s", "Share with me through my #ownCloud Federated Cloud ID" : "Zdieľajte so mnou pomocou môjho #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Združené cloudové zdieľanie", diff --git a/apps/federatedfilesharing/l10n/sl.js b/apps/federatedfilesharing/l10n/sl.js index 04c97908a1f..02444a59dfd 100644 --- a/apps/federatedfilesharing/l10n/sl.js +++ b/apps/federatedfilesharing/l10n/sl.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Souporaba zveznega oblaka", "Invalid Federated Cloud ID" : "Neveljaven ID zveznega oblaka ownCloud", "Sharing %s failed, because this item is already shared with %s" : "Nastavljanje souporabe %s je spodletelo, ker je ima uporabnik %s predmet že v souporabi.", "Not allowed to create a federated share with the same user" : "Ni dovoljeno ustvariti souporabe zveznega oblaka z istim uporabnikom", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Omogočanje souporabe %s je spodletelo, ker ni mogoče najti %s. Najverjetneje je strežnik nedosegljiv.", + "Accept" : "Sprejmi", + "Decline" : "Zavrni", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Omogoči souporabo prek #ownCloud ID zveznega oblaka, več na %s", "Share with me through my #ownCloud Federated Cloud ID" : "Omogoči souporabo prek #ownCloud ID zveznega oblaka", "Federated Cloud Sharing" : "Souporaba zveznega oblaka", diff --git a/apps/federatedfilesharing/l10n/sl.json b/apps/federatedfilesharing/l10n/sl.json index aa17e71e4ac..6e4f45574d1 100644 --- a/apps/federatedfilesharing/l10n/sl.json +++ b/apps/federatedfilesharing/l10n/sl.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Souporaba zveznega oblaka", "Invalid Federated Cloud ID" : "Neveljaven ID zveznega oblaka ownCloud", "Sharing %s failed, because this item is already shared with %s" : "Nastavljanje souporabe %s je spodletelo, ker je ima uporabnik %s predmet že v souporabi.", "Not allowed to create a federated share with the same user" : "Ni dovoljeno ustvariti souporabe zveznega oblaka z istim uporabnikom", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Omogočanje souporabe %s je spodletelo, ker ni mogoče najti %s. Najverjetneje je strežnik nedosegljiv.", + "Accept" : "Sprejmi", + "Decline" : "Zavrni", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Omogoči souporabo prek #ownCloud ID zveznega oblaka, več na %s", "Share with me through my #ownCloud Federated Cloud ID" : "Omogoči souporabo prek #ownCloud ID zveznega oblaka", "Federated Cloud Sharing" : "Souporaba zveznega oblaka", diff --git a/apps/federatedfilesharing/l10n/sq.js b/apps/federatedfilesharing/l10n/sq.js index 5e2393f11c7..7c8b13be351 100644 --- a/apps/federatedfilesharing/l10n/sq.js +++ b/apps/federatedfilesharing/l10n/sq.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Ndarje e federuar", "Invalid Federated Cloud ID" : "ID Federated Cloud e pavlefshme", "Sharing %s failed, because this item is already shared with %s" : "Ndarja për %s dështoi, ngaqë ky objekt është ndarë një herë me %s", "Not allowed to create a federated share with the same user" : "S’i lejohet të krijojë një ndarje të federuar me të njëjtin përdorues", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Ndarja për %s dështoi, s’u gjet dot %s, ndoshta shërbyesi është hëpërhë jashtë pune.", + "Accept" : "Pranoje", + "Decline" : "Hidhe poshtë", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Ndani me mua përmes ID-së time për #ownCloud Federated Cloud, shihni %s", "Share with me through my #ownCloud Federated Cloud ID" : "Ndani me mua përmes ID-së time për #ownCloud Federated Cloud", "Federated Cloud Sharing" : "Ndarje Në Re të Federuar ", diff --git a/apps/federatedfilesharing/l10n/sq.json b/apps/federatedfilesharing/l10n/sq.json index cead371d182..98c1e2f4e25 100644 --- a/apps/federatedfilesharing/l10n/sq.json +++ b/apps/federatedfilesharing/l10n/sq.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Ndarje e federuar", "Invalid Federated Cloud ID" : "ID Federated Cloud e pavlefshme", "Sharing %s failed, because this item is already shared with %s" : "Ndarja për %s dështoi, ngaqë ky objekt është ndarë një herë me %s", "Not allowed to create a federated share with the same user" : "S’i lejohet të krijojë një ndarje të federuar me të njëjtin përdorues", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Ndarja për %s dështoi, s’u gjet dot %s, ndoshta shërbyesi është hëpërhë jashtë pune.", + "Accept" : "Pranoje", + "Decline" : "Hidhe poshtë", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Ndani me mua përmes ID-së time për #ownCloud Federated Cloud, shihni %s", "Share with me through my #ownCloud Federated Cloud ID" : "Ndani me mua përmes ID-së time për #ownCloud Federated Cloud", "Federated Cloud Sharing" : "Ndarje Në Re të Federuar ", diff --git a/apps/federatedfilesharing/l10n/sr.js b/apps/federatedfilesharing/l10n/sr.js index 7613ffa928e..0cbb6abf78f 100644 --- a/apps/federatedfilesharing/l10n/sr.js +++ b/apps/federatedfilesharing/l10n/sr.js @@ -1,9 +1,12 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Здружено дељење", "Invalid Federated Cloud ID" : "Неисправан ИД Здруженог облака", "Sharing %s failed, because this item is already shared with %s" : "Дељење %s није успело зато што се ова ставка већ дели са %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Дељење %s није успело, није могуће пронаћи %s, можда сервер тренутно није доступан.", + "Accept" : "Прихвати", + "Decline" : "Одбиј", "Federated Cloud Sharing" : "Здружено дељење у облаку", "Open documentation" : "Отвори документацију", "Allow users on this server to send shares to other servers" : "Дозвољава корисницима овог сервера да шаљу дељења на друге сервере", diff --git a/apps/federatedfilesharing/l10n/sr.json b/apps/federatedfilesharing/l10n/sr.json index 89d8a38c521..c5355e6ac6e 100644 --- a/apps/federatedfilesharing/l10n/sr.json +++ b/apps/federatedfilesharing/l10n/sr.json @@ -1,7 +1,10 @@ { "translations": { + "Federated sharing" : "Здружено дељење", "Invalid Federated Cloud ID" : "Неисправан ИД Здруженог облака", "Sharing %s failed, because this item is already shared with %s" : "Дељење %s није успело зато што се ова ставка већ дели са %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Дељење %s није успело, није могуће пронаћи %s, можда сервер тренутно није доступан.", + "Accept" : "Прихвати", + "Decline" : "Одбиј", "Federated Cloud Sharing" : "Здружено дељење у облаку", "Open documentation" : "Отвори документацију", "Allow users on this server to send shares to other servers" : "Дозвољава корисницима овог сервера да шаљу дељења на друге сервере", diff --git a/apps/federatedfilesharing/l10n/sv.js b/apps/federatedfilesharing/l10n/sv.js index fc9f0c824e5..9eedd650b1a 100644 --- a/apps/federatedfilesharing/l10n/sv.js +++ b/apps/federatedfilesharing/l10n/sv.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federated Delning", "Invalid Federated Cloud ID" : "Ogiltig Federerad Cloud-ID", "Sharing %s failed, because this item is already shared with %s" : "Delning %s misslyckades därför att objektet redan är delat med %s", "Not allowed to create a federated share with the same user" : "Ej tillåtet att skapa en federerad delning med samma användare", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Misslyckades dela ut %s, kan inte hitta %s, kanske är servern inte åtkomlig för närvarande.", + "Accept" : "Acceptera", + "Decline" : "Neka", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Dela med mig genom min #owncloud Federated Cloud ID, se %s", "Share with me through my #ownCloud Federated Cloud ID" : "Dela med mig genom min #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Federate Cloud delning", diff --git a/apps/federatedfilesharing/l10n/sv.json b/apps/federatedfilesharing/l10n/sv.json index 5a4164a3c47..aa48aa7ba4f 100644 --- a/apps/federatedfilesharing/l10n/sv.json +++ b/apps/federatedfilesharing/l10n/sv.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Federated Delning", "Invalid Federated Cloud ID" : "Ogiltig Federerad Cloud-ID", "Sharing %s failed, because this item is already shared with %s" : "Delning %s misslyckades därför att objektet redan är delat med %s", "Not allowed to create a federated share with the same user" : "Ej tillåtet att skapa en federerad delning med samma användare", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Misslyckades dela ut %s, kan inte hitta %s, kanske är servern inte åtkomlig för närvarande.", + "Accept" : "Acceptera", + "Decline" : "Neka", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Dela med mig genom min #owncloud Federated Cloud ID, se %s", "Share with me through my #ownCloud Federated Cloud ID" : "Dela med mig genom min #ownCloud Federated Cloud ID", "Federated Cloud Sharing" : "Federate Cloud delning", diff --git a/apps/federatedfilesharing/l10n/th_TH.js b/apps/federatedfilesharing/l10n/th_TH.js index 2e2b76d374f..59c2ebdda62 100644 --- a/apps/federatedfilesharing/l10n/th_TH.js +++ b/apps/federatedfilesharing/l10n/th_TH.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "แบ่งปันสหพันธ์", "Invalid Federated Cloud ID" : "ไอดีคลาวด์ในเครือไม่ถูกต้อง", "Sharing %s failed, because this item is already shared with %s" : "การแชร์ %s ล้มเหลวเพราะรายการนี้ถูกแชร์กับ %s", "Not allowed to create a federated share with the same user" : "ไม่อนุญาตให้สร้างแชร์สหพันธ์กับผู้ใช้เดียวกัน", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "การแชร์ %s ล้มเหลวไม่สามารถหา %s, บางทีอาจจะยังไม่สามารถเข้าถึงเซิร์ฟเวอร์ปัจจุบัน", + "Accept" : "ยอมรับ", + "Decline" : "ลดลง", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "แชร์กับฉันผ่าน #ownCloud ด้วยไอดีคลาวด์สหพันธ์ สามารถดูได้ที่ %s", "Share with me through my #ownCloud Federated Cloud ID" : "แชร์กับฉันผ่าน #ownCloud ด้วยไอดีคลาวด์สหพันธ์", "Federated Cloud Sharing" : "แชร์กับสหพันธ์คลาวด์", diff --git a/apps/federatedfilesharing/l10n/th_TH.json b/apps/federatedfilesharing/l10n/th_TH.json index f0669d0383e..718dd1ae978 100644 --- a/apps/federatedfilesharing/l10n/th_TH.json +++ b/apps/federatedfilesharing/l10n/th_TH.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "แบ่งปันสหพันธ์", "Invalid Federated Cloud ID" : "ไอดีคลาวด์ในเครือไม่ถูกต้อง", "Sharing %s failed, because this item is already shared with %s" : "การแชร์ %s ล้มเหลวเพราะรายการนี้ถูกแชร์กับ %s", "Not allowed to create a federated share with the same user" : "ไม่อนุญาตให้สร้างแชร์สหพันธ์กับผู้ใช้เดียวกัน", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "การแชร์ %s ล้มเหลวไม่สามารถหา %s, บางทีอาจจะยังไม่สามารถเข้าถึงเซิร์ฟเวอร์ปัจจุบัน", + "Accept" : "ยอมรับ", + "Decline" : "ลดลง", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "แชร์กับฉันผ่าน #ownCloud ด้วยไอดีคลาวด์สหพันธ์ สามารถดูได้ที่ %s", "Share with me through my #ownCloud Federated Cloud ID" : "แชร์กับฉันผ่าน #ownCloud ด้วยไอดีคลาวด์สหพันธ์", "Federated Cloud Sharing" : "แชร์กับสหพันธ์คลาวด์", diff --git a/apps/federatedfilesharing/l10n/tr.js b/apps/federatedfilesharing/l10n/tr.js index a4f4ad92329..e8d9fb2de35 100644 --- a/apps/federatedfilesharing/l10n/tr.js +++ b/apps/federatedfilesharing/l10n/tr.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Birleşmiş paylaşım", "Invalid Federated Cloud ID" : "Geçersiz Birleşmiş Bulut Kimliği", "Sharing %s failed, because this item is already shared with %s" : "%s paylaşımı, %s ile zaten paylaşıldığından dolayı başarısız oldu", "Not allowed to create a federated share with the same user" : "Aynı kullanıcı ile bir birleşmiş paylaşım oluşturulamaz", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s paylaşımı başarısız. %s bulunamadı veya sunucu şu anda ulaşılamıyor olabilir.", + "Accept" : "Kabul et", + "Decline" : "Reddet", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "#ownCloud Birleşik Bulut kimliğim ile paylaş, bkz %s", "Share with me through my #ownCloud Federated Cloud ID" : "#ownCloud Birleşmiş Bulut kimliğim ile paylaş", "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", diff --git a/apps/federatedfilesharing/l10n/tr.json b/apps/federatedfilesharing/l10n/tr.json index 23477fdd9c3..5e51b3434c3 100644 --- a/apps/federatedfilesharing/l10n/tr.json +++ b/apps/federatedfilesharing/l10n/tr.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "Birleşmiş paylaşım", "Invalid Federated Cloud ID" : "Geçersiz Birleşmiş Bulut Kimliği", "Sharing %s failed, because this item is already shared with %s" : "%s paylaşımı, %s ile zaten paylaşıldığından dolayı başarısız oldu", "Not allowed to create a federated share with the same user" : "Aynı kullanıcı ile bir birleşmiş paylaşım oluşturulamaz", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "%s paylaşımı başarısız. %s bulunamadı veya sunucu şu anda ulaşılamıyor olabilir.", + "Accept" : "Kabul et", + "Decline" : "Reddet", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "#ownCloud Birleşik Bulut kimliğim ile paylaş, bkz %s", "Share with me through my #ownCloud Federated Cloud ID" : "#ownCloud Birleşmiş Bulut kimliğim ile paylaş", "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", diff --git a/apps/federatedfilesharing/l10n/zh_CN.js b/apps/federatedfilesharing/l10n/zh_CN.js index 9126112cf8b..371b6706dbf 100644 --- a/apps/federatedfilesharing/l10n/zh_CN.js +++ b/apps/federatedfilesharing/l10n/zh_CN.js @@ -1,10 +1,13 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "联合云共享", "Invalid Federated Cloud ID" : "联合云ID不正确", "Sharing %s failed, because this item is already shared with %s" : "共享 %s 失败,因为它已经共享给 %s", "Not allowed to create a federated share with the same user" : "不能给你自己分享文件", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "共享 %s 失败,联合云无法找到 %s,请检查设置或联系管理员。", + "Accept" : "接受", + "Decline" : "拒绝", "Federated Cloud Sharing" : "联合云共享", "Open documentation" : "打开文档", "Allow users on this server to send shares to other servers" : "允许用户分享文件给其他服务器上的用户", diff --git a/apps/federatedfilesharing/l10n/zh_CN.json b/apps/federatedfilesharing/l10n/zh_CN.json index b8d473f2d12..b1ae37ba870 100644 --- a/apps/federatedfilesharing/l10n/zh_CN.json +++ b/apps/federatedfilesharing/l10n/zh_CN.json @@ -1,8 +1,11 @@ { "translations": { + "Federated sharing" : "联合云共享", "Invalid Federated Cloud ID" : "联合云ID不正确", "Sharing %s failed, because this item is already shared with %s" : "共享 %s 失败,因为它已经共享给 %s", "Not allowed to create a federated share with the same user" : "不能给你自己分享文件", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "共享 %s 失败,联合云无法找到 %s,请检查设置或联系管理员。", + "Accept" : "接受", + "Decline" : "拒绝", "Federated Cloud Sharing" : "联合云共享", "Open documentation" : "打开文档", "Allow users on this server to send shares to other servers" : "允许用户分享文件给其他服务器上的用户", diff --git a/apps/federatedfilesharing/l10n/zh_TW.js b/apps/federatedfilesharing/l10n/zh_TW.js index 1a687eb0416..f54942d1dee 100644 --- a/apps/federatedfilesharing/l10n/zh_TW.js +++ b/apps/federatedfilesharing/l10n/zh_TW.js @@ -5,6 +5,8 @@ OC.L10N.register( "Sharing %s failed, because this item is already shared with %s" : "分享 %s 失敗,因為此項目目前已經與 %s 分享", "Not allowed to create a federated share with the same user" : "不允許與同一個使用者建立聯盟式分享", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "分享%s失敗,找不到%s,或許目前無法連線到該伺服器", + "Accept" : "接受", + "Decline" : "拒絕", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "可透過我的 #ownCloud 聯盟雲端 ID,與我分享,請看 %s", "Share with me through my #ownCloud Federated Cloud ID" : "可透過我的 #ownCloud 聯盟雲端 ID,與我分享", "Federated Cloud Sharing" : "聯盟式雲端分享", diff --git a/apps/federatedfilesharing/l10n/zh_TW.json b/apps/federatedfilesharing/l10n/zh_TW.json index 81d4833ce47..158b7bf4fe1 100644 --- a/apps/federatedfilesharing/l10n/zh_TW.json +++ b/apps/federatedfilesharing/l10n/zh_TW.json @@ -3,6 +3,8 @@ "Sharing %s failed, because this item is already shared with %s" : "分享 %s 失敗,因為此項目目前已經與 %s 分享", "Not allowed to create a federated share with the same user" : "不允許與同一個使用者建立聯盟式分享", "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "分享%s失敗,找不到%s,或許目前無法連線到該伺服器", + "Accept" : "接受", + "Decline" : "拒絕", "Share with me through my #ownCloud Federated Cloud ID, see %s" : "可透過我的 #ownCloud 聯盟雲端 ID,與我分享,請看 %s", "Share with me through my #ownCloud Federated Cloud ID" : "可透過我的 #ownCloud 聯盟雲端 ID,與我分享", "Federated Cloud Sharing" : "聯盟式雲端分享", diff --git a/apps/federation/l10n/id.js b/apps/federation/l10n/id.js new file mode 100644 index 00000000000..91582e5c773 --- /dev/null +++ b/apps/federation/l10n/id.js @@ -0,0 +1,10 @@ +OC.L10N.register( + "federation", + { + "Server added to the list of trusted ownClouds" : "Server ditambahkan ke daftar ownCloud yang dipercaya", + "Server is already in the list of trusted servers." : "Server sudah ada pada daftar server terpercaya", + "No ownCloud server found" : "Tidak ada server ownCloud yang ditemukan", + "Could not add server" : "Tidak dapat menambahkan server", + "Federation" : "Federasi" +}, +"nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/id.json b/apps/federation/l10n/id.json new file mode 100644 index 00000000000..6762b50821a --- /dev/null +++ b/apps/federation/l10n/id.json @@ -0,0 +1,8 @@ +{ "translations": { + "Server added to the list of trusted ownClouds" : "Server ditambahkan ke daftar ownCloud yang dipercaya", + "Server is already in the list of trusted servers." : "Server sudah ada pada daftar server terpercaya", + "No ownCloud server found" : "Tidak ada server ownCloud yang ditemukan", + "Could not add server" : "Tidak dapat menambahkan server", + "Federation" : "Federasi" +},"pluralForm" :"nplurals=1; plural=0;" +}
\ No newline at end of file diff --git a/apps/files/l10n/ja.js b/apps/files/l10n/ja.js index e093a46c8aa..78ae332c49e 100644 --- a/apps/files/l10n/ja.js +++ b/apps/files/l10n/ja.js @@ -32,6 +32,15 @@ OC.L10N.register( "Could not get result from server." : "サーバーから結果を取得できませんでした。", "Uploading..." : "アップロード中...", "..." : "…", + "{hours}:{minutes}:{seconds} hour{plural_s} left" : "残り{hours}:{minutes}:{seconds} 時間", + "{hours}:{minutes}h" : "{hours}:{minutes} 時間", + "{minutes}:{seconds} minute{plural_s} left" : "残り{minutes}:{seconds} 分", + "{minutes}:{seconds}m" : "{minutes}:{seconds} 分", + "{seconds} second{plural_s} left" : "残り{minutes}:{seconds} 秒", + "{seconds}s" : "{seconds} 秒", + "Any moment now..." : "もうすぐ…", + "Soon..." : "もうすぐ…", + "{loadedSize} of {totalSize} ({bitrate})" : "{totalSize} 中 {loadedSize} ({bitrate})", "File upload is in progress. Leaving the page now will cancel the upload." : "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "Actions" : "アクション", "Download" : "ダウンロード", diff --git a/apps/files/l10n/ja.json b/apps/files/l10n/ja.json index 0995d3b1e81..fb2e0889d41 100644 --- a/apps/files/l10n/ja.json +++ b/apps/files/l10n/ja.json @@ -30,6 +30,15 @@ "Could not get result from server." : "サーバーから結果を取得できませんでした。", "Uploading..." : "アップロード中...", "..." : "…", + "{hours}:{minutes}:{seconds} hour{plural_s} left" : "残り{hours}:{minutes}:{seconds} 時間", + "{hours}:{minutes}h" : "{hours}:{minutes} 時間", + "{minutes}:{seconds} minute{plural_s} left" : "残り{minutes}:{seconds} 分", + "{minutes}:{seconds}m" : "{minutes}:{seconds} 分", + "{seconds} second{plural_s} left" : "残り{minutes}:{seconds} 秒", + "{seconds}s" : "{seconds} 秒", + "Any moment now..." : "もうすぐ…", + "Soon..." : "もうすぐ…", + "{loadedSize} of {totalSize} ({bitrate})" : "{totalSize} 中 {loadedSize} ({bitrate})", "File upload is in progress. Leaving the page now will cancel the upload." : "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "Actions" : "アクション", "Download" : "ダウンロード", diff --git a/apps/files/l10n/ro.js b/apps/files/l10n/ro.js index fc27355e58f..78a7cc314fa 100644 --- a/apps/files/l10n/ro.js +++ b/apps/files/l10n/ro.js @@ -31,6 +31,12 @@ OC.L10N.register( "Could not get result from server." : "Nu se poate obține rezultatul de la server.", "Uploading..." : "Încărcare", "..." : "...", + "{hours}:{minutes}h" : "{hours}:{minutes}h", + "{minutes}:{seconds}m" : "{minutes}:{seconds}m", + "{seconds} second{plural_s} left" : "{seconds} secunde{plural_s} rămase", + "{seconds}s" : "{seconds}s", + "Any moment now..." : "În orice moment...", + "Soon..." : "În curând...", "File upload is in progress. Leaving the page now will cancel the upload." : "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", "Actions" : "Acțiuni", "Download" : "Descarcă", @@ -47,9 +53,15 @@ OC.L10N.register( "Could not move \"{file}\", target exists" : "Nu s-a putut muta fișierul \"{file}\", există deja un altul cu același nume în directorul destinație", "Could not move \"{file}\"" : "Nu s-a putut muta fișierul \"{file}\"", "{newName} already exists" : "{newName} există deja", + "Could not rename \"{fileName}\", it does not exist any more" : "Nu s-a putut redenumi \"{fileName}\", fișierul nu mai există", + "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Numele \"{targetName}\" este deja folosit în directorul \"{dir}\". Alege un nume diferit.", "Could not rename \"{fileName}\"" : "Nu s-a putut redenumi \"{fileName}\"", "Could not create file \"{file}\"" : "Nu s-a putut crea fișierul \"{file}\"", + "Could not create file \"{file}\" because it already exists" : "Nu s-a putut crea fișierul \"{file}\" deoarece există deja unul cu același nume", + "Could not create folder \"{dir}\"" : "Nu s-a putut crea directorul \"{dir}\"", + "Could not create folder \"{dir}\" because it already exists" : "Nu s-a putut crea directorul \"{dir}\" deoarece există deja unul cu același nume", "Error deleting file \"{fileName}\"." : "Eroare la ștergerea fișierului \"{fileName}\".", + "No entries in this folder match '{filter}'" : "Niciun element din acest director nu se potrivește cu '{filter}'", "Name" : "Nume", "Size" : "Mărime", "Modified" : "Modificat", @@ -65,12 +77,14 @@ OC.L10N.register( "Your storage is almost full ({usedSpacePercent}%)" : "Spațiul de stocare este aproape plin ({usedSpacePercent}%)", "Path" : "Cale", "_%n byte_::_%n bytes_" : ["%n octet","%n octeți","%n octeți"], + "Favorited" : "Adăugate la favorite", "Favorite" : "Favorit", "Local link" : "Legătură locală", "Folder" : "Dosar", "New folder" : "Un nou dosar", "{newname} already exists" : "{newname} există deja", "Upload" : "Încărcă", + "An error occurred while trying to update the tags" : "A apărut o eroare în timpul actualizării etichetelor", "A new file or folder has been <strong>created</strong>" : "Un nou fișier sau dosar a fost <strong>creat</strong>", "A file or folder has been <strong>changed</strong>" : "Un nou fișier sau dosar a fost <strong>modificat</strong>", "A file or folder has been <strong>deleted</strong>" : "Un nou fișier sau dosar a fost <strong>șters</strong>", @@ -84,18 +98,26 @@ OC.L10N.register( "%2$s deleted %1$s" : "%2$s a șters %1$s", "You restored %1$s" : "Ai restaurat %1$s", "%2$s restored %1$s" : "%2$s a restaurat %1$s", + "Changed by %2$s" : "Modificat de %2$s", + "Deleted by %2$s" : "Șters de %2$s", + "Restored by %2$s" : "Restaurat de %2$s", "Upload (max. %s)" : "Încarcă (max. %s)", "File handling" : "Manipulare fișiere", "Maximum upload size" : "Dimensiune maximă admisă la încărcare", "max. possible: " : "max. posibil:", "Save" : "Salvează", + "Missing permissions to edit from here." : "Nu ai permisiuni pentru a edita aici.", "Settings" : "Setări", + "Show hidden files" : "Arată fișierele ascunse", "WebDAV" : "WebDAV", "No files in here" : "Niciun fișier aici", + "Upload some content or sync with your devices!" : "Încarcă ceva conținut sau sincronizează cu dispozitivele tale!", "No entries found in this folder" : "Niciun element găsit în acest director", "Select all" : "Selectează tot", "Upload too large" : "Fișierul încărcat este prea mare", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Fișierele pe care încerci să le încarci depășesc limita de încărcare maximă admisă pe acest server.", + "No favorites" : "Fără favorite", + "Files and folders you mark as favorite will show up here" : "FIșierele și directoarele pe care le marchezi ca favorite vor apărea aici", "Text file" : "Fișier text", "New text file.txt" : "New text file.txt" }, diff --git a/apps/files/l10n/ro.json b/apps/files/l10n/ro.json index 8187dad94a1..7c9a4b22262 100644 --- a/apps/files/l10n/ro.json +++ b/apps/files/l10n/ro.json @@ -29,6 +29,12 @@ "Could not get result from server." : "Nu se poate obține rezultatul de la server.", "Uploading..." : "Încărcare", "..." : "...", + "{hours}:{minutes}h" : "{hours}:{minutes}h", + "{minutes}:{seconds}m" : "{minutes}:{seconds}m", + "{seconds} second{plural_s} left" : "{seconds} secunde{plural_s} rămase", + "{seconds}s" : "{seconds}s", + "Any moment now..." : "În orice moment...", + "Soon..." : "În curând...", "File upload is in progress. Leaving the page now will cancel the upload." : "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", "Actions" : "Acțiuni", "Download" : "Descarcă", @@ -45,9 +51,15 @@ "Could not move \"{file}\", target exists" : "Nu s-a putut muta fișierul \"{file}\", există deja un altul cu același nume în directorul destinație", "Could not move \"{file}\"" : "Nu s-a putut muta fișierul \"{file}\"", "{newName} already exists" : "{newName} există deja", + "Could not rename \"{fileName}\", it does not exist any more" : "Nu s-a putut redenumi \"{fileName}\", fișierul nu mai există", + "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Numele \"{targetName}\" este deja folosit în directorul \"{dir}\". Alege un nume diferit.", "Could not rename \"{fileName}\"" : "Nu s-a putut redenumi \"{fileName}\"", "Could not create file \"{file}\"" : "Nu s-a putut crea fișierul \"{file}\"", + "Could not create file \"{file}\" because it already exists" : "Nu s-a putut crea fișierul \"{file}\" deoarece există deja unul cu același nume", + "Could not create folder \"{dir}\"" : "Nu s-a putut crea directorul \"{dir}\"", + "Could not create folder \"{dir}\" because it already exists" : "Nu s-a putut crea directorul \"{dir}\" deoarece există deja unul cu același nume", "Error deleting file \"{fileName}\"." : "Eroare la ștergerea fișierului \"{fileName}\".", + "No entries in this folder match '{filter}'" : "Niciun element din acest director nu se potrivește cu '{filter}'", "Name" : "Nume", "Size" : "Mărime", "Modified" : "Modificat", @@ -63,12 +75,14 @@ "Your storage is almost full ({usedSpacePercent}%)" : "Spațiul de stocare este aproape plin ({usedSpacePercent}%)", "Path" : "Cale", "_%n byte_::_%n bytes_" : ["%n octet","%n octeți","%n octeți"], + "Favorited" : "Adăugate la favorite", "Favorite" : "Favorit", "Local link" : "Legătură locală", "Folder" : "Dosar", "New folder" : "Un nou dosar", "{newname} already exists" : "{newname} există deja", "Upload" : "Încărcă", + "An error occurred while trying to update the tags" : "A apărut o eroare în timpul actualizării etichetelor", "A new file or folder has been <strong>created</strong>" : "Un nou fișier sau dosar a fost <strong>creat</strong>", "A file or folder has been <strong>changed</strong>" : "Un nou fișier sau dosar a fost <strong>modificat</strong>", "A file or folder has been <strong>deleted</strong>" : "Un nou fișier sau dosar a fost <strong>șters</strong>", @@ -82,18 +96,26 @@ "%2$s deleted %1$s" : "%2$s a șters %1$s", "You restored %1$s" : "Ai restaurat %1$s", "%2$s restored %1$s" : "%2$s a restaurat %1$s", + "Changed by %2$s" : "Modificat de %2$s", + "Deleted by %2$s" : "Șters de %2$s", + "Restored by %2$s" : "Restaurat de %2$s", "Upload (max. %s)" : "Încarcă (max. %s)", "File handling" : "Manipulare fișiere", "Maximum upload size" : "Dimensiune maximă admisă la încărcare", "max. possible: " : "max. posibil:", "Save" : "Salvează", + "Missing permissions to edit from here." : "Nu ai permisiuni pentru a edita aici.", "Settings" : "Setări", + "Show hidden files" : "Arată fișierele ascunse", "WebDAV" : "WebDAV", "No files in here" : "Niciun fișier aici", + "Upload some content or sync with your devices!" : "Încarcă ceva conținut sau sincronizează cu dispozitivele tale!", "No entries found in this folder" : "Niciun element găsit în acest director", "Select all" : "Selectează tot", "Upload too large" : "Fișierul încărcat este prea mare", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Fișierele pe care încerci să le încarci depășesc limita de încărcare maximă admisă pe acest server.", + "No favorites" : "Fără favorite", + "Files and folders you mark as favorite will show up here" : "FIșierele și directoarele pe care le marchezi ca favorite vor apărea aici", "Text file" : "Fișier text", "New text file.txt" : "New text file.txt" },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" diff --git a/apps/files_external/l10n/az.js b/apps/files_external/l10n/az.js index 75c15d57a12..324455d9dc8 100644 --- a/apps/files_external/l10n/az.js +++ b/apps/files_external/l10n/az.js @@ -4,9 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "1-ci addım səhv oldu. İstisna: %s", "Step 2 failed. Exception: %s" : "2-ci addım. İstisna: %s", "External storage" : "Kənar informasıya daşıyıcısı", - "Storage with id \"%i\" not found" : "\"%i\"-li depo tapılmadı", - "Invalid mount point" : "Yalnış mount nöqtəsi", - "Invalid storage backend \"%s\"" : "Yalnış depo arxasonu \"%s\"", "Personal" : "Şəxsi", "System" : "Sistem", "Grant access" : "Yetkinin verilməsi", @@ -18,6 +15,9 @@ OC.L10N.register( "Username" : "İstifadəçi adı", "Password" : "Şifrə", "Save" : "Saxla", + "Storage with id \"%i\" not found" : "\"%i\"-li depo tapılmadı", + "Invalid mount point" : "Yalnış mount nöqtəsi", + "Invalid storage backend \"%s\"" : "Yalnış depo arxasonu \"%s\"", "None" : "Heç bir", "App key" : "Proqram açarı", "App secret" : "Proqram sirri", diff --git a/apps/files_external/l10n/az.json b/apps/files_external/l10n/az.json index 608a083f736..962b0cdd244 100644 --- a/apps/files_external/l10n/az.json +++ b/apps/files_external/l10n/az.json @@ -2,9 +2,6 @@ "Step 1 failed. Exception: %s" : "1-ci addım səhv oldu. İstisna: %s", "Step 2 failed. Exception: %s" : "2-ci addım. İstisna: %s", "External storage" : "Kənar informasıya daşıyıcısı", - "Storage with id \"%i\" not found" : "\"%i\"-li depo tapılmadı", - "Invalid mount point" : "Yalnış mount nöqtəsi", - "Invalid storage backend \"%s\"" : "Yalnış depo arxasonu \"%s\"", "Personal" : "Şəxsi", "System" : "Sistem", "Grant access" : "Yetkinin verilməsi", @@ -16,6 +13,9 @@ "Username" : "İstifadəçi adı", "Password" : "Şifrə", "Save" : "Saxla", + "Storage with id \"%i\" not found" : "\"%i\"-li depo tapılmadı", + "Invalid mount point" : "Yalnış mount nöqtəsi", + "Invalid storage backend \"%s\"" : "Yalnış depo arxasonu \"%s\"", "None" : "Heç bir", "App key" : "Proqram açarı", "App secret" : "Proqram sirri", diff --git a/apps/files_external/l10n/bg_BG.js b/apps/files_external/l10n/bg_BG.js index a0c5bccc65c..1f8b9d77425 100644 --- a/apps/files_external/l10n/bg_BG.js +++ b/apps/files_external/l10n/bg_BG.js @@ -4,8 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Стъпка 1 - неуспешна. Грешка: %s", "Step 2 failed. Exception: %s" : "Стъпка 2 - неуспешна. Грешка: %s", "External storage" : "Външно дисково пространство", - "Storage with id \"%i\" not found" : "Хранилище с име \"%i\" не е намерено", - "Invalid mount point" : "Невалиден път за мониторане на файлова система", "Personal" : "Личен", "System" : "Системен", "Grant access" : "Разреши достъп", @@ -17,6 +15,8 @@ OC.L10N.register( "Username" : "Потребителско Име", "Password" : "Парола", "Save" : "Запазване", + "Storage with id \"%i\" not found" : "Хранилище с име \"%i\" не е намерено", + "Invalid mount point" : "Невалиден път за мониторане на файлова система", "None" : "Няма", "App key" : "App key", "App secret" : "App secret", diff --git a/apps/files_external/l10n/bg_BG.json b/apps/files_external/l10n/bg_BG.json index dc358c71857..78eaab80219 100644 --- a/apps/files_external/l10n/bg_BG.json +++ b/apps/files_external/l10n/bg_BG.json @@ -2,8 +2,6 @@ "Step 1 failed. Exception: %s" : "Стъпка 1 - неуспешна. Грешка: %s", "Step 2 failed. Exception: %s" : "Стъпка 2 - неуспешна. Грешка: %s", "External storage" : "Външно дисково пространство", - "Storage with id \"%i\" not found" : "Хранилище с име \"%i\" не е намерено", - "Invalid mount point" : "Невалиден път за мониторане на файлова система", "Personal" : "Личен", "System" : "Системен", "Grant access" : "Разреши достъп", @@ -15,6 +13,8 @@ "Username" : "Потребителско Име", "Password" : "Парола", "Save" : "Запазване", + "Storage with id \"%i\" not found" : "Хранилище с име \"%i\" не е намерено", + "Invalid mount point" : "Невалиден път за мониторане на файлова система", "None" : "Няма", "App key" : "App key", "App secret" : "App secret", diff --git a/apps/files_external/l10n/ca.js b/apps/files_external/l10n/ca.js index c654e171e46..f147a2af8b2 100644 --- a/apps/files_external/l10n/ca.js +++ b/apps/files_external/l10n/ca.js @@ -4,9 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "El pas 1 ha fallat. Excepció: %s", "Step 2 failed. Exception: %s" : "El pas 2 ha fallat. Excepció: %s", "External storage" : "Emmagatzemament extern", - "Storage with id \"%i\" not found" : "No s'ha trobat emmagatzematge amb id \"%i\"", - "Invalid mount point" : "Punt de muntatge no vàlid", - "Invalid storage backend \"%s\"" : "Motor d'emmagatzematge no vàlid \"%s\"", "Personal" : "Personal", "System" : "Sistema", "Grant access" : "Concedeix accés", @@ -18,6 +15,9 @@ OC.L10N.register( "Username" : "Nom d'usuari", "Password" : "Contrasenya", "Save" : "Desa", + "Storage with id \"%i\" not found" : "No s'ha trobat emmagatzematge amb id \"%i\"", + "Invalid mount point" : "Punt de muntatge no vàlid", + "Invalid storage backend \"%s\"" : "Motor d'emmagatzematge no vàlid \"%s\"", "None" : "Cap", "App key" : "Clau de l'aplicació", "App secret" : "Secret de l'aplicació", diff --git a/apps/files_external/l10n/ca.json b/apps/files_external/l10n/ca.json index 96e1a52f229..de96ec6faad 100644 --- a/apps/files_external/l10n/ca.json +++ b/apps/files_external/l10n/ca.json @@ -2,9 +2,6 @@ "Step 1 failed. Exception: %s" : "El pas 1 ha fallat. Excepció: %s", "Step 2 failed. Exception: %s" : "El pas 2 ha fallat. Excepció: %s", "External storage" : "Emmagatzemament extern", - "Storage with id \"%i\" not found" : "No s'ha trobat emmagatzematge amb id \"%i\"", - "Invalid mount point" : "Punt de muntatge no vàlid", - "Invalid storage backend \"%s\"" : "Motor d'emmagatzematge no vàlid \"%s\"", "Personal" : "Personal", "System" : "Sistema", "Grant access" : "Concedeix accés", @@ -16,6 +13,9 @@ "Username" : "Nom d'usuari", "Password" : "Contrasenya", "Save" : "Desa", + "Storage with id \"%i\" not found" : "No s'ha trobat emmagatzematge amb id \"%i\"", + "Invalid mount point" : "Punt de muntatge no vàlid", + "Invalid storage backend \"%s\"" : "Motor d'emmagatzematge no vàlid \"%s\"", "None" : "Cap", "App key" : "Clau de l'aplicació", "App secret" : "Secret de l'aplicació", diff --git a/apps/files_external/l10n/cs_CZ.js b/apps/files_external/l10n/cs_CZ.js index fdbddce7e53..046adbdfdec 100644 --- a/apps/files_external/l10n/cs_CZ.js +++ b/apps/files_external/l10n/cs_CZ.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Selhal krok 1. Výjimka: %s", "Step 2 failed. Exception: %s" : "Selhal krok 2. Výjimka: %s", "External storage" : "Externí úložiště", - "Storage with id \"%i\" not found" : "Úložiště s id \"%i\" nebylo nalezeno", - "Invalid backend or authentication mechanism class" : "Neplatný backend nebo třída ověřovacího mechanismu", - "Invalid mount point" : "Neplatný přípojný bod", - "Objectstore forbidden" : "Úložiště objektů zakázáno", - "Invalid storage backend \"%s\"" : "Neplatná služba úložiště \"%s\"", - "Not permitted to use backend \"%s\"" : "Nebylo povoleno použítí služby \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Nebylo povoleno použití ověřovacího mechanismu \"%s\"", - "Unsatisfied backend parameters" : "Neuspokojivé parametry služby", - "Unsatisfied authentication mechanism parameters" : "Neuspokojivé parametry ověřovacího mechanismu", - "Insufficient data: %s" : "Nedostatečná data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Úložiště s id \"%i\" uživatelé nemohou upravovat", "Dropbox App Configuration" : "Nastavení aplikace Dropbox", "Google Drive App Configuration" : "Nastavení aplikace Disk Google", "Personal" : "Osobní", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Uložení přihlašovacích údajů selhalo", "Credentials required" : "Vyžadovány přihlašovací údaje", "Save" : "Uložit", + "Storage with id \"%i\" not found" : "Úložiště s id \"%i\" nebylo nalezeno", + "Invalid backend or authentication mechanism class" : "Neplatný backend nebo třída ověřovacího mechanismu", + "Invalid mount point" : "Neplatný přípojný bod", + "Objectstore forbidden" : "Úložiště objektů zakázáno", + "Invalid storage backend \"%s\"" : "Neplatná služba úložiště \"%s\"", + "Not permitted to use backend \"%s\"" : "Nebylo povoleno použítí služby \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Nebylo povoleno použití ověřovacího mechanismu \"%s\"", + "Unsatisfied backend parameters" : "Neuspokojivé parametry služby", + "Unsatisfied authentication mechanism parameters" : "Neuspokojivé parametry ověřovacího mechanismu", + "Insufficient data: %s" : "Nedostatečná data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Úložiště s id \"%i\" uživatelé nemohou upravovat", "Access key" : "Přístupový klíč", "Secret key" : "Tajný klíč", "Builtin" : "Zabudované", diff --git a/apps/files_external/l10n/cs_CZ.json b/apps/files_external/l10n/cs_CZ.json index b485584ea6d..fe3a47d2f35 100644 --- a/apps/files_external/l10n/cs_CZ.json +++ b/apps/files_external/l10n/cs_CZ.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Selhal krok 1. Výjimka: %s", "Step 2 failed. Exception: %s" : "Selhal krok 2. Výjimka: %s", "External storage" : "Externí úložiště", - "Storage with id \"%i\" not found" : "Úložiště s id \"%i\" nebylo nalezeno", - "Invalid backend or authentication mechanism class" : "Neplatný backend nebo třída ověřovacího mechanismu", - "Invalid mount point" : "Neplatný přípojný bod", - "Objectstore forbidden" : "Úložiště objektů zakázáno", - "Invalid storage backend \"%s\"" : "Neplatná služba úložiště \"%s\"", - "Not permitted to use backend \"%s\"" : "Nebylo povoleno použítí služby \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Nebylo povoleno použití ověřovacího mechanismu \"%s\"", - "Unsatisfied backend parameters" : "Neuspokojivé parametry služby", - "Unsatisfied authentication mechanism parameters" : "Neuspokojivé parametry ověřovacího mechanismu", - "Insufficient data: %s" : "Nedostatečná data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Úložiště s id \"%i\" uživatelé nemohou upravovat", "Dropbox App Configuration" : "Nastavení aplikace Dropbox", "Google Drive App Configuration" : "Nastavení aplikace Disk Google", "Personal" : "Osobní", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Uložení přihlašovacích údajů selhalo", "Credentials required" : "Vyžadovány přihlašovací údaje", "Save" : "Uložit", + "Storage with id \"%i\" not found" : "Úložiště s id \"%i\" nebylo nalezeno", + "Invalid backend or authentication mechanism class" : "Neplatný backend nebo třída ověřovacího mechanismu", + "Invalid mount point" : "Neplatný přípojný bod", + "Objectstore forbidden" : "Úložiště objektů zakázáno", + "Invalid storage backend \"%s\"" : "Neplatná služba úložiště \"%s\"", + "Not permitted to use backend \"%s\"" : "Nebylo povoleno použítí služby \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Nebylo povoleno použití ověřovacího mechanismu \"%s\"", + "Unsatisfied backend parameters" : "Neuspokojivé parametry služby", + "Unsatisfied authentication mechanism parameters" : "Neuspokojivé parametry ověřovacího mechanismu", + "Insufficient data: %s" : "Nedostatečná data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Úložiště s id \"%i\" uživatelé nemohou upravovat", "Access key" : "Přístupový klíč", "Secret key" : "Tajný klíč", "Builtin" : "Zabudované", diff --git a/apps/files_external/l10n/da.js b/apps/files_external/l10n/da.js index a30d790d685..477a67555fa 100644 --- a/apps/files_external/l10n/da.js +++ b/apps/files_external/l10n/da.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Trin 1 mislykkedes. Undtagelse: %s", "Step 2 failed. Exception: %s" : "Trin 2 mislykkedes. Undtagelse: %s", "External storage" : "Eksternt lager", - "Storage with id \"%i\" not found" : "Lager med ID'et \"%i% er ikke fundet", - "Invalid backend or authentication mechanism class" : "Ugyldig backend eller klasse for godkendelsesmekanisme", - "Invalid mount point" : "Fokert monteringspunkt", - "Objectstore forbidden" : "Objectstore er forbudt", - "Invalid storage backend \"%s\"" : "Forkert lager til backend \"%s\"en", - "Not permitted to use backend \"%s\"" : "Ikke tilladt at bruge backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Ikke tilladt at bruge autorisation mekanismen \"%s\"", - "Unsatisfied backend parameters" : "Utilfredsstillede backend-parametre", - "Unsatisfied authentication mechanism parameters" : "Utilfredsstillede parametre for godkendelsesmekanisme", - "Insufficient data: %s" : "Utilstrækkelige data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Lageret med id \"%i\" kan ikke redigeres af bruger", "Personal" : "Personligt", "System" : "System", "Grant access" : "Godkend adgang", @@ -34,6 +22,18 @@ OC.L10N.register( "Username" : "Brugernavn", "Password" : "Kodeord", "Save" : "Gem", + "Storage with id \"%i\" not found" : "Lager med ID'et \"%i% er ikke fundet", + "Invalid backend or authentication mechanism class" : "Ugyldig backend eller klasse for godkendelsesmekanisme", + "Invalid mount point" : "Fokert monteringspunkt", + "Objectstore forbidden" : "Objectstore er forbudt", + "Invalid storage backend \"%s\"" : "Forkert lager til backend \"%s\"en", + "Not permitted to use backend \"%s\"" : "Ikke tilladt at bruge backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Ikke tilladt at bruge autorisation mekanismen \"%s\"", + "Unsatisfied backend parameters" : "Utilfredsstillede backend-parametre", + "Unsatisfied authentication mechanism parameters" : "Utilfredsstillede parametre for godkendelsesmekanisme", + "Insufficient data: %s" : "Utilstrækkelige data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Lageret med id \"%i\" kan ikke redigeres af bruger", "Access key" : "Adgangsnøgle", "Secret key" : "Hemmelig nøgle", "Builtin" : "Indbygget", diff --git a/apps/files_external/l10n/da.json b/apps/files_external/l10n/da.json index f0b79b1f93a..f6020d0ef36 100644 --- a/apps/files_external/l10n/da.json +++ b/apps/files_external/l10n/da.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Trin 1 mislykkedes. Undtagelse: %s", "Step 2 failed. Exception: %s" : "Trin 2 mislykkedes. Undtagelse: %s", "External storage" : "Eksternt lager", - "Storage with id \"%i\" not found" : "Lager med ID'et \"%i% er ikke fundet", - "Invalid backend or authentication mechanism class" : "Ugyldig backend eller klasse for godkendelsesmekanisme", - "Invalid mount point" : "Fokert monteringspunkt", - "Objectstore forbidden" : "Objectstore er forbudt", - "Invalid storage backend \"%s\"" : "Forkert lager til backend \"%s\"en", - "Not permitted to use backend \"%s\"" : "Ikke tilladt at bruge backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Ikke tilladt at bruge autorisation mekanismen \"%s\"", - "Unsatisfied backend parameters" : "Utilfredsstillede backend-parametre", - "Unsatisfied authentication mechanism parameters" : "Utilfredsstillede parametre for godkendelsesmekanisme", - "Insufficient data: %s" : "Utilstrækkelige data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Lageret med id \"%i\" kan ikke redigeres af bruger", "Personal" : "Personligt", "System" : "System", "Grant access" : "Godkend adgang", @@ -32,6 +20,18 @@ "Username" : "Brugernavn", "Password" : "Kodeord", "Save" : "Gem", + "Storage with id \"%i\" not found" : "Lager med ID'et \"%i% er ikke fundet", + "Invalid backend or authentication mechanism class" : "Ugyldig backend eller klasse for godkendelsesmekanisme", + "Invalid mount point" : "Fokert monteringspunkt", + "Objectstore forbidden" : "Objectstore er forbudt", + "Invalid storage backend \"%s\"" : "Forkert lager til backend \"%s\"en", + "Not permitted to use backend \"%s\"" : "Ikke tilladt at bruge backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Ikke tilladt at bruge autorisation mekanismen \"%s\"", + "Unsatisfied backend parameters" : "Utilfredsstillede backend-parametre", + "Unsatisfied authentication mechanism parameters" : "Utilfredsstillede parametre for godkendelsesmekanisme", + "Insufficient data: %s" : "Utilstrækkelige data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Lageret med id \"%i\" kan ikke redigeres af bruger", "Access key" : "Adgangsnøgle", "Secret key" : "Hemmelig nøgle", "Builtin" : "Indbygget", diff --git a/apps/files_external/l10n/de.js b/apps/files_external/l10n/de.js index 364a87b6a41..52cf509da24 100644 --- a/apps/files_external/l10n/de.js +++ b/apps/files_external/l10n/de.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "External storage" : "Externer Speicher", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Invalid backend or authentication mechanism class" : "Ungültiger Backend- oder Authentifizierungsmechanismus", - "Invalid mount point" : "Ungültiger mount point", - "Objectstore forbidden" : "Objekt nicht erlaubt", - "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", - "Not permitted to use backend \"%s\"" : "Nicht zulässig Backend \"%s\" zu verwenden", - "Not permitted to use authentication mechanism \"%s\"" : "verwende zulässigen Authentifizierungsmechanismus \"%s\" ", - "Unsatisfied backend parameters" : "Unbefriedigende Backend- Parameter", - "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus Parameter", - "Insufficient data: %s" : "Unzureichende Daten: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", "Dropbox App Configuration" : "Dropbox-App Konfiguration", "Google Drive App Configuration" : "Google Drive - App Konfiguration", "Personal" : "Persönlich", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "speichern der Anmeldeinformationen fehlgeschlagen", "Credentials required" : "Anmeldeinformationen benötigt", "Save" : "Speichern", + "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", + "Invalid backend or authentication mechanism class" : "Ungültiger Backend- oder Authentifizierungsmechanismus", + "Invalid mount point" : "Ungültiger mount point", + "Objectstore forbidden" : "Objekt nicht erlaubt", + "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", + "Not permitted to use backend \"%s\"" : "Nicht zulässig Backend \"%s\" zu verwenden", + "Not permitted to use authentication mechanism \"%s\"" : "verwende zulässigen Authentifizierungsmechanismus \"%s\" ", + "Unsatisfied backend parameters" : "Unbefriedigende Backend- Parameter", + "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus Parameter", + "Insufficient data: %s" : "Unzureichende Daten: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", "Access key" : "Zugangsschlüssel", "Secret key" : "Geheimer Schlüssel", "Builtin" : "eingebaut", diff --git a/apps/files_external/l10n/de.json b/apps/files_external/l10n/de.json index 3ddc417e3b5..e9fa9092fb2 100644 --- a/apps/files_external/l10n/de.json +++ b/apps/files_external/l10n/de.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "External storage" : "Externer Speicher", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Invalid backend or authentication mechanism class" : "Ungültiger Backend- oder Authentifizierungsmechanismus", - "Invalid mount point" : "Ungültiger mount point", - "Objectstore forbidden" : "Objekt nicht erlaubt", - "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", - "Not permitted to use backend \"%s\"" : "Nicht zulässig Backend \"%s\" zu verwenden", - "Not permitted to use authentication mechanism \"%s\"" : "verwende zulässigen Authentifizierungsmechanismus \"%s\" ", - "Unsatisfied backend parameters" : "Unbefriedigende Backend- Parameter", - "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus Parameter", - "Insufficient data: %s" : "Unzureichende Daten: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", "Dropbox App Configuration" : "Dropbox-App Konfiguration", "Google Drive App Configuration" : "Google Drive - App Konfiguration", "Personal" : "Persönlich", @@ -46,6 +34,18 @@ "Credentials saving failed" : "speichern der Anmeldeinformationen fehlgeschlagen", "Credentials required" : "Anmeldeinformationen benötigt", "Save" : "Speichern", + "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", + "Invalid backend or authentication mechanism class" : "Ungültiger Backend- oder Authentifizierungsmechanismus", + "Invalid mount point" : "Ungültiger mount point", + "Objectstore forbidden" : "Objekt nicht erlaubt", + "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", + "Not permitted to use backend \"%s\"" : "Nicht zulässig Backend \"%s\" zu verwenden", + "Not permitted to use authentication mechanism \"%s\"" : "verwende zulässigen Authentifizierungsmechanismus \"%s\" ", + "Unsatisfied backend parameters" : "Unbefriedigende Backend- Parameter", + "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Authentifizierungsmechanismus Parameter", + "Insufficient data: %s" : "Unzureichende Daten: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", "Access key" : "Zugangsschlüssel", "Secret key" : "Geheimer Schlüssel", "Builtin" : "eingebaut", diff --git a/apps/files_external/l10n/de_DE.js b/apps/files_external/l10n/de_DE.js index 13769ab9787..70b73962a07 100644 --- a/apps/files_external/l10n/de_DE.js +++ b/apps/files_external/l10n/de_DE.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "External storage" : "Externer Speicher", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Invalid backend or authentication mechanism class" : "Ungültiges Backend oder falscher Authentifizierungsmodus", - "Invalid mount point" : "Ungültiger mount point", - "Objectstore forbidden" : "Objekt nicht erlaubt", - "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", - "Not permitted to use backend \"%s\"" : "Es ist nicht zulässig Backend \"%s\" zu verwenden", - "Not permitted to use authentication mechanism \"%s\"" : "Nicht erlaubter Autentifizierungsmechanismus \"%s\"", - "Unsatisfied backend parameters" : "Unbefriedigende Backend-Parameter", - "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Autentifizierungs-Mechanismus Parameter", - "Insufficient data: %s" : "Unzureichende Daten: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID „%i“ ist nicht bearbeitbar durch Benutzer", "Dropbox App Configuration" : "Dropbox-App Konfiguration", "Google Drive App Configuration" : "Google Drive - App Konfiguration", "Personal" : "Persönlich", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Speichern der Zugangsdaten fehlgeschlagen", "Credentials required" : "Zugangsdaten benötigt", "Save" : "Speichern", + "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", + "Invalid backend or authentication mechanism class" : "Ungültiges Backend oder falscher Authentifizierungsmodus", + "Invalid mount point" : "Ungültiger mount point", + "Objectstore forbidden" : "Objekt nicht erlaubt", + "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", + "Not permitted to use backend \"%s\"" : "Es ist nicht zulässig Backend \"%s\" zu verwenden", + "Not permitted to use authentication mechanism \"%s\"" : "Nicht erlaubter Autentifizierungsmechanismus \"%s\"", + "Unsatisfied backend parameters" : "Unbefriedigende Backend-Parameter", + "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Autentifizierungs-Mechanismus Parameter", + "Insufficient data: %s" : "Unzureichende Daten: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID „%i“ ist nicht bearbeitbar durch Benutzer", "Access key" : "Zugangsschlüssel", "Secret key" : "geheimer Schlüssel", "Builtin" : "Builtin", diff --git a/apps/files_external/l10n/de_DE.json b/apps/files_external/l10n/de_DE.json index 996723d7dc5..562c2f78b82 100644 --- a/apps/files_external/l10n/de_DE.json +++ b/apps/files_external/l10n/de_DE.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "External storage" : "Externer Speicher", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Invalid backend or authentication mechanism class" : "Ungültiges Backend oder falscher Authentifizierungsmodus", - "Invalid mount point" : "Ungültiger mount point", - "Objectstore forbidden" : "Objekt nicht erlaubt", - "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", - "Not permitted to use backend \"%s\"" : "Es ist nicht zulässig Backend \"%s\" zu verwenden", - "Not permitted to use authentication mechanism \"%s\"" : "Nicht erlaubter Autentifizierungsmechanismus \"%s\"", - "Unsatisfied backend parameters" : "Unbefriedigende Backend-Parameter", - "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Autentifizierungs-Mechanismus Parameter", - "Insufficient data: %s" : "Unzureichende Daten: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID „%i“ ist nicht bearbeitbar durch Benutzer", "Dropbox App Configuration" : "Dropbox-App Konfiguration", "Google Drive App Configuration" : "Google Drive - App Konfiguration", "Personal" : "Persönlich", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Speichern der Zugangsdaten fehlgeschlagen", "Credentials required" : "Zugangsdaten benötigt", "Save" : "Speichern", + "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", + "Invalid backend or authentication mechanism class" : "Ungültiges Backend oder falscher Authentifizierungsmodus", + "Invalid mount point" : "Ungültiger mount point", + "Objectstore forbidden" : "Objekt nicht erlaubt", + "Invalid storage backend \"%s\"" : "Ungültiges Speicher-Backend „%s“", + "Not permitted to use backend \"%s\"" : "Es ist nicht zulässig Backend \"%s\" zu verwenden", + "Not permitted to use authentication mechanism \"%s\"" : "Nicht erlaubter Autentifizierungsmechanismus \"%s\"", + "Unsatisfied backend parameters" : "Unbefriedigende Backend-Parameter", + "Unsatisfied authentication mechanism parameters" : "Unbefriedigende Autentifizierungs-Mechanismus Parameter", + "Insufficient data: %s" : "Unzureichende Daten: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID „%i“ ist nicht bearbeitbar durch Benutzer", "Access key" : "Zugangsschlüssel", "Secret key" : "geheimer Schlüssel", "Builtin" : "Builtin", diff --git a/apps/files_external/l10n/el.js b/apps/files_external/l10n/el.js index 4cb950530bf..762bd19bef7 100644 --- a/apps/files_external/l10n/el.js +++ b/apps/files_external/l10n/el.js @@ -7,17 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Το βήμα 1 απέτυχε. Εξαίρεση: %s", "Step 2 failed. Exception: %s" : "Το βήμα 2 απέτυχε. Εξαίρεση: %s", "External storage" : "Εξωτερική αποθήκευση", - "Storage with id \"%i\" not found" : "Αποθήκευση με id \"%i\" δεν βρέθηκε", - "Invalid backend or authentication mechanism class" : "Μη έγκυρη κλάση συστήματος ή μηχανισμού πιστοποίησης", - "Invalid mount point" : "Μη έγκυρο σημείο ανάρτησης", - "Objectstore forbidden" : "Απαγορευμένο objectstore", - "Invalid storage backend \"%s\"" : "Μή έγκυρο σύστημα υποστήριξης αποθήκευσης \"%s\"", - "Not permitted to use backend \"%s\"" : "Μη επιτρεπόμενο σύστημα υποστήριξης \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Μη επιτρεπόμενος μηχανισμός πιστοποίησης \"%s\"", - "Unsatisfied backend parameters" : "Ελλιπείς παράμετροι συστήματος", - "Unsatisfied authentication mechanism parameters" : "Ελλιπείς παράμετροι μηχανισμού πιστοποίησης", - "Insufficient data: %s" : "Μη επαρκή δεδομένα: %s", - "%s" : "%s", "Personal" : "Προσωπικά", "System" : "Σύστημα", "Grant access" : "Παροχή πρόσβασης", @@ -35,6 +24,17 @@ OC.L10N.register( "Credentials saved" : "Τα διαπιστευτήρια αποθηκεύτηκαν", "Credentials saving failed" : "Αποτυχία αποθήκευσης διαπιστευτηρίων", "Save" : "Αποθήκευση", + "Storage with id \"%i\" not found" : "Αποθήκευση με id \"%i\" δεν βρέθηκε", + "Invalid backend or authentication mechanism class" : "Μη έγκυρη κλάση συστήματος ή μηχανισμού πιστοποίησης", + "Invalid mount point" : "Μη έγκυρο σημείο ανάρτησης", + "Objectstore forbidden" : "Απαγορευμένο objectstore", + "Invalid storage backend \"%s\"" : "Μή έγκυρο σύστημα υποστήριξης αποθήκευσης \"%s\"", + "Not permitted to use backend \"%s\"" : "Μη επιτρεπόμενο σύστημα υποστήριξης \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Μη επιτρεπόμενος μηχανισμός πιστοποίησης \"%s\"", + "Unsatisfied backend parameters" : "Ελλιπείς παράμετροι συστήματος", + "Unsatisfied authentication mechanism parameters" : "Ελλιπείς παράμετροι μηχανισμού πιστοποίησης", + "Insufficient data: %s" : "Μη επαρκή δεδομένα: %s", + "%s" : "%s", "Access key" : "Κλειδί πρόσβασης", "Secret key" : "Μυστικό κλειδί", "Builtin" : "Builtin", diff --git a/apps/files_external/l10n/el.json b/apps/files_external/l10n/el.json index 1a64c1eca06..d350f956f4a 100644 --- a/apps/files_external/l10n/el.json +++ b/apps/files_external/l10n/el.json @@ -5,17 +5,6 @@ "Step 1 failed. Exception: %s" : "Το βήμα 1 απέτυχε. Εξαίρεση: %s", "Step 2 failed. Exception: %s" : "Το βήμα 2 απέτυχε. Εξαίρεση: %s", "External storage" : "Εξωτερική αποθήκευση", - "Storage with id \"%i\" not found" : "Αποθήκευση με id \"%i\" δεν βρέθηκε", - "Invalid backend or authentication mechanism class" : "Μη έγκυρη κλάση συστήματος ή μηχανισμού πιστοποίησης", - "Invalid mount point" : "Μη έγκυρο σημείο ανάρτησης", - "Objectstore forbidden" : "Απαγορευμένο objectstore", - "Invalid storage backend \"%s\"" : "Μή έγκυρο σύστημα υποστήριξης αποθήκευσης \"%s\"", - "Not permitted to use backend \"%s\"" : "Μη επιτρεπόμενο σύστημα υποστήριξης \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Μη επιτρεπόμενος μηχανισμός πιστοποίησης \"%s\"", - "Unsatisfied backend parameters" : "Ελλιπείς παράμετροι συστήματος", - "Unsatisfied authentication mechanism parameters" : "Ελλιπείς παράμετροι μηχανισμού πιστοποίησης", - "Insufficient data: %s" : "Μη επαρκή δεδομένα: %s", - "%s" : "%s", "Personal" : "Προσωπικά", "System" : "Σύστημα", "Grant access" : "Παροχή πρόσβασης", @@ -33,6 +22,17 @@ "Credentials saved" : "Τα διαπιστευτήρια αποθηκεύτηκαν", "Credentials saving failed" : "Αποτυχία αποθήκευσης διαπιστευτηρίων", "Save" : "Αποθήκευση", + "Storage with id \"%i\" not found" : "Αποθήκευση με id \"%i\" δεν βρέθηκε", + "Invalid backend or authentication mechanism class" : "Μη έγκυρη κλάση συστήματος ή μηχανισμού πιστοποίησης", + "Invalid mount point" : "Μη έγκυρο σημείο ανάρτησης", + "Objectstore forbidden" : "Απαγορευμένο objectstore", + "Invalid storage backend \"%s\"" : "Μή έγκυρο σύστημα υποστήριξης αποθήκευσης \"%s\"", + "Not permitted to use backend \"%s\"" : "Μη επιτρεπόμενο σύστημα υποστήριξης \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Μη επιτρεπόμενος μηχανισμός πιστοποίησης \"%s\"", + "Unsatisfied backend parameters" : "Ελλιπείς παράμετροι συστήματος", + "Unsatisfied authentication mechanism parameters" : "Ελλιπείς παράμετροι μηχανισμού πιστοποίησης", + "Insufficient data: %s" : "Μη επαρκή δεδομένα: %s", + "%s" : "%s", "Access key" : "Κλειδί πρόσβασης", "Secret key" : "Μυστικό κλειδί", "Builtin" : "Builtin", diff --git a/apps/files_external/l10n/en_GB.js b/apps/files_external/l10n/en_GB.js index b9cf62e1965..4e573b28f6e 100644 --- a/apps/files_external/l10n/en_GB.js +++ b/apps/files_external/l10n/en_GB.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Step 1 failed. Exception: %s", "Step 2 failed. Exception: %s" : "Step 2 failed. Exception: %s", "External storage" : "External storage", - "Storage with id \"%i\" not found" : "Storage with id \"%i\" not found", - "Invalid backend or authentication mechanism class" : "Invalid backend or authentication mechanism class", - "Invalid mount point" : "Invalid mount point", - "Objectstore forbidden" : "Objectstore forbidden", - "Invalid storage backend \"%s\"" : "Invalid storage backend \"%s\"", - "Not permitted to use backend \"%s\"" : "Not permitted to use backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Not permitted to use authentication mechanism \"%s\"", - "Unsatisfied backend parameters" : "Unsatisfied backend parameters", - "Unsatisfied authentication mechanism parameters" : "Unsatisfied authentication mechanism parameters", - "Insufficient data: %s" : "Insufficient data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Storage with id \"%i\" is not user editable", "Dropbox App Configuration" : "Dropbox App Configuration", "Google Drive App Configuration" : "Google Drive App Configuration", "Personal" : "Personal", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Credentials saving failed", "Credentials required" : "Credentials required", "Save" : "Save", + "Storage with id \"%i\" not found" : "Storage with id \"%i\" not found", + "Invalid backend or authentication mechanism class" : "Invalid backend or authentication mechanism class", + "Invalid mount point" : "Invalid mount point", + "Objectstore forbidden" : "Objectstore forbidden", + "Invalid storage backend \"%s\"" : "Invalid storage backend \"%s\"", + "Not permitted to use backend \"%s\"" : "Not permitted to use backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Not permitted to use authentication mechanism \"%s\"", + "Unsatisfied backend parameters" : "Unsatisfied backend parameters", + "Unsatisfied authentication mechanism parameters" : "Unsatisfied authentication mechanism parameters", + "Insufficient data: %s" : "Insufficient data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Storage with id \"%i\" is not user editable", "Access key" : "Access key", "Secret key" : "Secret key", "Builtin" : "Builtin", diff --git a/apps/files_external/l10n/en_GB.json b/apps/files_external/l10n/en_GB.json index f8eba19c544..bafc6e617fd 100644 --- a/apps/files_external/l10n/en_GB.json +++ b/apps/files_external/l10n/en_GB.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Step 1 failed. Exception: %s", "Step 2 failed. Exception: %s" : "Step 2 failed. Exception: %s", "External storage" : "External storage", - "Storage with id \"%i\" not found" : "Storage with id \"%i\" not found", - "Invalid backend or authentication mechanism class" : "Invalid backend or authentication mechanism class", - "Invalid mount point" : "Invalid mount point", - "Objectstore forbidden" : "Objectstore forbidden", - "Invalid storage backend \"%s\"" : "Invalid storage backend \"%s\"", - "Not permitted to use backend \"%s\"" : "Not permitted to use backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Not permitted to use authentication mechanism \"%s\"", - "Unsatisfied backend parameters" : "Unsatisfied backend parameters", - "Unsatisfied authentication mechanism parameters" : "Unsatisfied authentication mechanism parameters", - "Insufficient data: %s" : "Insufficient data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Storage with id \"%i\" is not user editable", "Dropbox App Configuration" : "Dropbox App Configuration", "Google Drive App Configuration" : "Google Drive App Configuration", "Personal" : "Personal", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Credentials saving failed", "Credentials required" : "Credentials required", "Save" : "Save", + "Storage with id \"%i\" not found" : "Storage with id \"%i\" not found", + "Invalid backend or authentication mechanism class" : "Invalid backend or authentication mechanism class", + "Invalid mount point" : "Invalid mount point", + "Objectstore forbidden" : "Objectstore forbidden", + "Invalid storage backend \"%s\"" : "Invalid storage backend \"%s\"", + "Not permitted to use backend \"%s\"" : "Not permitted to use backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Not permitted to use authentication mechanism \"%s\"", + "Unsatisfied backend parameters" : "Unsatisfied backend parameters", + "Unsatisfied authentication mechanism parameters" : "Unsatisfied authentication mechanism parameters", + "Insufficient data: %s" : "Insufficient data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Storage with id \"%i\" is not user editable", "Access key" : "Access key", "Secret key" : "Secret key", "Builtin" : "Builtin", diff --git a/apps/files_external/l10n/eo.js b/apps/files_external/l10n/eo.js index 56c9dab1cf4..0c195709726 100644 --- a/apps/files_external/l10n/eo.js +++ b/apps/files_external/l10n/eo.js @@ -2,10 +2,6 @@ OC.L10N.register( "files_external", { "External storage" : "Malena memorilo", - "Invalid storage backend \"%s\"" : "Ne validas memormotoro \"%s”", - "Not permitted to use backend \"%s\"" : "Ne permesatas uzi motoron “%s”", - "Insufficient data: %s" : "Nesufiĉaj datumoj: %s", - "%s" : "%s", "Personal" : "Persona", "System" : "Sistemo", "Grant access" : "Doni alirpermeson", @@ -17,6 +13,10 @@ OC.L10N.register( "Username" : "Uzantonomo", "Password" : "Pasvorto", "Save" : "Konservi", + "Invalid storage backend \"%s\"" : "Ne validas memormotoro \"%s”", + "Not permitted to use backend \"%s\"" : "Ne permesatas uzi motoron “%s”", + "Insufficient data: %s" : "Nesufiĉaj datumoj: %s", + "%s" : "%s", "Access key" : "Alira ŝlosilo", "Secret key" : "Sekreta ŝlosilo", "None" : "Nenio", diff --git a/apps/files_external/l10n/eo.json b/apps/files_external/l10n/eo.json index 5988fd66a5d..8724f0cb6b3 100644 --- a/apps/files_external/l10n/eo.json +++ b/apps/files_external/l10n/eo.json @@ -1,9 +1,5 @@ { "translations": { "External storage" : "Malena memorilo", - "Invalid storage backend \"%s\"" : "Ne validas memormotoro \"%s”", - "Not permitted to use backend \"%s\"" : "Ne permesatas uzi motoron “%s”", - "Insufficient data: %s" : "Nesufiĉaj datumoj: %s", - "%s" : "%s", "Personal" : "Persona", "System" : "Sistemo", "Grant access" : "Doni alirpermeson", @@ -15,6 +11,10 @@ "Username" : "Uzantonomo", "Password" : "Pasvorto", "Save" : "Konservi", + "Invalid storage backend \"%s\"" : "Ne validas memormotoro \"%s”", + "Not permitted to use backend \"%s\"" : "Ne permesatas uzi motoron “%s”", + "Insufficient data: %s" : "Nesufiĉaj datumoj: %s", + "%s" : "%s", "Access key" : "Alira ŝlosilo", "Secret key" : "Sekreta ŝlosilo", "None" : "Nenio", diff --git a/apps/files_external/l10n/es.js b/apps/files_external/l10n/es.js index 2fdeaf1c8a0..4c54d2c5278 100644 --- a/apps/files_external/l10n/es.js +++ b/apps/files_external/l10n/es.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "El paso 1 falló. Excepción: %s", "Step 2 failed. Exception: %s" : "El paso 2 falló. Excepción: %s", "External storage" : "Almacenamiento externo", - "Storage with id \"%i\" not found" : "No se ha encontrado almacenamiento con id \"%i\"", - "Invalid backend or authentication mechanism class" : "Sistema o mecanismo de autentificación inválido", - "Invalid mount point" : "Punto de montaje no válido", - "Objectstore forbidden" : "Objeto de almacenaje prohibido", - "Invalid storage backend \"%s\"" : "Motor de almacenamiento no válido «%s»", - "Not permitted to use backend \"%s\"" : "No se permite usar el mecanismo \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "No está permitido usar el mecanismo de autentificación \"%s\"", - "Unsatisfied backend parameters" : "Los parámetros del sistema no son válidos", - "Unsatisfied authentication mechanism parameters" : "Los parámetros del mecanismo de autentificación no son válidos", - "Insufficient data: %s" : "Datos insuficientes: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no es editable por usuarios", "Dropbox App Configuration" : "Configuración de la app de Dropbox", "Google Drive App Configuration" : "Configuración de la app de Google Drive", "Personal" : "Personal", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Guardado de credenciales fallido", "Credentials required" : "Credenciales requeridos", "Save" : "Guardar", + "Storage with id \"%i\" not found" : "No se ha encontrado almacenamiento con id \"%i\"", + "Invalid backend or authentication mechanism class" : "Sistema o mecanismo de autentificación inválido", + "Invalid mount point" : "Punto de montaje no válido", + "Objectstore forbidden" : "Objeto de almacenaje prohibido", + "Invalid storage backend \"%s\"" : "Motor de almacenamiento no válido «%s»", + "Not permitted to use backend \"%s\"" : "No se permite usar el mecanismo \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "No está permitido usar el mecanismo de autentificación \"%s\"", + "Unsatisfied backend parameters" : "Los parámetros del sistema no son válidos", + "Unsatisfied authentication mechanism parameters" : "Los parámetros del mecanismo de autentificación no son válidos", + "Insufficient data: %s" : "Datos insuficientes: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no es editable por usuarios", "Access key" : "Clave de acceso", "Secret key" : "Clave secreta", "Builtin" : "Incorporado", diff --git a/apps/files_external/l10n/es.json b/apps/files_external/l10n/es.json index 912455132fa..fef98ec1656 100644 --- a/apps/files_external/l10n/es.json +++ b/apps/files_external/l10n/es.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "El paso 1 falló. Excepción: %s", "Step 2 failed. Exception: %s" : "El paso 2 falló. Excepción: %s", "External storage" : "Almacenamiento externo", - "Storage with id \"%i\" not found" : "No se ha encontrado almacenamiento con id \"%i\"", - "Invalid backend or authentication mechanism class" : "Sistema o mecanismo de autentificación inválido", - "Invalid mount point" : "Punto de montaje no válido", - "Objectstore forbidden" : "Objeto de almacenaje prohibido", - "Invalid storage backend \"%s\"" : "Motor de almacenamiento no válido «%s»", - "Not permitted to use backend \"%s\"" : "No se permite usar el mecanismo \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "No está permitido usar el mecanismo de autentificación \"%s\"", - "Unsatisfied backend parameters" : "Los parámetros del sistema no son válidos", - "Unsatisfied authentication mechanism parameters" : "Los parámetros del mecanismo de autentificación no son válidos", - "Insufficient data: %s" : "Datos insuficientes: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no es editable por usuarios", "Dropbox App Configuration" : "Configuración de la app de Dropbox", "Google Drive App Configuration" : "Configuración de la app de Google Drive", "Personal" : "Personal", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Guardado de credenciales fallido", "Credentials required" : "Credenciales requeridos", "Save" : "Guardar", + "Storage with id \"%i\" not found" : "No se ha encontrado almacenamiento con id \"%i\"", + "Invalid backend or authentication mechanism class" : "Sistema o mecanismo de autentificación inválido", + "Invalid mount point" : "Punto de montaje no válido", + "Objectstore forbidden" : "Objeto de almacenaje prohibido", + "Invalid storage backend \"%s\"" : "Motor de almacenamiento no válido «%s»", + "Not permitted to use backend \"%s\"" : "No se permite usar el mecanismo \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "No está permitido usar el mecanismo de autentificación \"%s\"", + "Unsatisfied backend parameters" : "Los parámetros del sistema no son válidos", + "Unsatisfied authentication mechanism parameters" : "Los parámetros del mecanismo de autentificación no son válidos", + "Insufficient data: %s" : "Datos insuficientes: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no es editable por usuarios", "Access key" : "Clave de acceso", "Secret key" : "Clave secreta", "Builtin" : "Incorporado", diff --git a/apps/files_external/l10n/et_EE.js b/apps/files_external/l10n/et_EE.js index dac4ed3b3fb..795f89accd6 100644 --- a/apps/files_external/l10n/et_EE.js +++ b/apps/files_external/l10n/et_EE.js @@ -4,13 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Samm 1 ebaõnnestus. Erind: %s", "Step 2 failed. Exception: %s" : "Samm 2 ebaõnnestus. Erind: %s", "External storage" : "Väline andmehoidla", - "Storage with id \"%i\" not found" : "Salvestuskohta ID-ga \"%i\" ei leitud", - "Invalid mount point" : "Vigane ühenduspunkt", - "Objectstore forbidden" : "Objectstore on keelatud", - "Invalid storage backend \"%s\"" : "Vigane salvestuskoha taustsüsteem \"%s\"", - "Unsatisfied backend parameters" : "Rahuldamata taustarakenduse parameetrid", - "Insufficient data: %s" : "Pole piisavalt andmeid: %s", - "%s" : "%s", "Personal" : "Isiklik", "System" : "Süsteem", "Grant access" : "Anna ligipääs", @@ -31,6 +24,13 @@ OC.L10N.register( "Password" : "Parool", "Credentials required" : "Kasutajatunnused on nõutud", "Save" : "Salvesta", + "Storage with id \"%i\" not found" : "Salvestuskohta ID-ga \"%i\" ei leitud", + "Invalid mount point" : "Vigane ühenduspunkt", + "Objectstore forbidden" : "Objectstore on keelatud", + "Invalid storage backend \"%s\"" : "Vigane salvestuskoha taustsüsteem \"%s\"", + "Unsatisfied backend parameters" : "Rahuldamata taustarakenduse parameetrid", + "Insufficient data: %s" : "Pole piisavalt andmeid: %s", + "%s" : "%s", "Access key" : "Ligipääsuvõti", "Secret key" : "Salavõti", "Builtin" : "Sisseehitatud", diff --git a/apps/files_external/l10n/et_EE.json b/apps/files_external/l10n/et_EE.json index e941509ccfe..39f060107d1 100644 --- a/apps/files_external/l10n/et_EE.json +++ b/apps/files_external/l10n/et_EE.json @@ -2,13 +2,6 @@ "Step 1 failed. Exception: %s" : "Samm 1 ebaõnnestus. Erind: %s", "Step 2 failed. Exception: %s" : "Samm 2 ebaõnnestus. Erind: %s", "External storage" : "Väline andmehoidla", - "Storage with id \"%i\" not found" : "Salvestuskohta ID-ga \"%i\" ei leitud", - "Invalid mount point" : "Vigane ühenduspunkt", - "Objectstore forbidden" : "Objectstore on keelatud", - "Invalid storage backend \"%s\"" : "Vigane salvestuskoha taustsüsteem \"%s\"", - "Unsatisfied backend parameters" : "Rahuldamata taustarakenduse parameetrid", - "Insufficient data: %s" : "Pole piisavalt andmeid: %s", - "%s" : "%s", "Personal" : "Isiklik", "System" : "Süsteem", "Grant access" : "Anna ligipääs", @@ -29,6 +22,13 @@ "Password" : "Parool", "Credentials required" : "Kasutajatunnused on nõutud", "Save" : "Salvesta", + "Storage with id \"%i\" not found" : "Salvestuskohta ID-ga \"%i\" ei leitud", + "Invalid mount point" : "Vigane ühenduspunkt", + "Objectstore forbidden" : "Objectstore on keelatud", + "Invalid storage backend \"%s\"" : "Vigane salvestuskoha taustsüsteem \"%s\"", + "Unsatisfied backend parameters" : "Rahuldamata taustarakenduse parameetrid", + "Insufficient data: %s" : "Pole piisavalt andmeid: %s", + "%s" : "%s", "Access key" : "Ligipääsuvõti", "Secret key" : "Salavõti", "Builtin" : "Sisseehitatud", diff --git a/apps/files_external/l10n/fa.js b/apps/files_external/l10n/fa.js index bfdf480cdfa..769199cd32d 100644 --- a/apps/files_external/l10n/fa.js +++ b/apps/files_external/l10n/fa.js @@ -5,7 +5,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "گام 1 ناموفق بود. خطا: %s", "Step 2 failed. Exception: %s" : "گام 2ناموفق بود. خطا: %s", "External storage" : "حافظه خارجی", - "Storage with id \"%i\" not found" : "فضای ذخیرهسازی با شماره \"%i\" یافت نشد", "Personal" : "شخصی", "System" : "سیستم", "Grant access" : " مجوز اعطا دسترسی", @@ -17,6 +16,7 @@ OC.L10N.register( "Username" : "نام کاربری", "Password" : "گذرواژه", "Save" : "ذخیره", + "Storage with id \"%i\" not found" : "فضای ذخیرهسازی با شماره \"%i\" یافت نشد", "Access key" : "کلید دسترسی", "Secret key" : "کلید مخفی", "None" : "هیچکدام", diff --git a/apps/files_external/l10n/fa.json b/apps/files_external/l10n/fa.json index 66da7c5785e..e19a769454b 100644 --- a/apps/files_external/l10n/fa.json +++ b/apps/files_external/l10n/fa.json @@ -3,7 +3,6 @@ "Step 1 failed. Exception: %s" : "گام 1 ناموفق بود. خطا: %s", "Step 2 failed. Exception: %s" : "گام 2ناموفق بود. خطا: %s", "External storage" : "حافظه خارجی", - "Storage with id \"%i\" not found" : "فضای ذخیرهسازی با شماره \"%i\" یافت نشد", "Personal" : "شخصی", "System" : "سیستم", "Grant access" : " مجوز اعطا دسترسی", @@ -15,6 +14,7 @@ "Username" : "نام کاربری", "Password" : "گذرواژه", "Save" : "ذخیره", + "Storage with id \"%i\" not found" : "فضای ذخیرهسازی با شماره \"%i\" یافت نشد", "Access key" : "کلید دسترسی", "Secret key" : "کلید مخفی", "None" : "هیچکدام", diff --git a/apps/files_external/l10n/fi_FI.js b/apps/files_external/l10n/fi_FI.js index 1a75d42efdb..8ccaa2f0a42 100644 --- a/apps/files_external/l10n/fi_FI.js +++ b/apps/files_external/l10n/fi_FI.js @@ -4,9 +4,8 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Vaihe 1 epäonnistui. Poikkeus: %s", "Step 2 failed. Exception: %s" : "Vaihe 2 epäonnistui. Poikkeus: %s", "External storage" : "Ulkoinen tallennustila", - "Storage with id \"%i\" not found" : "Tallennustilaa tunnisteella \"%i\" ei löytynyt", - "Invalid mount point" : "Virheellinen liitoskohta", - "%s" : "%s", + "Dropbox App Configuration" : "Dropbox-sovelluksen määritys", + "Google Drive App Configuration" : "Google Drive -sovelluksen määritys", "Personal" : "Henkilökohtainen", "System" : "Järjestelmä", "Grant access" : "Salli pääsy", @@ -33,6 +32,9 @@ OC.L10N.register( "Credentials saving failed" : "Kirjautumistietojen tallentaminen epäonnistui", "Credentials required" : "Kirjautumistiedot vaaditaan", "Save" : "Tallenna", + "Storage with id \"%i\" not found" : "Tallennustilaa tunnisteella \"%i\" ei löytynyt", + "Invalid mount point" : "Virheellinen liitoskohta", + "%s" : "%s", "Builtin" : "Sisäänrakennettu", "None" : "Ei mitään", "OAuth1" : "OAuth1", diff --git a/apps/files_external/l10n/fi_FI.json b/apps/files_external/l10n/fi_FI.json index a342d6b84f7..21c195cd737 100644 --- a/apps/files_external/l10n/fi_FI.json +++ b/apps/files_external/l10n/fi_FI.json @@ -2,9 +2,8 @@ "Step 1 failed. Exception: %s" : "Vaihe 1 epäonnistui. Poikkeus: %s", "Step 2 failed. Exception: %s" : "Vaihe 2 epäonnistui. Poikkeus: %s", "External storage" : "Ulkoinen tallennustila", - "Storage with id \"%i\" not found" : "Tallennustilaa tunnisteella \"%i\" ei löytynyt", - "Invalid mount point" : "Virheellinen liitoskohta", - "%s" : "%s", + "Dropbox App Configuration" : "Dropbox-sovelluksen määritys", + "Google Drive App Configuration" : "Google Drive -sovelluksen määritys", "Personal" : "Henkilökohtainen", "System" : "Järjestelmä", "Grant access" : "Salli pääsy", @@ -31,6 +30,9 @@ "Credentials saving failed" : "Kirjautumistietojen tallentaminen epäonnistui", "Credentials required" : "Kirjautumistiedot vaaditaan", "Save" : "Tallenna", + "Storage with id \"%i\" not found" : "Tallennustilaa tunnisteella \"%i\" ei löytynyt", + "Invalid mount point" : "Virheellinen liitoskohta", + "%s" : "%s", "Builtin" : "Sisäänrakennettu", "None" : "Ei mitään", "OAuth1" : "OAuth1", diff --git a/apps/files_external/l10n/fr.js b/apps/files_external/l10n/fr.js index b6cb04355f0..9bec74126bd 100644 --- a/apps/files_external/l10n/fr.js +++ b/apps/files_external/l10n/fr.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "L’étape 1 a échoué. Erreur : %s", "Step 2 failed. Exception: %s" : "L’étape 2 a échoué. Erreur : %s", "External storage" : "Stockage externe", - "Storage with id \"%i\" not found" : "Stockage avec l'id \"%i\" non trouvé", - "Invalid backend or authentication mechanism class" : "Service ou méthode d'authentification non valable", - "Invalid mount point" : "Point de montage non valide", - "Objectstore forbidden" : "\"Objectstore\" interdit", - "Invalid storage backend \"%s\"" : "Service de stockage non valide : \"%s\"", - "Not permitted to use backend \"%s\"" : "Non autorisé à utiliser le service \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Non autorisé à utiliser le mécanisme d'authentification \"%s\"", - "Unsatisfied backend parameters" : "Paramètres manquants pour le service", - "Unsatisfied authentication mechanism parameters" : "Paramètres manquants pour la méthode d'authentification", - "Insufficient data: %s" : "Données insuffisantes : %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Le support de stockage d'id \"%i\" n'est pas modifiable par les utilisateurs", "Dropbox App Configuration" : "Configuration de l'application Dropbox", "Google Drive App Configuration" : "Configuration de l'application Google Drive", "Personal" : "Personnel", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "La sauvegarde des identifiants a échoué", "Credentials required" : "Des informations d'identification sont requises", "Save" : "Enregistrer", + "Storage with id \"%i\" not found" : "Stockage avec l'id \"%i\" non trouvé", + "Invalid backend or authentication mechanism class" : "Service ou méthode d'authentification non valable", + "Invalid mount point" : "Point de montage non valide", + "Objectstore forbidden" : "\"Objectstore\" interdit", + "Invalid storage backend \"%s\"" : "Service de stockage non valide : \"%s\"", + "Not permitted to use backend \"%s\"" : "Non autorisé à utiliser le service \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Non autorisé à utiliser le mécanisme d'authentification \"%s\"", + "Unsatisfied backend parameters" : "Paramètres manquants pour le service", + "Unsatisfied authentication mechanism parameters" : "Paramètres manquants pour la méthode d'authentification", + "Insufficient data: %s" : "Données insuffisantes : %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Le support de stockage d'id \"%i\" n'est pas modifiable par les utilisateurs", "Access key" : "Clé d'accès", "Secret key" : "Clé secrète", "Builtin" : "Intégré", diff --git a/apps/files_external/l10n/fr.json b/apps/files_external/l10n/fr.json index 89bd6d19542..71f2f05462c 100644 --- a/apps/files_external/l10n/fr.json +++ b/apps/files_external/l10n/fr.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "L’étape 1 a échoué. Erreur : %s", "Step 2 failed. Exception: %s" : "L’étape 2 a échoué. Erreur : %s", "External storage" : "Stockage externe", - "Storage with id \"%i\" not found" : "Stockage avec l'id \"%i\" non trouvé", - "Invalid backend or authentication mechanism class" : "Service ou méthode d'authentification non valable", - "Invalid mount point" : "Point de montage non valide", - "Objectstore forbidden" : "\"Objectstore\" interdit", - "Invalid storage backend \"%s\"" : "Service de stockage non valide : \"%s\"", - "Not permitted to use backend \"%s\"" : "Non autorisé à utiliser le service \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Non autorisé à utiliser le mécanisme d'authentification \"%s\"", - "Unsatisfied backend parameters" : "Paramètres manquants pour le service", - "Unsatisfied authentication mechanism parameters" : "Paramètres manquants pour la méthode d'authentification", - "Insufficient data: %s" : "Données insuffisantes : %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Le support de stockage d'id \"%i\" n'est pas modifiable par les utilisateurs", "Dropbox App Configuration" : "Configuration de l'application Dropbox", "Google Drive App Configuration" : "Configuration de l'application Google Drive", "Personal" : "Personnel", @@ -46,6 +34,18 @@ "Credentials saving failed" : "La sauvegarde des identifiants a échoué", "Credentials required" : "Des informations d'identification sont requises", "Save" : "Enregistrer", + "Storage with id \"%i\" not found" : "Stockage avec l'id \"%i\" non trouvé", + "Invalid backend or authentication mechanism class" : "Service ou méthode d'authentification non valable", + "Invalid mount point" : "Point de montage non valide", + "Objectstore forbidden" : "\"Objectstore\" interdit", + "Invalid storage backend \"%s\"" : "Service de stockage non valide : \"%s\"", + "Not permitted to use backend \"%s\"" : "Non autorisé à utiliser le service \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Non autorisé à utiliser le mécanisme d'authentification \"%s\"", + "Unsatisfied backend parameters" : "Paramètres manquants pour le service", + "Unsatisfied authentication mechanism parameters" : "Paramètres manquants pour la méthode d'authentification", + "Insufficient data: %s" : "Données insuffisantes : %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Le support de stockage d'id \"%i\" n'est pas modifiable par les utilisateurs", "Access key" : "Clé d'accès", "Secret key" : "Clé secrète", "Builtin" : "Intégré", diff --git a/apps/files_external/l10n/gl.js b/apps/files_external/l10n/gl.js index e0db1aac509..5d74963384b 100644 --- a/apps/files_external/l10n/gl.js +++ b/apps/files_external/l10n/gl.js @@ -4,9 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Fallou o paso 1. Excepción: %s", "Step 2 failed. Exception: %s" : "Fallou o paso 2. Excepción: %s", "External storage" : "Almacenamento externo", - "Storage with id \"%i\" not found" : "Non se atopa o almacenamento co ID «%i» ", - "Invalid mount point" : "Punto de montaxe incorrecto", - "Invalid storage backend \"%s\"" : "Infraestrutura de almacenamento «%s» incorrecta", "Personal" : "Persoal", "System" : "Sistema", "Grant access" : "Permitir o acceso", @@ -18,6 +15,9 @@ OC.L10N.register( "Username" : "Nome de usuario", "Password" : "Contrasinal", "Save" : "Gardar", + "Storage with id \"%i\" not found" : "Non se atopa o almacenamento co ID «%i» ", + "Invalid mount point" : "Punto de montaxe incorrecto", + "Invalid storage backend \"%s\"" : "Infraestrutura de almacenamento «%s» incorrecta", "None" : "Ningún", "App key" : "Clave da API", "App secret" : "Secreto da aplicación", diff --git a/apps/files_external/l10n/gl.json b/apps/files_external/l10n/gl.json index f3df77435f7..8e57c5902c9 100644 --- a/apps/files_external/l10n/gl.json +++ b/apps/files_external/l10n/gl.json @@ -2,9 +2,6 @@ "Step 1 failed. Exception: %s" : "Fallou o paso 1. Excepción: %s", "Step 2 failed. Exception: %s" : "Fallou o paso 2. Excepción: %s", "External storage" : "Almacenamento externo", - "Storage with id \"%i\" not found" : "Non se atopa o almacenamento co ID «%i» ", - "Invalid mount point" : "Punto de montaxe incorrecto", - "Invalid storage backend \"%s\"" : "Infraestrutura de almacenamento «%s» incorrecta", "Personal" : "Persoal", "System" : "Sistema", "Grant access" : "Permitir o acceso", @@ -16,6 +13,9 @@ "Username" : "Nome de usuario", "Password" : "Contrasinal", "Save" : "Gardar", + "Storage with id \"%i\" not found" : "Non se atopa o almacenamento co ID «%i» ", + "Invalid mount point" : "Punto de montaxe incorrecto", + "Invalid storage backend \"%s\"" : "Infraestrutura de almacenamento «%s» incorrecta", "None" : "Ningún", "App key" : "Clave da API", "App secret" : "Secreto da aplicación", diff --git a/apps/files_external/l10n/he.js b/apps/files_external/l10n/he.js index f2d23c61b7b..461d9db75b3 100644 --- a/apps/files_external/l10n/he.js +++ b/apps/files_external/l10n/he.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "שלב 1 נכשל. חריג: %s", "Step 2 failed. Exception: %s" : "שלב 2 נכשל. חריג: %s", "External storage" : "אחסון חיצוני", - "Storage with id \"%i\" not found" : "אחסון עם מספר זיהוי \"%i\" לא אותר", - "Invalid backend or authentication mechanism class" : "צד אחורי או סוג מנגנון אימות לא חוקי", - "Invalid mount point" : "נקודת עגינה לא חוקית", - "Objectstore forbidden" : "Objectstore חסום", - "Invalid storage backend \"%s\"" : "צד אחורי של האחסון אינו תקין \"%s\"", - "Not permitted to use backend \"%s\"" : "השימוש בצד אחורי \"%s\" אינו מותר", - "Not permitted to use authentication mechanism \"%s\"" : "השימוש במכניזם אימות \"%s\" אינו מותר", - "Unsatisfied backend parameters" : "פרמטרים צד אחורי אינם מספקים", - "Unsatisfied authentication mechanism parameters" : "פרמטרים של מכניזם אימות אינם מספקים", - "Insufficient data: %s" : "מידע לא מספק: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "האחסון עם זהות \"%i\" לא ניתן לעריכה", "Personal" : "אישי", "System" : "מערכת", "Grant access" : "הענקת גישה", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "שמירת פרטי גישה נכשלה", "Credentials required" : "נדרשים פרטי גישה", "Save" : "שמירה", + "Storage with id \"%i\" not found" : "אחסון עם מספר זיהוי \"%i\" לא אותר", + "Invalid backend or authentication mechanism class" : "צד אחורי או סוג מנגנון אימות לא חוקי", + "Invalid mount point" : "נקודת עגינה לא חוקית", + "Objectstore forbidden" : "Objectstore חסום", + "Invalid storage backend \"%s\"" : "צד אחורי של האחסון אינו תקין \"%s\"", + "Not permitted to use backend \"%s\"" : "השימוש בצד אחורי \"%s\" אינו מותר", + "Not permitted to use authentication mechanism \"%s\"" : "השימוש במכניזם אימות \"%s\" אינו מותר", + "Unsatisfied backend parameters" : "פרמטרים צד אחורי אינם מספקים", + "Unsatisfied authentication mechanism parameters" : "פרמטרים של מכניזם אימות אינם מספקים", + "Insufficient data: %s" : "מידע לא מספק: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "האחסון עם זהות \"%i\" לא ניתן לעריכה", "Access key" : "מפתח כניסה", "Secret key" : "מפתח סודי", "Builtin" : "מובנה", diff --git a/apps/files_external/l10n/he.json b/apps/files_external/l10n/he.json index 9e3ac62475f..1f9e7051669 100644 --- a/apps/files_external/l10n/he.json +++ b/apps/files_external/l10n/he.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "שלב 1 נכשל. חריג: %s", "Step 2 failed. Exception: %s" : "שלב 2 נכשל. חריג: %s", "External storage" : "אחסון חיצוני", - "Storage with id \"%i\" not found" : "אחסון עם מספר זיהוי \"%i\" לא אותר", - "Invalid backend or authentication mechanism class" : "צד אחורי או סוג מנגנון אימות לא חוקי", - "Invalid mount point" : "נקודת עגינה לא חוקית", - "Objectstore forbidden" : "Objectstore חסום", - "Invalid storage backend \"%s\"" : "צד אחורי של האחסון אינו תקין \"%s\"", - "Not permitted to use backend \"%s\"" : "השימוש בצד אחורי \"%s\" אינו מותר", - "Not permitted to use authentication mechanism \"%s\"" : "השימוש במכניזם אימות \"%s\" אינו מותר", - "Unsatisfied backend parameters" : "פרמטרים צד אחורי אינם מספקים", - "Unsatisfied authentication mechanism parameters" : "פרמטרים של מכניזם אימות אינם מספקים", - "Insufficient data: %s" : "מידע לא מספק: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "האחסון עם זהות \"%i\" לא ניתן לעריכה", "Personal" : "אישי", "System" : "מערכת", "Grant access" : "הענקת גישה", @@ -44,6 +32,18 @@ "Credentials saving failed" : "שמירת פרטי גישה נכשלה", "Credentials required" : "נדרשים פרטי גישה", "Save" : "שמירה", + "Storage with id \"%i\" not found" : "אחסון עם מספר זיהוי \"%i\" לא אותר", + "Invalid backend or authentication mechanism class" : "צד אחורי או סוג מנגנון אימות לא חוקי", + "Invalid mount point" : "נקודת עגינה לא חוקית", + "Objectstore forbidden" : "Objectstore חסום", + "Invalid storage backend \"%s\"" : "צד אחורי של האחסון אינו תקין \"%s\"", + "Not permitted to use backend \"%s\"" : "השימוש בצד אחורי \"%s\" אינו מותר", + "Not permitted to use authentication mechanism \"%s\"" : "השימוש במכניזם אימות \"%s\" אינו מותר", + "Unsatisfied backend parameters" : "פרמטרים צד אחורי אינם מספקים", + "Unsatisfied authentication mechanism parameters" : "פרמטרים של מכניזם אימות אינם מספקים", + "Insufficient data: %s" : "מידע לא מספק: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "האחסון עם זהות \"%i\" לא ניתן לעריכה", "Access key" : "מפתח כניסה", "Secret key" : "מפתח סודי", "Builtin" : "מובנה", diff --git a/apps/files_external/l10n/hu_HU.js b/apps/files_external/l10n/hu_HU.js index 63f31d417ec..4bfe55fd4bf 100644 --- a/apps/files_external/l10n/hu_HU.js +++ b/apps/files_external/l10n/hu_HU.js @@ -2,7 +2,6 @@ OC.L10N.register( "files_external", { "External storage" : "Külső tárolók", - "%s" : "%s", "Personal" : "Személyes", "System" : "Rendszer", "Grant access" : "Megadom a hozzáférést", @@ -20,6 +19,7 @@ OC.L10N.register( "Username" : "Felhasználónév", "Password" : "Jelszó", "Save" : "Mentés", + "%s" : "%s", "Access key" : "Hozzáférési kulcs", "Secret key" : "Titkos kulcs", "None" : "Egyik sem", diff --git a/apps/files_external/l10n/hu_HU.json b/apps/files_external/l10n/hu_HU.json index 582ebb4aa36..9efbacb48ce 100644 --- a/apps/files_external/l10n/hu_HU.json +++ b/apps/files_external/l10n/hu_HU.json @@ -1,6 +1,5 @@ { "translations": { "External storage" : "Külső tárolók", - "%s" : "%s", "Personal" : "Személyes", "System" : "Rendszer", "Grant access" : "Megadom a hozzáférést", @@ -18,6 +17,7 @@ "Username" : "Felhasználónév", "Password" : "Jelszó", "Save" : "Mentés", + "%s" : "%s", "Access key" : "Hozzáférési kulcs", "Secret key" : "Titkos kulcs", "None" : "Egyik sem", diff --git a/apps/files_external/l10n/id.js b/apps/files_external/l10n/id.js index d4fae999373..8911d9eb4a3 100644 --- a/apps/files_external/l10n/id.js +++ b/apps/files_external/l10n/id.js @@ -7,15 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Langkah 1 gagal. Kecuali: %s", "Step 2 failed. Exception: %s" : "Langkah 2 gagal. Kecuali: %s", "External storage" : "Penyimpanan eksternal", - "Storage with id \"%i\" not found" : "Penyimpanan dengan id \"%i\" tidak ditemukan", - "Invalid backend or authentication mechanism class" : "Beckend atau kelas mekanisme otentikasi salah.", - "Invalid mount point" : "Mount point salah", - "Objectstore forbidden" : "Objectstore terlarang", - "Invalid storage backend \"%s\"" : "Backend penyimpanan \"%s\" salah", - "Not permitted to use backend \"%s\"" : "Tidak diizinkan menggunakan backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Tidak diizinkan menggunakan mekanisme otentikasi \"%s\"", - "Unsatisfied backend parameters" : "Parameter backend tidak lengkap", - "Unsatisfied authentication mechanism parameters" : "Parameter mekanisme otentikasi tidak lengkap", "Personal" : "Pribadi", "System" : "Sistem", "Grant access" : "Berikan hak akses", @@ -29,6 +20,15 @@ OC.L10N.register( "Username" : "Nama Pengguna", "Password" : "Sandi", "Save" : "Simpan", + "Storage with id \"%i\" not found" : "Penyimpanan dengan id \"%i\" tidak ditemukan", + "Invalid backend or authentication mechanism class" : "Beckend atau kelas mekanisme otentikasi salah.", + "Invalid mount point" : "Mount point salah", + "Objectstore forbidden" : "Objectstore terlarang", + "Invalid storage backend \"%s\"" : "Backend penyimpanan \"%s\" salah", + "Not permitted to use backend \"%s\"" : "Tidak diizinkan menggunakan backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Tidak diizinkan menggunakan mekanisme otentikasi \"%s\"", + "Unsatisfied backend parameters" : "Parameter backend tidak lengkap", + "Unsatisfied authentication mechanism parameters" : "Parameter mekanisme otentikasi tidak lengkap", "Access key" : "Kunci akses", "Secret key" : "Kunci rahasia", "Builtin" : "Internal", diff --git a/apps/files_external/l10n/id.json b/apps/files_external/l10n/id.json index 7d83789176a..f2b130b0101 100644 --- a/apps/files_external/l10n/id.json +++ b/apps/files_external/l10n/id.json @@ -5,15 +5,6 @@ "Step 1 failed. Exception: %s" : "Langkah 1 gagal. Kecuali: %s", "Step 2 failed. Exception: %s" : "Langkah 2 gagal. Kecuali: %s", "External storage" : "Penyimpanan eksternal", - "Storage with id \"%i\" not found" : "Penyimpanan dengan id \"%i\" tidak ditemukan", - "Invalid backend or authentication mechanism class" : "Beckend atau kelas mekanisme otentikasi salah.", - "Invalid mount point" : "Mount point salah", - "Objectstore forbidden" : "Objectstore terlarang", - "Invalid storage backend \"%s\"" : "Backend penyimpanan \"%s\" salah", - "Not permitted to use backend \"%s\"" : "Tidak diizinkan menggunakan backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Tidak diizinkan menggunakan mekanisme otentikasi \"%s\"", - "Unsatisfied backend parameters" : "Parameter backend tidak lengkap", - "Unsatisfied authentication mechanism parameters" : "Parameter mekanisme otentikasi tidak lengkap", "Personal" : "Pribadi", "System" : "Sistem", "Grant access" : "Berikan hak akses", @@ -27,6 +18,15 @@ "Username" : "Nama Pengguna", "Password" : "Sandi", "Save" : "Simpan", + "Storage with id \"%i\" not found" : "Penyimpanan dengan id \"%i\" tidak ditemukan", + "Invalid backend or authentication mechanism class" : "Beckend atau kelas mekanisme otentikasi salah.", + "Invalid mount point" : "Mount point salah", + "Objectstore forbidden" : "Objectstore terlarang", + "Invalid storage backend \"%s\"" : "Backend penyimpanan \"%s\" salah", + "Not permitted to use backend \"%s\"" : "Tidak diizinkan menggunakan backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Tidak diizinkan menggunakan mekanisme otentikasi \"%s\"", + "Unsatisfied backend parameters" : "Parameter backend tidak lengkap", + "Unsatisfied authentication mechanism parameters" : "Parameter mekanisme otentikasi tidak lengkap", "Access key" : "Kunci akses", "Secret key" : "Kunci rahasia", "Builtin" : "Internal", diff --git a/apps/files_external/l10n/is.js b/apps/files_external/l10n/is.js index 06839f9d3d9..75d8dcd089e 100644 --- a/apps/files_external/l10n/is.js +++ b/apps/files_external/l10n/is.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Skref 1 mistókst. Undantekning: %s", "Step 2 failed. Exception: %s" : "Skref 2 mistókst. Undantekning: %s", "External storage" : "Ytri gagnageymsla", - "Storage with id \"%i\" not found" : "Geymsla með auðkennið '%i' fannst ekki", - "Invalid backend or authentication mechanism class" : "Ógildur flokkur bakenda eða auðkenningartækni", - "Invalid mount point" : "Ógildur tengipunktur", - "Objectstore forbidden" : "Hlutageymsla (objectstore) bönnuð", - "Invalid storage backend \"%s\"" : "Ógildur geymslubakendi \"%s\"", - "Not permitted to use backend \"%s\"" : "Ekki leyft að nota \"%s\" bakendann", - "Not permitted to use authentication mechanism \"%s\"" : "Ekki leyft að nota \"%s\" auðkenningartæknina", - "Unsatisfied backend parameters" : "Óuppfyllt viðföng bakenda", - "Unsatisfied authentication mechanism parameters" : "Óuppfyllt viðföng auðkenningartækni", - "Insufficient data: %s" : "Ónóg gögn: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Geymslan með auðkennið '%s' er ekki breytanleg af notanda", "Personal" : "Einka", "System" : "Kerfi", "Grant access" : "Veita aðgengi", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "Vistun auðkenna tókst ekki", "Credentials required" : "Auðkenna krafist", "Save" : "Vista", + "Storage with id \"%i\" not found" : "Geymsla með auðkennið '%i' fannst ekki", + "Invalid backend or authentication mechanism class" : "Ógildur flokkur bakenda eða auðkenningartækni", + "Invalid mount point" : "Ógildur tengipunktur", + "Objectstore forbidden" : "Hlutageymsla (objectstore) bönnuð", + "Invalid storage backend \"%s\"" : "Ógildur geymslubakendi \"%s\"", + "Not permitted to use backend \"%s\"" : "Ekki leyft að nota \"%s\" bakendann", + "Not permitted to use authentication mechanism \"%s\"" : "Ekki leyft að nota \"%s\" auðkenningartæknina", + "Unsatisfied backend parameters" : "Óuppfyllt viðföng bakenda", + "Unsatisfied authentication mechanism parameters" : "Óuppfyllt viðföng auðkenningartækni", + "Insufficient data: %s" : "Ónóg gögn: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Geymslan með auðkennið '%s' er ekki breytanleg af notanda", "Access key" : "Aðgangslykill", "Secret key" : "Leynilykill", "Builtin" : "Innbyggt", diff --git a/apps/files_external/l10n/is.json b/apps/files_external/l10n/is.json index 2a9f31333e9..21faff9c899 100644 --- a/apps/files_external/l10n/is.json +++ b/apps/files_external/l10n/is.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Skref 1 mistókst. Undantekning: %s", "Step 2 failed. Exception: %s" : "Skref 2 mistókst. Undantekning: %s", "External storage" : "Ytri gagnageymsla", - "Storage with id \"%i\" not found" : "Geymsla með auðkennið '%i' fannst ekki", - "Invalid backend or authentication mechanism class" : "Ógildur flokkur bakenda eða auðkenningartækni", - "Invalid mount point" : "Ógildur tengipunktur", - "Objectstore forbidden" : "Hlutageymsla (objectstore) bönnuð", - "Invalid storage backend \"%s\"" : "Ógildur geymslubakendi \"%s\"", - "Not permitted to use backend \"%s\"" : "Ekki leyft að nota \"%s\" bakendann", - "Not permitted to use authentication mechanism \"%s\"" : "Ekki leyft að nota \"%s\" auðkenningartæknina", - "Unsatisfied backend parameters" : "Óuppfyllt viðföng bakenda", - "Unsatisfied authentication mechanism parameters" : "Óuppfyllt viðföng auðkenningartækni", - "Insufficient data: %s" : "Ónóg gögn: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Geymslan með auðkennið '%s' er ekki breytanleg af notanda", "Personal" : "Einka", "System" : "Kerfi", "Grant access" : "Veita aðgengi", @@ -44,6 +32,18 @@ "Credentials saving failed" : "Vistun auðkenna tókst ekki", "Credentials required" : "Auðkenna krafist", "Save" : "Vista", + "Storage with id \"%i\" not found" : "Geymsla með auðkennið '%i' fannst ekki", + "Invalid backend or authentication mechanism class" : "Ógildur flokkur bakenda eða auðkenningartækni", + "Invalid mount point" : "Ógildur tengipunktur", + "Objectstore forbidden" : "Hlutageymsla (objectstore) bönnuð", + "Invalid storage backend \"%s\"" : "Ógildur geymslubakendi \"%s\"", + "Not permitted to use backend \"%s\"" : "Ekki leyft að nota \"%s\" bakendann", + "Not permitted to use authentication mechanism \"%s\"" : "Ekki leyft að nota \"%s\" auðkenningartæknina", + "Unsatisfied backend parameters" : "Óuppfyllt viðföng bakenda", + "Unsatisfied authentication mechanism parameters" : "Óuppfyllt viðföng auðkenningartækni", + "Insufficient data: %s" : "Ónóg gögn: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Geymslan með auðkennið '%s' er ekki breytanleg af notanda", "Access key" : "Aðgangslykill", "Secret key" : "Leynilykill", "Builtin" : "Innbyggt", diff --git a/apps/files_external/l10n/it.js b/apps/files_external/l10n/it.js index f95c3c69155..8bc2f0c559d 100644 --- a/apps/files_external/l10n/it.js +++ b/apps/files_external/l10n/it.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Fase 1 non riuscita. Eccezione: %s", "Step 2 failed. Exception: %s" : "Fase 2 non riuscita. Eccezione: %s", "External storage" : "Archiviazione esterna", - "Storage with id \"%i\" not found" : "Archiviazione con ID \"%i\" non trovata", - "Invalid backend or authentication mechanism class" : "Motore o classe del meccanismo di autenticazione non valido", - "Invalid mount point" : "Punto di mount non valido", - "Objectstore forbidden" : "Objectstore vietato", - "Invalid storage backend \"%s\"" : "Motore di archiviazione \"%s\" non valido", - "Not permitted to use backend \"%s\"" : "Utilizzo del motore \"%s\" non permesso", - "Not permitted to use authentication mechanism \"%s\"" : "Utilizzo del meccanismo di autenticazione \"%s\" non permesso", - "Unsatisfied backend parameters" : "Parametri del motore non soddisfatti", - "Unsatisfied authentication mechanism parameters" : "Parametri del meccanismo di autenticazione non soddisfatti", - "Insufficient data: %s" : "Dati insufficienti: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "L'archiviazione con ID \"%i\" non è modificabile dall'utente", "Dropbox App Configuration" : "Configurazione applicazione Dropbox", "Google Drive App Configuration" : "Configurazione applicazione Google Drive", "Personal" : "Personale", @@ -30,6 +18,7 @@ OC.L10N.register( "Error generating key pair" : "Errore durante la generazione della coppia di chiavi", "All users. Type to select user or group." : "Tutti gli utenti. Digita per selezionare utente o gruppo.", "(group)" : "(gruppo)", + "Compatibility with Mac NFD encoding (slow)" : "Compatibilità con la codifica Mac NFD (lento)", "Admin defined" : "Definito dall'amministratore", "Saved" : "Salvato", "Empty response from the server" : "Risposta vuota dal server", @@ -48,6 +37,18 @@ OC.L10N.register( "Credentials saving failed" : "Salvataggio delle credenziali non riuscito", "Credentials required" : "Credenziali richieste", "Save" : "Salva", + "Storage with id \"%i\" not found" : "Archiviazione con ID \"%i\" non trovata", + "Invalid backend or authentication mechanism class" : "Motore o classe del meccanismo di autenticazione non valido", + "Invalid mount point" : "Punto di mount non valido", + "Objectstore forbidden" : "Objectstore vietato", + "Invalid storage backend \"%s\"" : "Motore di archiviazione \"%s\" non valido", + "Not permitted to use backend \"%s\"" : "Utilizzo del motore \"%s\" non permesso", + "Not permitted to use authentication mechanism \"%s\"" : "Utilizzo del meccanismo di autenticazione \"%s\" non permesso", + "Unsatisfied backend parameters" : "Parametri del motore non soddisfatti", + "Unsatisfied authentication mechanism parameters" : "Parametri del meccanismo di autenticazione non soddisfatti", + "Insufficient data: %s" : "Dati insufficienti: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "L'archiviazione con ID \"%i\" non è modificabile dall'utente", "Access key" : "Chiave di accesso", "Secret key" : "Chiave segreta", "Builtin" : "Integrata", diff --git a/apps/files_external/l10n/it.json b/apps/files_external/l10n/it.json index 30b3445558b..12b88461e72 100644 --- a/apps/files_external/l10n/it.json +++ b/apps/files_external/l10n/it.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Fase 1 non riuscita. Eccezione: %s", "Step 2 failed. Exception: %s" : "Fase 2 non riuscita. Eccezione: %s", "External storage" : "Archiviazione esterna", - "Storage with id \"%i\" not found" : "Archiviazione con ID \"%i\" non trovata", - "Invalid backend or authentication mechanism class" : "Motore o classe del meccanismo di autenticazione non valido", - "Invalid mount point" : "Punto di mount non valido", - "Objectstore forbidden" : "Objectstore vietato", - "Invalid storage backend \"%s\"" : "Motore di archiviazione \"%s\" non valido", - "Not permitted to use backend \"%s\"" : "Utilizzo del motore \"%s\" non permesso", - "Not permitted to use authentication mechanism \"%s\"" : "Utilizzo del meccanismo di autenticazione \"%s\" non permesso", - "Unsatisfied backend parameters" : "Parametri del motore non soddisfatti", - "Unsatisfied authentication mechanism parameters" : "Parametri del meccanismo di autenticazione non soddisfatti", - "Insufficient data: %s" : "Dati insufficienti: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "L'archiviazione con ID \"%i\" non è modificabile dall'utente", "Dropbox App Configuration" : "Configurazione applicazione Dropbox", "Google Drive App Configuration" : "Configurazione applicazione Google Drive", "Personal" : "Personale", @@ -28,6 +16,7 @@ "Error generating key pair" : "Errore durante la generazione della coppia di chiavi", "All users. Type to select user or group." : "Tutti gli utenti. Digita per selezionare utente o gruppo.", "(group)" : "(gruppo)", + "Compatibility with Mac NFD encoding (slow)" : "Compatibilità con la codifica Mac NFD (lento)", "Admin defined" : "Definito dall'amministratore", "Saved" : "Salvato", "Empty response from the server" : "Risposta vuota dal server", @@ -46,6 +35,18 @@ "Credentials saving failed" : "Salvataggio delle credenziali non riuscito", "Credentials required" : "Credenziali richieste", "Save" : "Salva", + "Storage with id \"%i\" not found" : "Archiviazione con ID \"%i\" non trovata", + "Invalid backend or authentication mechanism class" : "Motore o classe del meccanismo di autenticazione non valido", + "Invalid mount point" : "Punto di mount non valido", + "Objectstore forbidden" : "Objectstore vietato", + "Invalid storage backend \"%s\"" : "Motore di archiviazione \"%s\" non valido", + "Not permitted to use backend \"%s\"" : "Utilizzo del motore \"%s\" non permesso", + "Not permitted to use authentication mechanism \"%s\"" : "Utilizzo del meccanismo di autenticazione \"%s\" non permesso", + "Unsatisfied backend parameters" : "Parametri del motore non soddisfatti", + "Unsatisfied authentication mechanism parameters" : "Parametri del meccanismo di autenticazione non soddisfatti", + "Insufficient data: %s" : "Dati insufficienti: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "L'archiviazione con ID \"%i\" non è modificabile dall'utente", "Access key" : "Chiave di accesso", "Secret key" : "Chiave segreta", "Builtin" : "Integrata", diff --git a/apps/files_external/l10n/ja.js b/apps/files_external/l10n/ja.js index e8dc52136aa..bbd7c34bdd1 100644 --- a/apps/files_external/l10n/ja.js +++ b/apps/files_external/l10n/ja.js @@ -7,18 +7,8 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "ステップ 1 の実行に失敗しました。例外: %s", "Step 2 failed. Exception: %s" : "ステップ 2 の実行に失敗しました。例外: %s", "External storage" : "外部ストレージ", - "Storage with id \"%i\" not found" : "ストレージID \"%i\" が見つかりません", - "Invalid backend or authentication mechanism class" : "バックエンドまたは認証システムクラスが無効", - "Invalid mount point" : "無効なマウントポイント", - "Objectstore forbidden" : "オブジェクトストアが禁じられています", - "Invalid storage backend \"%s\"" : "\"%s\" のストレージバックエンドが不正", - "Not permitted to use backend \"%s\"" : "バックエンド %s を使うための権限がありません", - "Not permitted to use authentication mechanism \"%s\"" : "認証システム %s を使う権限がありません", - "Unsatisfied backend parameters" : "バックエンドのためのパラメーターが不十分です。", - "Unsatisfied authentication mechanism parameters" : "認証のためのパラメータが不十分です", - "Insufficient data: %s" : "データが不足しています: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "ストレージID \"%i\" はユーザーが編集できません", + "Dropbox App Configuration" : "Dropbox アプリ設定", + "Google Drive App Configuration" : "Google アプリ設定", "Personal" : "個人", "System" : "システム", "Grant access" : "アクセスを許可", @@ -46,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "資格情報の保存に失敗しました", "Credentials required" : "資格情報が必要です", "Save" : "保存", + "Storage with id \"%i\" not found" : "ストレージID \"%i\" が見つかりません", + "Invalid backend or authentication mechanism class" : "バックエンドまたは認証システムクラスが無効", + "Invalid mount point" : "無効なマウントポイント", + "Objectstore forbidden" : "オブジェクトストアが禁じられています", + "Invalid storage backend \"%s\"" : "\"%s\" のストレージバックエンドが不正", + "Not permitted to use backend \"%s\"" : "バックエンド %s を使うための権限がありません", + "Not permitted to use authentication mechanism \"%s\"" : "認証システム %s を使う権限がありません", + "Unsatisfied backend parameters" : "バックエンドのためのパラメーターが不十分です。", + "Unsatisfied authentication mechanism parameters" : "認証のためのパラメータが不十分です", + "Insufficient data: %s" : "データが不足しています: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "ストレージID \"%i\" はユーザーが編集できません", "Access key" : "アクセスキー", "Secret key" : "シークレットキー", "Builtin" : "ビルトイン", diff --git a/apps/files_external/l10n/ja.json b/apps/files_external/l10n/ja.json index d6babb07ec5..45712c90c9d 100644 --- a/apps/files_external/l10n/ja.json +++ b/apps/files_external/l10n/ja.json @@ -5,18 +5,8 @@ "Step 1 failed. Exception: %s" : "ステップ 1 の実行に失敗しました。例外: %s", "Step 2 failed. Exception: %s" : "ステップ 2 の実行に失敗しました。例外: %s", "External storage" : "外部ストレージ", - "Storage with id \"%i\" not found" : "ストレージID \"%i\" が見つかりません", - "Invalid backend or authentication mechanism class" : "バックエンドまたは認証システムクラスが無効", - "Invalid mount point" : "無効なマウントポイント", - "Objectstore forbidden" : "オブジェクトストアが禁じられています", - "Invalid storage backend \"%s\"" : "\"%s\" のストレージバックエンドが不正", - "Not permitted to use backend \"%s\"" : "バックエンド %s を使うための権限がありません", - "Not permitted to use authentication mechanism \"%s\"" : "認証システム %s を使う権限がありません", - "Unsatisfied backend parameters" : "バックエンドのためのパラメーターが不十分です。", - "Unsatisfied authentication mechanism parameters" : "認証のためのパラメータが不十分です", - "Insufficient data: %s" : "データが不足しています: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "ストレージID \"%i\" はユーザーが編集できません", + "Dropbox App Configuration" : "Dropbox アプリ設定", + "Google Drive App Configuration" : "Google アプリ設定", "Personal" : "個人", "System" : "システム", "Grant access" : "アクセスを許可", @@ -44,6 +34,18 @@ "Credentials saving failed" : "資格情報の保存に失敗しました", "Credentials required" : "資格情報が必要です", "Save" : "保存", + "Storage with id \"%i\" not found" : "ストレージID \"%i\" が見つかりません", + "Invalid backend or authentication mechanism class" : "バックエンドまたは認証システムクラスが無効", + "Invalid mount point" : "無効なマウントポイント", + "Objectstore forbidden" : "オブジェクトストアが禁じられています", + "Invalid storage backend \"%s\"" : "\"%s\" のストレージバックエンドが不正", + "Not permitted to use backend \"%s\"" : "バックエンド %s を使うための権限がありません", + "Not permitted to use authentication mechanism \"%s\"" : "認証システム %s を使う権限がありません", + "Unsatisfied backend parameters" : "バックエンドのためのパラメーターが不十分です。", + "Unsatisfied authentication mechanism parameters" : "認証のためのパラメータが不十分です", + "Insufficient data: %s" : "データが不足しています: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "ストレージID \"%i\" はユーザーが編集できません", "Access key" : "アクセスキー", "Secret key" : "シークレットキー", "Builtin" : "ビルトイン", diff --git a/apps/files_external/l10n/ko.js b/apps/files_external/l10n/ko.js index 2f6d48529a7..8601a85bcf5 100644 --- a/apps/files_external/l10n/ko.js +++ b/apps/files_external/l10n/ko.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "1단계 실패. 예외: %s", "Step 2 failed. Exception: %s" : "2단계 실패. 예외: %s", "External storage" : "외부 저장소", - "Storage with id \"%i\" not found" : "ID가 \"%i\"인 저장소를 찾을 수 없음", - "Invalid backend or authentication mechanism class" : "백엔드나 인증 방식 클래스가 잘못됨", - "Invalid mount point" : "잘못된 마운트 지점", - "Objectstore forbidden" : "Objectstore에 접근 금지됨", - "Invalid storage backend \"%s\"" : "잘못된 저장소 백엔드 \"%s\"", - "Not permitted to use backend \"%s\"" : "백엔드 \"%s\" 사용이 허가되지 않았음", - "Not permitted to use authentication mechanism \"%s\"" : "인증 방식 \"%s\" 사용이 허가되지 않았음", - "Unsatisfied backend parameters" : "백엔드 인자가 부족함", - "Unsatisfied authentication mechanism parameters" : "인증 방식 인자가 부족함", - "Insufficient data: %s" : "충분하지 않은 데이터: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "저장소 ID \"%i\"을(를) 사용자가 편집할 수 없음", "Personal" : "개인", "System" : "시스템", "Grant access" : "접근 권한 부여", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "인증 정보를 저장할 수 없음", "Credentials required" : "인증 정보 필요함", "Save" : "저장", + "Storage with id \"%i\" not found" : "ID가 \"%i\"인 저장소를 찾을 수 없음", + "Invalid backend or authentication mechanism class" : "백엔드나 인증 방식 클래스가 잘못됨", + "Invalid mount point" : "잘못된 마운트 지점", + "Objectstore forbidden" : "Objectstore에 접근 금지됨", + "Invalid storage backend \"%s\"" : "잘못된 저장소 백엔드 \"%s\"", + "Not permitted to use backend \"%s\"" : "백엔드 \"%s\" 사용이 허가되지 않았음", + "Not permitted to use authentication mechanism \"%s\"" : "인증 방식 \"%s\" 사용이 허가되지 않았음", + "Unsatisfied backend parameters" : "백엔드 인자가 부족함", + "Unsatisfied authentication mechanism parameters" : "인증 방식 인자가 부족함", + "Insufficient data: %s" : "충분하지 않은 데이터: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "저장소 ID \"%i\"을(를) 사용자가 편집할 수 없음", "Access key" : "접근 키", "Secret key" : "비밀 키", "Builtin" : "내장", diff --git a/apps/files_external/l10n/ko.json b/apps/files_external/l10n/ko.json index e1c127a9e13..7eafd84ae03 100644 --- a/apps/files_external/l10n/ko.json +++ b/apps/files_external/l10n/ko.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "1단계 실패. 예외: %s", "Step 2 failed. Exception: %s" : "2단계 실패. 예외: %s", "External storage" : "외부 저장소", - "Storage with id \"%i\" not found" : "ID가 \"%i\"인 저장소를 찾을 수 없음", - "Invalid backend or authentication mechanism class" : "백엔드나 인증 방식 클래스가 잘못됨", - "Invalid mount point" : "잘못된 마운트 지점", - "Objectstore forbidden" : "Objectstore에 접근 금지됨", - "Invalid storage backend \"%s\"" : "잘못된 저장소 백엔드 \"%s\"", - "Not permitted to use backend \"%s\"" : "백엔드 \"%s\" 사용이 허가되지 않았음", - "Not permitted to use authentication mechanism \"%s\"" : "인증 방식 \"%s\" 사용이 허가되지 않았음", - "Unsatisfied backend parameters" : "백엔드 인자가 부족함", - "Unsatisfied authentication mechanism parameters" : "인증 방식 인자가 부족함", - "Insufficient data: %s" : "충분하지 않은 데이터: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "저장소 ID \"%i\"을(를) 사용자가 편집할 수 없음", "Personal" : "개인", "System" : "시스템", "Grant access" : "접근 권한 부여", @@ -44,6 +32,18 @@ "Credentials saving failed" : "인증 정보를 저장할 수 없음", "Credentials required" : "인증 정보 필요함", "Save" : "저장", + "Storage with id \"%i\" not found" : "ID가 \"%i\"인 저장소를 찾을 수 없음", + "Invalid backend or authentication mechanism class" : "백엔드나 인증 방식 클래스가 잘못됨", + "Invalid mount point" : "잘못된 마운트 지점", + "Objectstore forbidden" : "Objectstore에 접근 금지됨", + "Invalid storage backend \"%s\"" : "잘못된 저장소 백엔드 \"%s\"", + "Not permitted to use backend \"%s\"" : "백엔드 \"%s\" 사용이 허가되지 않았음", + "Not permitted to use authentication mechanism \"%s\"" : "인증 방식 \"%s\" 사용이 허가되지 않았음", + "Unsatisfied backend parameters" : "백엔드 인자가 부족함", + "Unsatisfied authentication mechanism parameters" : "인증 방식 인자가 부족함", + "Insufficient data: %s" : "충분하지 않은 데이터: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "저장소 ID \"%i\"을(를) 사용자가 편집할 수 없음", "Access key" : "접근 키", "Secret key" : "비밀 키", "Builtin" : "내장", diff --git a/apps/files_external/l10n/nb_NO.js b/apps/files_external/l10n/nb_NO.js index bc135fea960..b197f81d600 100644 --- a/apps/files_external/l10n/nb_NO.js +++ b/apps/files_external/l10n/nb_NO.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Steg 1 feilet. Unntak: %s", "Step 2 failed. Exception: %s" : "Steg 2 feilet. Unntak: %s", "External storage" : "Ekstern lagringsplass", - "Storage with id \"%i\" not found" : "Lager med id \"%i\" ikke funnet", - "Invalid backend or authentication mechanism class" : "Ugyldig server eller type autentiseringsmekanisme", - "Invalid mount point" : "Ugyldig oppkoblingspunkt", - "Objectstore forbidden" : "Objektlager forbudt", - "Invalid storage backend \"%s\"" : "Ugyldig lagringsserver \"%s\"", - "Not permitted to use backend \"%s\"" : "Ikke tillatt å bruke server \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Ikke tillatt å bruke autentiseringsmekanisme \"%s\"", - "Unsatisfied backend parameters" : "Noen server-parameter mangler", - "Unsatisfied authentication mechanism parameters" : "Noen parametre for autentiseringsmekanisme mangler", - "Insufficient data: %s" : "Utilstrekkelige data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Lager med id \"%i\" kan ikke redigeres av bruker", "Personal" : "Personlig", "System" : "System", "Grant access" : "Gi tilgang", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "Lagring av påloggingsdetaljer feilet", "Credentials required" : "Påloggingsdetaljer kreves", "Save" : "Lagre", + "Storage with id \"%i\" not found" : "Lager med id \"%i\" ikke funnet", + "Invalid backend or authentication mechanism class" : "Ugyldig server eller type autentiseringsmekanisme", + "Invalid mount point" : "Ugyldig oppkoblingspunkt", + "Objectstore forbidden" : "Objektlager forbudt", + "Invalid storage backend \"%s\"" : "Ugyldig lagringsserver \"%s\"", + "Not permitted to use backend \"%s\"" : "Ikke tillatt å bruke server \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Ikke tillatt å bruke autentiseringsmekanisme \"%s\"", + "Unsatisfied backend parameters" : "Noen server-parameter mangler", + "Unsatisfied authentication mechanism parameters" : "Noen parametre for autentiseringsmekanisme mangler", + "Insufficient data: %s" : "Utilstrekkelige data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Lager med id \"%i\" kan ikke redigeres av bruker", "Access key" : "Tilgangsnøkkel", "Secret key" : "Hemmelig nøkkel", "Builtin" : "Innebygget", diff --git a/apps/files_external/l10n/nb_NO.json b/apps/files_external/l10n/nb_NO.json index 37d3ffd61cd..b7373d7cf2d 100644 --- a/apps/files_external/l10n/nb_NO.json +++ b/apps/files_external/l10n/nb_NO.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Steg 1 feilet. Unntak: %s", "Step 2 failed. Exception: %s" : "Steg 2 feilet. Unntak: %s", "External storage" : "Ekstern lagringsplass", - "Storage with id \"%i\" not found" : "Lager med id \"%i\" ikke funnet", - "Invalid backend or authentication mechanism class" : "Ugyldig server eller type autentiseringsmekanisme", - "Invalid mount point" : "Ugyldig oppkoblingspunkt", - "Objectstore forbidden" : "Objektlager forbudt", - "Invalid storage backend \"%s\"" : "Ugyldig lagringsserver \"%s\"", - "Not permitted to use backend \"%s\"" : "Ikke tillatt å bruke server \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Ikke tillatt å bruke autentiseringsmekanisme \"%s\"", - "Unsatisfied backend parameters" : "Noen server-parameter mangler", - "Unsatisfied authentication mechanism parameters" : "Noen parametre for autentiseringsmekanisme mangler", - "Insufficient data: %s" : "Utilstrekkelige data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Lager med id \"%i\" kan ikke redigeres av bruker", "Personal" : "Personlig", "System" : "System", "Grant access" : "Gi tilgang", @@ -44,6 +32,18 @@ "Credentials saving failed" : "Lagring av påloggingsdetaljer feilet", "Credentials required" : "Påloggingsdetaljer kreves", "Save" : "Lagre", + "Storage with id \"%i\" not found" : "Lager med id \"%i\" ikke funnet", + "Invalid backend or authentication mechanism class" : "Ugyldig server eller type autentiseringsmekanisme", + "Invalid mount point" : "Ugyldig oppkoblingspunkt", + "Objectstore forbidden" : "Objektlager forbudt", + "Invalid storage backend \"%s\"" : "Ugyldig lagringsserver \"%s\"", + "Not permitted to use backend \"%s\"" : "Ikke tillatt å bruke server \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Ikke tillatt å bruke autentiseringsmekanisme \"%s\"", + "Unsatisfied backend parameters" : "Noen server-parameter mangler", + "Unsatisfied authentication mechanism parameters" : "Noen parametre for autentiseringsmekanisme mangler", + "Insufficient data: %s" : "Utilstrekkelige data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Lager med id \"%i\" kan ikke redigeres av bruker", "Access key" : "Tilgangsnøkkel", "Secret key" : "Hemmelig nøkkel", "Builtin" : "Innebygget", diff --git a/apps/files_external/l10n/nds.js b/apps/files_external/l10n/nds.js index b6de58cc433..95d6baa07f4 100644 --- a/apps/files_external/l10n/nds.js +++ b/apps/files_external/l10n/nds.js @@ -7,15 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Exception: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Exception: %s", "External storage" : "Externer Speicher", - "Storage with id \"%i\" not found" : "Speicher mit der ID \"%i\" wurde nicht gefunden", - "Invalid backend or authentication mechanism class" : "Ungültige Klasse für das Backend oder für den Authentifizierungsmechanismus", - "Invalid mount point" : "Ungültiger Einhängepunkt", - "Objectstore forbidden" : "Objectstore nicht erlaubt", - "Invalid storage backend \"%s\"" : "Ungültiges Speicherbackend \"%s\"", - "Not permitted to use backend \"%s\"" : "Verwendung des Backends \"%s\" nicht erlaubt", - "Not permitted to use authentication mechanism \"%s\"" : "Verwendung des Authentifizierungsmechanismus \"%s\" nicht erlaubt", - "Unsatisfied backend parameters" : "Nicht bediente Backendparameter", - "Unsatisfied authentication mechanism parameters" : "Nicht bediente Authentifizierungsmechanismusparamter", "Personal" : "Persönlich", "System" : "System", "Grant access" : "Erlaube Zugriff", @@ -28,6 +19,15 @@ OC.L10N.register( "Saved" : "Gespeichert", "Username" : "Benutzername", "Password" : "Passwort", + "Storage with id \"%i\" not found" : "Speicher mit der ID \"%i\" wurde nicht gefunden", + "Invalid backend or authentication mechanism class" : "Ungültige Klasse für das Backend oder für den Authentifizierungsmechanismus", + "Invalid mount point" : "Ungültiger Einhängepunkt", + "Objectstore forbidden" : "Objectstore nicht erlaubt", + "Invalid storage backend \"%s\"" : "Ungültiges Speicherbackend \"%s\"", + "Not permitted to use backend \"%s\"" : "Verwendung des Backends \"%s\" nicht erlaubt", + "Not permitted to use authentication mechanism \"%s\"" : "Verwendung des Authentifizierungsmechanismus \"%s\" nicht erlaubt", + "Unsatisfied backend parameters" : "Nicht bediente Backendparameter", + "Unsatisfied authentication mechanism parameters" : "Nicht bediente Authentifizierungsmechanismusparamter", "Access key" : "Schlüssel für Zugriff", "Secret key" : "Geheimer Schlüssel", "Builtin" : "Eingebaut", diff --git a/apps/files_external/l10n/nds.json b/apps/files_external/l10n/nds.json index d1aa0f4751d..1260090e11b 100644 --- a/apps/files_external/l10n/nds.json +++ b/apps/files_external/l10n/nds.json @@ -5,15 +5,6 @@ "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Exception: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Exception: %s", "External storage" : "Externer Speicher", - "Storage with id \"%i\" not found" : "Speicher mit der ID \"%i\" wurde nicht gefunden", - "Invalid backend or authentication mechanism class" : "Ungültige Klasse für das Backend oder für den Authentifizierungsmechanismus", - "Invalid mount point" : "Ungültiger Einhängepunkt", - "Objectstore forbidden" : "Objectstore nicht erlaubt", - "Invalid storage backend \"%s\"" : "Ungültiges Speicherbackend \"%s\"", - "Not permitted to use backend \"%s\"" : "Verwendung des Backends \"%s\" nicht erlaubt", - "Not permitted to use authentication mechanism \"%s\"" : "Verwendung des Authentifizierungsmechanismus \"%s\" nicht erlaubt", - "Unsatisfied backend parameters" : "Nicht bediente Backendparameter", - "Unsatisfied authentication mechanism parameters" : "Nicht bediente Authentifizierungsmechanismusparamter", "Personal" : "Persönlich", "System" : "System", "Grant access" : "Erlaube Zugriff", @@ -26,6 +17,15 @@ "Saved" : "Gespeichert", "Username" : "Benutzername", "Password" : "Passwort", + "Storage with id \"%i\" not found" : "Speicher mit der ID \"%i\" wurde nicht gefunden", + "Invalid backend or authentication mechanism class" : "Ungültige Klasse für das Backend oder für den Authentifizierungsmechanismus", + "Invalid mount point" : "Ungültiger Einhängepunkt", + "Objectstore forbidden" : "Objectstore nicht erlaubt", + "Invalid storage backend \"%s\"" : "Ungültiges Speicherbackend \"%s\"", + "Not permitted to use backend \"%s\"" : "Verwendung des Backends \"%s\" nicht erlaubt", + "Not permitted to use authentication mechanism \"%s\"" : "Verwendung des Authentifizierungsmechanismus \"%s\" nicht erlaubt", + "Unsatisfied backend parameters" : "Nicht bediente Backendparameter", + "Unsatisfied authentication mechanism parameters" : "Nicht bediente Authentifizierungsmechanismusparamter", "Access key" : "Schlüssel für Zugriff", "Secret key" : "Geheimer Schlüssel", "Builtin" : "Eingebaut", diff --git a/apps/files_external/l10n/nl.js b/apps/files_external/l10n/nl.js index bcbd185aed8..71c8d2aeac3 100644 --- a/apps/files_external/l10n/nl.js +++ b/apps/files_external/l10n/nl.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Stap 1 is mislukt. Uitzondering: %s", "Step 2 failed. Exception: %s" : "Stap 2 is mislukt. Uitzondering: %s", "External storage" : "Externe opslag", - "Storage with id \"%i\" not found" : "Opslag met id \"%i\" niet gevonden", - "Invalid backend or authentication mechanism class" : "Ongeldige backend of authenticatie mechanisme klasse", - "Invalid mount point" : "Ongeldig aankoppelpunt", - "Objectstore forbidden" : "Objectopslag verboden", - "Invalid storage backend \"%s\"" : "Ongeldig opslagsysteem \"%s\"", - "Not permitted to use backend \"%s\"" : "Niet toegestaan om \"%s\" te gebruiken", - "Not permitted to use authentication mechanism \"%s\"" : "Niet toegestaan om authenticatiemechanisme \"%s\" te gebruiken", - "Unsatisfied backend parameters" : "Onvoldoende backend parameters", - "Unsatisfied authentication mechanism parameters" : "Onvoldoende authenticatiemechanisme parameters", - "Insufficient data: %s" : "Onvoldoende gegevens: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Opslag met id \"%i\" is niet te bewerken door gebruiker", "Personal" : "Persoonlijk", "System" : "Systeem", "Grant access" : "Sta toegang toe", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "Opslaan inloggegevens mislukt", "Credentials required" : "Inloggegevens vereist", "Save" : "Bewaren", + "Storage with id \"%i\" not found" : "Opslag met id \"%i\" niet gevonden", + "Invalid backend or authentication mechanism class" : "Ongeldige backend of authenticatie mechanisme klasse", + "Invalid mount point" : "Ongeldig aankoppelpunt", + "Objectstore forbidden" : "Objectopslag verboden", + "Invalid storage backend \"%s\"" : "Ongeldig opslagsysteem \"%s\"", + "Not permitted to use backend \"%s\"" : "Niet toegestaan om \"%s\" te gebruiken", + "Not permitted to use authentication mechanism \"%s\"" : "Niet toegestaan om authenticatiemechanisme \"%s\" te gebruiken", + "Unsatisfied backend parameters" : "Onvoldoende backend parameters", + "Unsatisfied authentication mechanism parameters" : "Onvoldoende authenticatiemechanisme parameters", + "Insufficient data: %s" : "Onvoldoende gegevens: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Opslag met id \"%i\" is niet te bewerken door gebruiker", "Access key" : "Access Key", "Secret key" : "Geheime sleutel", "Builtin" : "Ingebouwd", diff --git a/apps/files_external/l10n/nl.json b/apps/files_external/l10n/nl.json index ddc7ccfa8cc..6603af23bea 100644 --- a/apps/files_external/l10n/nl.json +++ b/apps/files_external/l10n/nl.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Stap 1 is mislukt. Uitzondering: %s", "Step 2 failed. Exception: %s" : "Stap 2 is mislukt. Uitzondering: %s", "External storage" : "Externe opslag", - "Storage with id \"%i\" not found" : "Opslag met id \"%i\" niet gevonden", - "Invalid backend or authentication mechanism class" : "Ongeldige backend of authenticatie mechanisme klasse", - "Invalid mount point" : "Ongeldig aankoppelpunt", - "Objectstore forbidden" : "Objectopslag verboden", - "Invalid storage backend \"%s\"" : "Ongeldig opslagsysteem \"%s\"", - "Not permitted to use backend \"%s\"" : "Niet toegestaan om \"%s\" te gebruiken", - "Not permitted to use authentication mechanism \"%s\"" : "Niet toegestaan om authenticatiemechanisme \"%s\" te gebruiken", - "Unsatisfied backend parameters" : "Onvoldoende backend parameters", - "Unsatisfied authentication mechanism parameters" : "Onvoldoende authenticatiemechanisme parameters", - "Insufficient data: %s" : "Onvoldoende gegevens: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Opslag met id \"%i\" is niet te bewerken door gebruiker", "Personal" : "Persoonlijk", "System" : "Systeem", "Grant access" : "Sta toegang toe", @@ -44,6 +32,18 @@ "Credentials saving failed" : "Opslaan inloggegevens mislukt", "Credentials required" : "Inloggegevens vereist", "Save" : "Bewaren", + "Storage with id \"%i\" not found" : "Opslag met id \"%i\" niet gevonden", + "Invalid backend or authentication mechanism class" : "Ongeldige backend of authenticatie mechanisme klasse", + "Invalid mount point" : "Ongeldig aankoppelpunt", + "Objectstore forbidden" : "Objectopslag verboden", + "Invalid storage backend \"%s\"" : "Ongeldig opslagsysteem \"%s\"", + "Not permitted to use backend \"%s\"" : "Niet toegestaan om \"%s\" te gebruiken", + "Not permitted to use authentication mechanism \"%s\"" : "Niet toegestaan om authenticatiemechanisme \"%s\" te gebruiken", + "Unsatisfied backend parameters" : "Onvoldoende backend parameters", + "Unsatisfied authentication mechanism parameters" : "Onvoldoende authenticatiemechanisme parameters", + "Insufficient data: %s" : "Onvoldoende gegevens: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Opslag met id \"%i\" is niet te bewerken door gebruiker", "Access key" : "Access Key", "Secret key" : "Geheime sleutel", "Builtin" : "Ingebouwd", diff --git a/apps/files_external/l10n/oc.js b/apps/files_external/l10n/oc.js index 3ac21f8748d..d66ff356e42 100644 --- a/apps/files_external/l10n/oc.js +++ b/apps/files_external/l10n/oc.js @@ -7,17 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "L’etapa 1 a fracassat. Error : %s", "Step 2 failed. Exception: %s" : "L’etapa 2 a fracassat. Error : %s", "External storage" : "Emmagazinatge extèrne", - "Storage with id \"%i\" not found" : "Emmagazinatge amb l'id \"%i\" pas trobat", - "Invalid backend or authentication mechanism class" : "Servici o metòde d'autentificacion pas valable", - "Invalid mount point" : "Punt de montatge invalid", - "Objectstore forbidden" : "\"Objectstore\" interdich", - "Invalid storage backend \"%s\"" : "Servici d'emmagazinatge invalid : \"%s\"", - "Not permitted to use backend \"%s\"" : "Pas autorizat a utilizar lo servici \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Pas autorizat a utilizar lo mecanisme d'autentificacion \"%s\"", - "Unsatisfied backend parameters" : "Paramètres mancants pel servici", - "Unsatisfied authentication mechanism parameters" : "Paramètres mancants pel metòde d'autentificacion", - "Insufficient data: %s" : "Donadas insufisentas : %s", - "%s" : "%s", "Personal" : "Personal", "System" : "Sistèma", "Grant access" : "Autorizar l'accès", @@ -31,6 +20,17 @@ OC.L10N.register( "Username" : "Nom d'utilizaire", "Password" : "Senhal", "Save" : "Enregistrar", + "Storage with id \"%i\" not found" : "Emmagazinatge amb l'id \"%i\" pas trobat", + "Invalid backend or authentication mechanism class" : "Servici o metòde d'autentificacion pas valable", + "Invalid mount point" : "Punt de montatge invalid", + "Objectstore forbidden" : "\"Objectstore\" interdich", + "Invalid storage backend \"%s\"" : "Servici d'emmagazinatge invalid : \"%s\"", + "Not permitted to use backend \"%s\"" : "Pas autorizat a utilizar lo servici \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Pas autorizat a utilizar lo mecanisme d'autentificacion \"%s\"", + "Unsatisfied backend parameters" : "Paramètres mancants pel servici", + "Unsatisfied authentication mechanism parameters" : "Paramètres mancants pel metòde d'autentificacion", + "Insufficient data: %s" : "Donadas insufisentas : %s", + "%s" : "%s", "Access key" : "Clau d'accès", "Secret key" : "Clau secreta", "Builtin" : "Integrat", diff --git a/apps/files_external/l10n/oc.json b/apps/files_external/l10n/oc.json index 02283c7098b..c64cddb474e 100644 --- a/apps/files_external/l10n/oc.json +++ b/apps/files_external/l10n/oc.json @@ -5,17 +5,6 @@ "Step 1 failed. Exception: %s" : "L’etapa 1 a fracassat. Error : %s", "Step 2 failed. Exception: %s" : "L’etapa 2 a fracassat. Error : %s", "External storage" : "Emmagazinatge extèrne", - "Storage with id \"%i\" not found" : "Emmagazinatge amb l'id \"%i\" pas trobat", - "Invalid backend or authentication mechanism class" : "Servici o metòde d'autentificacion pas valable", - "Invalid mount point" : "Punt de montatge invalid", - "Objectstore forbidden" : "\"Objectstore\" interdich", - "Invalid storage backend \"%s\"" : "Servici d'emmagazinatge invalid : \"%s\"", - "Not permitted to use backend \"%s\"" : "Pas autorizat a utilizar lo servici \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Pas autorizat a utilizar lo mecanisme d'autentificacion \"%s\"", - "Unsatisfied backend parameters" : "Paramètres mancants pel servici", - "Unsatisfied authentication mechanism parameters" : "Paramètres mancants pel metòde d'autentificacion", - "Insufficient data: %s" : "Donadas insufisentas : %s", - "%s" : "%s", "Personal" : "Personal", "System" : "Sistèma", "Grant access" : "Autorizar l'accès", @@ -29,6 +18,17 @@ "Username" : "Nom d'utilizaire", "Password" : "Senhal", "Save" : "Enregistrar", + "Storage with id \"%i\" not found" : "Emmagazinatge amb l'id \"%i\" pas trobat", + "Invalid backend or authentication mechanism class" : "Servici o metòde d'autentificacion pas valable", + "Invalid mount point" : "Punt de montatge invalid", + "Objectstore forbidden" : "\"Objectstore\" interdich", + "Invalid storage backend \"%s\"" : "Servici d'emmagazinatge invalid : \"%s\"", + "Not permitted to use backend \"%s\"" : "Pas autorizat a utilizar lo servici \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Pas autorizat a utilizar lo mecanisme d'autentificacion \"%s\"", + "Unsatisfied backend parameters" : "Paramètres mancants pel servici", + "Unsatisfied authentication mechanism parameters" : "Paramètres mancants pel metòde d'autentificacion", + "Insufficient data: %s" : "Donadas insufisentas : %s", + "%s" : "%s", "Access key" : "Clau d'accès", "Secret key" : "Clau secreta", "Builtin" : "Integrat", diff --git a/apps/files_external/l10n/pl.js b/apps/files_external/l10n/pl.js index 7bb11f8b3d8..0ba2646601b 100644 --- a/apps/files_external/l10n/pl.js +++ b/apps/files_external/l10n/pl.js @@ -5,9 +5,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Krok 1 błędny. Błąd: %s", "Step 2 failed. Exception: %s" : "Krok 2 błędny. Błąd: %s", "External storage" : "Zewnętrzne zasoby dyskowe", - "Storage with id \"%i\" not found" : "Id magazynu nie został znaleziony", - "Invalid mount point" : "Nieprawidłowy punkt montowania", - "Invalid storage backend \"%s\"" : "Nieprawidłowy magazyn zaplecza \"%s\"", "Personal" : "Osobiste", "System" : "System", "Grant access" : "Udziel dostępu", @@ -19,6 +16,9 @@ OC.L10N.register( "Username" : "Nazwa użytkownika", "Password" : "Hasło", "Save" : "Zapisz", + "Storage with id \"%i\" not found" : "Id magazynu nie został znaleziony", + "Invalid mount point" : "Nieprawidłowy punkt montowania", + "Invalid storage backend \"%s\"" : "Nieprawidłowy magazyn zaplecza \"%s\"", "Access key" : "Klucz dostępu", "None" : "Nic", "App key" : "Klucz aplikacji", diff --git a/apps/files_external/l10n/pl.json b/apps/files_external/l10n/pl.json index 5089d91398b..8809813c9ba 100644 --- a/apps/files_external/l10n/pl.json +++ b/apps/files_external/l10n/pl.json @@ -3,9 +3,6 @@ "Step 1 failed. Exception: %s" : "Krok 1 błędny. Błąd: %s", "Step 2 failed. Exception: %s" : "Krok 2 błędny. Błąd: %s", "External storage" : "Zewnętrzne zasoby dyskowe", - "Storage with id \"%i\" not found" : "Id magazynu nie został znaleziony", - "Invalid mount point" : "Nieprawidłowy punkt montowania", - "Invalid storage backend \"%s\"" : "Nieprawidłowy magazyn zaplecza \"%s\"", "Personal" : "Osobiste", "System" : "System", "Grant access" : "Udziel dostępu", @@ -17,6 +14,9 @@ "Username" : "Nazwa użytkownika", "Password" : "Hasło", "Save" : "Zapisz", + "Storage with id \"%i\" not found" : "Id magazynu nie został znaleziony", + "Invalid mount point" : "Nieprawidłowy punkt montowania", + "Invalid storage backend \"%s\"" : "Nieprawidłowy magazyn zaplecza \"%s\"", "Access key" : "Klucz dostępu", "None" : "Nic", "App key" : "Klucz aplikacji", diff --git a/apps/files_external/l10n/pt_BR.js b/apps/files_external/l10n/pt_BR.js index 74d6e30f9da..d77d9d6db9f 100644 --- a/apps/files_external/l10n/pt_BR.js +++ b/apps/files_external/l10n/pt_BR.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", "External storage" : "Armazenamento Externo", - "Storage with id \"%i\" not found" : "Armazenamento com id \"%i\" não encontrado", - "Invalid backend or authentication mechanism class" : "Backend inválido ou classe de mecanismo de autenticação", - "Invalid mount point" : "Ponto de montagem inválido", - "Objectstore forbidden" : "Proibido armazenamento de objetos", - "Invalid storage backend \"%s\"" : "Armazenamento backend inválido \"%s\"", - "Not permitted to use backend \"%s\"" : "Não é permitido o uso de backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido usar o mecanismo de autenticação \"%s\"", - "Unsatisfied backend parameters" : "Parâmetros de back-end não-atendidos", - "Unsatisfied authentication mechanism parameters" : "Parâmetros de mecanismos de autenticação não satisfeitos", - "Insufficient data: %s" : "Dados insuficientes: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Armazenamento com ID \"%i\" não é editável pelo usuário", "Dropbox App Configuration" : "Configuração do Aplicativo Dropbox", "Google Drive App Configuration" : "Configuração do Aplicativo Google Drive", "Personal" : "Pessoal", @@ -30,6 +18,7 @@ OC.L10N.register( "Error generating key pair" : "Erro ao gerar um par de chaves", "All users. Type to select user or group." : "Todos os usuários. Digite para selecionar usuário ou grupo.", "(group)" : "(grupo)", + "Compatibility with Mac NFD encoding (slow)" : "Compatibilidade com a codificação Mac NFD (lento)", "Admin defined" : "Definido pelo administrador", "Saved" : "Salvo", "Empty response from the server" : "Resposta vazia a partir do servidor", @@ -48,6 +37,18 @@ OC.L10N.register( "Credentials saving failed" : "A gravação das credenciais falhou", "Credentials required" : "Credenciais são exigidas", "Save" : "Salvar", + "Storage with id \"%i\" not found" : "Armazenamento com id \"%i\" não encontrado", + "Invalid backend or authentication mechanism class" : "Backend inválido ou classe de mecanismo de autenticação", + "Invalid mount point" : "Ponto de montagem inválido", + "Objectstore forbidden" : "Proibido armazenamento de objetos", + "Invalid storage backend \"%s\"" : "Armazenamento backend inválido \"%s\"", + "Not permitted to use backend \"%s\"" : "Não é permitido o uso de backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido usar o mecanismo de autenticação \"%s\"", + "Unsatisfied backend parameters" : "Parâmetros de back-end não-atendidos", + "Unsatisfied authentication mechanism parameters" : "Parâmetros de mecanismos de autenticação não satisfeitos", + "Insufficient data: %s" : "Dados insuficientes: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Armazenamento com ID \"%i\" não é editável pelo usuário", "Access key" : "Chave da acesso", "Secret key" : "Chave secreta", "Builtin" : "Construídas em", diff --git a/apps/files_external/l10n/pt_BR.json b/apps/files_external/l10n/pt_BR.json index 7f1db48e93f..5bdcdeaf68f 100644 --- a/apps/files_external/l10n/pt_BR.json +++ b/apps/files_external/l10n/pt_BR.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", "External storage" : "Armazenamento Externo", - "Storage with id \"%i\" not found" : "Armazenamento com id \"%i\" não encontrado", - "Invalid backend or authentication mechanism class" : "Backend inválido ou classe de mecanismo de autenticação", - "Invalid mount point" : "Ponto de montagem inválido", - "Objectstore forbidden" : "Proibido armazenamento de objetos", - "Invalid storage backend \"%s\"" : "Armazenamento backend inválido \"%s\"", - "Not permitted to use backend \"%s\"" : "Não é permitido o uso de backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido usar o mecanismo de autenticação \"%s\"", - "Unsatisfied backend parameters" : "Parâmetros de back-end não-atendidos", - "Unsatisfied authentication mechanism parameters" : "Parâmetros de mecanismos de autenticação não satisfeitos", - "Insufficient data: %s" : "Dados insuficientes: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Armazenamento com ID \"%i\" não é editável pelo usuário", "Dropbox App Configuration" : "Configuração do Aplicativo Dropbox", "Google Drive App Configuration" : "Configuração do Aplicativo Google Drive", "Personal" : "Pessoal", @@ -28,6 +16,7 @@ "Error generating key pair" : "Erro ao gerar um par de chaves", "All users. Type to select user or group." : "Todos os usuários. Digite para selecionar usuário ou grupo.", "(group)" : "(grupo)", + "Compatibility with Mac NFD encoding (slow)" : "Compatibilidade com a codificação Mac NFD (lento)", "Admin defined" : "Definido pelo administrador", "Saved" : "Salvo", "Empty response from the server" : "Resposta vazia a partir do servidor", @@ -46,6 +35,18 @@ "Credentials saving failed" : "A gravação das credenciais falhou", "Credentials required" : "Credenciais são exigidas", "Save" : "Salvar", + "Storage with id \"%i\" not found" : "Armazenamento com id \"%i\" não encontrado", + "Invalid backend or authentication mechanism class" : "Backend inválido ou classe de mecanismo de autenticação", + "Invalid mount point" : "Ponto de montagem inválido", + "Objectstore forbidden" : "Proibido armazenamento de objetos", + "Invalid storage backend \"%s\"" : "Armazenamento backend inválido \"%s\"", + "Not permitted to use backend \"%s\"" : "Não é permitido o uso de backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido usar o mecanismo de autenticação \"%s\"", + "Unsatisfied backend parameters" : "Parâmetros de back-end não-atendidos", + "Unsatisfied authentication mechanism parameters" : "Parâmetros de mecanismos de autenticação não satisfeitos", + "Insufficient data: %s" : "Dados insuficientes: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Armazenamento com ID \"%i\" não é editável pelo usuário", "Access key" : "Chave da acesso", "Secret key" : "Chave secreta", "Builtin" : "Construídas em", diff --git a/apps/files_external/l10n/pt_PT.js b/apps/files_external/l10n/pt_PT.js index 771e2571b78..f7120fbc5de 100644 --- a/apps/files_external/l10n/pt_PT.js +++ b/apps/files_external/l10n/pt_PT.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", "External storage" : "Armazenamento Externo", - "Storage with id \"%i\" not found" : "Não foi encontrado o armazenamento com a id. \"%i\"", - "Invalid backend or authentication mechanism class" : "Parâmetros do mecanismo de autenticação inválidos", - "Invalid mount point" : "Ponto de montagem inválido", - "Objectstore forbidden" : "Objectstore proibido", - "Invalid storage backend \"%s\"" : "Backend de armazenamento inválido \"%s\"", - "Not permitted to use backend \"%s\"" : "Não é permitido utilizar a interface \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido utilizar o mecanismo de autenticação \"%s\"", - "Unsatisfied backend parameters" : "Parâmetros backend insatisfeitos", - "Unsatisfied authentication mechanism parameters" : "Parâmetros do mecanismo de autenticação inválidos", - "Insufficient data: %s" : "Dados insuficientes: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Armazenamento com id \"%i\" não é editável pelo utilizador", "Personal" : "Pessoal", "System" : "Sistema", "Grant access" : "Conceder acesso", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "Falha ao salvar credenciais", "Credentials required" : "Credenciais necessárias", "Save" : "Guardar", + "Storage with id \"%i\" not found" : "Não foi encontrado o armazenamento com a id. \"%i\"", + "Invalid backend or authentication mechanism class" : "Parâmetros do mecanismo de autenticação inválidos", + "Invalid mount point" : "Ponto de montagem inválido", + "Objectstore forbidden" : "Objectstore proibido", + "Invalid storage backend \"%s\"" : "Backend de armazenamento inválido \"%s\"", + "Not permitted to use backend \"%s\"" : "Não é permitido utilizar a interface \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido utilizar o mecanismo de autenticação \"%s\"", + "Unsatisfied backend parameters" : "Parâmetros backend insatisfeitos", + "Unsatisfied authentication mechanism parameters" : "Parâmetros do mecanismo de autenticação inválidos", + "Insufficient data: %s" : "Dados insuficientes: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Armazenamento com id \"%i\" não é editável pelo utilizador", "Access key" : "Código de acesso", "Secret key" : "Código secreto", "Builtin" : "Integrado", diff --git a/apps/files_external/l10n/pt_PT.json b/apps/files_external/l10n/pt_PT.json index 4982d50e555..e800952904f 100644 --- a/apps/files_external/l10n/pt_PT.json +++ b/apps/files_external/l10n/pt_PT.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", "External storage" : "Armazenamento Externo", - "Storage with id \"%i\" not found" : "Não foi encontrado o armazenamento com a id. \"%i\"", - "Invalid backend or authentication mechanism class" : "Parâmetros do mecanismo de autenticação inválidos", - "Invalid mount point" : "Ponto de montagem inválido", - "Objectstore forbidden" : "Objectstore proibido", - "Invalid storage backend \"%s\"" : "Backend de armazenamento inválido \"%s\"", - "Not permitted to use backend \"%s\"" : "Não é permitido utilizar a interface \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido utilizar o mecanismo de autenticação \"%s\"", - "Unsatisfied backend parameters" : "Parâmetros backend insatisfeitos", - "Unsatisfied authentication mechanism parameters" : "Parâmetros do mecanismo de autenticação inválidos", - "Insufficient data: %s" : "Dados insuficientes: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Armazenamento com id \"%i\" não é editável pelo utilizador", "Personal" : "Pessoal", "System" : "Sistema", "Grant access" : "Conceder acesso", @@ -44,6 +32,18 @@ "Credentials saving failed" : "Falha ao salvar credenciais", "Credentials required" : "Credenciais necessárias", "Save" : "Guardar", + "Storage with id \"%i\" not found" : "Não foi encontrado o armazenamento com a id. \"%i\"", + "Invalid backend or authentication mechanism class" : "Parâmetros do mecanismo de autenticação inválidos", + "Invalid mount point" : "Ponto de montagem inválido", + "Objectstore forbidden" : "Objectstore proibido", + "Invalid storage backend \"%s\"" : "Backend de armazenamento inválido \"%s\"", + "Not permitted to use backend \"%s\"" : "Não é permitido utilizar a interface \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Não é permitido utilizar o mecanismo de autenticação \"%s\"", + "Unsatisfied backend parameters" : "Parâmetros backend insatisfeitos", + "Unsatisfied authentication mechanism parameters" : "Parâmetros do mecanismo de autenticação inválidos", + "Insufficient data: %s" : "Dados insuficientes: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Armazenamento com id \"%i\" não é editável pelo utilizador", "Access key" : "Código de acesso", "Secret key" : "Código secreto", "Builtin" : "Integrado", diff --git a/apps/files_external/l10n/ro.js b/apps/files_external/l10n/ro.js index 8a2d8950068..744ab7cf97d 100644 --- a/apps/files_external/l10n/ro.js +++ b/apps/files_external/l10n/ro.js @@ -5,13 +5,18 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "Pasul 2 a eșuat. Excepție: %s", "External storage" : "Stocare externă", "Personal" : "Personal", + "System" : "Sistem", "Grant access" : "Permite accesul", + "Error configuring OAuth1" : "Eroare la configurarea OAuth1", + "Error configuring OAuth2" : "Eroare la configurarea OAuth2", "Generate keys" : "Generează chei", "Error generating key pair" : "Eroarea la generarea cheilor", + "All users. Type to select user or group." : "Toți utilizatorii. Începe să scrii pentru a selecta un utilizator sau un grup.", "(group)" : "(grup)", "Admin defined" : "Administrator definit", "Saved" : "Salvat", "Empty response from the server" : "Răspuns nul de la server", + "There was an error with message: " : "A apărut o eroare cu mesajul:", "external-storage" : "Stocare externă", "Username" : "Nume utilizator", "Password" : "Parolă", @@ -19,6 +24,8 @@ OC.L10N.register( "Credentials saving failed" : "Salvarea detaliilor de autentificare a eșuat", "Credentials required" : "Detalii de autentificare necesare", "Save" : "Salvează", + "Insufficient data: %s" : "Date insuficiente: %s", + "%s" : "%s", "Access key" : "Cheie de acces", "Secret key" : "Cheie secretă", "Builtin" : "Inclus", @@ -61,11 +68,13 @@ OC.L10N.register( "Service name" : "Nume serviciu", "Name" : "Nume", "Storage type" : "Tip stocare", + "Scope" : "Scop", "Enable encryption" : "Activează criptarea", "Enable previews" : "Activează previzualizările", "Enable sharing" : "Activează partajarea", "Check for changes" : "Verifică dacă au intervenit modificări", "Never" : "Niciodată", + "Once every direct access" : "O dată la fiecare acces direct", "External Storage" : "Stocare externă", "Folder name" : "Denumire director", "Authentication" : "Autentificare", diff --git a/apps/files_external/l10n/ro.json b/apps/files_external/l10n/ro.json index 6107ad0e0f5..5cd39010eec 100644 --- a/apps/files_external/l10n/ro.json +++ b/apps/files_external/l10n/ro.json @@ -3,13 +3,18 @@ "Step 2 failed. Exception: %s" : "Pasul 2 a eșuat. Excepție: %s", "External storage" : "Stocare externă", "Personal" : "Personal", + "System" : "Sistem", "Grant access" : "Permite accesul", + "Error configuring OAuth1" : "Eroare la configurarea OAuth1", + "Error configuring OAuth2" : "Eroare la configurarea OAuth2", "Generate keys" : "Generează chei", "Error generating key pair" : "Eroarea la generarea cheilor", + "All users. Type to select user or group." : "Toți utilizatorii. Începe să scrii pentru a selecta un utilizator sau un grup.", "(group)" : "(grup)", "Admin defined" : "Administrator definit", "Saved" : "Salvat", "Empty response from the server" : "Răspuns nul de la server", + "There was an error with message: " : "A apărut o eroare cu mesajul:", "external-storage" : "Stocare externă", "Username" : "Nume utilizator", "Password" : "Parolă", @@ -17,6 +22,8 @@ "Credentials saving failed" : "Salvarea detaliilor de autentificare a eșuat", "Credentials required" : "Detalii de autentificare necesare", "Save" : "Salvează", + "Insufficient data: %s" : "Date insuficiente: %s", + "%s" : "%s", "Access key" : "Cheie de acces", "Secret key" : "Cheie secretă", "Builtin" : "Inclus", @@ -59,11 +66,13 @@ "Service name" : "Nume serviciu", "Name" : "Nume", "Storage type" : "Tip stocare", + "Scope" : "Scop", "Enable encryption" : "Activează criptarea", "Enable previews" : "Activează previzualizările", "Enable sharing" : "Activează partajarea", "Check for changes" : "Verifică dacă au intervenit modificări", "Never" : "Niciodată", + "Once every direct access" : "O dată la fiecare acces direct", "External Storage" : "Stocare externă", "Folder name" : "Denumire director", "Authentication" : "Autentificare", diff --git a/apps/files_external/l10n/ru.js b/apps/files_external/l10n/ru.js index 644596d34ba..f294fcd1d07 100644 --- a/apps/files_external/l10n/ru.js +++ b/apps/files_external/l10n/ru.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Шаг 1 неудачен. Исключение: %s", "Step 2 failed. Exception: %s" : "Шаг 2 неудачен. Исключение: %s", "External storage" : "Внешнее хранилище", - "Storage with id \"%i\" not found" : "Хранилище с идентификатором \"%i\" не найдено", - "Invalid backend or authentication mechanism class" : "Некорректный механизм авторизации или бэкенд", - "Invalid mount point" : "Неправильная точка входа", - "Objectstore forbidden" : "Хранение объектов запрещено", - "Invalid storage backend \"%s\"" : "Неверный бэкенд хранилища \"%s\"", - "Not permitted to use backend \"%s\"" : "Не допускается использование бэкенда \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Не допускается использование механизма авторизации \"%s\"", - "Unsatisfied backend parameters" : "Недопустимые настройки бэкенда", - "Unsatisfied authentication mechanism parameters" : "Недопустимые настройки механизма авторизации", - "Insufficient data: %s" : "Недостаточно данных: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Пользователь не может редактировать хранилище \"%i\"", "Dropbox App Configuration" : "Настройка приложения Dropbox", "Google Drive App Configuration" : "Настройка приложения Google Drive", "Personal" : "Личное", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Ошибка сохранения учетных данных", "Credentials required" : "Требуются учетные данные", "Save" : "Сохранить", + "Storage with id \"%i\" not found" : "Хранилище с идентификатором \"%i\" не найдено", + "Invalid backend or authentication mechanism class" : "Некорректный механизм авторизации или бэкенд", + "Invalid mount point" : "Неправильная точка входа", + "Objectstore forbidden" : "Хранение объектов запрещено", + "Invalid storage backend \"%s\"" : "Неверный бэкенд хранилища \"%s\"", + "Not permitted to use backend \"%s\"" : "Не допускается использование бэкенда \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Не допускается использование механизма авторизации \"%s\"", + "Unsatisfied backend parameters" : "Недопустимые настройки бэкенда", + "Unsatisfied authentication mechanism parameters" : "Недопустимые настройки механизма авторизации", + "Insufficient data: %s" : "Недостаточно данных: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Пользователь не может редактировать хранилище \"%i\"", "Access key" : "Ключ доступа", "Secret key" : "Секретный ключ", "Builtin" : "Встроенный", diff --git a/apps/files_external/l10n/ru.json b/apps/files_external/l10n/ru.json index c86c1bac477..172e1b6a50f 100644 --- a/apps/files_external/l10n/ru.json +++ b/apps/files_external/l10n/ru.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Шаг 1 неудачен. Исключение: %s", "Step 2 failed. Exception: %s" : "Шаг 2 неудачен. Исключение: %s", "External storage" : "Внешнее хранилище", - "Storage with id \"%i\" not found" : "Хранилище с идентификатором \"%i\" не найдено", - "Invalid backend or authentication mechanism class" : "Некорректный механизм авторизации или бэкенд", - "Invalid mount point" : "Неправильная точка входа", - "Objectstore forbidden" : "Хранение объектов запрещено", - "Invalid storage backend \"%s\"" : "Неверный бэкенд хранилища \"%s\"", - "Not permitted to use backend \"%s\"" : "Не допускается использование бэкенда \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Не допускается использование механизма авторизации \"%s\"", - "Unsatisfied backend parameters" : "Недопустимые настройки бэкенда", - "Unsatisfied authentication mechanism parameters" : "Недопустимые настройки механизма авторизации", - "Insufficient data: %s" : "Недостаточно данных: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Пользователь не может редактировать хранилище \"%i\"", "Dropbox App Configuration" : "Настройка приложения Dropbox", "Google Drive App Configuration" : "Настройка приложения Google Drive", "Personal" : "Личное", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Ошибка сохранения учетных данных", "Credentials required" : "Требуются учетные данные", "Save" : "Сохранить", + "Storage with id \"%i\" not found" : "Хранилище с идентификатором \"%i\" не найдено", + "Invalid backend or authentication mechanism class" : "Некорректный механизм авторизации или бэкенд", + "Invalid mount point" : "Неправильная точка входа", + "Objectstore forbidden" : "Хранение объектов запрещено", + "Invalid storage backend \"%s\"" : "Неверный бэкенд хранилища \"%s\"", + "Not permitted to use backend \"%s\"" : "Не допускается использование бэкенда \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Не допускается использование механизма авторизации \"%s\"", + "Unsatisfied backend parameters" : "Недопустимые настройки бэкенда", + "Unsatisfied authentication mechanism parameters" : "Недопустимые настройки механизма авторизации", + "Insufficient data: %s" : "Недостаточно данных: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Пользователь не может редактировать хранилище \"%i\"", "Access key" : "Ключ доступа", "Secret key" : "Секретный ключ", "Builtin" : "Встроенный", diff --git a/apps/files_external/l10n/sk_SK.js b/apps/files_external/l10n/sk_SK.js index 3f4a6bd0b8a..a2d868a38d8 100644 --- a/apps/files_external/l10n/sk_SK.js +++ b/apps/files_external/l10n/sk_SK.js @@ -7,15 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Krok 1 zlyhal. Výnimka: %s", "Step 2 failed. Exception: %s" : "Krok 2 zlyhal. Výnimka: %s", "External storage" : "Externé úložisko", - "Storage with id \"%i\" not found" : "Úložisko s ID \"%i\" sa nenašlo", - "Invalid backend or authentication mechanism class" : "Neplatný backend, prípadne trieda mechanizmu autentifikácie", - "Invalid mount point" : "Chybný prípojný bod", - "Objectstore forbidden" : "Objectstore je zakáazaný", - "Invalid storage backend \"%s\"" : "Neplatný backend úložiska \"%s\"", - "Not permitted to use backend \"%s\"" : "Nie je povolené použiť backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Nie je povolené použiť autentifikačný mechanizmus \"%s\"", - "Unsatisfied backend parameters" : "Nedostatočné parametre backendu", - "Unsatisfied authentication mechanism parameters" : "Nedostatočné parametre autentifikačného mechanizmu", "Personal" : "Osobné", "System" : "Systém", "Grant access" : "Povoliť prístup", @@ -29,6 +20,15 @@ OC.L10N.register( "Username" : "Používateľské meno", "Password" : "Heslo", "Save" : "Uložiť", + "Storage with id \"%i\" not found" : "Úložisko s ID \"%i\" sa nenašlo", + "Invalid backend or authentication mechanism class" : "Neplatný backend, prípadne trieda mechanizmu autentifikácie", + "Invalid mount point" : "Chybný prípojný bod", + "Objectstore forbidden" : "Objectstore je zakáazaný", + "Invalid storage backend \"%s\"" : "Neplatný backend úložiska \"%s\"", + "Not permitted to use backend \"%s\"" : "Nie je povolené použiť backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Nie je povolené použiť autentifikačný mechanizmus \"%s\"", + "Unsatisfied backend parameters" : "Nedostatočné parametre backendu", + "Unsatisfied authentication mechanism parameters" : "Nedostatočné parametre autentifikačného mechanizmu", "Access key" : "Prístupový kľúč", "Secret key" : "Tajný kľúč", "Builtin" : "Vstavaný", diff --git a/apps/files_external/l10n/sk_SK.json b/apps/files_external/l10n/sk_SK.json index 6bc96ad35c2..0385633c851 100644 --- a/apps/files_external/l10n/sk_SK.json +++ b/apps/files_external/l10n/sk_SK.json @@ -5,15 +5,6 @@ "Step 1 failed. Exception: %s" : "Krok 1 zlyhal. Výnimka: %s", "Step 2 failed. Exception: %s" : "Krok 2 zlyhal. Výnimka: %s", "External storage" : "Externé úložisko", - "Storage with id \"%i\" not found" : "Úložisko s ID \"%i\" sa nenašlo", - "Invalid backend or authentication mechanism class" : "Neplatný backend, prípadne trieda mechanizmu autentifikácie", - "Invalid mount point" : "Chybný prípojný bod", - "Objectstore forbidden" : "Objectstore je zakáazaný", - "Invalid storage backend \"%s\"" : "Neplatný backend úložiska \"%s\"", - "Not permitted to use backend \"%s\"" : "Nie je povolené použiť backend \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "Nie je povolené použiť autentifikačný mechanizmus \"%s\"", - "Unsatisfied backend parameters" : "Nedostatočné parametre backendu", - "Unsatisfied authentication mechanism parameters" : "Nedostatočné parametre autentifikačného mechanizmu", "Personal" : "Osobné", "System" : "Systém", "Grant access" : "Povoliť prístup", @@ -27,6 +18,15 @@ "Username" : "Používateľské meno", "Password" : "Heslo", "Save" : "Uložiť", + "Storage with id \"%i\" not found" : "Úložisko s ID \"%i\" sa nenašlo", + "Invalid backend or authentication mechanism class" : "Neplatný backend, prípadne trieda mechanizmu autentifikácie", + "Invalid mount point" : "Chybný prípojný bod", + "Objectstore forbidden" : "Objectstore je zakáazaný", + "Invalid storage backend \"%s\"" : "Neplatný backend úložiska \"%s\"", + "Not permitted to use backend \"%s\"" : "Nie je povolené použiť backend \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "Nie je povolené použiť autentifikačný mechanizmus \"%s\"", + "Unsatisfied backend parameters" : "Nedostatočné parametre backendu", + "Unsatisfied authentication mechanism parameters" : "Nedostatočné parametre autentifikačného mechanizmu", "Access key" : "Prístupový kľúč", "Secret key" : "Tajný kľúč", "Builtin" : "Vstavaný", diff --git a/apps/files_external/l10n/sl.js b/apps/files_external/l10n/sl.js index 544ebf6f1ea..3de90f516e7 100644 --- a/apps/files_external/l10n/sl.js +++ b/apps/files_external/l10n/sl.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "1. korak je spodletel. Izjemna napaka: %s", "Step 2 failed. Exception: %s" : "2. korak je spodletel. Izjemna napaka: %s", "External storage" : "Zunanja shramba", - "Storage with id \"%i\" not found" : "Shrambe z ID \"%i\" ni mogoče najti.", - "Invalid backend or authentication mechanism class" : "Neveljaven ozadnji program oziroma razred mehanizma overitve", - "Invalid mount point" : "Neveljavna priklopna točka", - "Objectstore forbidden" : "Shranjevanje predmeta je prepovedano", - "Invalid storage backend \"%s\"" : "Neveljaven ozadnji program shrambe \"%s\"", - "Not permitted to use backend \"%s\"" : "Uporaba ozadnjega programa \"%s\" ni dovoljena.", - "Not permitted to use authentication mechanism \"%s\"" : "Uporaba načina overitve \"%s\" ni dovoljena.", - "Unsatisfied backend parameters" : "Nezadovoljivi parametri ozadnjega programa", - "Unsatisfied authentication mechanism parameters" : "Nezadovoljivi parametri mehanizma overitve", - "Insufficient data: %s" : "Nepopolni podatki: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Shramba z ID \"%i\" ni uporabniško uredljiva.", "Dropbox App Configuration" : "Nastavitve programa Dropbox", "Google Drive App Configuration" : "Nastavitve programa Google Drive", "Personal" : "Osebno", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Shranjevanje poveril je spodletelo", "Credentials required" : "Zahtevana so poverila", "Save" : "Shrani", + "Storage with id \"%i\" not found" : "Shrambe z ID \"%i\" ni mogoče najti.", + "Invalid backend or authentication mechanism class" : "Neveljaven ozadnji program oziroma razred mehanizma overitve", + "Invalid mount point" : "Neveljavna priklopna točka", + "Objectstore forbidden" : "Shranjevanje predmeta je prepovedano", + "Invalid storage backend \"%s\"" : "Neveljaven ozadnji program shrambe \"%s\"", + "Not permitted to use backend \"%s\"" : "Uporaba ozadnjega programa \"%s\" ni dovoljena.", + "Not permitted to use authentication mechanism \"%s\"" : "Uporaba načina overitve \"%s\" ni dovoljena.", + "Unsatisfied backend parameters" : "Nezadovoljivi parametri ozadnjega programa", + "Unsatisfied authentication mechanism parameters" : "Nezadovoljivi parametri mehanizma overitve", + "Insufficient data: %s" : "Nepopolni podatki: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Shramba z ID \"%i\" ni uporabniško uredljiva.", "Access key" : "Ključ za dostop", "Secret key" : "Skriti ključ", "Builtin" : "Vgrajeno", diff --git a/apps/files_external/l10n/sl.json b/apps/files_external/l10n/sl.json index 864817b4b17..de512656d0c 100644 --- a/apps/files_external/l10n/sl.json +++ b/apps/files_external/l10n/sl.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "1. korak je spodletel. Izjemna napaka: %s", "Step 2 failed. Exception: %s" : "2. korak je spodletel. Izjemna napaka: %s", "External storage" : "Zunanja shramba", - "Storage with id \"%i\" not found" : "Shrambe z ID \"%i\" ni mogoče najti.", - "Invalid backend or authentication mechanism class" : "Neveljaven ozadnji program oziroma razred mehanizma overitve", - "Invalid mount point" : "Neveljavna priklopna točka", - "Objectstore forbidden" : "Shranjevanje predmeta je prepovedano", - "Invalid storage backend \"%s\"" : "Neveljaven ozadnji program shrambe \"%s\"", - "Not permitted to use backend \"%s\"" : "Uporaba ozadnjega programa \"%s\" ni dovoljena.", - "Not permitted to use authentication mechanism \"%s\"" : "Uporaba načina overitve \"%s\" ni dovoljena.", - "Unsatisfied backend parameters" : "Nezadovoljivi parametri ozadnjega programa", - "Unsatisfied authentication mechanism parameters" : "Nezadovoljivi parametri mehanizma overitve", - "Insufficient data: %s" : "Nepopolni podatki: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Shramba z ID \"%i\" ni uporabniško uredljiva.", "Dropbox App Configuration" : "Nastavitve programa Dropbox", "Google Drive App Configuration" : "Nastavitve programa Google Drive", "Personal" : "Osebno", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Shranjevanje poveril je spodletelo", "Credentials required" : "Zahtevana so poverila", "Save" : "Shrani", + "Storage with id \"%i\" not found" : "Shrambe z ID \"%i\" ni mogoče najti.", + "Invalid backend or authentication mechanism class" : "Neveljaven ozadnji program oziroma razred mehanizma overitve", + "Invalid mount point" : "Neveljavna priklopna točka", + "Objectstore forbidden" : "Shranjevanje predmeta je prepovedano", + "Invalid storage backend \"%s\"" : "Neveljaven ozadnji program shrambe \"%s\"", + "Not permitted to use backend \"%s\"" : "Uporaba ozadnjega programa \"%s\" ni dovoljena.", + "Not permitted to use authentication mechanism \"%s\"" : "Uporaba načina overitve \"%s\" ni dovoljena.", + "Unsatisfied backend parameters" : "Nezadovoljivi parametri ozadnjega programa", + "Unsatisfied authentication mechanism parameters" : "Nezadovoljivi parametri mehanizma overitve", + "Insufficient data: %s" : "Nepopolni podatki: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Shramba z ID \"%i\" ni uporabniško uredljiva.", "Access key" : "Ključ za dostop", "Secret key" : "Skriti ključ", "Builtin" : "Vgrajeno", diff --git a/apps/files_external/l10n/sq.js b/apps/files_external/l10n/sq.js index c73e2c5244a..8c72322aec0 100644 --- a/apps/files_external/l10n/sq.js +++ b/apps/files_external/l10n/sq.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Hapi 1 dështoi. Përjashtim: %s", "Step 2 failed. Exception: %s" : "Hapi 2 dështoi. Përjashtim: %s", "External storage" : "Depozitë e jashtme", - "Storage with id \"%i\" not found" : "S’u gjet depozitë me id \"%i\"", - "Invalid backend or authentication mechanism class" : "Mekanizëm shërbimi ose klasë mekanizmi mirëfilltësimi e palvefshme", - "Invalid mount point" : "Pikë montimi e pavlefshme", - "Objectstore forbidden" : "Objectstore e ndaluar", - "Invalid storage backend \"%s\"" : "Mekanizëm shërbimi depozite i pavlefshëm \"%s\"", - "Not permitted to use backend \"%s\"" : "I palejuar të përdorë mekanizmin e shërbimit \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "S’i lejohet të përdorë mekanizmin e mirëfilltësimit \"%s\"", - "Unsatisfied backend parameters" : "Parametra mekanizmi shërbimi të paplotësuar", - "Unsatisfied authentication mechanism parameters" : "Parametra mekanizmi mirëfilltësimi të papërmbushur", - "Insufficient data: %s" : "Të dhëna të pamjaftueshme: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Depozita me id \"%i\" s’është e përpunueshme nga përdoruesi", "Dropbox App Configuration" : "Formësim i Aplikacionit Dropbox", "Google Drive App Configuration" : "Formësim i Aplikacionit Google Drive", "Personal" : "Personale", @@ -48,6 +36,18 @@ OC.L10N.register( "Credentials saving failed" : "Ruajtja e kredencialeve dështoi", "Credentials required" : "Lypsen kredenciale", "Save" : "Ruaje", + "Storage with id \"%i\" not found" : "S’u gjet depozitë me id \"%i\"", + "Invalid backend or authentication mechanism class" : "Mekanizëm shërbimi ose klasë mekanizmi mirëfilltësimi e palvefshme", + "Invalid mount point" : "Pikë montimi e pavlefshme", + "Objectstore forbidden" : "Objectstore e ndaluar", + "Invalid storage backend \"%s\"" : "Mekanizëm shërbimi depozite i pavlefshëm \"%s\"", + "Not permitted to use backend \"%s\"" : "I palejuar të përdorë mekanizmin e shërbimit \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "S’i lejohet të përdorë mekanizmin e mirëfilltësimit \"%s\"", + "Unsatisfied backend parameters" : "Parametra mekanizmi shërbimi të paplotësuar", + "Unsatisfied authentication mechanism parameters" : "Parametra mekanizmi mirëfilltësimi të papërmbushur", + "Insufficient data: %s" : "Të dhëna të pamjaftueshme: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Depozita me id \"%i\" s’është e përpunueshme nga përdoruesi", "Access key" : "Kyç hyrjesh", "Secret key" : "Kyç i fshehtë", "Builtin" : "I brendshëm", diff --git a/apps/files_external/l10n/sq.json b/apps/files_external/l10n/sq.json index 78b2a7d7ef3..54b1c583322 100644 --- a/apps/files_external/l10n/sq.json +++ b/apps/files_external/l10n/sq.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Hapi 1 dështoi. Përjashtim: %s", "Step 2 failed. Exception: %s" : "Hapi 2 dështoi. Përjashtim: %s", "External storage" : "Depozitë e jashtme", - "Storage with id \"%i\" not found" : "S’u gjet depozitë me id \"%i\"", - "Invalid backend or authentication mechanism class" : "Mekanizëm shërbimi ose klasë mekanizmi mirëfilltësimi e palvefshme", - "Invalid mount point" : "Pikë montimi e pavlefshme", - "Objectstore forbidden" : "Objectstore e ndaluar", - "Invalid storage backend \"%s\"" : "Mekanizëm shërbimi depozite i pavlefshëm \"%s\"", - "Not permitted to use backend \"%s\"" : "I palejuar të përdorë mekanizmin e shërbimit \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "S’i lejohet të përdorë mekanizmin e mirëfilltësimit \"%s\"", - "Unsatisfied backend parameters" : "Parametra mekanizmi shërbimi të paplotësuar", - "Unsatisfied authentication mechanism parameters" : "Parametra mekanizmi mirëfilltësimi të papërmbushur", - "Insufficient data: %s" : "Të dhëna të pamjaftueshme: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Depozita me id \"%i\" s’është e përpunueshme nga përdoruesi", "Dropbox App Configuration" : "Formësim i Aplikacionit Dropbox", "Google Drive App Configuration" : "Formësim i Aplikacionit Google Drive", "Personal" : "Personale", @@ -46,6 +34,18 @@ "Credentials saving failed" : "Ruajtja e kredencialeve dështoi", "Credentials required" : "Lypsen kredenciale", "Save" : "Ruaje", + "Storage with id \"%i\" not found" : "S’u gjet depozitë me id \"%i\"", + "Invalid backend or authentication mechanism class" : "Mekanizëm shërbimi ose klasë mekanizmi mirëfilltësimi e palvefshme", + "Invalid mount point" : "Pikë montimi e pavlefshme", + "Objectstore forbidden" : "Objectstore e ndaluar", + "Invalid storage backend \"%s\"" : "Mekanizëm shërbimi depozite i pavlefshëm \"%s\"", + "Not permitted to use backend \"%s\"" : "I palejuar të përdorë mekanizmin e shërbimit \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "S’i lejohet të përdorë mekanizmin e mirëfilltësimit \"%s\"", + "Unsatisfied backend parameters" : "Parametra mekanizmi shërbimi të paplotësuar", + "Unsatisfied authentication mechanism parameters" : "Parametra mekanizmi mirëfilltësimi të papërmbushur", + "Insufficient data: %s" : "Të dhëna të pamjaftueshme: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Depozita me id \"%i\" s’është e përpunueshme nga përdoruesi", "Access key" : "Kyç hyrjesh", "Secret key" : "Kyç i fshehtë", "Builtin" : "I brendshëm", diff --git a/apps/files_external/l10n/sr.js b/apps/files_external/l10n/sr.js index a0888bbb0b9..fe9203fd9df 100644 --- a/apps/files_external/l10n/sr.js +++ b/apps/files_external/l10n/sr.js @@ -4,9 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Корак 1 није успео. Изузетак: %s", "Step 2 failed. Exception: %s" : "Корак 2 није успео. Изузетак: %s", "External storage" : "Спољашње складиште", - "Storage with id \"%i\" not found" : "Складиште са идентификацијом \"%i\" није пронађено", - "Invalid mount point" : "Неисправна тачка монтирања", - "Invalid storage backend \"%s\"" : "Неисправна позадина складишта „%s“", "Personal" : "Лично", "System" : "Систем", "Grant access" : "Одобри приступ", @@ -18,6 +15,9 @@ OC.L10N.register( "Username" : "Корисничко име", "Password" : "Лозинка", "Save" : "Сачувај", + "Storage with id \"%i\" not found" : "Складиште са идентификацијом \"%i\" није пронађено", + "Invalid mount point" : "Неисправна тачка монтирања", + "Invalid storage backend \"%s\"" : "Неисправна позадина складишта „%s“", "None" : "Ништа", "App key" : "Кључ апликације", "App secret" : "Тајна апликације", diff --git a/apps/files_external/l10n/sr.json b/apps/files_external/l10n/sr.json index 143f0dae15a..7449424a301 100644 --- a/apps/files_external/l10n/sr.json +++ b/apps/files_external/l10n/sr.json @@ -2,9 +2,6 @@ "Step 1 failed. Exception: %s" : "Корак 1 није успео. Изузетак: %s", "Step 2 failed. Exception: %s" : "Корак 2 није успео. Изузетак: %s", "External storage" : "Спољашње складиште", - "Storage with id \"%i\" not found" : "Складиште са идентификацијом \"%i\" није пронађено", - "Invalid mount point" : "Неисправна тачка монтирања", - "Invalid storage backend \"%s\"" : "Неисправна позадина складишта „%s“", "Personal" : "Лично", "System" : "Систем", "Grant access" : "Одобри приступ", @@ -16,6 +13,9 @@ "Username" : "Корисничко име", "Password" : "Лозинка", "Save" : "Сачувај", + "Storage with id \"%i\" not found" : "Складиште са идентификацијом \"%i\" није пронађено", + "Invalid mount point" : "Неисправна тачка монтирања", + "Invalid storage backend \"%s\"" : "Неисправна позадина складишта „%s“", "None" : "Ништа", "App key" : "Кључ апликације", "App secret" : "Тајна апликације", diff --git a/apps/files_external/l10n/sv.js b/apps/files_external/l10n/sv.js index bee41cf7322..dfa978f202a 100644 --- a/apps/files_external/l10n/sv.js +++ b/apps/files_external/l10n/sv.js @@ -4,10 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Steg 1 flaerade. Undantag: %s", "Step 2 failed. Exception: %s" : "Steg 2 falerade. Undantag: %s", "External storage" : "Extern lagring", - "Invalid mount point" : "Ogiltig monteringspunkt", - "Insufficient data: %s" : "Otillräcklig data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Lagring med id \"%i\" är inte redigerbar av användare", "Personal" : "Personligt", "System" : "System", "Grant access" : "Bevilja åtkomst", @@ -28,6 +24,10 @@ OC.L10N.register( "Credentials saving failed" : "Misslyckades med att spara referenser", "Credentials required" : "Referenser krävs", "Save" : "Spara", + "Invalid mount point" : "Ogiltig monteringspunkt", + "Insufficient data: %s" : "Otillräcklig data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Lagring med id \"%i\" är inte redigerbar av användare", "Access key" : "Åtkomstnyckel", "Secret key" : "Hemlig nyckel", "Builtin" : "Inbyggt", diff --git a/apps/files_external/l10n/sv.json b/apps/files_external/l10n/sv.json index 66b95d84a0b..528588bd702 100644 --- a/apps/files_external/l10n/sv.json +++ b/apps/files_external/l10n/sv.json @@ -2,10 +2,6 @@ "Step 1 failed. Exception: %s" : "Steg 1 flaerade. Undantag: %s", "Step 2 failed. Exception: %s" : "Steg 2 falerade. Undantag: %s", "External storage" : "Extern lagring", - "Invalid mount point" : "Ogiltig monteringspunkt", - "Insufficient data: %s" : "Otillräcklig data: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "Lagring med id \"%i\" är inte redigerbar av användare", "Personal" : "Personligt", "System" : "System", "Grant access" : "Bevilja åtkomst", @@ -26,6 +22,10 @@ "Credentials saving failed" : "Misslyckades med att spara referenser", "Credentials required" : "Referenser krävs", "Save" : "Spara", + "Invalid mount point" : "Ogiltig monteringspunkt", + "Insufficient data: %s" : "Otillräcklig data: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "Lagring med id \"%i\" är inte redigerbar av användare", "Access key" : "Åtkomstnyckel", "Secret key" : "Hemlig nyckel", "Builtin" : "Inbyggt", diff --git a/apps/files_external/l10n/th_TH.js b/apps/files_external/l10n/th_TH.js index 8ee72ac0eff..8028ec77b06 100644 --- a/apps/files_external/l10n/th_TH.js +++ b/apps/files_external/l10n/th_TH.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "ขั้นตอนที่ 1 ล้มเหลว ข้อยกเว้น: %s", "Step 2 failed. Exception: %s" : "ขั้นตอนที่ 2 ล้มเหลว ข้อยกเว้น: %s", "External storage" : "จัดเก็บข้อมูลภายนอก", - "Storage with id \"%i\" not found" : "ไม่พบจัดการเก็บข้อมูลของ ID \"%i\"", - "Invalid backend or authentication mechanism class" : "แบ็กเอนด์ไม่ถูกต้องหรือระดับการรับรองความถูกต้องไม่เพียงพอ", - "Invalid mount point" : "จุดเชื่อมต่อที่ไม่ถูกต้อง", - "Objectstore forbidden" : "เก็บวัตถุต้องห้าม", - "Invalid storage backend \"%s\"" : "การจัดเก็บข้อมูลแบ็กเอนด์ไม่ถูกต้อง \"%s\"", - "Not permitted to use backend \"%s\"" : "ไม่อนุญาตให้ใช้แบ็กเอนด์ \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "ไม่อนุญาตให้ตรวจสอบการรับรองความถูกต้อง \"%s\"", - "Unsatisfied backend parameters" : "พารามิเตอร์แบ็กเอนด์ไม่ได้รับอนุญาต", - "Unsatisfied authentication mechanism parameters" : "การรับรองความถูกต้องไม่เพียงพอ", - "Insufficient data: %s" : "ข้อมูลไม่เพียงพอ: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "พื้นที่เก็บข้อมูล รหัส \"%i\" ไม่อนุญาตให้ผู้ใช้แก้ไขข้อมูลได้", "Personal" : "ส่วนตัว", "System" : "ระบบ", "Grant access" : "อนุญาตให้เข้าถึงได้", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "บันทึกข้อมูลประจำตัวล้มเหลว", "Credentials required" : "จำเป็นต้องระบบข้อมูลประจำตัว", "Save" : "บันทึก", + "Storage with id \"%i\" not found" : "ไม่พบจัดการเก็บข้อมูลของ ID \"%i\"", + "Invalid backend or authentication mechanism class" : "แบ็กเอนด์ไม่ถูกต้องหรือระดับการรับรองความถูกต้องไม่เพียงพอ", + "Invalid mount point" : "จุดเชื่อมต่อที่ไม่ถูกต้อง", + "Objectstore forbidden" : "เก็บวัตถุต้องห้าม", + "Invalid storage backend \"%s\"" : "การจัดเก็บข้อมูลแบ็กเอนด์ไม่ถูกต้อง \"%s\"", + "Not permitted to use backend \"%s\"" : "ไม่อนุญาตให้ใช้แบ็กเอนด์ \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "ไม่อนุญาตให้ตรวจสอบการรับรองความถูกต้อง \"%s\"", + "Unsatisfied backend parameters" : "พารามิเตอร์แบ็กเอนด์ไม่ได้รับอนุญาต", + "Unsatisfied authentication mechanism parameters" : "การรับรองความถูกต้องไม่เพียงพอ", + "Insufficient data: %s" : "ข้อมูลไม่เพียงพอ: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "พื้นที่เก็บข้อมูล รหัส \"%i\" ไม่อนุญาตให้ผู้ใช้แก้ไขข้อมูลได้", "Access key" : "คีย์การเข้าถึง", "Secret key" : "คีย์ลับ", "Builtin" : "ในตัว", diff --git a/apps/files_external/l10n/th_TH.json b/apps/files_external/l10n/th_TH.json index 380a69402b0..067e30c562f 100644 --- a/apps/files_external/l10n/th_TH.json +++ b/apps/files_external/l10n/th_TH.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "ขั้นตอนที่ 1 ล้มเหลว ข้อยกเว้น: %s", "Step 2 failed. Exception: %s" : "ขั้นตอนที่ 2 ล้มเหลว ข้อยกเว้น: %s", "External storage" : "จัดเก็บข้อมูลภายนอก", - "Storage with id \"%i\" not found" : "ไม่พบจัดการเก็บข้อมูลของ ID \"%i\"", - "Invalid backend or authentication mechanism class" : "แบ็กเอนด์ไม่ถูกต้องหรือระดับการรับรองความถูกต้องไม่เพียงพอ", - "Invalid mount point" : "จุดเชื่อมต่อที่ไม่ถูกต้อง", - "Objectstore forbidden" : "เก็บวัตถุต้องห้าม", - "Invalid storage backend \"%s\"" : "การจัดเก็บข้อมูลแบ็กเอนด์ไม่ถูกต้อง \"%s\"", - "Not permitted to use backend \"%s\"" : "ไม่อนุญาตให้ใช้แบ็กเอนด์ \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "ไม่อนุญาตให้ตรวจสอบการรับรองความถูกต้อง \"%s\"", - "Unsatisfied backend parameters" : "พารามิเตอร์แบ็กเอนด์ไม่ได้รับอนุญาต", - "Unsatisfied authentication mechanism parameters" : "การรับรองความถูกต้องไม่เพียงพอ", - "Insufficient data: %s" : "ข้อมูลไม่เพียงพอ: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "พื้นที่เก็บข้อมูล รหัส \"%i\" ไม่อนุญาตให้ผู้ใช้แก้ไขข้อมูลได้", "Personal" : "ส่วนตัว", "System" : "ระบบ", "Grant access" : "อนุญาตให้เข้าถึงได้", @@ -44,6 +32,18 @@ "Credentials saving failed" : "บันทึกข้อมูลประจำตัวล้มเหลว", "Credentials required" : "จำเป็นต้องระบบข้อมูลประจำตัว", "Save" : "บันทึก", + "Storage with id \"%i\" not found" : "ไม่พบจัดการเก็บข้อมูลของ ID \"%i\"", + "Invalid backend or authentication mechanism class" : "แบ็กเอนด์ไม่ถูกต้องหรือระดับการรับรองความถูกต้องไม่เพียงพอ", + "Invalid mount point" : "จุดเชื่อมต่อที่ไม่ถูกต้อง", + "Objectstore forbidden" : "เก็บวัตถุต้องห้าม", + "Invalid storage backend \"%s\"" : "การจัดเก็บข้อมูลแบ็กเอนด์ไม่ถูกต้อง \"%s\"", + "Not permitted to use backend \"%s\"" : "ไม่อนุญาตให้ใช้แบ็กเอนด์ \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "ไม่อนุญาตให้ตรวจสอบการรับรองความถูกต้อง \"%s\"", + "Unsatisfied backend parameters" : "พารามิเตอร์แบ็กเอนด์ไม่ได้รับอนุญาต", + "Unsatisfied authentication mechanism parameters" : "การรับรองความถูกต้องไม่เพียงพอ", + "Insufficient data: %s" : "ข้อมูลไม่เพียงพอ: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "พื้นที่เก็บข้อมูล รหัส \"%i\" ไม่อนุญาตให้ผู้ใช้แก้ไขข้อมูลได้", "Access key" : "คีย์การเข้าถึง", "Secret key" : "คีย์ลับ", "Builtin" : "ในตัว", diff --git a/apps/files_external/l10n/tr.js b/apps/files_external/l10n/tr.js index 8365741a128..1f9c41eccb9 100644 --- a/apps/files_external/l10n/tr.js +++ b/apps/files_external/l10n/tr.js @@ -7,18 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Adım 1 başarısız. Özel durum: %s", "Step 2 failed. Exception: %s" : "Adım 2 başarısız. Özel durum: %s", "External storage" : "Harici depolama", - "Storage with id \"%i\" not found" : "\"%i\" kimliği ile bir depolama bulunamadı", - "Invalid backend or authentication mechanism class" : "Geçersiz arka uç veya kimlik doğrulama mekanizma sınıfı", - "Invalid mount point" : "Geçersiz bağlama noktası", - "Objectstore forbidden" : "Nesne deposu yasaktır", - "Invalid storage backend \"%s\"" : "Geçersiz depolama arka ucu \"%s\"", - "Not permitted to use backend \"%s\"" : "\"%s\" arka ucu kullanımına izin verilmiyor", - "Not permitted to use authentication mechanism \"%s\"" : "\"%s\" kimlik doğrulama mekanizmasına izin verilmiyor", - "Unsatisfied backend parameters" : "Yetersiz arka uç parametreleri", - "Unsatisfied authentication mechanism parameters" : "Yetersiz kimlik doğrulama mekanizması parametreleri", - "Insufficient data: %s" : "Yetersiz veri: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "\"%i\" kimliği ile bir depolama bulunamadı", "Personal" : "Kişisel", "System" : "Sistem", "Grant access" : "Erişimi sağla", @@ -46,6 +34,18 @@ OC.L10N.register( "Credentials saving failed" : "Kimlik bilgileri kaydedilemedi", "Credentials required" : "Kimlik bilgileri gerekli", "Save" : "Kaydet", + "Storage with id \"%i\" not found" : "\"%i\" kimliği ile bir depolama bulunamadı", + "Invalid backend or authentication mechanism class" : "Geçersiz arka uç veya kimlik doğrulama mekanizma sınıfı", + "Invalid mount point" : "Geçersiz bağlama noktası", + "Objectstore forbidden" : "Nesne deposu yasaktır", + "Invalid storage backend \"%s\"" : "Geçersiz depolama arka ucu \"%s\"", + "Not permitted to use backend \"%s\"" : "\"%s\" arka ucu kullanımına izin verilmiyor", + "Not permitted to use authentication mechanism \"%s\"" : "\"%s\" kimlik doğrulama mekanizmasına izin verilmiyor", + "Unsatisfied backend parameters" : "Yetersiz arka uç parametreleri", + "Unsatisfied authentication mechanism parameters" : "Yetersiz kimlik doğrulama mekanizması parametreleri", + "Insufficient data: %s" : "Yetersiz veri: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "\"%i\" kimliği ile bir depolama bulunamadı", "Access key" : "Erişim anahtarı", "Secret key" : "Gizli anahtar", "Builtin" : "Yerleşik", diff --git a/apps/files_external/l10n/tr.json b/apps/files_external/l10n/tr.json index f035cbdb134..ec68bd7447e 100644 --- a/apps/files_external/l10n/tr.json +++ b/apps/files_external/l10n/tr.json @@ -5,18 +5,6 @@ "Step 1 failed. Exception: %s" : "Adım 1 başarısız. Özel durum: %s", "Step 2 failed. Exception: %s" : "Adım 2 başarısız. Özel durum: %s", "External storage" : "Harici depolama", - "Storage with id \"%i\" not found" : "\"%i\" kimliği ile bir depolama bulunamadı", - "Invalid backend or authentication mechanism class" : "Geçersiz arka uç veya kimlik doğrulama mekanizma sınıfı", - "Invalid mount point" : "Geçersiz bağlama noktası", - "Objectstore forbidden" : "Nesne deposu yasaktır", - "Invalid storage backend \"%s\"" : "Geçersiz depolama arka ucu \"%s\"", - "Not permitted to use backend \"%s\"" : "\"%s\" arka ucu kullanımına izin verilmiyor", - "Not permitted to use authentication mechanism \"%s\"" : "\"%s\" kimlik doğrulama mekanizmasına izin verilmiyor", - "Unsatisfied backend parameters" : "Yetersiz arka uç parametreleri", - "Unsatisfied authentication mechanism parameters" : "Yetersiz kimlik doğrulama mekanizması parametreleri", - "Insufficient data: %s" : "Yetersiz veri: %s", - "%s" : "%s", - "Storage with id \"%i\" is not user editable" : "\"%i\" kimliği ile bir depolama bulunamadı", "Personal" : "Kişisel", "System" : "Sistem", "Grant access" : "Erişimi sağla", @@ -44,6 +32,18 @@ "Credentials saving failed" : "Kimlik bilgileri kaydedilemedi", "Credentials required" : "Kimlik bilgileri gerekli", "Save" : "Kaydet", + "Storage with id \"%i\" not found" : "\"%i\" kimliği ile bir depolama bulunamadı", + "Invalid backend or authentication mechanism class" : "Geçersiz arka uç veya kimlik doğrulama mekanizma sınıfı", + "Invalid mount point" : "Geçersiz bağlama noktası", + "Objectstore forbidden" : "Nesne deposu yasaktır", + "Invalid storage backend \"%s\"" : "Geçersiz depolama arka ucu \"%s\"", + "Not permitted to use backend \"%s\"" : "\"%s\" arka ucu kullanımına izin verilmiyor", + "Not permitted to use authentication mechanism \"%s\"" : "\"%s\" kimlik doğrulama mekanizmasına izin verilmiyor", + "Unsatisfied backend parameters" : "Yetersiz arka uç parametreleri", + "Unsatisfied authentication mechanism parameters" : "Yetersiz kimlik doğrulama mekanizması parametreleri", + "Insufficient data: %s" : "Yetersiz veri: %s", + "%s" : "%s", + "Storage with id \"%i\" is not user editable" : "\"%i\" kimliği ile bir depolama bulunamadı", "Access key" : "Erişim anahtarı", "Secret key" : "Gizli anahtar", "Builtin" : "Yerleşik", diff --git a/apps/files_external/l10n/uk.js b/apps/files_external/l10n/uk.js index 0f1e4e35e94..a1c4648c3a5 100644 --- a/apps/files_external/l10n/uk.js +++ b/apps/files_external/l10n/uk.js @@ -4,9 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "1-й крок невдалий. Виключення: %s", "Step 2 failed. Exception: %s" : "2-й крок невдалий. Виключення: %s", "External storage" : "Зовнішнє сховище", - "Storage with id \"%i\" not found" : "Сховище з id \"%i\" не знайдено", - "Invalid mount point" : "Невірна точка монтування", - "Invalid storage backend \"%s\"" : "Невірне сховище \"%s\"", "Personal" : "Особисте", "System" : "Система", "Grant access" : "Дозволити доступ", @@ -18,6 +15,9 @@ OC.L10N.register( "Username" : "Ім'я користувача", "Password" : "Пароль", "Save" : "Зберегти", + "Storage with id \"%i\" not found" : "Сховище з id \"%i\" не знайдено", + "Invalid mount point" : "Невірна точка монтування", + "Invalid storage backend \"%s\"" : "Невірне сховище \"%s\"", "None" : "Жоден", "App key" : "Ключ додатку", "App secret" : "Секретний ключ додатку", diff --git a/apps/files_external/l10n/uk.json b/apps/files_external/l10n/uk.json index 72f74347d03..7adc7a43eec 100644 --- a/apps/files_external/l10n/uk.json +++ b/apps/files_external/l10n/uk.json @@ -2,9 +2,6 @@ "Step 1 failed. Exception: %s" : "1-й крок невдалий. Виключення: %s", "Step 2 failed. Exception: %s" : "2-й крок невдалий. Виключення: %s", "External storage" : "Зовнішнє сховище", - "Storage with id \"%i\" not found" : "Сховище з id \"%i\" не знайдено", - "Invalid mount point" : "Невірна точка монтування", - "Invalid storage backend \"%s\"" : "Невірне сховище \"%s\"", "Personal" : "Особисте", "System" : "Система", "Grant access" : "Дозволити доступ", @@ -16,6 +13,9 @@ "Username" : "Ім'я користувача", "Password" : "Пароль", "Save" : "Зберегти", + "Storage with id \"%i\" not found" : "Сховище з id \"%i\" не знайдено", + "Invalid mount point" : "Невірна точка монтування", + "Invalid storage backend \"%s\"" : "Невірне сховище \"%s\"", "None" : "Жоден", "App key" : "Ключ додатку", "App secret" : "Секретний ключ додатку", diff --git a/apps/files_external/l10n/zh_CN.js b/apps/files_external/l10n/zh_CN.js index cc7edb361fd..fcbee03772f 100644 --- a/apps/files_external/l10n/zh_CN.js +++ b/apps/files_external/l10n/zh_CN.js @@ -4,8 +4,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "步骤 1 失败。异常:%s", "Step 2 failed. Exception: %s" : "步骤 2 失败。异常:%s", "External storage" : "外部存储", - "Invalid mount point" : "无效的挂载点", - "%s" : "%s", "Personal" : "个人", "System" : "系统", "Grant access" : "授权", @@ -15,6 +13,8 @@ OC.L10N.register( "Username" : "用户名", "Password" : "密码", "Save" : "保存", + "Invalid mount point" : "无效的挂载点", + "%s" : "%s", "Access key" : "Access key", "Secret key" : "Secret key", "Builtin" : "内置", diff --git a/apps/files_external/l10n/zh_CN.json b/apps/files_external/l10n/zh_CN.json index 105cf564843..286156dac52 100644 --- a/apps/files_external/l10n/zh_CN.json +++ b/apps/files_external/l10n/zh_CN.json @@ -2,8 +2,6 @@ "Step 1 failed. Exception: %s" : "步骤 1 失败。异常:%s", "Step 2 failed. Exception: %s" : "步骤 2 失败。异常:%s", "External storage" : "外部存储", - "Invalid mount point" : "无效的挂载点", - "%s" : "%s", "Personal" : "个人", "System" : "系统", "Grant access" : "授权", @@ -13,6 +11,8 @@ "Username" : "用户名", "Password" : "密码", "Save" : "保存", + "Invalid mount point" : "无效的挂载点", + "%s" : "%s", "Access key" : "Access key", "Secret key" : "Secret key", "Builtin" : "内置", diff --git a/apps/files_external/l10n/zh_TW.js b/apps/files_external/l10n/zh_TW.js index 1749eda96dd..45fe08682a6 100644 --- a/apps/files_external/l10n/zh_TW.js +++ b/apps/files_external/l10n/zh_TW.js @@ -7,17 +7,6 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "步驟 1 失敗,出現異常: %s", "Step 2 failed. Exception: %s" : "步驟 2 失敗,出現異常: %s", "External storage" : "外部儲存", - "Storage with id \"%i\" not found" : "沒有找到編號 \"%i\" 的儲存空間 ", - "Invalid backend or authentication mechanism class" : "無效的後端處理或是驗證方式", - "Invalid mount point" : "無效的掛載點", - "Objectstore forbidden" : "物件儲存禁止存取", - "Invalid storage backend \"%s\"" : "無效的後端儲存 \"%s\"", - "Not permitted to use backend \"%s\"" : "不被允許使用後端儲存 \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "不被允許使用驗證機制 \"%s\"", - "Unsatisfied backend parameters" : "無法滿足後端所需的參數條件", - "Unsatisfied authentication mechanism parameters" : "無法滿足驗證機制所需的參數條件", - "Insufficient data: %s" : "資料不足: %s", - "%s" : "%s", "Personal" : "個人", "System" : "系統", "Grant access" : "允許存取", @@ -35,6 +24,17 @@ OC.L10N.register( "Username" : "使用者名稱", "Password" : "密碼", "Save" : "儲存", + "Storage with id \"%i\" not found" : "沒有找到編號 \"%i\" 的儲存空間 ", + "Invalid backend or authentication mechanism class" : "無效的後端處理或是驗證方式", + "Invalid mount point" : "無效的掛載點", + "Objectstore forbidden" : "物件儲存禁止存取", + "Invalid storage backend \"%s\"" : "無效的後端儲存 \"%s\"", + "Not permitted to use backend \"%s\"" : "不被允許使用後端儲存 \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "不被允許使用驗證機制 \"%s\"", + "Unsatisfied backend parameters" : "無法滿足後端所需的參數條件", + "Unsatisfied authentication mechanism parameters" : "無法滿足驗證機制所需的參數條件", + "Insufficient data: %s" : "資料不足: %s", + "%s" : "%s", "Access key" : "存取金鑰", "Secret key" : "私密金鑰", "None" : "無", diff --git a/apps/files_external/l10n/zh_TW.json b/apps/files_external/l10n/zh_TW.json index 7b49bb919ca..4e487f06a3a 100644 --- a/apps/files_external/l10n/zh_TW.json +++ b/apps/files_external/l10n/zh_TW.json @@ -5,17 +5,6 @@ "Step 1 failed. Exception: %s" : "步驟 1 失敗,出現異常: %s", "Step 2 failed. Exception: %s" : "步驟 2 失敗,出現異常: %s", "External storage" : "外部儲存", - "Storage with id \"%i\" not found" : "沒有找到編號 \"%i\" 的儲存空間 ", - "Invalid backend or authentication mechanism class" : "無效的後端處理或是驗證方式", - "Invalid mount point" : "無效的掛載點", - "Objectstore forbidden" : "物件儲存禁止存取", - "Invalid storage backend \"%s\"" : "無效的後端儲存 \"%s\"", - "Not permitted to use backend \"%s\"" : "不被允許使用後端儲存 \"%s\"", - "Not permitted to use authentication mechanism \"%s\"" : "不被允許使用驗證機制 \"%s\"", - "Unsatisfied backend parameters" : "無法滿足後端所需的參數條件", - "Unsatisfied authentication mechanism parameters" : "無法滿足驗證機制所需的參數條件", - "Insufficient data: %s" : "資料不足: %s", - "%s" : "%s", "Personal" : "個人", "System" : "系統", "Grant access" : "允許存取", @@ -33,6 +22,17 @@ "Username" : "使用者名稱", "Password" : "密碼", "Save" : "儲存", + "Storage with id \"%i\" not found" : "沒有找到編號 \"%i\" 的儲存空間 ", + "Invalid backend or authentication mechanism class" : "無效的後端處理或是驗證方式", + "Invalid mount point" : "無效的掛載點", + "Objectstore forbidden" : "物件儲存禁止存取", + "Invalid storage backend \"%s\"" : "無效的後端儲存 \"%s\"", + "Not permitted to use backend \"%s\"" : "不被允許使用後端儲存 \"%s\"", + "Not permitted to use authentication mechanism \"%s\"" : "不被允許使用驗證機制 \"%s\"", + "Unsatisfied backend parameters" : "無法滿足後端所需的參數條件", + "Unsatisfied authentication mechanism parameters" : "無法滿足驗證機制所需的參數條件", + "Insufficient data: %s" : "資料不足: %s", + "%s" : "%s", "Access key" : "存取金鑰", "Secret key" : "私密金鑰", "None" : "無", diff --git a/apps/files_external/lib/Lib/Storage/Swift.php b/apps/files_external/lib/Lib/Storage/Swift.php index 4578cd9a5c7..d015e71f9d9 100644 --- a/apps/files_external/lib/Lib/Storage/Swift.php +++ b/apps/files_external/lib/Lib/Storage/Swift.php @@ -74,6 +74,14 @@ class Swift extends \OC\Files\Storage\Common { private static $tmpFiles = array(); /** + * Key value cache mapping path to data object. Maps path to + * \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject for existing + * paths and path to false for not existing paths. + * @var \OCP\ICache + */ + private $objectCache; + + /** * @param string $path */ private function normalizePath($path) { @@ -96,18 +104,31 @@ class Swift extends \OC\Files\Storage\Common { * @param string $path * @return string */ - private function getContainerName($path) { - $path = trim(trim($this->root, '/') . "/" . $path, '/.'); - return str_replace('/', '\\', $path); - } /** + * Fetches an object from the API. + * If the object is cached already or a + * failed "doesn't exist" response was cached, + * that one will be returned. + * * @param string $path + * @return \OpenCloud\OpenStack\ObjectStorage\Resource\DataObject|bool object + * or false if the object did not exist */ - private function doesObjectExist($path) { + private function fetchObject($path) { + if ($this->objectCache->hasKey($path)) { + // might be "false" if object did not exist from last check + return $this->objectCache->get($path); + } try { - $this->getContainer()->getPartialObject($path); - return true; + $object = $this->getContainer()->getPartialObject($path); + $this->objectCache->set($path, $object); + return $object; + } catch (ClientErrorResponseException $e) { + // this exception happens when the object does not exist, which + // is expected in most cases + $this->objectCache->set($path, false); + return false; } catch (ClientErrorResponseException $e) { // Expected response is "404 Not Found", so only log if it isn't if ($e->getResponse()->getStatusCode() !== 404) { @@ -117,6 +138,17 @@ class Swift extends \OC\Files\Storage\Common { } } + /** + * Returns whether the given path exists. + * + * @param string $path + * + * @return bool true if the object exist, false otherwise + */ + private function doesObjectExist($path) { + return $this->fetchObject($path) !== false; + } + public function __construct($params) { if ((empty($params['key']) and empty($params['password'])) or empty($params['user']) or empty($params['bucket']) @@ -144,6 +176,8 @@ class Swift extends \OC\Files\Storage\Common { } $this->params = $params; + // FIXME: private class... + $this->objectCache = new \OC\Cache\CappedMemoryCache(); } public function mkdir($path) { @@ -162,6 +196,9 @@ class Swift extends \OC\Files\Storage\Common { $metadataHeaders = DataObject::stockHeaders(array()); $allHeaders = $customHeaders + $metadataHeaders; $this->getContainer()->uploadObject($path, '', $allHeaders); + // invalidate so that the next access gets the real object + // with all properties + $this->objectCache->remove($path); } catch (Exceptions\CreateUpdateError $e) { \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; @@ -202,6 +239,7 @@ class Swift extends \OC\Files\Storage\Common { try { $this->getContainer()->dataObject()->setName($path . '/')->delete(); + $this->objectCache->remove($path . '/'); } catch (Exceptions\DeleteError $e) { \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; @@ -256,7 +294,10 @@ class Swift extends \OC\Files\Storage\Common { try { /** @var DataObject $object */ - $object = $this->getContainer()->getPartialObject($path); + $object = $this->fetchObject($path); + if (!$object) { + return false; + } } catch (ClientErrorResponseException $e) { \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; @@ -310,8 +351,12 @@ class Swift extends \OC\Files\Storage\Common { try { $this->getContainer()->dataObject()->setName($path)->delete(); + $this->objectCache->remove($path); + $this->objectCache->remove($path . '/'); } catch (ClientErrorResponseException $e) { - \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); + if ($e->getResponse()->getStatusCode() !== 404) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); + } return false; } @@ -391,8 +436,11 @@ class Swift extends \OC\Files\Storage\Common { $path .= '/'; } - $object = $this->getContainer()->getPartialObject($path); - $object->saveMetadata($metadata); + $object = $this->fetchObject($path); + if ($object->saveMetadata($metadata)) { + // invalidate target object to force repopulation on fetch + $this->objectCache->remove($path); + } return true; } else { $mimeType = \OC::$server->getMimeTypeDetector()->detectPath($path); @@ -400,6 +448,8 @@ class Swift extends \OC\Files\Storage\Common { $metadataHeaders = DataObject::stockHeaders($metadata); $allHeaders = $customHeaders + $metadataHeaders; $this->getContainer()->uploadObject($path, '', $allHeaders); + // invalidate target object to force repopulation on fetch + $this->objectCache->remove($path); return true; } } @@ -415,8 +465,11 @@ class Swift extends \OC\Files\Storage\Common { $this->unlink($path2); try { - $source = $this->getContainer()->getPartialObject($path1); + $source = $this->fetchObject($path1); $source->copy($this->bucket . '/' . $path2); + // invalidate target object to force repopulation on fetch + $this->objectCache->remove($path2); + $this->objectCache->remove($path2 . '/'); } catch (ClientErrorResponseException $e) { \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; @@ -428,8 +481,11 @@ class Swift extends \OC\Files\Storage\Common { $this->unlink($path2); try { - $source = $this->getContainer()->getPartialObject($path1 . '/'); + $source = $this->fetchObject($path1 . '/'); $source->copy($this->bucket . '/' . $path2 . '/'); + // invalidate target object to force repopulation on fetch + $this->objectCache->remove($path2); + $this->objectCache->remove($path2 . '/'); } catch (ClientErrorResponseException $e) { \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; @@ -461,10 +517,6 @@ class Swift extends \OC\Files\Storage\Common { $fileType = $this->filetype($path1); if ($fileType === 'dir' || $fileType === 'file') { - - // make way - $this->unlink($path2); - // copy if ($this->copy($path1, $path2) === false) { return false; @@ -564,6 +616,8 @@ class Swift extends \OC\Files\Storage\Common { } $fileData = fopen($tmpFile, 'r'); $this->getContainer()->uploadObject(self::$tmpFiles[$tmpFile], $fileData); + // invalidate target object to force repopulation on fetch + $this->objectCache->remove(self::$tmpFiles[$tmpFile]); unlink($tmpFile); } diff --git a/apps/files_sharing/l10n/cs_CZ.js b/apps/files_sharing/l10n/cs_CZ.js index aba62f0811b..40c9a981203 100644 --- a/apps/files_sharing/l10n/cs_CZ.js +++ b/apps/files_sharing/l10n/cs_CZ.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Sdíleno s vámi", "Shared with others" : "Sdíleno s ostatními", "Shared by link" : "Sdíleno pomocí odkazu", - "Federated sharing" : "Propojené sdílení", "Nothing shared with you yet" : "Zatím s vámi nikdo nic nesdílel", "Files and folders others share with you will show up here" : "Zde budou zobrazeny soubory a adresáře, které s vámi ostatní sdílí", "Nothing shared yet" : "Zatím není nic sdíleno", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Veřejný odkaz %2$s vypršel", "Shared by %2$s" : "%2$s sdílel(a)", "Shares" : "Sdílení", - "You received \"/%2$s\" as a remote share from %1$s" : "Obdržel(a) jsi \"/%2$s\" jako vzdálené sdílení od %1$s", - "Accept" : "Přijmout", - "Decline" : "Zamítnout", "This share is password-protected" : "Toto sdílení je chráněno heslem", "The password is wrong. Try again." : "Heslo není správné. Zkuste to znovu.", "Password" : "Heslo", diff --git a/apps/files_sharing/l10n/cs_CZ.json b/apps/files_sharing/l10n/cs_CZ.json index 74877e2f2fa..393bdbc165b 100644 --- a/apps/files_sharing/l10n/cs_CZ.json +++ b/apps/files_sharing/l10n/cs_CZ.json @@ -28,7 +28,6 @@ "Shared with you" : "Sdíleno s vámi", "Shared with others" : "Sdíleno s ostatními", "Shared by link" : "Sdíleno pomocí odkazu", - "Federated sharing" : "Propojené sdílení", "Nothing shared with you yet" : "Zatím s vámi nikdo nic nesdílel", "Files and folders others share with you will show up here" : "Zde budou zobrazeny soubory a adresáře, které s vámi ostatní sdílí", "Nothing shared yet" : "Zatím není nic sdíleno", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Veřejný odkaz %2$s vypršel", "Shared by %2$s" : "%2$s sdílel(a)", "Shares" : "Sdílení", - "You received \"/%2$s\" as a remote share from %1$s" : "Obdržel(a) jsi \"/%2$s\" jako vzdálené sdílení od %1$s", - "Accept" : "Přijmout", - "Decline" : "Zamítnout", "This share is password-protected" : "Toto sdílení je chráněno heslem", "The password is wrong. Try again." : "Heslo není správné. Zkuste to znovu.", "Password" : "Heslo", diff --git a/apps/files_sharing/l10n/da.js b/apps/files_sharing/l10n/da.js index 8ecd981af45..f64eae3157e 100644 --- a/apps/files_sharing/l10n/da.js +++ b/apps/files_sharing/l10n/da.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "Delt med dig", "Shared with others" : "Delt med andre", "Shared by link" : "Delt via link", - "Federated sharing" : "Datafællesskabsdeling", "Nothing shared with you yet" : "Der deles ikke noget med dig endnu", "Files and folders others share with you will show up here" : "Filer og mapper som andre deler med dig, vil blive vist her", "Nothing shared yet" : "Der deles endnu ikke noget", @@ -54,8 +53,6 @@ OC.L10N.register( "Shared via public link" : "Delt via offentligt link", "Shared by %2$s" : "Delt af %2$s", "Shares" : "Delt", - "Accept" : "Acceptér", - "Decline" : "Afvis", "This share is password-protected" : "Delingen er beskyttet af kodeord", "The password is wrong. Try again." : "Kodeordet er forkert. Prøv igen.", "Password" : "Kodeord", diff --git a/apps/files_sharing/l10n/da.json b/apps/files_sharing/l10n/da.json index d68cdfb0452..1b18f0c5cc0 100644 --- a/apps/files_sharing/l10n/da.json +++ b/apps/files_sharing/l10n/da.json @@ -9,7 +9,6 @@ "Shared with you" : "Delt med dig", "Shared with others" : "Delt med andre", "Shared by link" : "Delt via link", - "Federated sharing" : "Datafællesskabsdeling", "Nothing shared with you yet" : "Der deles ikke noget med dig endnu", "Files and folders others share with you will show up here" : "Filer og mapper som andre deler med dig, vil blive vist her", "Nothing shared yet" : "Der deles endnu ikke noget", @@ -52,8 +51,6 @@ "Shared via public link" : "Delt via offentligt link", "Shared by %2$s" : "Delt af %2$s", "Shares" : "Delt", - "Accept" : "Acceptér", - "Decline" : "Afvis", "This share is password-protected" : "Delingen er beskyttet af kodeord", "The password is wrong. Try again." : "Kodeordet er forkert. Prøv igen.", "Password" : "Kodeord", diff --git a/apps/files_sharing/l10n/de.js b/apps/files_sharing/l10n/de.js index ac9083183f2..b38f4c9145b 100644 --- a/apps/files_sharing/l10n/de.js +++ b/apps/files_sharing/l10n/de.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Mit Dir geteilt", "Shared with others" : "Von Dir geteilt", "Shared by link" : "Geteilt über einen Link", - "Federated sharing" : "Federated-Sharing", "Nothing shared with you yet" : "Bis jetzt wurde nichts mit Dir geteilt", "Files and folders others share with you will show up here" : "Mit Dir geteilte Dateien und Ordner anderer werden hier erscheinen", "Nothing shared yet" : "Noch nichts geteilt", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Öffentlicher Link von %2$s ist abgelaufen", "Shared by %2$s" : "Geteilt von %2$s", "Shares" : "Freigaben", - "You received \"/%2$s\" as a remote share from %1$s" : "Du empfängst \"/%2$s\" als Remotefreigabe von %1$s", - "Accept" : "Ok", - "Decline" : "Abgelehnt", "This share is password-protected" : "Diese Freigabe ist durch ein Passwort geschützt", "The password is wrong. Try again." : "Bitte überprüfe Dein Passwort und versuche es erneut.", "Password" : "Passwort", diff --git a/apps/files_sharing/l10n/de.json b/apps/files_sharing/l10n/de.json index be648efa1f4..7a349b79b7a 100644 --- a/apps/files_sharing/l10n/de.json +++ b/apps/files_sharing/l10n/de.json @@ -28,7 +28,6 @@ "Shared with you" : "Mit Dir geteilt", "Shared with others" : "Von Dir geteilt", "Shared by link" : "Geteilt über einen Link", - "Federated sharing" : "Federated-Sharing", "Nothing shared with you yet" : "Bis jetzt wurde nichts mit Dir geteilt", "Files and folders others share with you will show up here" : "Mit Dir geteilte Dateien und Ordner anderer werden hier erscheinen", "Nothing shared yet" : "Noch nichts geteilt", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Öffentlicher Link von %2$s ist abgelaufen", "Shared by %2$s" : "Geteilt von %2$s", "Shares" : "Freigaben", - "You received \"/%2$s\" as a remote share from %1$s" : "Du empfängst \"/%2$s\" als Remotefreigabe von %1$s", - "Accept" : "Ok", - "Decline" : "Abgelehnt", "This share is password-protected" : "Diese Freigabe ist durch ein Passwort geschützt", "The password is wrong. Try again." : "Bitte überprüfe Dein Passwort und versuche es erneut.", "Password" : "Passwort", diff --git a/apps/files_sharing/l10n/de_DE.js b/apps/files_sharing/l10n/de_DE.js index c5176f52818..a45d29edac5 100644 --- a/apps/files_sharing/l10n/de_DE.js +++ b/apps/files_sharing/l10n/de_DE.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Mit Ihnen geteilt", "Shared with others" : "Von Ihnen geteilt", "Shared by link" : "Geteilt über einen Link", - "Federated sharing" : "Federated-Sharing", "Nothing shared with you yet" : "Bis jetzt wurde nichts mit Ihnen geteilt", "Files and folders others share with you will show up here" : "Mit Ihnen geteilte Dateien und Ordner anderer werden hier erscheinen", "Nothing shared yet" : "Noch nichts geteilt", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Öffentlicher Link von %2$s ist abgelaufen", "Shared by %2$s" : "Geteilt von %2$s", "Shares" : "Geteiltes", - "You received \"/%2$s\" as a remote share from %1$s" : "Sie haben \"/%2$s\" als Remotefreigabe von %1$s erhalten", - "Accept" : "Akzeptieren", - "Decline" : "Ablehnen", "This share is password-protected" : "Diese Freigabe ist durch ein Passwort geschützt", "The password is wrong. Try again." : "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" : "Passwort", diff --git a/apps/files_sharing/l10n/de_DE.json b/apps/files_sharing/l10n/de_DE.json index c0d279c4a95..e9c23efaf30 100644 --- a/apps/files_sharing/l10n/de_DE.json +++ b/apps/files_sharing/l10n/de_DE.json @@ -28,7 +28,6 @@ "Shared with you" : "Mit Ihnen geteilt", "Shared with others" : "Von Ihnen geteilt", "Shared by link" : "Geteilt über einen Link", - "Federated sharing" : "Federated-Sharing", "Nothing shared with you yet" : "Bis jetzt wurde nichts mit Ihnen geteilt", "Files and folders others share with you will show up here" : "Mit Ihnen geteilte Dateien und Ordner anderer werden hier erscheinen", "Nothing shared yet" : "Noch nichts geteilt", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Öffentlicher Link von %2$s ist abgelaufen", "Shared by %2$s" : "Geteilt von %2$s", "Shares" : "Geteiltes", - "You received \"/%2$s\" as a remote share from %1$s" : "Sie haben \"/%2$s\" als Remotefreigabe von %1$s erhalten", - "Accept" : "Akzeptieren", - "Decline" : "Ablehnen", "This share is password-protected" : "Diese Freigabe ist durch ein Passwort geschützt", "The password is wrong. Try again." : "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" : "Passwort", diff --git a/apps/files_sharing/l10n/el.js b/apps/files_sharing/l10n/el.js index 1959036f6fc..e83f341a08a 100644 --- a/apps/files_sharing/l10n/el.js +++ b/apps/files_sharing/l10n/el.js @@ -52,8 +52,6 @@ OC.L10N.register( "Shared via public link" : "Διαμοιράστηκε μέσω δημόσιου συνδέσμου", "Shared by %2$s" : "Διαμοιράστηκε από %2$s", "Shares" : "Κοινόχρηστοι φάκελοι", - "Accept" : "Αποδοχή", - "Decline" : "Απόρριψη", "This share is password-protected" : "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό", "The password is wrong. Try again." : "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά.", "Password" : "Κωδικός πρόσβασης", diff --git a/apps/files_sharing/l10n/el.json b/apps/files_sharing/l10n/el.json index c241c7613a1..565282e284e 100644 --- a/apps/files_sharing/l10n/el.json +++ b/apps/files_sharing/l10n/el.json @@ -50,8 +50,6 @@ "Shared via public link" : "Διαμοιράστηκε μέσω δημόσιου συνδέσμου", "Shared by %2$s" : "Διαμοιράστηκε από %2$s", "Shares" : "Κοινόχρηστοι φάκελοι", - "Accept" : "Αποδοχή", - "Decline" : "Απόρριψη", "This share is password-protected" : "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό", "The password is wrong. Try again." : "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά.", "Password" : "Κωδικός πρόσβασης", diff --git a/apps/files_sharing/l10n/en_GB.js b/apps/files_sharing/l10n/en_GB.js index 81ddc030559..d9fe479ab0a 100644 --- a/apps/files_sharing/l10n/en_GB.js +++ b/apps/files_sharing/l10n/en_GB.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Shared with you", "Shared with others" : "Shared with others", "Shared by link" : "Shared by link", - "Federated sharing" : "Federated sharing", "Nothing shared with you yet" : "Nothing shared with you yet", "Files and folders others share with you will show up here" : "Files and folders others share with you will show up here", "Nothing shared yet" : "Nothing shared yet", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Public link of %2$s expired", "Shared by %2$s" : "Shared by %2$s", "Shares" : "Shares", - "You received \"/%2$s\" as a remote share from %1$s" : "You received \"/%2$s\" as a remote share from %1$s", - "Accept" : "Accept", - "Decline" : "Decline", "This share is password-protected" : "This share is password-protected", "The password is wrong. Try again." : "The password is wrong. Try again.", "Password" : "Password", diff --git a/apps/files_sharing/l10n/en_GB.json b/apps/files_sharing/l10n/en_GB.json index f9abf165f59..36555427b67 100644 --- a/apps/files_sharing/l10n/en_GB.json +++ b/apps/files_sharing/l10n/en_GB.json @@ -28,7 +28,6 @@ "Shared with you" : "Shared with you", "Shared with others" : "Shared with others", "Shared by link" : "Shared by link", - "Federated sharing" : "Federated sharing", "Nothing shared with you yet" : "Nothing shared with you yet", "Files and folders others share with you will show up here" : "Files and folders others share with you will show up here", "Nothing shared yet" : "Nothing shared yet", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Public link of %2$s expired", "Shared by %2$s" : "Shared by %2$s", "Shares" : "Shares", - "You received \"/%2$s\" as a remote share from %1$s" : "You received \"/%2$s\" as a remote share from %1$s", - "Accept" : "Accept", - "Decline" : "Decline", "This share is password-protected" : "This share is password-protected", "The password is wrong. Try again." : "The password is wrong. Try again.", "Password" : "Password", diff --git a/apps/files_sharing/l10n/eo.js b/apps/files_sharing/l10n/eo.js index 1656264fd57..d8368b93b7d 100644 --- a/apps/files_sharing/l10n/eo.js +++ b/apps/files_sharing/l10n/eo.js @@ -9,7 +9,6 @@ OC.L10N.register( "Shared with you" : "Kunhavata kun vi", "Shared with others" : "Kunhavata kun aliaj", "Shared by link" : "Kunhavata per ligilo", - "Federated sharing" : "Federa kunhavado", "Nothing shared with you yet" : "Nenio kunhavatas kun vi ankoraŭ", "Files and folders others share with you will show up here" : "Dosieroj kaj dosierujoj, kiujn aliuloj kunhavigas, aperos ĉi tie", "Nothing shared yet" : "Nenio kunhavatas ankoraŭ", @@ -63,9 +62,6 @@ OC.L10N.register( "%2$s removed public link" : "%2$s forigis publikan ligilon", "Shared by %2$s" : "Kunhavigata de %2$s", "Shares" : "Kunhavoj", - "You received \"/%2$s\" as a remote share from %1$s" : "Vi ricevis “/%2$s” kiel fora kunhavigo de %1$s", - "Accept" : "Akcepti", - "Decline" : "Malakcepti", "This share is password-protected" : "Ĉi tiu kunhavigo estas protektata per pasvorto", "The password is wrong. Try again." : "La pasvorto malĝustas. Provu denove.", "Password" : "Pasvorto", diff --git a/apps/files_sharing/l10n/eo.json b/apps/files_sharing/l10n/eo.json index fb8793e6efc..3b56baf1b98 100644 --- a/apps/files_sharing/l10n/eo.json +++ b/apps/files_sharing/l10n/eo.json @@ -7,7 +7,6 @@ "Shared with you" : "Kunhavata kun vi", "Shared with others" : "Kunhavata kun aliaj", "Shared by link" : "Kunhavata per ligilo", - "Federated sharing" : "Federa kunhavado", "Nothing shared with you yet" : "Nenio kunhavatas kun vi ankoraŭ", "Files and folders others share with you will show up here" : "Dosieroj kaj dosierujoj, kiujn aliuloj kunhavigas, aperos ĉi tie", "Nothing shared yet" : "Nenio kunhavatas ankoraŭ", @@ -61,9 +60,6 @@ "%2$s removed public link" : "%2$s forigis publikan ligilon", "Shared by %2$s" : "Kunhavigata de %2$s", "Shares" : "Kunhavoj", - "You received \"/%2$s\" as a remote share from %1$s" : "Vi ricevis “/%2$s” kiel fora kunhavigo de %1$s", - "Accept" : "Akcepti", - "Decline" : "Malakcepti", "This share is password-protected" : "Ĉi tiu kunhavigo estas protektata per pasvorto", "The password is wrong. Try again." : "La pasvorto malĝustas. Provu denove.", "Password" : "Pasvorto", diff --git a/apps/files_sharing/l10n/es.js b/apps/files_sharing/l10n/es.js index 961cf47b2f1..c74088b6fca 100644 --- a/apps/files_sharing/l10n/es.js +++ b/apps/files_sharing/l10n/es.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Compartido contigo", "Shared with others" : "Compartido con otros", "Shared by link" : "Compartido por medio de enlaces", - "Federated sharing" : "Compartido federado", "Nothing shared with you yet" : "Todavía no han compartido nada contigo", "Files and folders others share with you will show up here" : "Aquí aparecerán archivos y carpetas que otros compartan contigo", "Nothing shared yet" : "Aún no hay nada compartido", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "El enlace público %2$s ha expirado", "Shared by %2$s" : "Compartido por %2$s", "Shares" : "Compartidos", - "You received \"/%2$s\" as a remote share from %1$s" : "Acaba de recibir el siguiente enlace demoto \"/%2$s\" de %1$s", - "Accept" : "Aceptar", - "Decline" : "Denegar", "This share is password-protected" : "Este elemento compartido está protegido por contraseña", "The password is wrong. Try again." : "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" : "Contraseña", diff --git a/apps/files_sharing/l10n/es.json b/apps/files_sharing/l10n/es.json index 1acacc064e7..2976007e3d7 100644 --- a/apps/files_sharing/l10n/es.json +++ b/apps/files_sharing/l10n/es.json @@ -28,7 +28,6 @@ "Shared with you" : "Compartido contigo", "Shared with others" : "Compartido con otros", "Shared by link" : "Compartido por medio de enlaces", - "Federated sharing" : "Compartido federado", "Nothing shared with you yet" : "Todavía no han compartido nada contigo", "Files and folders others share with you will show up here" : "Aquí aparecerán archivos y carpetas que otros compartan contigo", "Nothing shared yet" : "Aún no hay nada compartido", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "El enlace público %2$s ha expirado", "Shared by %2$s" : "Compartido por %2$s", "Shares" : "Compartidos", - "You received \"/%2$s\" as a remote share from %1$s" : "Acaba de recibir el siguiente enlace demoto \"/%2$s\" de %1$s", - "Accept" : "Aceptar", - "Decline" : "Denegar", "This share is password-protected" : "Este elemento compartido está protegido por contraseña", "The password is wrong. Try again." : "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" : "Contraseña", diff --git a/apps/files_sharing/l10n/et_EE.js b/apps/files_sharing/l10n/et_EE.js index 8033c8706c2..05d9517f0c2 100644 --- a/apps/files_sharing/l10n/et_EE.js +++ b/apps/files_sharing/l10n/et_EE.js @@ -37,8 +37,6 @@ OC.L10N.register( "Removed public link" : "Avalik link on eemaldatud", "Public link expired" : "Avalik link aegus", "Shares" : "Jagamised", - "Accept" : "Nõustu", - "Decline" : "Lükka tagasi", "This share is password-protected" : "See jagamine on parooliga kaitstud", "The password is wrong. Try again." : "Parool on vale. Proovi uuesti.", "Password" : "Parool", diff --git a/apps/files_sharing/l10n/et_EE.json b/apps/files_sharing/l10n/et_EE.json index fc46f9dc0b8..b782953c83e 100644 --- a/apps/files_sharing/l10n/et_EE.json +++ b/apps/files_sharing/l10n/et_EE.json @@ -35,8 +35,6 @@ "Removed public link" : "Avalik link on eemaldatud", "Public link expired" : "Avalik link aegus", "Shares" : "Jagamised", - "Accept" : "Nõustu", - "Decline" : "Lükka tagasi", "This share is password-protected" : "See jagamine on parooliga kaitstud", "The password is wrong. Try again." : "Parool on vale. Proovi uuesti.", "Password" : "Parool", diff --git a/apps/files_sharing/l10n/fa.js b/apps/files_sharing/l10n/fa.js index 45b0343d6df..0f95c0dd3c5 100644 --- a/apps/files_sharing/l10n/fa.js +++ b/apps/files_sharing/l10n/fa.js @@ -28,7 +28,6 @@ OC.L10N.register( "You shared %1$s via link" : "شما %1$s را توسط پیوند به اشتراک گذاشتید", "%2$s shared %1$s with you" : "%2$s مورد %1$s را با شما به اشتراک گذاشت", "Shares" : "موارد به اشتراک گذاشته", - "Accept" : "قبول", "This share is password-protected" : "این اشتراک توسط رمز عبور محافظت می شود", "The password is wrong. Try again." : "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" : "گذرواژه", diff --git a/apps/files_sharing/l10n/fa.json b/apps/files_sharing/l10n/fa.json index ca60b238ba7..1684b198657 100644 --- a/apps/files_sharing/l10n/fa.json +++ b/apps/files_sharing/l10n/fa.json @@ -26,7 +26,6 @@ "You shared %1$s via link" : "شما %1$s را توسط پیوند به اشتراک گذاشتید", "%2$s shared %1$s with you" : "%2$s مورد %1$s را با شما به اشتراک گذاشت", "Shares" : "موارد به اشتراک گذاشته", - "Accept" : "قبول", "This share is password-protected" : "این اشتراک توسط رمز عبور محافظت می شود", "The password is wrong. Try again." : "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" : "گذرواژه", diff --git a/apps/files_sharing/l10n/fi_FI.js b/apps/files_sharing/l10n/fi_FI.js index 0a5a4d59110..97f34224b10 100644 --- a/apps/files_sharing/l10n/fi_FI.js +++ b/apps/files_sharing/l10n/fi_FI.js @@ -9,16 +9,22 @@ OC.L10N.register( "Storage not valid" : "Tallennustila ei ole kelvollinen", "Couldn't add remote share" : "Etäjaon liittäminen epäonnistui", "Share API is disabled" : "Jakamisrajapinta on poistettu käytöstä", + "Wrong share ID, share doesn't exist" : "Väärä jakotunniste, jakoa ei ole olemassa", "Could not delete share" : "Jaon poistaminen ei onnistunut", + "Please specify a file or folder path" : "Määritä tiedoston tai kansion polku", "Wrong path, file/folder doesn't exist" : "Väärä polku, tiedostoa tai kansiota ei ole olemassa", "Please specify a valid user" : "Määritä kelvollinen käyttäjä", "Group sharing is disabled by the administrator" : "Ylläpitäjä on estänyt ryhmäjakamisen", "Please specify a valid group" : "Määritä kelvollinen ryhmä", "Public link sharing is disabled by the administrator" : "Ylläpitäjä on estänyt julkisen linkin jakamisen", + "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päiväys, päivämäärän muodon tulee olla YYYY-MM-DD", + "Not a directory" : "Ei hakemisto", + "Could not lock path" : "Polun lukitseminen ei onnistunut", + "Can't change permissions for public share links" : "Julkisten jakolinkkien käyttöoikeuksia ei voi muuttaa", + "Cannot increase permissions" : "Oikeuksien lisääminen ei onnistu", "Shared with you" : "Jaettu kanssasi", "Shared with others" : "Jaettu muiden kanssa", "Shared by link" : "Jaettu linkin kautta", - "Federated sharing" : "Federoitu jakaminen", "Nothing shared with you yet" : "Kanssasi ei ole vielä jaettu mitään", "Files and folders others share with you will show up here" : "Kanssasi jaetut tiedostot ja kansiot näkyvät täällä", "Nothing shared yet" : "Ei mitään jaettua", @@ -66,9 +72,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Kohteen %2$s julkinen linkki vanhentui", "Shared by %2$s" : "Jakanut %2$s", "Shares" : "Jaot", - "You received \"/%2$s\" as a remote share from %1$s" : "Vastaanotit kohteen \"/%2$s\" etäjakona käyttäjältä %1$s", - "Accept" : "Hyväksy", - "Decline" : "Kieltäydy", "This share is password-protected" : "Tämä jako on suojattu salasanalla", "The password is wrong. Try again." : "Väärä salasana. Yritä uudelleen.", "Password" : "Salasana", diff --git a/apps/files_sharing/l10n/fi_FI.json b/apps/files_sharing/l10n/fi_FI.json index bed64329317..9ac22995784 100644 --- a/apps/files_sharing/l10n/fi_FI.json +++ b/apps/files_sharing/l10n/fi_FI.json @@ -7,16 +7,22 @@ "Storage not valid" : "Tallennustila ei ole kelvollinen", "Couldn't add remote share" : "Etäjaon liittäminen epäonnistui", "Share API is disabled" : "Jakamisrajapinta on poistettu käytöstä", + "Wrong share ID, share doesn't exist" : "Väärä jakotunniste, jakoa ei ole olemassa", "Could not delete share" : "Jaon poistaminen ei onnistunut", + "Please specify a file or folder path" : "Määritä tiedoston tai kansion polku", "Wrong path, file/folder doesn't exist" : "Väärä polku, tiedostoa tai kansiota ei ole olemassa", "Please specify a valid user" : "Määritä kelvollinen käyttäjä", "Group sharing is disabled by the administrator" : "Ylläpitäjä on estänyt ryhmäjakamisen", "Please specify a valid group" : "Määritä kelvollinen ryhmä", "Public link sharing is disabled by the administrator" : "Ylläpitäjä on estänyt julkisen linkin jakamisen", + "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päiväys, päivämäärän muodon tulee olla YYYY-MM-DD", + "Not a directory" : "Ei hakemisto", + "Could not lock path" : "Polun lukitseminen ei onnistunut", + "Can't change permissions for public share links" : "Julkisten jakolinkkien käyttöoikeuksia ei voi muuttaa", + "Cannot increase permissions" : "Oikeuksien lisääminen ei onnistu", "Shared with you" : "Jaettu kanssasi", "Shared with others" : "Jaettu muiden kanssa", "Shared by link" : "Jaettu linkin kautta", - "Federated sharing" : "Federoitu jakaminen", "Nothing shared with you yet" : "Kanssasi ei ole vielä jaettu mitään", "Files and folders others share with you will show up here" : "Kanssasi jaetut tiedostot ja kansiot näkyvät täällä", "Nothing shared yet" : "Ei mitään jaettua", @@ -64,9 +70,6 @@ "Public link of %2$s expired" : "Kohteen %2$s julkinen linkki vanhentui", "Shared by %2$s" : "Jakanut %2$s", "Shares" : "Jaot", - "You received \"/%2$s\" as a remote share from %1$s" : "Vastaanotit kohteen \"/%2$s\" etäjakona käyttäjältä %1$s", - "Accept" : "Hyväksy", - "Decline" : "Kieltäydy", "This share is password-protected" : "Tämä jako on suojattu salasanalla", "The password is wrong. Try again." : "Väärä salasana. Yritä uudelleen.", "Password" : "Salasana", diff --git a/apps/files_sharing/l10n/fr.js b/apps/files_sharing/l10n/fr.js index 7fdf08c326d..5d5e5a53388 100644 --- a/apps/files_sharing/l10n/fr.js +++ b/apps/files_sharing/l10n/fr.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Partagés avec vous", "Shared with others" : "Partagés avec d'autres", "Shared by link" : "Partagés par lien", - "Federated sharing" : "Federated sharing", "Nothing shared with you yet" : "Aucun fichier n'est partagé avec vous pour l'instant", "Files and folders others share with you will show up here" : "Les fichiers et dossiers partagés avec vous apparaîtront ici", "Nothing shared yet" : "Rien n'est partagé pour l'instant", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Le lien public de %2$s a expiré", "Shared by %2$s" : "Partagé par %2$s", "Shares" : "Partages", - "You received \"/%2$s\" as a remote share from %1$s" : "L'utilisateur %1$s a partagé la ressource distante %2$s avec vous", - "Accept" : "Accepter", - "Decline" : "Refuser", "This share is password-protected" : "Ce partage est protégé par un mot de passe", "The password is wrong. Try again." : "Le mot de passe est incorrect. Veuillez réessayer.", "Password" : "Mot de passe", diff --git a/apps/files_sharing/l10n/fr.json b/apps/files_sharing/l10n/fr.json index 5bbf1dbacac..6f5f063fba4 100644 --- a/apps/files_sharing/l10n/fr.json +++ b/apps/files_sharing/l10n/fr.json @@ -28,7 +28,6 @@ "Shared with you" : "Partagés avec vous", "Shared with others" : "Partagés avec d'autres", "Shared by link" : "Partagés par lien", - "Federated sharing" : "Federated sharing", "Nothing shared with you yet" : "Aucun fichier n'est partagé avec vous pour l'instant", "Files and folders others share with you will show up here" : "Les fichiers et dossiers partagés avec vous apparaîtront ici", "Nothing shared yet" : "Rien n'est partagé pour l'instant", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Le lien public de %2$s a expiré", "Shared by %2$s" : "Partagé par %2$s", "Shares" : "Partages", - "You received \"/%2$s\" as a remote share from %1$s" : "L'utilisateur %1$s a partagé la ressource distante %2$s avec vous", - "Accept" : "Accepter", - "Decline" : "Refuser", "This share is password-protected" : "Ce partage est protégé par un mot de passe", "The password is wrong. Try again." : "Le mot de passe est incorrect. Veuillez réessayer.", "Password" : "Mot de passe", diff --git a/apps/files_sharing/l10n/gl.js b/apps/files_sharing/l10n/gl.js index 2430b2555f6..b5c009982a8 100644 --- a/apps/files_sharing/l10n/gl.js +++ b/apps/files_sharing/l10n/gl.js @@ -41,7 +41,6 @@ OC.L10N.register( "You shared %1$s via link" : "Vostede compartiu %1$s mediante ligazón", "%2$s shared %1$s with you" : "%2$s compartiu %1$s con vostede", "Shares" : "Comparticións", - "Accept" : "Aceptar", "This share is password-protected" : "Esta compartición está protexida con contrasinal", "The password is wrong. Try again." : "O contrasinal é incorrecto. Ténteo de novo.", "Password" : "Contrasinal", diff --git a/apps/files_sharing/l10n/gl.json b/apps/files_sharing/l10n/gl.json index fc8b8b8f6f7..ccfa1686cad 100644 --- a/apps/files_sharing/l10n/gl.json +++ b/apps/files_sharing/l10n/gl.json @@ -39,7 +39,6 @@ "You shared %1$s via link" : "Vostede compartiu %1$s mediante ligazón", "%2$s shared %1$s with you" : "%2$s compartiu %1$s con vostede", "Shares" : "Comparticións", - "Accept" : "Aceptar", "This share is password-protected" : "Esta compartición está protexida con contrasinal", "The password is wrong. Try again." : "O contrasinal é incorrecto. Ténteo de novo.", "Password" : "Contrasinal", diff --git a/apps/files_sharing/l10n/he.js b/apps/files_sharing/l10n/he.js index 2b4d4966254..32fe49005a1 100644 --- a/apps/files_sharing/l10n/he.js +++ b/apps/files_sharing/l10n/he.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "שיתף/שיתפה אתך", "Shared with others" : "משותף עם אחרים", "Shared by link" : "משותף עם קישור", - "Federated sharing" : "שיתוף מאוגד", "Nothing shared with you yet" : "עדיין לא שיתפו אתך דבר", "Files and folders others share with you will show up here" : "קבצים ותיקיות שאחרים שיתפו אתך יוצגו כאן", "Nothing shared yet" : "עדיין לא שותף דבר", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "קישור ציבורי של %2$s פג תוקף", "Shared by %2$s" : "שיתף/שיתפה על ידי %2$s", "Shares" : "שיתופים", - "You received \"/%2$s\" as a remote share from %1$s" : "קבלת \"/%2$s\" כשיתוף חיצוני מאת %1$s", - "Accept" : "אישור", - "Decline" : "סירוב", "This share is password-protected" : "שיתוף זה מוגן סיסמא", "The password is wrong. Try again." : "הסיסמא שגויה. יש לנסות שנית.", "Password" : "סיסמא", diff --git a/apps/files_sharing/l10n/he.json b/apps/files_sharing/l10n/he.json index 411bebd4d01..4aa639d8e50 100644 --- a/apps/files_sharing/l10n/he.json +++ b/apps/files_sharing/l10n/he.json @@ -9,7 +9,6 @@ "Shared with you" : "שיתף/שיתפה אתך", "Shared with others" : "משותף עם אחרים", "Shared by link" : "משותף עם קישור", - "Federated sharing" : "שיתוף מאוגד", "Nothing shared with you yet" : "עדיין לא שיתפו אתך דבר", "Files and folders others share with you will show up here" : "קבצים ותיקיות שאחרים שיתפו אתך יוצגו כאן", "Nothing shared yet" : "עדיין לא שותף דבר", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "קישור ציבורי של %2$s פג תוקף", "Shared by %2$s" : "שיתף/שיתפה על ידי %2$s", "Shares" : "שיתופים", - "You received \"/%2$s\" as a remote share from %1$s" : "קבלת \"/%2$s\" כשיתוף חיצוני מאת %1$s", - "Accept" : "אישור", - "Decline" : "סירוב", "This share is password-protected" : "שיתוף זה מוגן סיסמא", "The password is wrong. Try again." : "הסיסמא שגויה. יש לנסות שנית.", "Password" : "סיסמא", diff --git a/apps/files_sharing/l10n/hu_HU.js b/apps/files_sharing/l10n/hu_HU.js index 7febea97b6e..873b53ce5ec 100644 --- a/apps/files_sharing/l10n/hu_HU.js +++ b/apps/files_sharing/l10n/hu_HU.js @@ -53,8 +53,6 @@ OC.L10N.register( "Shared via public link" : "Megosztva publikus hivatkozással", "Shared by %2$s" : "Megosztó: %2$s", "Shares" : "Megosztások", - "Accept" : "Elfogadás", - "Decline" : "Elutasítás", "This share is password-protected" : "Ez egy jelszóval védett megosztás", "The password is wrong. Try again." : "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" : "Jelszó", diff --git a/apps/files_sharing/l10n/hu_HU.json b/apps/files_sharing/l10n/hu_HU.json index 9fb55800e75..2e60829a09e 100644 --- a/apps/files_sharing/l10n/hu_HU.json +++ b/apps/files_sharing/l10n/hu_HU.json @@ -51,8 +51,6 @@ "Shared via public link" : "Megosztva publikus hivatkozással", "Shared by %2$s" : "Megosztó: %2$s", "Shares" : "Megosztások", - "Accept" : "Elfogadás", - "Decline" : "Elutasítás", "This share is password-protected" : "Ez egy jelszóval védett megosztás", "The password is wrong. Try again." : "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" : "Jelszó", diff --git a/apps/files_sharing/l10n/id.js b/apps/files_sharing/l10n/id.js index 5c182bd1a8a..2a8271cfd69 100644 --- a/apps/files_sharing/l10n/id.js +++ b/apps/files_sharing/l10n/id.js @@ -52,8 +52,6 @@ OC.L10N.register( "Shared via public link" : "Dibagikan via tautan publik", "Shared by %2$s" : "Dibagikan oleh %2$s", "Shares" : "Dibagikan", - "Accept" : "Terima", - "Decline" : "Tolak", "This share is password-protected" : "Berbagi ini dilindungi sandi", "The password is wrong. Try again." : "Sandi salah. Coba lagi", "Password" : "Sandi", diff --git a/apps/files_sharing/l10n/id.json b/apps/files_sharing/l10n/id.json index 739719b460e..ec1b2357f42 100644 --- a/apps/files_sharing/l10n/id.json +++ b/apps/files_sharing/l10n/id.json @@ -50,8 +50,6 @@ "Shared via public link" : "Dibagikan via tautan publik", "Shared by %2$s" : "Dibagikan oleh %2$s", "Shares" : "Dibagikan", - "Accept" : "Terima", - "Decline" : "Tolak", "This share is password-protected" : "Berbagi ini dilindungi sandi", "The password is wrong. Try again." : "Sandi salah. Coba lagi", "Password" : "Sandi", diff --git a/apps/files_sharing/l10n/is.js b/apps/files_sharing/l10n/is.js index b4bf1168ef1..0526391df4d 100644 --- a/apps/files_sharing/l10n/is.js +++ b/apps/files_sharing/l10n/is.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "Deilt með þér", "Shared with others" : "Deilt með öðrum", "Shared by link" : "Deilt með tengli", - "Federated sharing" : "Deiling milli þjóna", "Nothing shared with you yet" : "Engu deilt með þér ennþá", "Files and folders others share with you will show up here" : "Skrár og möppur sem aðrir deila með þér birtast hér", "Nothing shared yet" : "Engu deilt ennþá", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Almenningstengill %2$s er útrunninn", "Shared by %2$s" : "Deilt af %2$s", "Shares" : "Sameignir", - "You received \"/%2$s\" as a remote share from %1$s" : "Þú tókst við \"/%2$s\" sem fjartengdri sameign frá %1$s", - "Accept" : "Samþykkja", - "Decline" : "Hafna", "This share is password-protected" : "Þessi sameign er varin með lykilorði", "The password is wrong. Try again." : "Lykilorðið er rangt. Reyndu aftur.", "Password" : "Lykilorð", diff --git a/apps/files_sharing/l10n/is.json b/apps/files_sharing/l10n/is.json index e2b10c4de87..0e057d7a727 100644 --- a/apps/files_sharing/l10n/is.json +++ b/apps/files_sharing/l10n/is.json @@ -9,7 +9,6 @@ "Shared with you" : "Deilt með þér", "Shared with others" : "Deilt með öðrum", "Shared by link" : "Deilt með tengli", - "Federated sharing" : "Deiling milli þjóna", "Nothing shared with you yet" : "Engu deilt með þér ennþá", "Files and folders others share with you will show up here" : "Skrár og möppur sem aðrir deila með þér birtast hér", "Nothing shared yet" : "Engu deilt ennþá", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "Almenningstengill %2$s er útrunninn", "Shared by %2$s" : "Deilt af %2$s", "Shares" : "Sameignir", - "You received \"/%2$s\" as a remote share from %1$s" : "Þú tókst við \"/%2$s\" sem fjartengdri sameign frá %1$s", - "Accept" : "Samþykkja", - "Decline" : "Hafna", "This share is password-protected" : "Þessi sameign er varin með lykilorði", "The password is wrong. Try again." : "Lykilorðið er rangt. Reyndu aftur.", "Password" : "Lykilorð", diff --git a/apps/files_sharing/l10n/it.js b/apps/files_sharing/l10n/it.js index f56e0c9bcc8..b3da7169861 100644 --- a/apps/files_sharing/l10n/it.js +++ b/apps/files_sharing/l10n/it.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Condivisi con te", "Shared with others" : "Condivisi con altri", "Shared by link" : "Condivisi tramite collegamento", - "Federated sharing" : "Condivisione federata", "Nothing shared with you yet" : "Non è stato condiviso ancora niente con te", "Files and folders others share with you will show up here" : "I file e le cartelle che altri condividono con te saranno mostrati qui", "Nothing shared yet" : "Ancora nessuna condivisione", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "il collegamento pubblico di %2$s è scaduto", "Shared by %2$s" : "Condivisa da %2$s", "Shares" : "Condivisioni", - "You received \"/%2$s\" as a remote share from %1$s" : "Hai ricevuto \"/%2$s\" come condivisione remota da %1$s", - "Accept" : "Accetta", - "Decline" : "Rifiuta", "This share is password-protected" : "Questa condivisione è protetta da password", "The password is wrong. Try again." : "La password è errata. Prova ancora.", "Password" : "Password", diff --git a/apps/files_sharing/l10n/it.json b/apps/files_sharing/l10n/it.json index 9eec1cf368c..eeb4f845133 100644 --- a/apps/files_sharing/l10n/it.json +++ b/apps/files_sharing/l10n/it.json @@ -28,7 +28,6 @@ "Shared with you" : "Condivisi con te", "Shared with others" : "Condivisi con altri", "Shared by link" : "Condivisi tramite collegamento", - "Federated sharing" : "Condivisione federata", "Nothing shared with you yet" : "Non è stato condiviso ancora niente con te", "Files and folders others share with you will show up here" : "I file e le cartelle che altri condividono con te saranno mostrati qui", "Nothing shared yet" : "Ancora nessuna condivisione", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "il collegamento pubblico di %2$s è scaduto", "Shared by %2$s" : "Condivisa da %2$s", "Shares" : "Condivisioni", - "You received \"/%2$s\" as a remote share from %1$s" : "Hai ricevuto \"/%2$s\" come condivisione remota da %1$s", - "Accept" : "Accetta", - "Decline" : "Rifiuta", "This share is password-protected" : "Questa condivisione è protetta da password", "The password is wrong. Try again." : "La password è errata. Prova ancora.", "Password" : "Password", diff --git a/apps/files_sharing/l10n/ja.js b/apps/files_sharing/l10n/ja.js index a7f7dcda890..6e7f688fece 100644 --- a/apps/files_sharing/l10n/ja.js +++ b/apps/files_sharing/l10n/ja.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "他ユーザーがあなたと共有中", "Shared with others" : "他ユーザーと共有中", "Shared by link" : "URLリンクで共有中", - "Federated sharing" : "連携共有", "Nothing shared with you yet" : "あなたと共有しているファイルはありません。", "Files and folders others share with you will show up here" : "他の人から共有されたファイルやフォルダーは、ここに表示されます。", "Nothing shared yet" : "まだ何も共有されていません", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "公開リンク%2$sの期限が切れています", "Shared by %2$s" : "%2$s が共有", "Shares" : "共有", - "You received \"/%2$s\" as a remote share from %1$s" : "%1$s からリモート共有として \"/%2$s\" を受け取りました。", - "Accept" : "承諾", - "Decline" : "拒否《はてなキーワード》", "This share is password-protected" : "この共有はパスワードで保護されています", "The password is wrong. Try again." : "パスワードが間違っています。再試行してください。", "Password" : "パスワード", diff --git a/apps/files_sharing/l10n/ja.json b/apps/files_sharing/l10n/ja.json index bed19ba3db1..8a9961899f0 100644 --- a/apps/files_sharing/l10n/ja.json +++ b/apps/files_sharing/l10n/ja.json @@ -28,7 +28,6 @@ "Shared with you" : "他ユーザーがあなたと共有中", "Shared with others" : "他ユーザーと共有中", "Shared by link" : "URLリンクで共有中", - "Federated sharing" : "連携共有", "Nothing shared with you yet" : "あなたと共有しているファイルはありません。", "Files and folders others share with you will show up here" : "他の人から共有されたファイルやフォルダーは、ここに表示されます。", "Nothing shared yet" : "まだ何も共有されていません", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "公開リンク%2$sの期限が切れています", "Shared by %2$s" : "%2$s が共有", "Shares" : "共有", - "You received \"/%2$s\" as a remote share from %1$s" : "%1$s からリモート共有として \"/%2$s\" を受け取りました。", - "Accept" : "承諾", - "Decline" : "拒否《はてなキーワード》", "This share is password-protected" : "この共有はパスワードで保護されています", "The password is wrong. Try again." : "パスワードが間違っています。再試行してください。", "Password" : "パスワード", diff --git a/apps/files_sharing/l10n/ko.js b/apps/files_sharing/l10n/ko.js index a9c6b58011e..944b8f461b2 100644 --- a/apps/files_sharing/l10n/ko.js +++ b/apps/files_sharing/l10n/ko.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "나와 공유됨", "Shared with others" : "다른 사람과 공유됨", "Shared by link" : "링크로 공유됨", - "Federated sharing" : "연합 공유", "Nothing shared with you yet" : "나와 공유된 항목 없음", "Files and folders others share with you will show up here" : "다른 사람이 공유한 파일과 폴더가 여기에 나타납니다", "Nothing shared yet" : "공유된 항목 없음", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "%2$s 님의 공개 링크 만료됨", "Shared by %2$s" : "%2$s 님이 공유함", "Shares" : "공유", - "You received \"/%2$s\" as a remote share from %1$s" : "%1$s에서 원격 공유로 \"/%2$s\"을(를) 받음", - "Accept" : "수락", - "Decline" : "거절", "This share is password-protected" : "이 공유는 암호로 보호되어 있습니다", "The password is wrong. Try again." : "암호가 잘못되었습니다. 다시 입력해 주십시오.", "Password" : "암호", diff --git a/apps/files_sharing/l10n/ko.json b/apps/files_sharing/l10n/ko.json index 326ea68b1b3..abdbedcbf12 100644 --- a/apps/files_sharing/l10n/ko.json +++ b/apps/files_sharing/l10n/ko.json @@ -9,7 +9,6 @@ "Shared with you" : "나와 공유됨", "Shared with others" : "다른 사람과 공유됨", "Shared by link" : "링크로 공유됨", - "Federated sharing" : "연합 공유", "Nothing shared with you yet" : "나와 공유된 항목 없음", "Files and folders others share with you will show up here" : "다른 사람이 공유한 파일과 폴더가 여기에 나타납니다", "Nothing shared yet" : "공유된 항목 없음", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "%2$s 님의 공개 링크 만료됨", "Shared by %2$s" : "%2$s 님이 공유함", "Shares" : "공유", - "You received \"/%2$s\" as a remote share from %1$s" : "%1$s에서 원격 공유로 \"/%2$s\"을(를) 받음", - "Accept" : "수락", - "Decline" : "거절", "This share is password-protected" : "이 공유는 암호로 보호되어 있습니다", "The password is wrong. Try again." : "암호가 잘못되었습니다. 다시 입력해 주십시오.", "Password" : "암호", diff --git a/apps/files_sharing/l10n/lt_LT.js b/apps/files_sharing/l10n/lt_LT.js index 3e46d74f16d..2a45838f65b 100644 --- a/apps/files_sharing/l10n/lt_LT.js +++ b/apps/files_sharing/l10n/lt_LT.js @@ -53,8 +53,6 @@ OC.L10N.register( "Shared via public link" : "Pasidalinta vieša nuoroda", "Shared by %2$s" : "Pasidalino %2$s", "Shares" : "Dalijimaisi", - "Accept" : "Priimti", - "Decline" : "Atmesti", "This share is password-protected" : "Turinys apsaugotas slaptažodžiu", "The password is wrong. Try again." : "Netinka slaptažodis: Bandykite dar kartą.", "Password" : "Slaptažodis", diff --git a/apps/files_sharing/l10n/lt_LT.json b/apps/files_sharing/l10n/lt_LT.json index 03cfb47634b..95cc0cf965b 100644 --- a/apps/files_sharing/l10n/lt_LT.json +++ b/apps/files_sharing/l10n/lt_LT.json @@ -51,8 +51,6 @@ "Shared via public link" : "Pasidalinta vieša nuoroda", "Shared by %2$s" : "Pasidalino %2$s", "Shares" : "Dalijimaisi", - "Accept" : "Priimti", - "Decline" : "Atmesti", "This share is password-protected" : "Turinys apsaugotas slaptažodžiu", "The password is wrong. Try again." : "Netinka slaptažodis: Bandykite dar kartą.", "Password" : "Slaptažodis", diff --git a/apps/files_sharing/l10n/mk.js b/apps/files_sharing/l10n/mk.js index cbae94a41ae..2ba042e7d91 100644 --- a/apps/files_sharing/l10n/mk.js +++ b/apps/files_sharing/l10n/mk.js @@ -33,8 +33,6 @@ OC.L10N.register( "Shared via public link" : "Споделено со јавна врска/линк", "Shared by %2$s" : "Споделено од %2$s", "Shares" : "Споделувања", - "Accept" : "Прифати", - "Decline" : "Одбиј", "This share is password-protected" : "Ова споделување е заштитено со лозинка", "The password is wrong. Try again." : "Лозинката е грешна. Обиди се повторно.", "Password" : "Лозинка", diff --git a/apps/files_sharing/l10n/mk.json b/apps/files_sharing/l10n/mk.json index 3a0a353dc4c..9467ac8d5dc 100644 --- a/apps/files_sharing/l10n/mk.json +++ b/apps/files_sharing/l10n/mk.json @@ -31,8 +31,6 @@ "Shared via public link" : "Споделено со јавна врска/линк", "Shared by %2$s" : "Споделено од %2$s", "Shares" : "Споделувања", - "Accept" : "Прифати", - "Decline" : "Одбиј", "This share is password-protected" : "Ова споделување е заштитено со лозинка", "The password is wrong. Try again." : "Лозинката е грешна. Обиди се повторно.", "Password" : "Лозинка", diff --git a/apps/files_sharing/l10n/nb_NO.js b/apps/files_sharing/l10n/nb_NO.js index 402677e1028..6b4fe623dca 100644 --- a/apps/files_sharing/l10n/nb_NO.js +++ b/apps/files_sharing/l10n/nb_NO.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "Delt med deg", "Shared with others" : "Delt med andre", "Shared by link" : "Delt med lenke", - "Federated sharing" : "Sammenknyttet deling", "Nothing shared with you yet" : "Ingenting er delt med deg ennå", "Files and folders others share with you will show up here" : "Filer og mapper som andre deler med deg vil bli vist her", "Nothing shared yet" : "Ingenting er delt ennå", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Offentlig lenke til %2$s er utløpt", "Shared by %2$s" : "Delt av %2$s", "Shares" : "Delinger", - "You received \"/%2$s\" as a remote share from %1$s" : "Du mottok \"/%2$s\" som en ekstern deling fra %1$s", - "Accept" : "Aksepter", - "Decline" : "Avslå", "This share is password-protected" : "Denne delingen er passordbeskyttet", "The password is wrong. Try again." : "Passordet er feil. Prøv på nytt.", "Password" : "Passord", diff --git a/apps/files_sharing/l10n/nb_NO.json b/apps/files_sharing/l10n/nb_NO.json index f6234318255..01bb080bb9e 100644 --- a/apps/files_sharing/l10n/nb_NO.json +++ b/apps/files_sharing/l10n/nb_NO.json @@ -9,7 +9,6 @@ "Shared with you" : "Delt med deg", "Shared with others" : "Delt med andre", "Shared by link" : "Delt med lenke", - "Federated sharing" : "Sammenknyttet deling", "Nothing shared with you yet" : "Ingenting er delt med deg ennå", "Files and folders others share with you will show up here" : "Filer og mapper som andre deler med deg vil bli vist her", "Nothing shared yet" : "Ingenting er delt ennå", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "Offentlig lenke til %2$s er utløpt", "Shared by %2$s" : "Delt av %2$s", "Shares" : "Delinger", - "You received \"/%2$s\" as a remote share from %1$s" : "Du mottok \"/%2$s\" som en ekstern deling fra %1$s", - "Accept" : "Aksepter", - "Decline" : "Avslå", "This share is password-protected" : "Denne delingen er passordbeskyttet", "The password is wrong. Try again." : "Passordet er feil. Prøv på nytt.", "Password" : "Passord", diff --git a/apps/files_sharing/l10n/nl.js b/apps/files_sharing/l10n/nl.js index 34145262f74..738ef8dee63 100644 --- a/apps/files_sharing/l10n/nl.js +++ b/apps/files_sharing/l10n/nl.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Gedeeld met u", "Shared with others" : "Gedeeld door u", "Shared by link" : "Gedeeld via een link", - "Federated sharing" : "Federated sharing", "Nothing shared with you yet" : "Nog niets met u gedeeld", "Files and folders others share with you will show up here" : "Bestanden en mappen die anderen met u delen, worden hier getoond", "Nothing shared yet" : "Nog niets gedeeld", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Openbare link van %2$s is verlopen", "Shared by %2$s" : "Gedeeld door %2$s", "Shares" : "Gedeeld", - "You received \"/%2$s\" as a remote share from %1$s" : "U ontving \"/%2$s\" als een externe share van %1$s", - "Accept" : "Accepteren", - "Decline" : "Afwijzen", "This share is password-protected" : "Deze share is met een wachtwoord beveiligd", "The password is wrong. Try again." : "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" : "Wachtwoord", diff --git a/apps/files_sharing/l10n/nl.json b/apps/files_sharing/l10n/nl.json index 5b567150c8f..7b0d2f0153b 100644 --- a/apps/files_sharing/l10n/nl.json +++ b/apps/files_sharing/l10n/nl.json @@ -28,7 +28,6 @@ "Shared with you" : "Gedeeld met u", "Shared with others" : "Gedeeld door u", "Shared by link" : "Gedeeld via een link", - "Federated sharing" : "Federated sharing", "Nothing shared with you yet" : "Nog niets met u gedeeld", "Files and folders others share with you will show up here" : "Bestanden en mappen die anderen met u delen, worden hier getoond", "Nothing shared yet" : "Nog niets gedeeld", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Openbare link van %2$s is verlopen", "Shared by %2$s" : "Gedeeld door %2$s", "Shares" : "Gedeeld", - "You received \"/%2$s\" as a remote share from %1$s" : "U ontving \"/%2$s\" als een externe share van %1$s", - "Accept" : "Accepteren", - "Decline" : "Afwijzen", "This share is password-protected" : "Deze share is met een wachtwoord beveiligd", "The password is wrong. Try again." : "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" : "Wachtwoord", diff --git a/apps/files_sharing/l10n/oc.js b/apps/files_sharing/l10n/oc.js index f5a9096df32..50ca51ca1b1 100644 --- a/apps/files_sharing/l10n/oc.js +++ b/apps/files_sharing/l10n/oc.js @@ -52,8 +52,6 @@ OC.L10N.register( "Shared via public link" : "Partejat per ligam public", "Shared by %2$s" : "Partejat per %2$s", "Shares" : "Partiments", - "Accept" : "Acceptar", - "Decline" : "Refusar", "This share is password-protected" : "Aqueste partiment es protegit per un senhal", "The password is wrong. Try again." : "Lo senhal es incorrècte. Ensajatz tornamai.", "Password" : "Senhal", diff --git a/apps/files_sharing/l10n/oc.json b/apps/files_sharing/l10n/oc.json index 658219ca2b0..a5280effab3 100644 --- a/apps/files_sharing/l10n/oc.json +++ b/apps/files_sharing/l10n/oc.json @@ -50,8 +50,6 @@ "Shared via public link" : "Partejat per ligam public", "Shared by %2$s" : "Partejat per %2$s", "Shares" : "Partiments", - "Accept" : "Acceptar", - "Decline" : "Refusar", "This share is password-protected" : "Aqueste partiment es protegit per un senhal", "The password is wrong. Try again." : "Lo senhal es incorrècte. Ensajatz tornamai.", "Password" : "Senhal", diff --git a/apps/files_sharing/l10n/pl.js b/apps/files_sharing/l10n/pl.js index d8e7a105618..a703ef087ee 100644 --- a/apps/files_sharing/l10n/pl.js +++ b/apps/files_sharing/l10n/pl.js @@ -31,7 +31,6 @@ OC.L10N.register( "%2$s shared %1$s with you" : "%2$s współdzieli %1$s z Tobą", "%2$s removed the share for %1$s" : "%2$s usunął udział dla %1$s", "Shares" : "Udziały", - "Accept" : "Akceptuj", "This share is password-protected" : "Udział ten jest chroniony hasłem", "The password is wrong. Try again." : "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" : "Hasło", diff --git a/apps/files_sharing/l10n/pl.json b/apps/files_sharing/l10n/pl.json index 2026437ff75..62d6ef25b38 100644 --- a/apps/files_sharing/l10n/pl.json +++ b/apps/files_sharing/l10n/pl.json @@ -29,7 +29,6 @@ "%2$s shared %1$s with you" : "%2$s współdzieli %1$s z Tobą", "%2$s removed the share for %1$s" : "%2$s usunął udział dla %1$s", "Shares" : "Udziały", - "Accept" : "Akceptuj", "This share is password-protected" : "Udział ten jest chroniony hasłem", "The password is wrong. Try again." : "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" : "Hasło", diff --git a/apps/files_sharing/l10n/pt_BR.js b/apps/files_sharing/l10n/pt_BR.js index e6429bdb394..5796acb8508 100644 --- a/apps/files_sharing/l10n/pt_BR.js +++ b/apps/files_sharing/l10n/pt_BR.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Compartilhado com você", "Shared with others" : "Compartilhado com outros", "Shared by link" : "Compartilhado por link", - "Federated sharing" : "Compartilhamento associado", "Nothing shared with you yet" : "Nada compartilhado com você até agora", "Files and folders others share with you will show up here" : "Arquivos e pastas que outros compartilham com você são mostrados aqui", "Nothing shared yet" : "Nada compartilhado até agora", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "O link público de %2$s expirou", "Shared by %2$s" : "Compartilhado por %2$s", "Shares" : "Compartilhamentos", - "You received \"/%2$s\" as a remote share from %1$s" : "Você recebeu \"/%2$s\" como um compartilhamento remoto de %1$s", - "Accept" : "Aceitar", - "Decline" : "Rejeitar", "This share is password-protected" : "Este compartilhamento esta protegido por senha", "The password is wrong. Try again." : "Senha incorreta. Tente novamente.", "Password" : "Senha", diff --git a/apps/files_sharing/l10n/pt_BR.json b/apps/files_sharing/l10n/pt_BR.json index 75e9d6e8318..8f34a67032b 100644 --- a/apps/files_sharing/l10n/pt_BR.json +++ b/apps/files_sharing/l10n/pt_BR.json @@ -28,7 +28,6 @@ "Shared with you" : "Compartilhado com você", "Shared with others" : "Compartilhado com outros", "Shared by link" : "Compartilhado por link", - "Federated sharing" : "Compartilhamento associado", "Nothing shared with you yet" : "Nada compartilhado com você até agora", "Files and folders others share with you will show up here" : "Arquivos e pastas que outros compartilham com você são mostrados aqui", "Nothing shared yet" : "Nada compartilhado até agora", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "O link público de %2$s expirou", "Shared by %2$s" : "Compartilhado por %2$s", "Shares" : "Compartilhamentos", - "You received \"/%2$s\" as a remote share from %1$s" : "Você recebeu \"/%2$s\" como um compartilhamento remoto de %1$s", - "Accept" : "Aceitar", - "Decline" : "Rejeitar", "This share is password-protected" : "Este compartilhamento esta protegido por senha", "The password is wrong. Try again." : "Senha incorreta. Tente novamente.", "Password" : "Senha", diff --git a/apps/files_sharing/l10n/pt_PT.js b/apps/files_sharing/l10n/pt_PT.js index 611295f947a..4666490f745 100644 --- a/apps/files_sharing/l10n/pt_PT.js +++ b/apps/files_sharing/l10n/pt_PT.js @@ -15,7 +15,6 @@ OC.L10N.register( "Shared with you" : "Partilhado consigo ", "Shared with others" : "Partilhado com outros", "Shared by link" : "Partilhado pela hiperligação", - "Federated sharing" : "Partilha federada", "Nothing shared with you yet" : "Ainda não foi partilhado nada consigo", "Files and folders others share with you will show up here" : "Os ficheiros e pastas que os outros partilham consigo, serão mostradaos aqui", "Nothing shared yet" : "Ainda não foi partilhado nada", @@ -75,9 +74,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Link público de %2$s expirou", "Shared by %2$s" : "Partilhado por %2$s", "Shares" : "Partilhas", - "You received \"/%2$s\" as a remote share from %1$s" : "Recebeu \"/%2$s\" como uma partilha remota de %1$s", - "Accept" : "Aceitar", - "Decline" : "Recusar", "This share is password-protected" : "Esta partilha está protegida por senha", "The password is wrong. Try again." : "A senha está errada. Por favor, tente de novo.", "Password" : "Senha", diff --git a/apps/files_sharing/l10n/pt_PT.json b/apps/files_sharing/l10n/pt_PT.json index b817385e060..422a9240ab4 100644 --- a/apps/files_sharing/l10n/pt_PT.json +++ b/apps/files_sharing/l10n/pt_PT.json @@ -13,7 +13,6 @@ "Shared with you" : "Partilhado consigo ", "Shared with others" : "Partilhado com outros", "Shared by link" : "Partilhado pela hiperligação", - "Federated sharing" : "Partilha federada", "Nothing shared with you yet" : "Ainda não foi partilhado nada consigo", "Files and folders others share with you will show up here" : "Os ficheiros e pastas que os outros partilham consigo, serão mostradaos aqui", "Nothing shared yet" : "Ainda não foi partilhado nada", @@ -73,9 +72,6 @@ "Public link of %2$s expired" : "Link público de %2$s expirou", "Shared by %2$s" : "Partilhado por %2$s", "Shares" : "Partilhas", - "You received \"/%2$s\" as a remote share from %1$s" : "Recebeu \"/%2$s\" como uma partilha remota de %1$s", - "Accept" : "Aceitar", - "Decline" : "Recusar", "This share is password-protected" : "Esta partilha está protegida por senha", "The password is wrong. Try again." : "A senha está errada. Por favor, tente de novo.", "Password" : "Senha", diff --git a/apps/files_sharing/l10n/ru.js b/apps/files_sharing/l10n/ru.js index ab9dccd5ad5..4f9f1a171e7 100644 --- a/apps/files_sharing/l10n/ru.js +++ b/apps/files_sharing/l10n/ru.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "Поделились с вами", "Shared with others" : "Доступные для других", "Shared by link" : "Доступные по ссылке", - "Federated sharing" : "Общий доступ из объединенного общего хранилища", "Nothing shared with you yet" : "С вами пока ничем не поделились", "Files and folders others share with you will show up here" : "Здесь появятся файлы и каталоги, которыми с вами поделятся", "Nothing shared yet" : "Пока ничего не опубликовано", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Срок действия публичной ссылки к %2$s закончился", "Shared by %2$s" : "Поделился %2$s", "Shares" : "События обмена файлами", - "You received \"/%2$s\" as a remote share from %1$s" : "Вы получили доступ к \"/%2$s\" от пользователя %1$s", - "Accept" : "Принять", - "Decline" : "Отклонить", "This share is password-protected" : "Общий ресурс защищен паролем", "The password is wrong. Try again." : "Неверный пароль. Попробуйте еще раз.", "Password" : "Пароль", diff --git a/apps/files_sharing/l10n/ru.json b/apps/files_sharing/l10n/ru.json index 0e2464a98b2..530ced02dae 100644 --- a/apps/files_sharing/l10n/ru.json +++ b/apps/files_sharing/l10n/ru.json @@ -9,7 +9,6 @@ "Shared with you" : "Поделились с вами", "Shared with others" : "Доступные для других", "Shared by link" : "Доступные по ссылке", - "Federated sharing" : "Общий доступ из объединенного общего хранилища", "Nothing shared with you yet" : "С вами пока ничем не поделились", "Files and folders others share with you will show up here" : "Здесь появятся файлы и каталоги, которыми с вами поделятся", "Nothing shared yet" : "Пока ничего не опубликовано", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "Срок действия публичной ссылки к %2$s закончился", "Shared by %2$s" : "Поделился %2$s", "Shares" : "События обмена файлами", - "You received \"/%2$s\" as a remote share from %1$s" : "Вы получили доступ к \"/%2$s\" от пользователя %1$s", - "Accept" : "Принять", - "Decline" : "Отклонить", "This share is password-protected" : "Общий ресурс защищен паролем", "The password is wrong. Try again." : "Неверный пароль. Попробуйте еще раз.", "Password" : "Пароль", diff --git a/apps/files_sharing/l10n/sk_SK.js b/apps/files_sharing/l10n/sk_SK.js index 2dab005e2c2..541cbfca0bf 100644 --- a/apps/files_sharing/l10n/sk_SK.js +++ b/apps/files_sharing/l10n/sk_SK.js @@ -52,8 +52,6 @@ OC.L10N.register( "Shared via public link" : "Zdieľané prostredníctvom verejného odkazu", "Shared by %2$s" : "Zdieľané s %2$s", "Shares" : "Zdieľanie", - "Accept" : "Schváliť", - "Decline" : "Odmietnuť", "This share is password-protected" : "Toto zdieľanie je chránené heslom", "The password is wrong. Try again." : "Heslo je chybné. Skúste to znova.", "Password" : "Heslo", diff --git a/apps/files_sharing/l10n/sk_SK.json b/apps/files_sharing/l10n/sk_SK.json index 70e97f90c38..d53892acb30 100644 --- a/apps/files_sharing/l10n/sk_SK.json +++ b/apps/files_sharing/l10n/sk_SK.json @@ -50,8 +50,6 @@ "Shared via public link" : "Zdieľané prostredníctvom verejného odkazu", "Shared by %2$s" : "Zdieľané s %2$s", "Shares" : "Zdieľanie", - "Accept" : "Schváliť", - "Decline" : "Odmietnuť", "This share is password-protected" : "Toto zdieľanie je chránené heslom", "The password is wrong. Try again." : "Heslo je chybné. Skúste to znova.", "Password" : "Heslo", diff --git a/apps/files_sharing/l10n/sl.js b/apps/files_sharing/l10n/sl.js index 0b55cb1240b..dbeadace10c 100644 --- a/apps/files_sharing/l10n/sl.js +++ b/apps/files_sharing/l10n/sl.js @@ -28,7 +28,6 @@ OC.L10N.register( "Shared with you" : "V souporabi z vami", "Shared with others" : "V souporabi z drugimi", "Shared by link" : "V souporabi prek povezave", - "Federated sharing" : "Souporaba zveznega oblaka", "Nothing shared with you yet" : "Datotek drugih uporabnikov še ni v souporabi", "Files and folders others share with you will show up here" : "Datoteke in mape, katerih souporabo z vami omogočijo drugi, bodo zbrane na tem mestu.", "Nothing shared yet" : "Souporabe datotek še niste omogočili", @@ -70,8 +69,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Javna povezava %2$s je potekla", "Shared by %2$s" : "Souporabo je omogočil uporabnik %2$s", "Shares" : "Souporaba", - "Accept" : "Sprejmi", - "Decline" : "Zavrni", "This share is password-protected" : "To mesto je zaščiteno z geslom.", "The password is wrong. Try again." : "Geslo je napačno. Poskusite znova.", "Password" : "Geslo", diff --git a/apps/files_sharing/l10n/sl.json b/apps/files_sharing/l10n/sl.json index 947a9d609e5..b7b566530ed 100644 --- a/apps/files_sharing/l10n/sl.json +++ b/apps/files_sharing/l10n/sl.json @@ -26,7 +26,6 @@ "Shared with you" : "V souporabi z vami", "Shared with others" : "V souporabi z drugimi", "Shared by link" : "V souporabi prek povezave", - "Federated sharing" : "Souporaba zveznega oblaka", "Nothing shared with you yet" : "Datotek drugih uporabnikov še ni v souporabi", "Files and folders others share with you will show up here" : "Datoteke in mape, katerih souporabo z vami omogočijo drugi, bodo zbrane na tem mestu.", "Nothing shared yet" : "Souporabe datotek še niste omogočili", @@ -68,8 +67,6 @@ "Public link of %2$s expired" : "Javna povezava %2$s je potekla", "Shared by %2$s" : "Souporabo je omogočil uporabnik %2$s", "Shares" : "Souporaba", - "Accept" : "Sprejmi", - "Decline" : "Zavrni", "This share is password-protected" : "To mesto je zaščiteno z geslom.", "The password is wrong. Try again." : "Geslo je napačno. Poskusite znova.", "Password" : "Geslo", diff --git a/apps/files_sharing/l10n/sq.js b/apps/files_sharing/l10n/sq.js index c94c089917c..dba6bc0ee3e 100644 --- a/apps/files_sharing/l10n/sq.js +++ b/apps/files_sharing/l10n/sq.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "Të ndara me ju", "Shared with others" : "Të ndara me të tjerët", "Shared by link" : "Të ndara me lidhje", - "Federated sharing" : "Ndarje e federuar", "Nothing shared with you yet" : "Ende pa ndarë gjë me ju", "Files and folders others share with you will show up here" : "Këtu do të shfaqen kartelat dhe dosjet që të jerët ndajnë me ju", "Nothing shared yet" : "Ende pa ndarë gjë", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Lidhja publike e %2$s skadoi", "Shared by %2$s" : "U nda nga %2$s", "Shares" : "Ndarje", - "You received \"/%2$s\" as a remote share from %1$s" : "Ju erdhi \"/%2$s\" si ndarje e largët prej %1$s", - "Accept" : "Pranoje", - "Decline" : "Hidhe poshtë", "This share is password-protected" : "Kjo pjesë është e mbrojtur me fjalëkalim", "The password is wrong. Try again." : "Fjalëkalimi është i gabuar. Riprovoni.", "Password" : "Fjalëkalim", diff --git a/apps/files_sharing/l10n/sq.json b/apps/files_sharing/l10n/sq.json index f55d83f095a..ba213e82736 100644 --- a/apps/files_sharing/l10n/sq.json +++ b/apps/files_sharing/l10n/sq.json @@ -28,7 +28,6 @@ "Shared with you" : "Të ndara me ju", "Shared with others" : "Të ndara me të tjerët", "Shared by link" : "Të ndara me lidhje", - "Federated sharing" : "Ndarje e federuar", "Nothing shared with you yet" : "Ende pa ndarë gjë me ju", "Files and folders others share with you will show up here" : "Këtu do të shfaqen kartelat dhe dosjet që të jerët ndajnë me ju", "Nothing shared yet" : "Ende pa ndarë gjë", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "Lidhja publike e %2$s skadoi", "Shared by %2$s" : "U nda nga %2$s", "Shares" : "Ndarje", - "You received \"/%2$s\" as a remote share from %1$s" : "Ju erdhi \"/%2$s\" si ndarje e largët prej %1$s", - "Accept" : "Pranoje", - "Decline" : "Hidhe poshtë", "This share is password-protected" : "Kjo pjesë është e mbrojtur me fjalëkalim", "The password is wrong. Try again." : "Fjalëkalimi është i gabuar. Riprovoni.", "Password" : "Fjalëkalim", diff --git a/apps/files_sharing/l10n/sr.js b/apps/files_sharing/l10n/sr.js index 494b4937cc2..07af47317c0 100644 --- a/apps/files_sharing/l10n/sr.js +++ b/apps/files_sharing/l10n/sr.js @@ -10,7 +10,6 @@ OC.L10N.register( "Shared with you" : "Дељено са вама", "Shared with others" : "Дељено са осталима", "Shared by link" : "Дељено путем везе", - "Federated sharing" : "Здружено дељење", "Nothing shared with you yet" : "Још увек се ништа са вама не дели", "Files and folders others share with you will show up here" : "Фајлови и фасцикле које други деле са вама појавиће се овде", "Nothing shared yet" : "Још се ништа не дели", @@ -41,8 +40,6 @@ OC.L10N.register( "You shared %1$s via link" : "Поделили сте %1$s путем везе", "%2$s shared %1$s with you" : "%2$s подели %1$s са вама", "Shares" : "Дељења", - "Accept" : "Прихвати", - "Decline" : "Одбиј", "This share is password-protected" : "Дељење је заштићено лозинком", "The password is wrong. Try again." : "Лозинка је погрешна. Покушајте поново.", "Password" : "Лозинка", diff --git a/apps/files_sharing/l10n/sr.json b/apps/files_sharing/l10n/sr.json index a254e2dcce6..dacc1f79052 100644 --- a/apps/files_sharing/l10n/sr.json +++ b/apps/files_sharing/l10n/sr.json @@ -8,7 +8,6 @@ "Shared with you" : "Дељено са вама", "Shared with others" : "Дељено са осталима", "Shared by link" : "Дељено путем везе", - "Federated sharing" : "Здружено дељење", "Nothing shared with you yet" : "Још увек се ништа са вама не дели", "Files and folders others share with you will show up here" : "Фајлови и фасцикле које други деле са вама појавиће се овде", "Nothing shared yet" : "Још се ништа не дели", @@ -39,8 +38,6 @@ "You shared %1$s via link" : "Поделили сте %1$s путем везе", "%2$s shared %1$s with you" : "%2$s подели %1$s са вама", "Shares" : "Дељења", - "Accept" : "Прихвати", - "Decline" : "Одбиј", "This share is password-protected" : "Дељење је заштићено лозинком", "The password is wrong. Try again." : "Лозинка је погрешна. Покушајте поново.", "Password" : "Лозинка", diff --git a/apps/files_sharing/l10n/sv.js b/apps/files_sharing/l10n/sv.js index 165b5a20deb..24974bb6b4b 100644 --- a/apps/files_sharing/l10n/sv.js +++ b/apps/files_sharing/l10n/sv.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "Delat med dig", "Shared with others" : "Delat med andra", "Shared by link" : "Delad som länk", - "Federated sharing" : "Federated Delning", "Nothing shared with you yet" : "Inget delat med dig ännu", "Files and folders others share with you will show up here" : "Filer och mappar andra delar med dig kommer visas här", "Nothing shared yet" : "Inget delat ännu", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "Tidsgräns för publik länk för %2$s har löpt ut", "Shared by %2$s" : "Delad av %2$s", "Shares" : "Delningar", - "You received \"/%2$s\" as a remote share from %1$s" : "Du mottog \"/%2$s\" som fjärrdelning från %1$s", - "Accept" : "Acceptera", - "Decline" : "Neka", "This share is password-protected" : "Den här delningen är lösenordsskyddad", "The password is wrong. Try again." : "Lösenordet är fel. Försök igen.", "Password" : "Lösenord", diff --git a/apps/files_sharing/l10n/sv.json b/apps/files_sharing/l10n/sv.json index 748caa6b57f..38939bc611a 100644 --- a/apps/files_sharing/l10n/sv.json +++ b/apps/files_sharing/l10n/sv.json @@ -9,7 +9,6 @@ "Shared with you" : "Delat med dig", "Shared with others" : "Delat med andra", "Shared by link" : "Delad som länk", - "Federated sharing" : "Federated Delning", "Nothing shared with you yet" : "Inget delat med dig ännu", "Files and folders others share with you will show up here" : "Filer och mappar andra delar med dig kommer visas här", "Nothing shared yet" : "Inget delat ännu", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "Tidsgräns för publik länk för %2$s har löpt ut", "Shared by %2$s" : "Delad av %2$s", "Shares" : "Delningar", - "You received \"/%2$s\" as a remote share from %1$s" : "Du mottog \"/%2$s\" som fjärrdelning från %1$s", - "Accept" : "Acceptera", - "Decline" : "Neka", "This share is password-protected" : "Den här delningen är lösenordsskyddad", "The password is wrong. Try again." : "Lösenordet är fel. Försök igen.", "Password" : "Lösenord", diff --git a/apps/files_sharing/l10n/th_TH.js b/apps/files_sharing/l10n/th_TH.js index 5ff7b59006a..2137eab6aba 100644 --- a/apps/files_sharing/l10n/th_TH.js +++ b/apps/files_sharing/l10n/th_TH.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "แชร์กับคุณ", "Shared with others" : "แชร์กับผู้อื่น", "Shared by link" : "แชร์โดยลิงค์", - "Federated sharing" : "แบ่งปันสหพันธ์", "Nothing shared with you yet" : "ไม่มีอะไรที่แชร์กับคุณเลย", "Files and folders others share with you will show up here" : "ไฟล์และโฟลเดอร์อื่นๆ ที่ผู้อื่นแชร์กับคุณจะปรากฏขึ้นที่นี่", "Nothing shared yet" : "ยังไม่มีการแชร์ใดๆ", @@ -90,9 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "ลิงค์สาธารณะของ %2$s หมดอายุแล้ว", "Shared by %2$s" : "แชร์โดย %2$s", "Shares" : "แชร์", - "You received \"/%2$s\" as a remote share from %1$s" : "คุณได้รับ \"/%2$s\" ที่เป็นรีโมทแชร์จาก %1$s", - "Accept" : "ยอมรับ", - "Decline" : "ลดลง", "This share is password-protected" : "นี้แชร์การป้องกันด้วยรหัสผ่าน", "The password is wrong. Try again." : "รหัสผ่านที่ไม่ถูกต้อง กรุณาลองอีกครั้ง", "Password" : "รหัสผ่าน", diff --git a/apps/files_sharing/l10n/th_TH.json b/apps/files_sharing/l10n/th_TH.json index c6f180f6f89..31d912c1462 100644 --- a/apps/files_sharing/l10n/th_TH.json +++ b/apps/files_sharing/l10n/th_TH.json @@ -28,7 +28,6 @@ "Shared with you" : "แชร์กับคุณ", "Shared with others" : "แชร์กับผู้อื่น", "Shared by link" : "แชร์โดยลิงค์", - "Federated sharing" : "แบ่งปันสหพันธ์", "Nothing shared with you yet" : "ไม่มีอะไรที่แชร์กับคุณเลย", "Files and folders others share with you will show up here" : "ไฟล์และโฟลเดอร์อื่นๆ ที่ผู้อื่นแชร์กับคุณจะปรากฏขึ้นที่นี่", "Nothing shared yet" : "ยังไม่มีการแชร์ใดๆ", @@ -88,9 +87,6 @@ "Public link of %2$s expired" : "ลิงค์สาธารณะของ %2$s หมดอายุแล้ว", "Shared by %2$s" : "แชร์โดย %2$s", "Shares" : "แชร์", - "You received \"/%2$s\" as a remote share from %1$s" : "คุณได้รับ \"/%2$s\" ที่เป็นรีโมทแชร์จาก %1$s", - "Accept" : "ยอมรับ", - "Decline" : "ลดลง", "This share is password-protected" : "นี้แชร์การป้องกันด้วยรหัสผ่าน", "The password is wrong. Try again." : "รหัสผ่านที่ไม่ถูกต้อง กรุณาลองอีกครั้ง", "Password" : "รหัสผ่าน", diff --git a/apps/files_sharing/l10n/tr.js b/apps/files_sharing/l10n/tr.js index a836a20e88d..6af903a1bed 100644 --- a/apps/files_sharing/l10n/tr.js +++ b/apps/files_sharing/l10n/tr.js @@ -11,7 +11,6 @@ OC.L10N.register( "Shared with you" : "Sizinle paylaşılmış", "Shared with others" : "Diğerleri ile paylaşılmış", "Shared by link" : "Bağlantı ile paylaşılmış", - "Federated sharing" : "Birleşmiş paylaşım", "Nothing shared with you yet" : "Sizinle henüz hiçbir şey paylaşılmamış", "Files and folders others share with you will show up here" : "Sizinle paylaşılan dosya ve klasörler burada gösterilecek", "Nothing shared yet" : "Henüz hiçbir şey paylaşılmamış", @@ -71,9 +70,6 @@ OC.L10N.register( "Public link of %2$s expired" : "%2$s için paylaşım bağlantısı süresi doldu", "Shared by %2$s" : "%2$s tarafından paylaşıldı", "Shares" : "Paylaşımlar", - "You received \"/%2$s\" as a remote share from %1$s" : "%1$s kişisinden \"/%2$s\" uzak paylaşımını aldınız", - "Accept" : "Kabul et", - "Decline" : "Reddet", "This share is password-protected" : "Bu paylaşım parola korumalı", "The password is wrong. Try again." : "Parola hatalı. Yeniden deneyin.", "Password" : "Parola", diff --git a/apps/files_sharing/l10n/tr.json b/apps/files_sharing/l10n/tr.json index 901098f1f54..d6cbbd59096 100644 --- a/apps/files_sharing/l10n/tr.json +++ b/apps/files_sharing/l10n/tr.json @@ -9,7 +9,6 @@ "Shared with you" : "Sizinle paylaşılmış", "Shared with others" : "Diğerleri ile paylaşılmış", "Shared by link" : "Bağlantı ile paylaşılmış", - "Federated sharing" : "Birleşmiş paylaşım", "Nothing shared with you yet" : "Sizinle henüz hiçbir şey paylaşılmamış", "Files and folders others share with you will show up here" : "Sizinle paylaşılan dosya ve klasörler burada gösterilecek", "Nothing shared yet" : "Henüz hiçbir şey paylaşılmamış", @@ -69,9 +68,6 @@ "Public link of %2$s expired" : "%2$s için paylaşım bağlantısı süresi doldu", "Shared by %2$s" : "%2$s tarafından paylaşıldı", "Shares" : "Paylaşımlar", - "You received \"/%2$s\" as a remote share from %1$s" : "%1$s kişisinden \"/%2$s\" uzak paylaşımını aldınız", - "Accept" : "Kabul et", - "Decline" : "Reddet", "This share is password-protected" : "Bu paylaşım parola korumalı", "The password is wrong. Try again." : "Parola hatalı. Yeniden deneyin.", "Password" : "Parola", diff --git a/apps/files_sharing/l10n/zh_CN.js b/apps/files_sharing/l10n/zh_CN.js index f0f659d1bc6..1938c962a21 100644 --- a/apps/files_sharing/l10n/zh_CN.js +++ b/apps/files_sharing/l10n/zh_CN.js @@ -30,7 +30,6 @@ OC.L10N.register( "Shared with you" : "分享给您的文件", "Shared with others" : "您分享的文件", "Shared by link" : "分享链接的文件", - "Federated sharing" : "联合云共享", "Nothing shared with you yet" : "你还没有收到任何共享的文件", "Files and folders others share with you will show up here" : "其它人共享给您的文件和文件夹将显示在这里", "Nothing shared yet" : "还没有共享过文件", @@ -90,8 +89,6 @@ OC.L10N.register( "Public link of %2$s expired" : "%2$s 的公开链接已过期", "Shared by %2$s" : "由 %2$s 共享", "Shares" : "共享", - "Accept" : "接受", - "Decline" : "拒绝", "This share is password-protected" : "这是一个密码保护的共享", "The password is wrong. Try again." : "用户名或密码错误!请重试", "Password" : "密码", diff --git a/apps/files_sharing/l10n/zh_CN.json b/apps/files_sharing/l10n/zh_CN.json index e1ba3104700..6b5e929188f 100644 --- a/apps/files_sharing/l10n/zh_CN.json +++ b/apps/files_sharing/l10n/zh_CN.json @@ -28,7 +28,6 @@ "Shared with you" : "分享给您的文件", "Shared with others" : "您分享的文件", "Shared by link" : "分享链接的文件", - "Federated sharing" : "联合云共享", "Nothing shared with you yet" : "你还没有收到任何共享的文件", "Files and folders others share with you will show up here" : "其它人共享给您的文件和文件夹将显示在这里", "Nothing shared yet" : "还没有共享过文件", @@ -88,8 +87,6 @@ "Public link of %2$s expired" : "%2$s 的公开链接已过期", "Shared by %2$s" : "由 %2$s 共享", "Shares" : "共享", - "Accept" : "接受", - "Decline" : "拒绝", "This share is password-protected" : "这是一个密码保护的共享", "The password is wrong. Try again." : "用户名或密码错误!请重试", "Password" : "密码", diff --git a/apps/files_sharing/l10n/zh_TW.js b/apps/files_sharing/l10n/zh_TW.js index 43e9c23a38b..bc0d9b0e814 100644 --- a/apps/files_sharing/l10n/zh_TW.js +++ b/apps/files_sharing/l10n/zh_TW.js @@ -53,8 +53,6 @@ OC.L10N.register( "Shared via public link" : "透過公用連結分享", "Shared by %2$s" : "由 %2$s 分享", "Shares" : "分享", - "Accept" : "接受", - "Decline" : "拒絕", "This share is password-protected" : "這個分享有密碼保護", "The password is wrong. Try again." : "請檢查您的密碼並再試一次", "Password" : "密碼", diff --git a/apps/files_sharing/l10n/zh_TW.json b/apps/files_sharing/l10n/zh_TW.json index 7ca97b77f8a..ecd6a27ed5d 100644 --- a/apps/files_sharing/l10n/zh_TW.json +++ b/apps/files_sharing/l10n/zh_TW.json @@ -51,8 +51,6 @@ "Shared via public link" : "透過公用連結分享", "Shared by %2$s" : "由 %2$s 分享", "Shares" : "分享", - "Accept" : "接受", - "Decline" : "拒絕", "This share is password-protected" : "這個分享有密碼保護", "The password is wrong. Try again." : "請檢查您的密碼並再試一次", "Password" : "密碼", diff --git a/apps/systemtags/l10n/ja.js b/apps/systemtags/l10n/ja.js index 7460665f018..a5d2d2d0b38 100644 --- a/apps/systemtags/l10n/ja.js +++ b/apps/systemtags/l10n/ja.js @@ -21,6 +21,7 @@ OC.L10N.register( "%1$s assigned system tag %3$s to %2$s" : "%1$s は、%2$s に タグ %3$s を追加", "You unassigned system tag %3$s from %2$s" : "%2$s から タグ %3$s を解除", "%1$s unassigned system tag %3$s from %2$s" : "%1$s は%2$s から タグ %3$s を解除", + "%s (restricted)" : "%s (制限)", "%s (invisible)" : "%s (不可視)", "No files in here" : "ファイルがありません", "No entries found in this folder" : "このフォルダーにはエントリーがありません", diff --git a/apps/systemtags/l10n/ja.json b/apps/systemtags/l10n/ja.json index 6c16af20328..b0d947b981f 100644 --- a/apps/systemtags/l10n/ja.json +++ b/apps/systemtags/l10n/ja.json @@ -19,6 +19,7 @@ "%1$s assigned system tag %3$s to %2$s" : "%1$s は、%2$s に タグ %3$s を追加", "You unassigned system tag %3$s from %2$s" : "%2$s から タグ %3$s を解除", "%1$s unassigned system tag %3$s from %2$s" : "%1$s は%2$s から タグ %3$s を解除", + "%s (restricted)" : "%s (制限)", "%s (invisible)" : "%s (不可視)", "No files in here" : "ファイルがありません", "No entries found in this folder" : "このフォルダーにはエントリーがありません", diff --git a/apps/systemtags/l10n/pt_BR.js b/apps/systemtags/l10n/pt_BR.js index 4032720d406..0b7bafaab49 100644 --- a/apps/systemtags/l10n/pt_BR.js +++ b/apps/systemtags/l10n/pt_BR.js @@ -21,6 +21,7 @@ OC.L10N.register( "%1$s assigned system tag %3$s to %2$s" : "%1$s etiqueta de sistema atribuída %3$s para %2$s", "You unassigned system tag %3$s from %2$s" : "Você eliminou a atribuição da etiqueta do sistema %3$s de %2$s", "%1$s unassigned system tag %3$s from %2$s" : "%1$s etiqueta de sistema não atribuída %3$s de %2$s", + "%s (restricted)" : "%s (restrito)", "%s (invisible)" : "%s (invisivel)", "No files in here" : "Nenhum arquivo aqui", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", diff --git a/apps/systemtags/l10n/pt_BR.json b/apps/systemtags/l10n/pt_BR.json index 564eddead9d..cb38dfd1de3 100644 --- a/apps/systemtags/l10n/pt_BR.json +++ b/apps/systemtags/l10n/pt_BR.json @@ -19,6 +19,7 @@ "%1$s assigned system tag %3$s to %2$s" : "%1$s etiqueta de sistema atribuída %3$s para %2$s", "You unassigned system tag %3$s from %2$s" : "Você eliminou a atribuição da etiqueta do sistema %3$s de %2$s", "%1$s unassigned system tag %3$s from %2$s" : "%1$s etiqueta de sistema não atribuída %3$s de %2$s", + "%s (restricted)" : "%s (restrito)", "%s (invisible)" : "%s (invisivel)", "No files in here" : "Nenhum arquivo aqui", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", diff --git a/apps/user_ldap/l10n/ja.js b/apps/user_ldap/l10n/ja.js index 97c5eaa73f7..4c4bc053e6f 100644 --- a/apps/user_ldap/l10n/ja.js +++ b/apps/user_ldap/l10n/ja.js @@ -13,6 +13,7 @@ OC.L10N.register( " Could not set configuration %s" : "構成 %s を設定できませんでした", "Action does not exist" : "アクションが存在しません", "The Base DN appears to be wrong" : "ベース DN が誤っている可能性があります", + "Testing configuration…" : "設定検証中…", "Configuration incorrect" : "設定に誤りがあります", "Configuration incomplete" : "設定が不完全です", "Configuration OK" : "設定OK", @@ -95,6 +96,7 @@ OC.L10N.register( "Test Base DN" : "ベースDN をテスト", "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "自動的なLDAP問合せを停止します。大規模な設定には適していますが、LDAPの知識が必要になります。", "Manually enter LDAP filters (recommended for large directories)" : "手動でLDAPフィルターを入力(大規模ディレクトリ時のみ推奨)", + "%s access is limited to users meeting these criteria:" : "%s のアクセス権は基準を満たすユーザーに制限されます:", "The most common object classes for users are organizationalPerson, person, user, and inetOrgPerson. If you are not sure which object class to select, please consult your directory admin." : "ユーザーの最も一般的なオブジェクトクラスは、organizationalPerson, person, user と inetOrgPerson です。もし、どのオブジェクトを選択すれば良いか分からない場合は、ディレクトリ管理者に相談してください。", "The filter specifies which LDAP users shall have access to the %s instance." : "フィルターは、どのLDAPユーザーが %s にアクセスするかを指定します。", "Verify settings and count users" : "設定を検証し、ユーザーを数える", diff --git a/apps/user_ldap/l10n/ja.json b/apps/user_ldap/l10n/ja.json index 9674e7ca899..96ef093fe81 100644 --- a/apps/user_ldap/l10n/ja.json +++ b/apps/user_ldap/l10n/ja.json @@ -11,6 +11,7 @@ " Could not set configuration %s" : "構成 %s を設定できませんでした", "Action does not exist" : "アクションが存在しません", "The Base DN appears to be wrong" : "ベース DN が誤っている可能性があります", + "Testing configuration…" : "設定検証中…", "Configuration incorrect" : "設定に誤りがあります", "Configuration incomplete" : "設定が不完全です", "Configuration OK" : "設定OK", @@ -93,6 +94,7 @@ "Test Base DN" : "ベースDN をテスト", "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "自動的なLDAP問合せを停止します。大規模な設定には適していますが、LDAPの知識が必要になります。", "Manually enter LDAP filters (recommended for large directories)" : "手動でLDAPフィルターを入力(大規模ディレクトリ時のみ推奨)", + "%s access is limited to users meeting these criteria:" : "%s のアクセス権は基準を満たすユーザーに制限されます:", "The most common object classes for users are organizationalPerson, person, user, and inetOrgPerson. If you are not sure which object class to select, please consult your directory admin." : "ユーザーの最も一般的なオブジェクトクラスは、organizationalPerson, person, user と inetOrgPerson です。もし、どのオブジェクトを選択すれば良いか分からない場合は、ディレクトリ管理者に相談してください。", "The filter specifies which LDAP users shall have access to the %s instance." : "フィルターは、どのLDAPユーザーが %s にアクセスするかを指定します。", "Verify settings and count users" : "設定を検証し、ユーザーを数える", diff --git a/config/config.sample.php b/config/config.sample.php index 2a368965fba..ffdce5cc2d5 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -195,6 +195,13 @@ $CONFIG = array( 'session_keepalive' => true, /** + * Enforce token authentication for clients, which blocks requests using the user + * password for enhanced security. Users need to generate tokens in personal settings + * which can be used as passwords on their clients. + */ +'token_auth_enforced' => false, + +/** * The directory where the skeleton files are located. These files will be * copied to the data directory of new users. Leave empty to not copy any * skeleton files. diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php index ea857bb57df..853aa584d7f 100644 --- a/core/Controller/LoginController.php +++ b/core/Controller/LoginController.php @@ -190,7 +190,10 @@ class LoginController extends Controller { $args = !is_null($user) ? ['user' => $user] : []; return new RedirectResponse($this->urlGenerator->linkToRoute('core.login.showLoginForm', $args)); } - $this->userSession->createSessionToken($this->request, $loginResult->getUID(), $password); + // TODO: remove password checks from above and let the user session handle failures + // requires https://github.com/owncloud/core/pull/24616 + $this->userSession->login($user, $password); + $this->userSession->createSessionToken($this->request, $loginResult->getUID(), $user, $password); if ($this->twoFactorManager->isTwoFactorAuthenticated($loginResult)) { $this->twoFactorManager->prepareTwoFactorLogin($loginResult); diff --git a/core/Controller/TokenController.php b/core/Controller/TokenController.php index 6606a3c8345..beb856e3a65 100644 --- a/core/Controller/TokenController.php +++ b/core/Controller/TokenController.php @@ -75,13 +75,14 @@ class TokenController extends Controller { $response->setStatus(Http::STATUS_UNPROCESSABLE_ENTITY); return $response; } - if ($this->userManager->checkPassword($user, $password) === false) { + $loginResult = $this->userManager->checkPassword($user, $password); + if ($loginResult === false) { $response = new Response(); $response->setStatus(Http::STATUS_UNAUTHORIZED); return $response; } $token = $this->secureRandom->generate(128); - $this->tokenProvider->generateToken($token, $user, $password, $name, IToken::PERMANENT_TOKEN); + $this->tokenProvider->generateToken($token, $loginResult->getUID(), $user, $password, $name, IToken::PERMANENT_TOKEN); return [ 'token' => $token, ]; diff --git a/core/Controller/TwoFactorChallengeController.php b/core/Controller/TwoFactorChallengeController.php index 73ccc731231..4f04e7b4c76 100644 --- a/core/Controller/TwoFactorChallengeController.php +++ b/core/Controller/TwoFactorChallengeController.php @@ -63,8 +63,8 @@ class TwoFactorChallengeController extends Controller { } /** + * @NoAdminRequired * @NoCSRFRequired - * @PublicPage * * @return TemplateResponse */ @@ -79,8 +79,8 @@ class TwoFactorChallengeController extends Controller { } /** + * @NoAdminRequired * @NoCSRFRequired - * @PublicPage * @UseSession * * @param string $challengeProviderId @@ -108,8 +108,8 @@ class TwoFactorChallengeController extends Controller { } /** + * @NoAdminRequired * @NoCSRFRequired - * @PublicPage * @UseSession * * @param string $challengeProviderId diff --git a/core/l10n/fi_FI.js b/core/l10n/fi_FI.js index 30d5bd2ec40..d15457022a2 100644 --- a/core/l10n/fi_FI.js +++ b/core/l10n/fi_FI.js @@ -243,6 +243,7 @@ OC.L10N.register( "Trace" : "Jälki", "Security warning" : "Turvallisuusvaroitus", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi.", + "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Lisätietoja palvelimen oikeaoppiseen määritykseen on saatavilla <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentaatiossa</a>.", "Create an <strong>admin account</strong>" : "Luo <strong>ylläpitäjän tunnus</strong>", "Username" : "Käyttäjätunnus", "Storage & database" : "Tallennus ja tietokanta", @@ -286,6 +287,9 @@ OC.L10N.register( "This means only administrators can use the instance." : "Se tarkoittaa, että vain ylläpitäjät voivat nyt käyttää tätä ownCloudia.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Ota yhteys järjestelmän ylläpitäjään, jos tämä viesti ilmenee uudelleen tai odottamatta.", "Thank you for your patience." : "Kiitos kärsivällisyydestäsi.", + "Two-step verification" : "Kaksivaiheinen vahvistus", + "Enhanced security has been enabled for your account. Please authenticate using a second factor." : "Tililläsi on käytössä lisäturvatoimia. Tunnistaudu käyttäen kaksivaiheista vahvistusta.", + "Please authenticate using the selected factor." : "Tunnistaudu käyttäen valittua vahvistusta.", "You are accessing the server from an untrusted domain." : "Olet yhteydessä palvelimeen epäluotettavasta verkko-osoitteesta.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Ota yhteys ylläpitoon. Jos olet tämän asennuksen ylläpitäjä, määritä \"trusted_domains\"-asetus config/config.php-tiedostossa. Esimerkkimääritys on tarjolla tiedostossa config/config.sample.php.", "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Riippuen määrityksistä, ylläpitäjänä saatat kyetä käyttämään alla olevaa painiketta luodaksesi luottamussuhteen tähän toimialueeseen.", diff --git a/core/l10n/fi_FI.json b/core/l10n/fi_FI.json index bf8764a202d..14565b0b46e 100644 --- a/core/l10n/fi_FI.json +++ b/core/l10n/fi_FI.json @@ -241,6 +241,7 @@ "Trace" : "Jälki", "Security warning" : "Turvallisuusvaroitus", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi.", + "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">documentation</a>." : "Lisätietoja palvelimen oikeaoppiseen määritykseen on saatavilla <a href=\"%s\" target=\"_blank\" rel=\"noreferrer\">dokumentaatiossa</a>.", "Create an <strong>admin account</strong>" : "Luo <strong>ylläpitäjän tunnus</strong>", "Username" : "Käyttäjätunnus", "Storage & database" : "Tallennus ja tietokanta", @@ -284,6 +285,9 @@ "This means only administrators can use the instance." : "Se tarkoittaa, että vain ylläpitäjät voivat nyt käyttää tätä ownCloudia.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Ota yhteys järjestelmän ylläpitäjään, jos tämä viesti ilmenee uudelleen tai odottamatta.", "Thank you for your patience." : "Kiitos kärsivällisyydestäsi.", + "Two-step verification" : "Kaksivaiheinen vahvistus", + "Enhanced security has been enabled for your account. Please authenticate using a second factor." : "Tililläsi on käytössä lisäturvatoimia. Tunnistaudu käyttäen kaksivaiheista vahvistusta.", + "Please authenticate using the selected factor." : "Tunnistaudu käyttäen valittua vahvistusta.", "You are accessing the server from an untrusted domain." : "Olet yhteydessä palvelimeen epäluotettavasta verkko-osoitteesta.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Ota yhteys ylläpitoon. Jos olet tämän asennuksen ylläpitäjä, määritä \"trusted_domains\"-asetus config/config.php-tiedostossa. Esimerkkimääritys on tarjolla tiedostossa config/config.sample.php.", "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Riippuen määrityksistä, ylläpitäjänä saatat kyetä käyttämään alla olevaa painiketta luodaksesi luottamussuhteen tähän toimialueeseen.", diff --git a/core/l10n/it.js b/core/l10n/it.js index 289a60ad11b..7daff3e0dad 100644 --- a/core/l10n/it.js +++ b/core/l10n/it.js @@ -195,6 +195,7 @@ OC.L10N.register( "Warning" : "Avviso", "Error while sending notification" : "Errore durante l'invio della notifica", "Non-existing tag #{tag}" : "Etichetta #{tag} inesistente", + "restricted" : "limitato", "invisible" : "invisibile", "({scope})" : "({scope})", "Delete" : "Elimina", @@ -295,6 +296,10 @@ OC.L10N.register( "This means only administrators can use the instance." : "Ciò significa che solo gli amministratori possono utilizzare l'istanza.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.", "Thank you for your patience." : "Grazie per la pazienza.", + "Two-step verification" : "Verifica in due fasi", + "Enhanced security has been enabled for your account. Please authenticate using a second factor." : "La sicurezza migliorata è stata abilitata per il tuo account. Autenticati utilizzando un secondo fattore.", + "Please authenticate using the selected factor." : "Autentica utilizzando il fattore selezionato.", + "An error occured while verifying the token" : "Si è verificato un errore durante la verifica del token", "You are accessing the server from an untrusted domain." : "Stai accedendo al server da un dominio non attendibile.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Contatta il tuo amministratore di sistema. Se sei un amministratore di questa istanza, configura l'impostazione \"trusted_domains\" in config/config.php. Una configurazione di esempio è disponibile in config/config.sample.php.", "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "In base alla tua configurazione, come amministratore potrai utilizzare anche il pulsante in basso per rendere attendibile questo dominio.", diff --git a/core/l10n/it.json b/core/l10n/it.json index 37c536a514b..9d403e4f724 100644 --- a/core/l10n/it.json +++ b/core/l10n/it.json @@ -193,6 +193,7 @@ "Warning" : "Avviso", "Error while sending notification" : "Errore durante l'invio della notifica", "Non-existing tag #{tag}" : "Etichetta #{tag} inesistente", + "restricted" : "limitato", "invisible" : "invisibile", "({scope})" : "({scope})", "Delete" : "Elimina", @@ -293,6 +294,10 @@ "This means only administrators can use the instance." : "Ciò significa che solo gli amministratori possono utilizzare l'istanza.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.", "Thank you for your patience." : "Grazie per la pazienza.", + "Two-step verification" : "Verifica in due fasi", + "Enhanced security has been enabled for your account. Please authenticate using a second factor." : "La sicurezza migliorata è stata abilitata per il tuo account. Autenticati utilizzando un secondo fattore.", + "Please authenticate using the selected factor." : "Autentica utilizzando il fattore selezionato.", + "An error occured while verifying the token" : "Si è verificato un errore durante la verifica del token", "You are accessing the server from an untrusted domain." : "Stai accedendo al server da un dominio non attendibile.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Contatta il tuo amministratore di sistema. Se sei un amministratore di questa istanza, configura l'impostazione \"trusted_domains\" in config/config.php. Una configurazione di esempio è disponibile in config/config.sample.php.", "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "In base alla tua configurazione, come amministratore potrai utilizzare anche il pulsante in basso per rendere attendibile questo dominio.", diff --git a/core/l10n/nn_NO.js b/core/l10n/nn_NO.js index 20fccbc4f0d..49e816c766c 100644 --- a/core/l10n/nn_NO.js +++ b/core/l10n/nn_NO.js @@ -1,16 +1,31 @@ OC.L10N.register( "core", { + "Please select a file." : "Ver venleg og vel ei fil.", + "File is too big" : "Fila er for stor", + "Invalid file provided" : "Ugyldig fil", "No image or file provided" : "Inga bilete eller fil gjeve", "Unknown filetype" : "Ukjend filtype", "Invalid image" : "Ugyldig bilete", + "An error occurred. Please contact your admin." : "Det oppstod ein feil. Ver venleg og kontakt systemadministrator.", "No temporary profile picture available, try again" : "Inga midlertidig profilbilete tilgjengeleg, prøv igjen", "No crop data provided" : "Ingen beskjeringsdata gjeve", + "No valid crop data provided" : "Fekk inga beskjeringsdata", + "Crop is not square" : "Beskjeringa er ikkje kvadratisk", + "Couldn't reset password because the token is invalid" : "Kunne ikkje nullstilla passordet sidan tokenet er ugyldig", + "Couldn't reset password because the token is expired" : "Kunne ikkje nullstilla passordet sidan tokenet er utløpt", + "Couldn't send reset email. Please make sure your username is correct." : "Klarte ikkje senda e-post. Ver venleg og sjekk at brukarnamnet er korrekt.", "%s password reset" : "%s passordnullstilling", "Couldn't send mail to following users: %s " : "Kunne ikkje snede e-post til følgande brukarar: %s ", "Turned on maintenance mode" : "Skrudde på vedlikehaldsmodus", "Turned off maintenance mode" : "Skrudde av vedlikehaldsmodus", "Updated database" : "Database oppdatert", + "Updated \"%s\" to %s" : "Oppdaterte «%s» til %s", + "Starting code integrity check" : "Startar kodeintegritetstest", + "Finished code integrity check" : "Fullførte kodeintegritetstest", + "%s (3rdparty)" : "%s (tredjeparts)", + "%s (incompatible)" : "%s (inkompatibel)", + "Already up to date" : "Allereie oppdatert", "Sunday" : "Søndag", "Monday" : "Måndag", "Tuesday" : "Tysdag", @@ -25,6 +40,13 @@ OC.L10N.register( "Thu." : "Tor.", "Fri." : "Fre.", "Sat." : "Lau.", + "Su" : "Su", + "Mo" : "Må", + "Tu" : "Ty", + "We" : "On", + "Th" : "To", + "Fr" : "Fr", + "Sa" : "La", "January" : "Januar", "February" : "Februar", "March" : "Mars", @@ -51,6 +73,7 @@ OC.L10N.register( "Dec." : "Des.", "Settings" : "Innstillingar", "Saving..." : "Lagrar …", + "Dismiss" : "Forkast", "seconds ago" : "sekund sidan", "I know what I'm doing" : "Eg veit kva eg gjer", "No" : "Nei", @@ -59,8 +82,11 @@ OC.L10N.register( "Error loading file picker template: {error}" : "Klarte ikkje å lasta filplukkarmal: {error}", "Ok" : "Greitt", "Error loading message template: {error}" : "Klarte ikkje å lasta meldingsmal: {error}", + "read-only" : "skriveverna", "_{count} file conflict_::_{count} file conflicts_" : ["{count} filkonflikt","{count} filkonfliktar"], "One file conflict" : "Éin filkonflikt", + "New Files" : "Nye filer", + "Already existing files" : "Eksisterande filer", "Which files do you want to keep?" : "Kva filer vil du spara?", "If you select both versions, the copied file will have a number added to its name." : "Viss du vel begge utgåvene, vil den kopierte fila få eit tal lagt til namnet.", "Cancel" : "Avbryt", @@ -70,6 +96,9 @@ OC.L10N.register( "Error loading file exists template" : "Klarte ikkje å lasta fil-finst-mal", "Very weak password" : "Veldig svakt passord", "Weak password" : "Svakt passord", + "So-so password" : "Middelmåtig passord", + "Good password" : "OK passord", + "Strong password" : "Bra passord", "Shared" : "Delt", "Error" : "Feil", "Error while sharing" : "Feil ved deling", @@ -80,12 +109,15 @@ OC.L10N.register( "Choose a password for the public link" : "Vel eit passord for den offentlege lenkja", "Resharing is not allowed" : "Vidaredeling er ikkje tillate", "Share link" : "Del lenkje", + "Link" : "Lenkje", "Password protect" : "Passordvern", "Password" : "Passord", + "Allow editing" : "Tillat endring", "Email link to person" : "Send lenkja over e-post", "Send" : "Send", "Sending ..." : "Sender …", "Email sent" : "E-post sendt", + "Send link via email" : "Send lenkja via e-post", "Shared with you and the group {group} by {owner}" : "Delt med deg og gruppa {group} av {owner}", "Shared with you by {owner}" : "Delt med deg av {owner}", "group" : "gruppe", @@ -93,14 +125,20 @@ OC.L10N.register( "can share" : "kan dela", "can edit" : "kan endra", "create" : "lag", + "change" : "endra", "delete" : "slett", "access control" : "tilgangskontroll", "Share" : "Del", "Warning" : "Åtvaring", + "invisible" : "usynleg", "Delete" : "Slett", "Rename" : "Endra namn", "The object type is not specified." : "Objekttypen er ikkje spesifisert.", "Add" : "Legg til", + "unknown text" : "ukjend tekst", + "new" : "ny", + "Updating to {version}" : "Oppdaterer til {version}", + "Please reload the page." : "Ver venleg og last sida på nytt.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." : "Oppdateringa feila. Ver venleg og rapporter feilen til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-fellesskapet</a>.", "The update was successful. Redirecting you to ownCloud now." : "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", "Personal" : "Personleg", @@ -109,6 +147,7 @@ OC.L10N.register( "Admin" : "Admin", "Help" : "Hjelp", "Access forbidden" : "Tilgang forbudt", + "File not found" : "Fann ikkje fila", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer.", "Create an <strong>admin account</strong>" : "Lag ein <strong>admin-konto</strong>", "Username" : "Brukarnamn", diff --git a/core/l10n/nn_NO.json b/core/l10n/nn_NO.json index d4cc54bfc09..be20e8ec258 100644 --- a/core/l10n/nn_NO.json +++ b/core/l10n/nn_NO.json @@ -1,14 +1,29 @@ { "translations": { + "Please select a file." : "Ver venleg og vel ei fil.", + "File is too big" : "Fila er for stor", + "Invalid file provided" : "Ugyldig fil", "No image or file provided" : "Inga bilete eller fil gjeve", "Unknown filetype" : "Ukjend filtype", "Invalid image" : "Ugyldig bilete", + "An error occurred. Please contact your admin." : "Det oppstod ein feil. Ver venleg og kontakt systemadministrator.", "No temporary profile picture available, try again" : "Inga midlertidig profilbilete tilgjengeleg, prøv igjen", "No crop data provided" : "Ingen beskjeringsdata gjeve", + "No valid crop data provided" : "Fekk inga beskjeringsdata", + "Crop is not square" : "Beskjeringa er ikkje kvadratisk", + "Couldn't reset password because the token is invalid" : "Kunne ikkje nullstilla passordet sidan tokenet er ugyldig", + "Couldn't reset password because the token is expired" : "Kunne ikkje nullstilla passordet sidan tokenet er utløpt", + "Couldn't send reset email. Please make sure your username is correct." : "Klarte ikkje senda e-post. Ver venleg og sjekk at brukarnamnet er korrekt.", "%s password reset" : "%s passordnullstilling", "Couldn't send mail to following users: %s " : "Kunne ikkje snede e-post til følgande brukarar: %s ", "Turned on maintenance mode" : "Skrudde på vedlikehaldsmodus", "Turned off maintenance mode" : "Skrudde av vedlikehaldsmodus", "Updated database" : "Database oppdatert", + "Updated \"%s\" to %s" : "Oppdaterte «%s» til %s", + "Starting code integrity check" : "Startar kodeintegritetstest", + "Finished code integrity check" : "Fullførte kodeintegritetstest", + "%s (3rdparty)" : "%s (tredjeparts)", + "%s (incompatible)" : "%s (inkompatibel)", + "Already up to date" : "Allereie oppdatert", "Sunday" : "Søndag", "Monday" : "Måndag", "Tuesday" : "Tysdag", @@ -23,6 +38,13 @@ "Thu." : "Tor.", "Fri." : "Fre.", "Sat." : "Lau.", + "Su" : "Su", + "Mo" : "Må", + "Tu" : "Ty", + "We" : "On", + "Th" : "To", + "Fr" : "Fr", + "Sa" : "La", "January" : "Januar", "February" : "Februar", "March" : "Mars", @@ -49,6 +71,7 @@ "Dec." : "Des.", "Settings" : "Innstillingar", "Saving..." : "Lagrar …", + "Dismiss" : "Forkast", "seconds ago" : "sekund sidan", "I know what I'm doing" : "Eg veit kva eg gjer", "No" : "Nei", @@ -57,8 +80,11 @@ "Error loading file picker template: {error}" : "Klarte ikkje å lasta filplukkarmal: {error}", "Ok" : "Greitt", "Error loading message template: {error}" : "Klarte ikkje å lasta meldingsmal: {error}", + "read-only" : "skriveverna", "_{count} file conflict_::_{count} file conflicts_" : ["{count} filkonflikt","{count} filkonfliktar"], "One file conflict" : "Éin filkonflikt", + "New Files" : "Nye filer", + "Already existing files" : "Eksisterande filer", "Which files do you want to keep?" : "Kva filer vil du spara?", "If you select both versions, the copied file will have a number added to its name." : "Viss du vel begge utgåvene, vil den kopierte fila få eit tal lagt til namnet.", "Cancel" : "Avbryt", @@ -68,6 +94,9 @@ "Error loading file exists template" : "Klarte ikkje å lasta fil-finst-mal", "Very weak password" : "Veldig svakt passord", "Weak password" : "Svakt passord", + "So-so password" : "Middelmåtig passord", + "Good password" : "OK passord", + "Strong password" : "Bra passord", "Shared" : "Delt", "Error" : "Feil", "Error while sharing" : "Feil ved deling", @@ -78,12 +107,15 @@ "Choose a password for the public link" : "Vel eit passord for den offentlege lenkja", "Resharing is not allowed" : "Vidaredeling er ikkje tillate", "Share link" : "Del lenkje", + "Link" : "Lenkje", "Password protect" : "Passordvern", "Password" : "Passord", + "Allow editing" : "Tillat endring", "Email link to person" : "Send lenkja over e-post", "Send" : "Send", "Sending ..." : "Sender …", "Email sent" : "E-post sendt", + "Send link via email" : "Send lenkja via e-post", "Shared with you and the group {group} by {owner}" : "Delt med deg og gruppa {group} av {owner}", "Shared with you by {owner}" : "Delt med deg av {owner}", "group" : "gruppe", @@ -91,14 +123,20 @@ "can share" : "kan dela", "can edit" : "kan endra", "create" : "lag", + "change" : "endra", "delete" : "slett", "access control" : "tilgangskontroll", "Share" : "Del", "Warning" : "Åtvaring", + "invisible" : "usynleg", "Delete" : "Slett", "Rename" : "Endra namn", "The object type is not specified." : "Objekttypen er ikkje spesifisert.", "Add" : "Legg til", + "unknown text" : "ukjend tekst", + "new" : "ny", + "Updating to {version}" : "Oppdaterer til {version}", + "Please reload the page." : "Ver venleg og last sida på nytt.", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." : "Oppdateringa feila. Ver venleg og rapporter feilen til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-fellesskapet</a>.", "The update was successful. Redirecting you to ownCloud now." : "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", "Personal" : "Personleg", @@ -107,6 +145,7 @@ "Admin" : "Admin", "Help" : "Hjelp", "Access forbidden" : "Tilgang forbudt", + "File not found" : "Fann ikkje fila", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." : "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer.", "Create an <strong>admin account</strong>" : "Lag ein <strong>admin-konto</strong>", "Username" : "Brukarnamn", diff --git a/core/l10n/pt_BR.js b/core/l10n/pt_BR.js index 24aa8eaf64c..1b972c91bca 100644 --- a/core/l10n/pt_BR.js +++ b/core/l10n/pt_BR.js @@ -195,6 +195,7 @@ OC.L10N.register( "Warning" : "Aviso", "Error while sending notification" : "Erro ao enviar notificação", "Non-existing tag #{tag}" : "Etiqueta não existente #{tag}", + "restricted" : "restrito", "invisible" : "invisível", "({scope})" : "({scope})", "Delete" : "Eliminar", @@ -295,6 +296,7 @@ OC.L10N.register( "This means only administrators can use the instance." : "Isso significa que apenas os administradores podem usar esta instância.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contacte o seu administrador do sistema se esta mensagem persistir ou aparecer inesperadamente.", "Thank you for your patience." : "Obrigado pela sua paciência.", + "Two-step verification" : "Verificação em dois passos", "You are accessing the server from an untrusted domain." : "Você está acessando o servidor a partir de um domínio não confiável.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Por favor entre em contato com o administrador. Se você é um administrador deste exemplo, configure a definição \"trusted_domains\" em config/config.php. Um exemplo de configuração é fornecido em config/config.sample.php.", "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Dependendo da configuração, como administrador, você também pode ser capaz de usar o botão abaixo para confiar neste domínio.", diff --git a/core/l10n/pt_BR.json b/core/l10n/pt_BR.json index e49c3e61eb1..d2835e506ab 100644 --- a/core/l10n/pt_BR.json +++ b/core/l10n/pt_BR.json @@ -193,6 +193,7 @@ "Warning" : "Aviso", "Error while sending notification" : "Erro ao enviar notificação", "Non-existing tag #{tag}" : "Etiqueta não existente #{tag}", + "restricted" : "restrito", "invisible" : "invisível", "({scope})" : "({scope})", "Delete" : "Eliminar", @@ -293,6 +294,7 @@ "This means only administrators can use the instance." : "Isso significa que apenas os administradores podem usar esta instância.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Contacte o seu administrador do sistema se esta mensagem persistir ou aparecer inesperadamente.", "Thank you for your patience." : "Obrigado pela sua paciência.", + "Two-step verification" : "Verificação em dois passos", "You are accessing the server from an untrusted domain." : "Você está acessando o servidor a partir de um domínio não confiável.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domains\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Por favor entre em contato com o administrador. Se você é um administrador deste exemplo, configure a definição \"trusted_domains\" em config/config.php. Um exemplo de configuração é fornecido em config/config.sample.php.", "Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "Dependendo da configuração, como administrador, você também pode ser capaz de usar o botão abaixo para confiar neste domínio.", diff --git a/core/l10n/ru.js b/core/l10n/ru.js index 5848c6264a3..74a2c2c1bf6 100644 --- a/core/l10n/ru.js +++ b/core/l10n/ru.js @@ -195,6 +195,7 @@ OC.L10N.register( "Warning" : "Предупреждение", "Error while sending notification" : "Ошибка при отправке уведомления", "Non-existing tag #{tag}" : "Несуществующий тег #{tag}", + "restricted" : "ограниченный", "invisible" : "невидимый", "({scope})" : "({scope})", "Delete" : "Удалить", diff --git a/core/l10n/ru.json b/core/l10n/ru.json index 39e28b0dc0d..3c7dfcafe60 100644 --- a/core/l10n/ru.json +++ b/core/l10n/ru.json @@ -193,6 +193,7 @@ "Warning" : "Предупреждение", "Error while sending notification" : "Ошибка при отправке уведомления", "Non-existing tag #{tag}" : "Несуществующий тег #{tag}", + "restricted" : "ограниченный", "invisible" : "невидимый", "({scope})" : "({scope})", "Delete" : "Удалить", diff --git a/db_structure.xml b/db_structure.xml index e535814b518..9188ad346d2 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -1073,6 +1073,14 @@ </field> <field> + <name>login_name</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>64</length> + </field> + + <field> <name>password</name> <type>clob</type> <default></default> diff --git a/lib/l10n/ja.js b/lib/l10n/ja.js index 661f8ad96fb..b5d501bd115 100644 --- a/lib/l10n/ja.js +++ b/lib/l10n/ja.js @@ -167,6 +167,8 @@ OC.L10N.register( "Storage incomplete configuration. %s" : "設定が未完了のストレージです。 %s", "Storage connection error. %s" : "ストレージへの接続エラー。 %s", "Storage not available" : "ストレージが利用できません", - "Storage connection timeout. %s" : "ストレージへの接続がタイムアウト。 %s" + "Storage connection timeout. %s" : "ストレージへの接続がタイムアウト。 %s", + "_%n file_::_%n files_" : ["%n ファイル"], + "_%n window_::_%n windows_" : ["%n ウィンドウ"] }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/ja.json b/lib/l10n/ja.json index a3fc2514eb8..6f23dc07308 100644 --- a/lib/l10n/ja.json +++ b/lib/l10n/ja.json @@ -165,6 +165,8 @@ "Storage incomplete configuration. %s" : "設定が未完了のストレージです。 %s", "Storage connection error. %s" : "ストレージへの接続エラー。 %s", "Storage not available" : "ストレージが利用できません", - "Storage connection timeout. %s" : "ストレージへの接続がタイムアウト。 %s" + "Storage connection timeout. %s" : "ストレージへの接続がタイムアウト。 %s", + "_%n file_::_%n files_" : ["%n ファイル"], + "_%n window_::_%n windows_" : ["%n ウィンドウ"] },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/pt_BR.js b/lib/l10n/pt_BR.js index dd33cb7b1c3..379bd79d5b0 100644 --- a/lib/l10n/pt_BR.js +++ b/lib/l10n/pt_BR.js @@ -167,6 +167,8 @@ OC.L10N.register( "Storage incomplete configuration. %s" : "Incompleta configuração de armazenamento. %s", "Storage connection error. %s" : "Erro na conexão de armazenamento. %s", "Storage not available" : "Armazanamento não disponível", - "Storage connection timeout. %s" : "Tempo limite de conexão de armazenamento. %s" + "Storage connection timeout. %s" : "Tempo limite de conexão de armazenamento. %s", + "_%n file_::_%n files_" : ["%n arquivo","%n arquivos"], + "_%n window_::_%n windows_" : ["%n janela","%n janelas"] }, "nplurals=2; plural=(n > 1);"); diff --git a/lib/l10n/pt_BR.json b/lib/l10n/pt_BR.json index 7bcb4f5a267..8643c703184 100644 --- a/lib/l10n/pt_BR.json +++ b/lib/l10n/pt_BR.json @@ -165,6 +165,8 @@ "Storage incomplete configuration. %s" : "Incompleta configuração de armazenamento. %s", "Storage connection error. %s" : "Erro na conexão de armazenamento. %s", "Storage not available" : "Armazanamento não disponível", - "Storage connection timeout. %s" : "Tempo limite de conexão de armazenamento. %s" + "Storage connection timeout. %s" : "Tempo limite de conexão de armazenamento. %s", + "_%n file_::_%n files_" : ["%n arquivo","%n arquivos"], + "_%n window_::_%n windows_" : ["%n janela","%n janelas"] },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/lib/l10n/ro.js b/lib/l10n/ro.js index e8f3ab7c5bb..8171b8ece23 100644 --- a/lib/l10n/ro.js +++ b/lib/l10n/ro.js @@ -9,6 +9,7 @@ OC.L10N.register( "It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "S-a detectat copierea configurației exemplu. Acest lucru poate duce la oprirea instanței tale și nu este suportat. Te rugăm să citești documentația înainte de a face modificări în fișierul config.php", "PHP %s or higher is required." : "Versiunea PHP %s sau mai mare este necesară.", "PHP with a version lower than %s is required." : "Este necesară o versiune PHP mai mică decât %s", + "%sbit or higher PHP required." : "Este necesar PHP %sbit sau mai mare.", "Following databases are supported: %s" : "Următoarele baze de date sunt suportate: %s", "The command line tool %s could not be found" : "Unealta în linie de comandă %s nu a fost găsită", "The library %s is not available." : "Biblioteca %s nu este disponibilă.", @@ -28,12 +29,27 @@ OC.L10N.register( "Module with id: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulul cu id-ul %s nu există. Activează-l în setările tale de aplicație sau contactează-ți administratorul.", "Empty filename is not allowed" : "Nu este permis fișier fără nume", "Dot files are not allowed" : "Fișierele care încep cu caracterul punct nu sunt permise", + "File name is a reserved word" : "Numele fișierului este un cuvânt rezervat", "File name contains at least one invalid character" : "Numele fișierului conține măcar un caracter invalid", "File name is too long" : "Numele fișierului este prea lung", "App directory already exists" : "Directorul de aplicație există deja", + "Can't create app folder. Please fix permissions. %s" : "Nu se poate crea directorul de aplicație. Repară permisiunile. %s", + "Archive does not contain a directory named %s" : "Arhiva nu conține vreun director cu numele %s", + "No source specified when installing app" : "Nu a fost specificată vreo sursă la instalarea aplicației", + "Archives of type %s are not supported" : "Arhivele de tip %s nu sunt suportate", + "Failed to open archive when installing app" : "Deschiderea arhivei a eșuat în timpul instalării aplicației", + "App does not provide an info.xml file" : "Aplicația nu furnizează un fișier info.xml", + "App cannot be installed because appinfo file cannot be read." : "Aplicația nu poate fi instalată deoarece fișierul appinfo nu poate fi citit", + "Signature could not get checked. Please contact the app developer and check your admin screen." : "Semnătura nu a putut fi verificată. Contactează dezvoltatorul aplicației și verifică-ți consola administrativă.", + "App can't be installed because of not allowed code in the App" : "Aplicația nu poate fi instalată deoarece conține cod nepermis", + "App can't be installed because it is not compatible with this version of ownCloud" : "Aplicația nu poate fi instalată deoarece nu este compatibilă cu această versiune ownCloud", + "%s enter the database username and name." : "%s introdu numele de utilizator și parola pentru baza de date.", + "%s enter the database username." : "%s introdu utilizatorul bazei de date.", "%s enter the database name." : "%s introduceți numele bazei de date", "Oracle connection could not be established" : "Conexiunea Oracle nu a putut fi stabilită", + "Oracle username and/or password not valid" : "Numele de utilizator sau / și parola Oracle nu sunt valide", "DB Error: \"%s\"" : "Eroare Bază de Date: \"%s\"", + "Offending command was: \"%s\"" : "Comanda cauză a fost: \"%s\"", "PostgreSQL username and/or password not valid" : "Nume utilizator și/sau parolă PostgreSQL greșită", "Set an admin username." : "Setează un nume de administrator.", "Set an admin password." : "Setează o parolă de administrator.", diff --git a/lib/l10n/ro.json b/lib/l10n/ro.json index ea93ecbd9b0..990efbad88e 100644 --- a/lib/l10n/ro.json +++ b/lib/l10n/ro.json @@ -7,6 +7,7 @@ "It has been detected that the sample configuration has been copied. This can break your installation and is unsupported. Please read the documentation before performing changes on config.php" : "S-a detectat copierea configurației exemplu. Acest lucru poate duce la oprirea instanței tale și nu este suportat. Te rugăm să citești documentația înainte de a face modificări în fișierul config.php", "PHP %s or higher is required." : "Versiunea PHP %s sau mai mare este necesară.", "PHP with a version lower than %s is required." : "Este necesară o versiune PHP mai mică decât %s", + "%sbit or higher PHP required." : "Este necesar PHP %sbit sau mai mare.", "Following databases are supported: %s" : "Următoarele baze de date sunt suportate: %s", "The command line tool %s could not be found" : "Unealta în linie de comandă %s nu a fost găsită", "The library %s is not available." : "Biblioteca %s nu este disponibilă.", @@ -26,12 +27,27 @@ "Module with id: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulul cu id-ul %s nu există. Activează-l în setările tale de aplicație sau contactează-ți administratorul.", "Empty filename is not allowed" : "Nu este permis fișier fără nume", "Dot files are not allowed" : "Fișierele care încep cu caracterul punct nu sunt permise", + "File name is a reserved word" : "Numele fișierului este un cuvânt rezervat", "File name contains at least one invalid character" : "Numele fișierului conține măcar un caracter invalid", "File name is too long" : "Numele fișierului este prea lung", "App directory already exists" : "Directorul de aplicație există deja", + "Can't create app folder. Please fix permissions. %s" : "Nu se poate crea directorul de aplicație. Repară permisiunile. %s", + "Archive does not contain a directory named %s" : "Arhiva nu conține vreun director cu numele %s", + "No source specified when installing app" : "Nu a fost specificată vreo sursă la instalarea aplicației", + "Archives of type %s are not supported" : "Arhivele de tip %s nu sunt suportate", + "Failed to open archive when installing app" : "Deschiderea arhivei a eșuat în timpul instalării aplicației", + "App does not provide an info.xml file" : "Aplicația nu furnizează un fișier info.xml", + "App cannot be installed because appinfo file cannot be read." : "Aplicația nu poate fi instalată deoarece fișierul appinfo nu poate fi citit", + "Signature could not get checked. Please contact the app developer and check your admin screen." : "Semnătura nu a putut fi verificată. Contactează dezvoltatorul aplicației și verifică-ți consola administrativă.", + "App can't be installed because of not allowed code in the App" : "Aplicația nu poate fi instalată deoarece conține cod nepermis", + "App can't be installed because it is not compatible with this version of ownCloud" : "Aplicația nu poate fi instalată deoarece nu este compatibilă cu această versiune ownCloud", + "%s enter the database username and name." : "%s introdu numele de utilizator și parola pentru baza de date.", + "%s enter the database username." : "%s introdu utilizatorul bazei de date.", "%s enter the database name." : "%s introduceți numele bazei de date", "Oracle connection could not be established" : "Conexiunea Oracle nu a putut fi stabilită", + "Oracle username and/or password not valid" : "Numele de utilizator sau / și parola Oracle nu sunt valide", "DB Error: \"%s\"" : "Eroare Bază de Date: \"%s\"", + "Offending command was: \"%s\"" : "Comanda cauză a fost: \"%s\"", "PostgreSQL username and/or password not valid" : "Nume utilizator și/sau parolă PostgreSQL greșită", "Set an admin username." : "Setează un nume de administrator.", "Set an admin password." : "Setează o parolă de administrator.", diff --git a/lib/private/Authentication/Token/DefaultToken.php b/lib/private/Authentication/Token/DefaultToken.php index 4a64eacb247..8cb36711b69 100644 --- a/lib/private/Authentication/Token/DefaultToken.php +++ b/lib/private/Authentication/Token/DefaultToken.php @@ -27,6 +27,8 @@ use OCP\AppFramework\Db\Entity; /** * @method void setId(int $id) * @method void setUid(string $uid); + * @method void setLoginName(string $loginName) + * @method string getLoginName() * @method void setPassword(string $password) * @method void setName(string $name) * @method string getName() @@ -45,6 +47,11 @@ class DefaultToken extends Entity implements IToken { protected $uid; /** + * @var string login name used for generating the token + */ + protected $loginName; + + /** * @var string encrypted user password */ protected $password; @@ -76,7 +83,16 @@ class DefaultToken extends Entity implements IToken { public function getUID() { return $this->uid; } - + + /** + * Get the login name used when generating the token + * + * @return string + */ + public function getLoginName() { + return parent::getLoginName(); + } + /** * Get the (encrypted) login password * diff --git a/lib/private/Authentication/Token/DefaultTokenMapper.php b/lib/private/Authentication/Token/DefaultTokenMapper.php index 970c2242dbe..f24fab00a1a 100644 --- a/lib/private/Authentication/Token/DefaultTokenMapper.php +++ b/lib/private/Authentication/Token/DefaultTokenMapper.php @@ -71,7 +71,7 @@ class DefaultTokenMapper extends Mapper { public function getToken($token) { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $result = $qb->select('id', 'uid', 'password', 'name', 'type', 'token', 'last_activity') + $result = $qb->select('id', 'uid', 'login_name', 'password', 'name', 'type', 'token', 'last_activity') ->from('authtoken') ->where($qb->expr()->eq('token', $qb->createParameter('token'))) ->setParameter('token', $token) @@ -96,7 +96,7 @@ class DefaultTokenMapper extends Mapper { public function getTokenByUser(IUser $user) { /* @var $qb IQueryBuilder */ $qb = $this->db->getQueryBuilder(); - $qb->select('id', 'uid', 'password', 'name', 'type', 'token', 'last_activity') + $qb->select('id', 'uid', 'login_name', 'password', 'name', 'type', 'token', 'last_activity') ->from('authtoken') ->where($qb->expr()->eq('uid', $qb->createNamedParameter($user->getUID()))) ->setMaxResults(1000); diff --git a/lib/private/Authentication/Token/DefaultTokenProvider.php b/lib/private/Authentication/Token/DefaultTokenProvider.php index 0f7c54dab57..a3ba7b69445 100644 --- a/lib/private/Authentication/Token/DefaultTokenProvider.php +++ b/lib/private/Authentication/Token/DefaultTokenProvider.php @@ -68,14 +68,16 @@ class DefaultTokenProvider implements IProvider { * * @param string $token * @param string $uid + * @param string $loginName * @param string $password * @param string $name * @param int $type token type - * @return DefaultToken + * @return IToken */ - public function generateToken($token, $uid, $password, $name, $type = IToken::TEMPORARY_TOKEN) { + public function generateToken($token, $uid, $loginName, $password, $name, $type = IToken::TEMPORARY_TOKEN) { $dbToken = new DefaultToken(); $dbToken->setUid($uid); + $dbToken->setLoginName($loginName); $dbToken->setPassword($this->encryptPassword($password, $token)); $dbToken->setName($name); $dbToken->setToken($this->hashToken($token)); diff --git a/lib/private/Authentication/Token/IProvider.php b/lib/private/Authentication/Token/IProvider.php index e4e4581e738..6a158b43357 100644 --- a/lib/private/Authentication/Token/IProvider.php +++ b/lib/private/Authentication/Token/IProvider.php @@ -32,12 +32,13 @@ interface IProvider { * * @param string $token * @param string $uid + * @param string $loginName * @param string $password * @param string $name * @param int $type token type * @return IToken */ - public function generateToken($token, $uid, $password, $name, $type = IToken::TEMPORARY_TOKEN); + public function generateToken($token, $uid, $loginName, $password, $name, $type = IToken::TEMPORARY_TOKEN); /** * Get a token by token id diff --git a/lib/private/Authentication/Token/IToken.php b/lib/private/Authentication/Token/IToken.php index b741cd4ac22..dc2c3a0ae34 100644 --- a/lib/private/Authentication/Token/IToken.php +++ b/lib/private/Authentication/Token/IToken.php @@ -44,6 +44,13 @@ interface IToken extends JsonSerializable { public function getUID(); /** + * Get the login name used when generating the token + * + * @return string + */ + public function getLoginName(); + + /** * Get the (encrypted) login password * * @return string diff --git a/lib/private/Server.php b/lib/private/Server.php index c7b3799448e..0b425013267 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -236,7 +236,7 @@ class Server extends ServerContainer implements IServerContainer { $defaultTokenProvider = null; } - $userSession = new \OC\User\Session($manager, $session, $timeFactory, $defaultTokenProvider); + $userSession = new \OC\User\Session($manager, $session, $timeFactory, $defaultTokenProvider, $c->getConfig()); $userSession->listen('\OC\User', 'preCreateUser', function ($uid, $password) { \OC_Hook::emit('OC_User', 'pre_createUser', array('run' => true, 'uid' => $uid, 'password' => $password)); }); diff --git a/lib/private/Setup.php b/lib/private/Setup.php index d60c4663fb0..55a5e2bec11 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -371,7 +371,8 @@ class Setup { $userSession = \OC::$server->getUserSession(); $defaultTokenProvider = \OC::$server->query('OC\Authentication\Token\DefaultTokenProvider'); $userSession->setTokenProvider($defaultTokenProvider); - $userSession->createSessionToken($request, $username, $password); + $userSession->login($username, $password); + $userSession->createSessionToken($request, $userSession->getUser()->getUID(), $username, $password); //guess what this does Installer::installShippedApps(); diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php index ddd86a56abb..c77cfedba4c 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -42,6 +42,7 @@ use OC_User; use OC_Util; use OCA\DAV\Connector\Sabre\Auth; use OCP\AppFramework\Utility\ITimeFactory; +use OCP\IConfig; use OCP\IRequest; use OCP\ISession; use OCP\IUser; @@ -68,8 +69,8 @@ use OCP\Session\Exceptions\SessionNotAvailableException; * @package OC\User */ class Session implements IUserSession, Emitter { - - /** @var Manager $manager */ + + /** @var IUserManager $manager */ private $manager; /** @var ISession $session */ @@ -81,6 +82,9 @@ class Session implements IUserSession, Emitter { /** @var IProvider */ private $tokenProvider; + /** @var IConfig */ + private $config; + /** @var User $activeUser */ protected $activeUser; @@ -89,12 +93,14 @@ class Session implements IUserSession, Emitter { * @param ISession $session * @param ITimeFactory $timeFacory * @param IProvider $tokenProvider + * @param IConfig $config */ - public function __construct(IUserManager $manager, ISession $session, ITimeFactory $timeFacory, $tokenProvider) { + public function __construct(IUserManager $manager, ISession $session, ITimeFactory $timeFacory, $tokenProvider, IConfig $config) { $this->manager = $manager; $this->session = $session; $this->timeFacory = $timeFacory; $this->tokenProvider = $tokenProvider; + $this->config = $config; } /** @@ -219,7 +225,7 @@ class Session implements IUserSession, Emitter { return; } - if ($this->manager->checkPassword($user->getUID(), $pwd) === false + if ($this->manager->checkPassword($token->getLoginName(), $pwd) === false || !$user->isEnabled()) { // Password has changed or user was disabled -> log user out $this->logout(); @@ -279,7 +285,7 @@ class Session implements IUserSession, Emitter { } /** - * try to login with the provided credentials + * try to log in with the provided credentials * * @param string $uid * @param string $password @@ -327,6 +333,63 @@ class Session implements IUserSession, Emitter { return false; } + /** + * Tries to log in a client + * + * Checks token auth enforced + * Checks 2FA enabled + * + * @param string $user + * @param string $password + * @throws LoginException + * @return boolean + */ + public function logClientIn($user, $password) { + $isTokenPassword = $this->isTokenPassword($password); + if (!$isTokenPassword && $this->isTokenAuthEnforced()) { + // TODO: throw LoginException instead (https://github.com/owncloud/core/pull/24616) + return false; + } + if (!$isTokenPassword && $this->isTwoFactorEnforced($user)) { + // TODO: throw LoginException instead (https://github.com/owncloud/core/pull/24616) + return false; + } + return $this->login($user, $password); + } + + private function isTokenAuthEnforced() { + return $this->config->getSystemValue('token_auth_enforced', false); + } + + protected function isTwoFactorEnforced($username) { + \OCP\Util::emitHook( + '\OCA\Files_Sharing\API\Server2Server', + 'preLoginNameUsedAsUserName', + array('uid' => &$username) + ); + $user = $this->manager->get($username); + if (is_null($user)) { + return true; + } + // DI not possible due to cyclic dependencies :'-/ + return OC::$server->getTwoFactorAuthManager()->isTwoFactorAuthenticated($user); + } + + /** + * Check if the given 'password' is actually a device token + * + * @param type $password + * @return boolean + */ + public function isTokenPassword($password) { + try { + $this->tokenProvider->getToken($password); + return true; + } catch (InvalidTokenException $ex) { + return false; + } + } + protected function prepareUserLogin() { // TODO: mock/inject/use non-static // Refresh the token @@ -347,7 +410,7 @@ class Session implements IUserSession, Emitter { */ public function tryBasicAuthLogin(IRequest $request) { if (!empty($request->server['PHP_AUTH_USER']) && !empty($request->server['PHP_AUTH_PW'])) { - $result = $this->login($request->server['PHP_AUTH_USER'], $request->server['PHP_AUTH_PW']); + $result = $this->logClientIn($request->server['PHP_AUTH_USER'], $request->server['PHP_AUTH_PW']); if ($result === true) { /** * Add DAV authenticated. This should in an ideal world not be @@ -388,25 +451,23 @@ class Session implements IUserSession, Emitter { * * @param IRequest $request * @param string $uid user UID + * @param string $loginName login name * @param string $password * @return boolean */ - public function createSessionToken(IRequest $request, $uid, $password) { + public function createSessionToken(IRequest $request, $uid, $loginName, $password) { if (is_null($this->manager->get($uid))) { // User does not exist return false; } $name = isset($request->server['HTTP_USER_AGENT']) ? $request->server['HTTP_USER_AGENT'] : 'unknown browser'; - $loggedIn = $this->login($uid, $password); - if ($loggedIn) { - try { - $sessionId = $this->session->getId(); - $this->tokenProvider->generateToken($sessionId, $uid, $password, $name); - } catch (SessionNotAvailableException $ex) { - - } + try { + $sessionId = $this->session->getId(); + $this->tokenProvider->generateToken($sessionId, $uid, $loginName, $password, $name); + } catch (SessionNotAvailableException $ex) { + } - return $loggedIn; + return true; } /** diff --git a/lib/public/search/pagedprovider.php b/lib/public/Search/PagedProvider.php index 80a2896f73f..80a2896f73f 100644 --- a/lib/public/search/pagedprovider.php +++ b/lib/public/Search/PagedProvider.php diff --git a/lib/public/search/provider.php b/lib/public/Search/Provider.php index 9bcbe36ef7a..9bcbe36ef7a 100644 --- a/lib/public/search/provider.php +++ b/lib/public/Search/Provider.php diff --git a/lib/public/search/result.php b/lib/public/Search/Result.php index e90c2619032..e90c2619032 100644 --- a/lib/public/search/result.php +++ b/lib/public/Search/Result.php diff --git a/settings/Controller/AuthSettingsController.php b/settings/Controller/AuthSettingsController.php index 75311920d2a..826e6b87033 100644 --- a/settings/Controller/AuthSettingsController.php +++ b/settings/Controller/AuthSettingsController.php @@ -101,6 +101,7 @@ class AuthSettingsController extends Controller { try { $sessionToken = $this->tokenProvider->getToken($sessionId); + $loginName = $sessionToken->getLoginName(); $password = $this->tokenProvider->getPassword($sessionToken, $sessionId); } catch (InvalidTokenException $ex) { $resp = new JSONResponse(); @@ -109,7 +110,7 @@ class AuthSettingsController extends Controller { } $token = $this->generateRandomDeviceToken(); - $deviceToken = $this->tokenProvider->generateToken($token, $this->uid, $password, $name, IToken::PERMANENT_TOKEN); + $deviceToken = $this->tokenProvider->generateToken($token, $this->uid, $loginName, $password, $name, IToken::PERMANENT_TOKEN); return [ 'token' => $token, diff --git a/settings/l10n/ar.js b/settings/l10n/ar.js index 1a41265613b..092d2650102 100644 --- a/settings/l10n/ar.js +++ b/settings/l10n/ar.js @@ -91,6 +91,7 @@ OC.L10N.register( "Current password" : "كلمات السر الحالية", "New password" : "كلمات سر جديدة", "Change password" : "عدل كلمة السر", + "Name" : "الاسم", "Language" : "اللغة", "Help translate" : "ساعد في الترجمه", "Get the apps to sync your files" : "احصل على التطبيقات لمزامنة ملفاتك", diff --git a/settings/l10n/ar.json b/settings/l10n/ar.json index d39fb0e555b..8236e017779 100644 --- a/settings/l10n/ar.json +++ b/settings/l10n/ar.json @@ -89,6 +89,7 @@ "Current password" : "كلمات السر الحالية", "New password" : "كلمات سر جديدة", "Change password" : "عدل كلمة السر", + "Name" : "الاسم", "Language" : "اللغة", "Help translate" : "ساعد في الترجمه", "Get the apps to sync your files" : "احصل على التطبيقات لمزامنة ملفاتك", diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js index 1dfe0553ded..55d4f658d64 100644 --- a/settings/l10n/ast.js +++ b/settings/l10n/ast.js @@ -82,10 +82,10 @@ OC.L10N.register( "This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.", "Allow apps to use the Share API" : "Permitir a les aplicaciones usar la API de Compartición", "Allow users to share via link" : "Permitir a los usuarios compartir vía enllaz", - "Enforce password protection" : "Ameyora la proteición por contraseña.", "Allow public uploads" : "Permitir xubes públiques", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", + "Enforce password protection" : "Ameyora la proteición por contraseña.", "Set default expiration date" : "Afitar la data d'espiración predeterminada", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", "Expire after " : "Caduca dempués de", "days" : "díes", "Enforce expiration date" : "Facer cumplir la data de caducidá", @@ -130,6 +130,7 @@ OC.L10N.register( "Current password" : "Contraseña actual", "New password" : "Contraseña nueva", "Change password" : "Camudar contraseña", + "Name" : "Nome", "Language" : "Llingua", "Help translate" : "Ayúdanos nes traducciones", "Get the apps to sync your files" : "Obtener les aplicaciones pa sincronizar ficheros", diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json index 2c4c35e435d..ae21852898e 100644 --- a/settings/l10n/ast.json +++ b/settings/l10n/ast.json @@ -80,10 +80,10 @@ "This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.", "Allow apps to use the Share API" : "Permitir a les aplicaciones usar la API de Compartición", "Allow users to share via link" : "Permitir a los usuarios compartir vía enllaz", - "Enforce password protection" : "Ameyora la proteición por contraseña.", "Allow public uploads" : "Permitir xubes públiques", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", + "Enforce password protection" : "Ameyora la proteición por contraseña.", "Set default expiration date" : "Afitar la data d'espiración predeterminada", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", "Expire after " : "Caduca dempués de", "days" : "díes", "Enforce expiration date" : "Facer cumplir la data de caducidá", @@ -128,6 +128,7 @@ "Current password" : "Contraseña actual", "New password" : "Contraseña nueva", "Change password" : "Camudar contraseña", + "Name" : "Nome", "Language" : "Llingua", "Help translate" : "Ayúdanos nes traducciones", "Get the apps to sync your files" : "Obtener les aplicaciones pa sincronizar ficheros", diff --git a/settings/l10n/az.js b/settings/l10n/az.js index 812253e3d20..5c23484726a 100644 --- a/settings/l10n/az.js +++ b/settings/l10n/az.js @@ -110,10 +110,10 @@ OC.L10N.register( "Open documentation" : "Sənədləri aç", "Allow apps to use the Share API" : "Proqramlara izin verin ki, Paylaşım API-sindən istifadə edə bilsinlər.", "Allow users to share via link" : "Istifadəçilərə link üzərindən paylaşım etməyə izin vermək", - "Enforce password protection" : "Şifrə müdafiəsini həyata keçirmək", "Allow public uploads" : "Ümumi yüklənmələrə izin vermək", - "Allow users to send mail notification for shared files" : "Yayımlanmış fayllar üçün, istifadəçilərə məktubla xəbərdarlığın yollanmasına izin verir", + "Enforce password protection" : "Şifrə müdafiəsini həyata keçirmək", "Set default expiration date" : "Susmaya görə olan bitmə vaxtını təyin edin", + "Allow users to send mail notification for shared files" : "Yayımlanmış fayllar üçün, istifadəçilərə məktubla xəbərdarlığın yollanmasına izin verir", "Expire after " : "Bitir sonra", "days" : "günlər", "Enforce expiration date" : "Bitmə tarixini həyata keçir", @@ -183,6 +183,7 @@ OC.L10N.register( "Current password" : "Hazırkı şifrə", "New password" : "Yeni şifrə", "Change password" : "Şifrəni dəyiş", + "Name" : "Ad", "Language" : "Dil", "Help translate" : "Tərcüməyə kömək", "Get the apps to sync your files" : "Fayllarınızın sinxronizasiyası üçün proqramları götürün", diff --git a/settings/l10n/az.json b/settings/l10n/az.json index 061164fb2f4..c2081933421 100644 --- a/settings/l10n/az.json +++ b/settings/l10n/az.json @@ -108,10 +108,10 @@ "Open documentation" : "Sənədləri aç", "Allow apps to use the Share API" : "Proqramlara izin verin ki, Paylaşım API-sindən istifadə edə bilsinlər.", "Allow users to share via link" : "Istifadəçilərə link üzərindən paylaşım etməyə izin vermək", - "Enforce password protection" : "Şifrə müdafiəsini həyata keçirmək", "Allow public uploads" : "Ümumi yüklənmələrə izin vermək", - "Allow users to send mail notification for shared files" : "Yayımlanmış fayllar üçün, istifadəçilərə məktubla xəbərdarlığın yollanmasına izin verir", + "Enforce password protection" : "Şifrə müdafiəsini həyata keçirmək", "Set default expiration date" : "Susmaya görə olan bitmə vaxtını təyin edin", + "Allow users to send mail notification for shared files" : "Yayımlanmış fayllar üçün, istifadəçilərə məktubla xəbərdarlığın yollanmasına izin verir", "Expire after " : "Bitir sonra", "days" : "günlər", "Enforce expiration date" : "Bitmə tarixini həyata keçir", @@ -181,6 +181,7 @@ "Current password" : "Hazırkı şifrə", "New password" : "Yeni şifrə", "Change password" : "Şifrəni dəyiş", + "Name" : "Ad", "Language" : "Dil", "Help translate" : "Tərcüməyə kömək", "Get the apps to sync your files" : "Fayllarınızın sinxronizasiyası üçün proqramları götürün", diff --git a/settings/l10n/bg_BG.js b/settings/l10n/bg_BG.js index 78d679fffbf..12795d66eb0 100644 --- a/settings/l10n/bg_BG.js +++ b/settings/l10n/bg_BG.js @@ -108,10 +108,10 @@ OC.L10N.register( "Open documentation" : "Отвори документацията", "Allow apps to use the Share API" : "Разреши приложенията да използват Share API.", "Allow users to share via link" : "Разреши потребителите да споделят с връзка", - "Enforce password protection" : "Изискай защита с парола.", "Allow public uploads" : "Разреши общодостъпно качване", - "Allow users to send mail notification for shared files" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", + "Enforce password protection" : "Изискай защита с парола.", "Set default expiration date" : "Заложи дата на изтичане по подразбиране", + "Allow users to send mail notification for shared files" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", "Expire after " : "Изтечи след", "days" : "дена", "Enforce expiration date" : "Изисквай дата на изтичане", @@ -184,6 +184,7 @@ OC.L10N.register( "Current password" : "Текуща парола", "New password" : "Нова парола", "Change password" : "Промяна на паролата", + "Name" : "Име", "Language" : "Език", "Help translate" : "Помогни с превода", "Get the apps to sync your files" : "Изтегли програми за синхронизиране на файловете ти", diff --git a/settings/l10n/bg_BG.json b/settings/l10n/bg_BG.json index 0f3bb99ed1b..42f13242a04 100644 --- a/settings/l10n/bg_BG.json +++ b/settings/l10n/bg_BG.json @@ -106,10 +106,10 @@ "Open documentation" : "Отвори документацията", "Allow apps to use the Share API" : "Разреши приложенията да използват Share API.", "Allow users to share via link" : "Разреши потребителите да споделят с връзка", - "Enforce password protection" : "Изискай защита с парола.", "Allow public uploads" : "Разреши общодостъпно качване", - "Allow users to send mail notification for shared files" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", + "Enforce password protection" : "Изискай защита с парола.", "Set default expiration date" : "Заложи дата на изтичане по подразбиране", + "Allow users to send mail notification for shared files" : "Разреши потребителите да изпращат имейл уведомления за споделени файлове.", "Expire after " : "Изтечи след", "days" : "дена", "Enforce expiration date" : "Изисквай дата на изтичане", @@ -182,6 +182,7 @@ "Current password" : "Текуща парола", "New password" : "Нова парола", "Change password" : "Промяна на паролата", + "Name" : "Име", "Language" : "Език", "Help translate" : "Помогни с превода", "Get the apps to sync your files" : "Изтегли програми за синхронизиране на файловете ти", diff --git a/settings/l10n/bn_BD.js b/settings/l10n/bn_BD.js index 938dfc012a3..8b03ab3a141 100644 --- a/settings/l10n/bn_BD.js +++ b/settings/l10n/bn_BD.js @@ -60,6 +60,7 @@ OC.L10N.register( "Current password" : "বর্তমান কূটশব্দ", "New password" : "নতুন কূটশব্দ", "Change password" : "কূটশব্দ পরিবর্তন করুন", + "Name" : "নাম", "Language" : "ভাষা", "Help translate" : "অনুবাদ করতে সহায়তা করুন", "Get the apps to sync your files" : "আপনার ফাইলসমূহ সিংক করতে অ্যাপস নিন", diff --git a/settings/l10n/bn_BD.json b/settings/l10n/bn_BD.json index fdde4780e42..682f4dbab2e 100644 --- a/settings/l10n/bn_BD.json +++ b/settings/l10n/bn_BD.json @@ -58,6 +58,7 @@ "Current password" : "বর্তমান কূটশব্দ", "New password" : "নতুন কূটশব্দ", "Change password" : "কূটশব্দ পরিবর্তন করুন", + "Name" : "নাম", "Language" : "ভাষা", "Help translate" : "অনুবাদ করতে সহায়তা করুন", "Get the apps to sync your files" : "আপনার ফাইলসমূহ সিংক করতে অ্যাপস নিন", diff --git a/settings/l10n/bn_IN.js b/settings/l10n/bn_IN.js index 6891bfd9454..641711457c8 100644 --- a/settings/l10n/bn_IN.js +++ b/settings/l10n/bn_IN.js @@ -4,6 +4,7 @@ OC.L10N.register( "Saved" : "সংরক্ষিত", "Delete" : "মুছে ফেলা", "Cancel" : "বাতিল করা", + "Name" : "নাম", "Get the apps to sync your files" : "আপনার ফাইল সিঙ্ক করার অ্যাপ পান", "Username" : "ইউজারনেম" }, diff --git a/settings/l10n/bn_IN.json b/settings/l10n/bn_IN.json index 430cec27ef6..8693dbb8beb 100644 --- a/settings/l10n/bn_IN.json +++ b/settings/l10n/bn_IN.json @@ -2,6 +2,7 @@ "Saved" : "সংরক্ষিত", "Delete" : "মুছে ফেলা", "Cancel" : "বাতিল করা", + "Name" : "নাম", "Get the apps to sync your files" : "আপনার ফাইল সিঙ্ক করার অ্যাপ পান", "Username" : "ইউজারনেম" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/bs.js b/settings/l10n/bs.js index a14f7e290d1..0f587b4fada 100644 --- a/settings/l10n/bs.js +++ b/settings/l10n/bs.js @@ -95,10 +95,10 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.", "Allow apps to use the Share API" : "Dozvoli aplikacijama korištenje Share API", "Allow users to share via link" : "Dozvoli korisnicima dijeljenje putem veze", - "Enforce password protection" : "Nametni zaštitu lozinke", "Allow public uploads" : "Dozvoli javno učitavanje", - "Allow users to send mail notification for shared files" : "Dozvoli korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", + "Enforce password protection" : "Nametni zaštitu lozinke", "Set default expiration date" : "Postavite zadani datum isteka", + "Allow users to send mail notification for shared files" : "Dozvoli korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Expire after " : "Istek nakon", "days" : "dana", "Enforce expiration date" : "Nametni datum isteka", @@ -151,6 +151,7 @@ OC.L10N.register( "Current password" : "Trenutna lozinka", "New password" : "Nova lozinka", "Change password" : "Promijeni lozinku", + "Name" : "Ime", "Language" : "Jezik", "Help translate" : "Pomozi prevesti", "Get the apps to sync your files" : "Koristite aplikacije za sinhronizaciju svojih datoteka", diff --git a/settings/l10n/bs.json b/settings/l10n/bs.json index b472300a4b1..9e1f6ea1b37 100644 --- a/settings/l10n/bs.json +++ b/settings/l10n/bs.json @@ -93,10 +93,10 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.", "Allow apps to use the Share API" : "Dozvoli aplikacijama korištenje Share API", "Allow users to share via link" : "Dozvoli korisnicima dijeljenje putem veze", - "Enforce password protection" : "Nametni zaštitu lozinke", "Allow public uploads" : "Dozvoli javno učitavanje", - "Allow users to send mail notification for shared files" : "Dozvoli korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", + "Enforce password protection" : "Nametni zaštitu lozinke", "Set default expiration date" : "Postavite zadani datum isteka", + "Allow users to send mail notification for shared files" : "Dozvoli korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Expire after " : "Istek nakon", "days" : "dana", "Enforce expiration date" : "Nametni datum isteka", @@ -149,6 +149,7 @@ "Current password" : "Trenutna lozinka", "New password" : "Nova lozinka", "Change password" : "Promijeni lozinku", + "Name" : "Ime", "Language" : "Jezik", "Help translate" : "Pomozi prevesti", "Get the apps to sync your files" : "Koristite aplikacije za sinhronizaciju svojih datoteka", diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js index f9795df15e6..c569f412b80 100644 --- a/settings/l10n/ca.js +++ b/settings/l10n/ca.js @@ -122,10 +122,10 @@ OC.L10N.register( "Open documentation" : "Obre la documentació", "Allow apps to use the Share API" : "Permet que les aplicacions utilitzin l'API de compartir", "Allow users to share via link" : "Permet als usuaris compartir a través d'enllaços", - "Enforce password protection" : "Reforça la protecció amb contrasenya", "Allow public uploads" : "Permet pujada pública", - "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", + "Enforce password protection" : "Reforça la protecció amb contrasenya", "Set default expiration date" : "Estableix la data de venciment", + "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", "Expire after " : "Venciment després de", "days" : "dies", "Enforce expiration date" : "Força la data de venciment", @@ -207,6 +207,7 @@ OC.L10N.register( "Current password" : "Contrasenya actual", "New password" : "Contrasenya nova", "Change password" : "Canvia la contrasenya", + "Name" : "Nom", "Language" : "Idioma", "Help translate" : "Ajudeu-nos amb la traducció", "Get the apps to sync your files" : "Obtingueu les aplicacions per sincronitzar els vostres fitxers", diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json index bece619849a..e8729fe8729 100644 --- a/settings/l10n/ca.json +++ b/settings/l10n/ca.json @@ -120,10 +120,10 @@ "Open documentation" : "Obre la documentació", "Allow apps to use the Share API" : "Permet que les aplicacions utilitzin l'API de compartir", "Allow users to share via link" : "Permet als usuaris compartir a través d'enllaços", - "Enforce password protection" : "Reforça la protecció amb contrasenya", "Allow public uploads" : "Permet pujada pública", - "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", + "Enforce password protection" : "Reforça la protecció amb contrasenya", "Set default expiration date" : "Estableix la data de venciment", + "Allow users to send mail notification for shared files" : "Permet als usuaris enviar notificacions de fitxers compartits per correu ", "Expire after " : "Venciment després de", "days" : "dies", "Enforce expiration date" : "Força la data de venciment", @@ -205,6 +205,7 @@ "Current password" : "Contrasenya actual", "New password" : "Contrasenya nova", "Change password" : "Canvia la contrasenya", + "Name" : "Nom", "Language" : "Idioma", "Help translate" : "Ajudeu-nos amb la traducció", "Get the apps to sync your files" : "Obtingueu les aplicacions per sincronitzar els vostres fitxers", diff --git a/settings/l10n/cs_CZ.js b/settings/l10n/cs_CZ.js index f45c07d4f19..e7634e36838 100644 --- a/settings/l10n/cs_CZ.js +++ b/settings/l10n/cs_CZ.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Otevřít dokumentaci", "Allow apps to use the Share API" : "Povolit aplikacím používat API sdílení", "Allow users to share via link" : "Povolit uživatelům sdílení pomocí odkazů", - "Enforce password protection" : "Vynutit ochranu heslem", "Allow public uploads" : "Povolit veřejné nahrávání souborů", - "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat emailová upozornění pro sdílené soubory", + "Enforce password protection" : "Vynutit ochranu heslem", "Set default expiration date" : "Nastavit výchozí datum vypršení platnosti", + "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat emailová upozornění pro sdílené soubory", "Expire after " : "Vyprší po", "days" : "dnech", "Enforce expiration date" : "Vynutit datum vypršení", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Současné heslo", "New password" : "Nové heslo", "Change password" : "Změnit heslo", + "Name" : "Název", "Language" : "Jazyk", "Help translate" : "Pomoci s překladem", "Get the apps to sync your files" : "Získat aplikace pro synchronizaci vašich souborů", diff --git a/settings/l10n/cs_CZ.json b/settings/l10n/cs_CZ.json index 70794c6f0b1..5c40c3bb246 100644 --- a/settings/l10n/cs_CZ.json +++ b/settings/l10n/cs_CZ.json @@ -143,10 +143,10 @@ "Open documentation" : "Otevřít dokumentaci", "Allow apps to use the Share API" : "Povolit aplikacím používat API sdílení", "Allow users to share via link" : "Povolit uživatelům sdílení pomocí odkazů", - "Enforce password protection" : "Vynutit ochranu heslem", "Allow public uploads" : "Povolit veřejné nahrávání souborů", - "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat emailová upozornění pro sdílené soubory", + "Enforce password protection" : "Vynutit ochranu heslem", "Set default expiration date" : "Nastavit výchozí datum vypršení platnosti", + "Allow users to send mail notification for shared files" : "Povolit uživatelům odesílat emailová upozornění pro sdílené soubory", "Expire after " : "Vyprší po", "days" : "dnech", "Enforce expiration date" : "Vynutit datum vypršení", @@ -258,6 +258,7 @@ "Current password" : "Současné heslo", "New password" : "Nové heslo", "Change password" : "Změnit heslo", + "Name" : "Název", "Language" : "Jazyk", "Help translate" : "Pomoci s překladem", "Get the apps to sync your files" : "Získat aplikace pro synchronizaci vašich souborů", diff --git a/settings/l10n/cy_GB.js b/settings/l10n/cy_GB.js index 0ec235ab325..62e9e2f7cdd 100644 --- a/settings/l10n/cy_GB.js +++ b/settings/l10n/cy_GB.js @@ -15,6 +15,7 @@ OC.L10N.register( "Email" : "E-bost", "Password" : "Cyfrinair", "New password" : "Cyfrinair newydd", + "Name" : "Enw", "Username" : "Enw defnyddiwr", "Other" : "Arall" }, diff --git a/settings/l10n/cy_GB.json b/settings/l10n/cy_GB.json index 27829ede455..959fad4fa62 100644 --- a/settings/l10n/cy_GB.json +++ b/settings/l10n/cy_GB.json @@ -13,6 +13,7 @@ "Email" : "E-bost", "Password" : "Cyfrinair", "New password" : "Cyfrinair newydd", + "Name" : "Enw", "Username" : "Enw defnyddiwr", "Other" : "Arall" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" diff --git a/settings/l10n/da.js b/settings/l10n/da.js index 321c4ed44c5..302be9d8829 100644 --- a/settings/l10n/da.js +++ b/settings/l10n/da.js @@ -131,10 +131,10 @@ OC.L10N.register( "Open documentation" : "Åben dokumentation", "Allow apps to use the Share API" : "Tillad apps til at bruge Share API", "Allow users to share via link" : "Tillad brugere at dele via link", - "Enforce password protection" : "Tving kodeords beskyttelse", "Allow public uploads" : "Tillad offentlig upload", - "Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer", + "Enforce password protection" : "Tving kodeords beskyttelse", "Set default expiration date" : "Vælg standard udløbsdato", + "Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer", "Expire after " : "Udløber efter", "days" : "dage", "Enforce expiration date" : "Påtving udløbsdato", @@ -229,6 +229,7 @@ OC.L10N.register( "Current password" : "Nuværende adgangskode", "New password" : "Nyt kodeord", "Change password" : "Skift kodeord", + "Name" : "Navn", "Language" : "Sprog", "Help translate" : "Hjælp med oversættelsen", "Get the apps to sync your files" : "Hent applikationerne for at synkronisere dine filer", diff --git a/settings/l10n/da.json b/settings/l10n/da.json index 3e1d9e9ccc3..70824214d89 100644 --- a/settings/l10n/da.json +++ b/settings/l10n/da.json @@ -129,10 +129,10 @@ "Open documentation" : "Åben dokumentation", "Allow apps to use the Share API" : "Tillad apps til at bruge Share API", "Allow users to share via link" : "Tillad brugere at dele via link", - "Enforce password protection" : "Tving kodeords beskyttelse", "Allow public uploads" : "Tillad offentlig upload", - "Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer", + "Enforce password protection" : "Tving kodeords beskyttelse", "Set default expiration date" : "Vælg standard udløbsdato", + "Allow users to send mail notification for shared files" : "Tillad brugere at sende mail underretninger for delte filer", "Expire after " : "Udløber efter", "days" : "dage", "Enforce expiration date" : "Påtving udløbsdato", @@ -227,6 +227,7 @@ "Current password" : "Nuværende adgangskode", "New password" : "Nyt kodeord", "Change password" : "Skift kodeord", + "Name" : "Navn", "Language" : "Sprog", "Help translate" : "Hjælp med oversættelsen", "Get the apps to sync your files" : "Hent applikationerne for at synkronisere dine filer", diff --git a/settings/l10n/de.js b/settings/l10n/de.js index 4795f1535da..2a96f91a2b3 100644 --- a/settings/l10n/de.js +++ b/settings/l10n/de.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Dokumentation öffnen", "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", "Allow users to share via link" : "Benutzern erlauben, Inhalte über Links zu teilen", - "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", - "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", + "Enforce password protection" : "Passwortschutz erzwingen", "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", + "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Expire after " : "Ablauf nach ", "days" : "Tagen", "Enforce expiration date" : "Ablaufdatum erzwingen", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Aktuelles Passwort", "New password" : "Neues Passwort", "Change password" : "Passwort ändern", + "Name" : "Name", "Language" : "Sprache", "Help translate" : "Hilf bei der Übersetzung", "Get the apps to sync your files" : "Lade die Apps zur Synchronisierung Deiner Daten herunter", diff --git a/settings/l10n/de.json b/settings/l10n/de.json index 8c221a2f9ad..7ba11878558 100644 --- a/settings/l10n/de.json +++ b/settings/l10n/de.json @@ -143,10 +143,10 @@ "Open documentation" : "Dokumentation öffnen", "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", "Allow users to share via link" : "Benutzern erlauben, Inhalte über Links zu teilen", - "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", - "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", + "Enforce password protection" : "Passwortschutz erzwingen", "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", + "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Expire after " : "Ablauf nach ", "days" : "Tagen", "Enforce expiration date" : "Ablaufdatum erzwingen", @@ -258,6 +258,7 @@ "Current password" : "Aktuelles Passwort", "New password" : "Neues Passwort", "Change password" : "Passwort ändern", + "Name" : "Name", "Language" : "Sprache", "Help translate" : "Hilf bei der Übersetzung", "Get the apps to sync your files" : "Lade die Apps zur Synchronisierung Deiner Daten herunter", diff --git a/settings/l10n/de_AT.js b/settings/l10n/de_AT.js index 0739d2bfa5b..17b904e454f 100644 --- a/settings/l10n/de_AT.js +++ b/settings/l10n/de_AT.js @@ -20,6 +20,7 @@ OC.L10N.register( "Password" : "Passwort", "New password" : "Neues Passwort", "Change password" : "Passwort ändern", + "Name" : "Name", "Username" : "Benutzername", "Other" : "Anderes" }, diff --git a/settings/l10n/de_AT.json b/settings/l10n/de_AT.json index a41420156e8..003381654c2 100644 --- a/settings/l10n/de_AT.json +++ b/settings/l10n/de_AT.json @@ -18,6 +18,7 @@ "Password" : "Passwort", "New password" : "Neues Passwort", "Change password" : "Passwort ändern", + "Name" : "Name", "Username" : "Benutzername", "Other" : "Anderes" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js index 4990e08c78c..3a5e4b8c9b7 100644 --- a/settings/l10n/de_DE.js +++ b/settings/l10n/de_DE.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Dokumentation öffnen", "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", "Allow users to share via link" : "Benutzern erlauben, Inhalte über Links zu teilen", - "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", - "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", + "Enforce password protection" : "Passwortschutz erzwingen", "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", + "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Expire after " : "Ablauf nach ", "days" : "Tagen", "Enforce expiration date" : "Ablaufdatum erzwingen", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Aktuelles Passwort", "New password" : "Neues Passwort", "Change password" : "Passwort ändern", + "Name" : "Name", "Language" : "Sprache", "Help translate" : "Helfen Sie bei der Übersetzung", "Get the apps to sync your files" : "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json index 6f7bba640b6..65724bcbc8f 100644 --- a/settings/l10n/de_DE.json +++ b/settings/l10n/de_DE.json @@ -143,10 +143,10 @@ "Open documentation" : "Dokumentation öffnen", "Allow apps to use the Share API" : "Apps die Benutzung der Share-API erlauben", "Allow users to share via link" : "Benutzern erlauben, Inhalte über Links zu teilen", - "Enforce password protection" : "Passwortschutz erzwingen", "Allow public uploads" : "Öffentliches Hochladen erlauben", - "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", + "Enforce password protection" : "Passwortschutz erzwingen", "Set default expiration date" : "Standardmäßiges Ablaufdatum setzen", + "Allow users to send mail notification for shared files" : "Benutzern erlauben, E-Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Expire after " : "Ablauf nach ", "days" : "Tagen", "Enforce expiration date" : "Ablaufdatum erzwingen", @@ -258,6 +258,7 @@ "Current password" : "Aktuelles Passwort", "New password" : "Neues Passwort", "Change password" : "Passwort ändern", + "Name" : "Name", "Language" : "Sprache", "Help translate" : "Helfen Sie bei der Übersetzung", "Get the apps to sync your files" : "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", diff --git a/settings/l10n/el.js b/settings/l10n/el.js index 26363eba12e..772e67bc84c 100644 --- a/settings/l10n/el.js +++ b/settings/l10n/el.js @@ -133,10 +133,10 @@ OC.L10N.register( "Open documentation" : "Ανοιχτή τεκμηρίωση.", "Allow apps to use the Share API" : "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", "Allow users to share via link" : "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μέσω συνδέσμου", - "Enforce password protection" : "Επιβολή προστασίας με κωδικό", "Allow public uploads" : "Επιτρέπεται το κοινόχρηστο ανέβασμα", - "Allow users to send mail notification for shared files" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", + "Enforce password protection" : "Επιβολή προστασίας με κωδικό", "Set default expiration date" : "Ορισμός ερήμην ημερομηνίας λήξης", + "Allow users to send mail notification for shared files" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Expire after " : "Λήξη μετά από", "days" : "ημέρες", "Enforce expiration date" : "Επιβολή της ημερομηνίας λήξης", @@ -233,6 +233,7 @@ OC.L10N.register( "Current password" : "Τρέχων συνθηματικό", "New password" : "Νέο συνθηματικό", "Change password" : "Αλλαγή συνθηματικού", + "Name" : "Όνομα", "Language" : "Γλώσσα", "Help translate" : "Βοηθήστε στη μετάφραση", "Get the apps to sync your files" : "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας", diff --git a/settings/l10n/el.json b/settings/l10n/el.json index 02718da84d1..0f7319db5d7 100644 --- a/settings/l10n/el.json +++ b/settings/l10n/el.json @@ -131,10 +131,10 @@ "Open documentation" : "Ανοιχτή τεκμηρίωση.", "Allow apps to use the Share API" : "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", "Allow users to share via link" : "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μέσω συνδέσμου", - "Enforce password protection" : "Επιβολή προστασίας με κωδικό", "Allow public uploads" : "Επιτρέπεται το κοινόχρηστο ανέβασμα", - "Allow users to send mail notification for shared files" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", + "Enforce password protection" : "Επιβολή προστασίας με κωδικό", "Set default expiration date" : "Ορισμός ερήμην ημερομηνίας λήξης", + "Allow users to send mail notification for shared files" : "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Expire after " : "Λήξη μετά από", "days" : "ημέρες", "Enforce expiration date" : "Επιβολή της ημερομηνίας λήξης", @@ -231,6 +231,7 @@ "Current password" : "Τρέχων συνθηματικό", "New password" : "Νέο συνθηματικό", "Change password" : "Αλλαγή συνθηματικού", + "Name" : "Όνομα", "Language" : "Γλώσσα", "Help translate" : "Βοηθήστε στη μετάφραση", "Get the apps to sync your files" : "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας", diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js index b4a6681ccd2..10535f5870f 100644 --- a/settings/l10n/en_GB.js +++ b/settings/l10n/en_GB.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Open documentation", "Allow apps to use the Share API" : "Allow apps to use the Share API", "Allow users to share via link" : "Allow users to share via link", - "Enforce password protection" : "Enforce password protection", "Allow public uploads" : "Allow public uploads", - "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", + "Enforce password protection" : "Enforce password protection", "Set default expiration date" : "Set default expiry date", + "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", "Expire after " : "Expire after ", "days" : "days", "Enforce expiration date" : "Enforce expiry date", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Current password", "New password" : "New password", "Change password" : "Change password", + "Name" : "Name", "Language" : "Language", "Help translate" : "Help translate", "Get the apps to sync your files" : "Get the apps to sync your files", diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json index 8a990886585..c2e7a90a915 100644 --- a/settings/l10n/en_GB.json +++ b/settings/l10n/en_GB.json @@ -143,10 +143,10 @@ "Open documentation" : "Open documentation", "Allow apps to use the Share API" : "Allow apps to use the Share API", "Allow users to share via link" : "Allow users to share via link", - "Enforce password protection" : "Enforce password protection", "Allow public uploads" : "Allow public uploads", - "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", + "Enforce password protection" : "Enforce password protection", "Set default expiration date" : "Set default expiry date", + "Allow users to send mail notification for shared files" : "Allow users to send mail notification for shared files", "Expire after " : "Expire after ", "days" : "days", "Enforce expiration date" : "Enforce expiry date", @@ -258,6 +258,7 @@ "Current password" : "Current password", "New password" : "New password", "Change password" : "Change password", + "Name" : "Name", "Language" : "Language", "Help translate" : "Help translate", "Get the apps to sync your files" : "Get the apps to sync your files", diff --git a/settings/l10n/eo.js b/settings/l10n/eo.js index b5cd88723bb..c34ab8141fe 100644 --- a/settings/l10n/eo.js +++ b/settings/l10n/eo.js @@ -122,6 +122,7 @@ OC.L10N.register( "Current password" : "Nuna pasvorto", "New password" : "Nova pasvorto", "Change password" : "Ŝanĝi la pasvorton", + "Name" : "Nomo", "Language" : "Lingvo", "Help translate" : "Helpu traduki", "Get the apps to sync your files" : "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn", diff --git a/settings/l10n/eo.json b/settings/l10n/eo.json index 09825e1b9cb..38a365fc68d 100644 --- a/settings/l10n/eo.json +++ b/settings/l10n/eo.json @@ -120,6 +120,7 @@ "Current password" : "Nuna pasvorto", "New password" : "Nova pasvorto", "Change password" : "Ŝanĝi la pasvorton", + "Name" : "Nomo", "Language" : "Lingvo", "Help translate" : "Helpu traduki", "Get the apps to sync your files" : "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn", diff --git a/settings/l10n/es.js b/settings/l10n/es.js index 2f8373a58d8..ca36b34ac29 100644 --- a/settings/l10n/es.js +++ b/settings/l10n/es.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Documentación abierta", "Allow apps to use the Share API" : "Permitir a las aplicaciones utilizar la API de Compartición", "Allow users to share via link" : "Permite a los usuarios compartir por medio de enlaces", - "Enforce password protection" : "Forzar la protección por contraseña.", "Allow public uploads" : "Permitir subidas públicas", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", + "Enforce password protection" : "Forzar la protección por contraseña.", "Set default expiration date" : "Establecer fecha de caducidad predeterminada", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", "Expire after " : "Caduca luego de", "days" : "días", "Enforce expiration date" : "Imponer fecha de caducidad", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Contraseña actual", "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", + "Name" : "Nombre", "Language" : "Idioma", "Help translate" : "Ayúdanos a traducir", "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", diff --git a/settings/l10n/es.json b/settings/l10n/es.json index b75e5b0df01..e636ea61b0e 100644 --- a/settings/l10n/es.json +++ b/settings/l10n/es.json @@ -143,10 +143,10 @@ "Open documentation" : "Documentación abierta", "Allow apps to use the Share API" : "Permitir a las aplicaciones utilizar la API de Compartición", "Allow users to share via link" : "Permite a los usuarios compartir por medio de enlaces", - "Enforce password protection" : "Forzar la protección por contraseña.", "Allow public uploads" : "Permitir subidas públicas", - "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", + "Enforce password protection" : "Forzar la protección por contraseña.", "Set default expiration date" : "Establecer fecha de caducidad predeterminada", + "Allow users to send mail notification for shared files" : "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", "Expire after " : "Caduca luego de", "days" : "días", "Enforce expiration date" : "Imponer fecha de caducidad", @@ -258,6 +258,7 @@ "Current password" : "Contraseña actual", "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", + "Name" : "Nombre", "Language" : "Idioma", "Help translate" : "Ayúdanos a traducir", "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", diff --git a/settings/l10n/es_AR.js b/settings/l10n/es_AR.js index 69133aaef20..4553975267b 100644 --- a/settings/l10n/es_AR.js +++ b/settings/l10n/es_AR.js @@ -102,6 +102,7 @@ OC.L10N.register( "Current password" : "Contraseña actual", "New password" : "Nueva contraseña:", "Change password" : "Cambiar contraseña", + "Name" : "Nombre", "Language" : "Idioma", "Help translate" : "Ayudanos a traducir", "Get the apps to sync your files" : "Obtené Apps para sincronizar tus archivos", diff --git a/settings/l10n/es_AR.json b/settings/l10n/es_AR.json index c5dd291de8c..f1d988e59a1 100644 --- a/settings/l10n/es_AR.json +++ b/settings/l10n/es_AR.json @@ -100,6 +100,7 @@ "Current password" : "Contraseña actual", "New password" : "Nueva contraseña:", "Change password" : "Cambiar contraseña", + "Name" : "Nombre", "Language" : "Idioma", "Help translate" : "Ayudanos a traducir", "Get the apps to sync your files" : "Obtené Apps para sincronizar tus archivos", diff --git a/settings/l10n/es_MX.js b/settings/l10n/es_MX.js index e25d42e27f6..292bfae47ef 100644 --- a/settings/l10n/es_MX.js +++ b/settings/l10n/es_MX.js @@ -77,6 +77,7 @@ OC.L10N.register( "Current password" : "Contraseña actual", "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", + "Name" : "Nombre", "Language" : "Idioma", "Help translate" : "Ayúdanos a traducir", "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", diff --git a/settings/l10n/es_MX.json b/settings/l10n/es_MX.json index 087c4f475d6..bf00a148f83 100644 --- a/settings/l10n/es_MX.json +++ b/settings/l10n/es_MX.json @@ -75,6 +75,7 @@ "Current password" : "Contraseña actual", "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", + "Name" : "Nombre", "Language" : "Idioma", "Help translate" : "Ayúdanos a traducir", "Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos", diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js index d9039c19a9b..c2fa0631fb8 100644 --- a/settings/l10n/et_EE.js +++ b/settings/l10n/et_EE.js @@ -113,10 +113,10 @@ OC.L10N.register( "Open documentation" : "Ava dokumentatsioon", "Allow apps to use the Share API" : "Luba rakendustel kasutada Share API-t", "Allow users to share via link" : "Luba kasutajatel lingiga jagamist ", - "Enforce password protection" : "Sunni parooliga kaitsmist", "Allow public uploads" : "Luba avalikud üleslaadimised", - "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", + "Enforce password protection" : "Sunni parooliga kaitsmist", "Set default expiration date" : "Määra vaikimisi aegumise kuupäev", + "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Expire after " : "Aegu pärast", "days" : "päeva", "Enforce expiration date" : "Sunnitud aegumise kuupäev", @@ -197,6 +197,7 @@ OC.L10N.register( "Current password" : "Praegune parool", "New password" : "Uus parool", "Change password" : "Muuda parooli", + "Name" : "Nimi", "Language" : "Keel", "Help translate" : "Aita tõlkida", "Get the apps to sync your files" : "Hangi rakendusi failide sünkroniseerimiseks", diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json index 0d4725608e9..d65f6fa7c16 100644 --- a/settings/l10n/et_EE.json +++ b/settings/l10n/et_EE.json @@ -111,10 +111,10 @@ "Open documentation" : "Ava dokumentatsioon", "Allow apps to use the Share API" : "Luba rakendustel kasutada Share API-t", "Allow users to share via link" : "Luba kasutajatel lingiga jagamist ", - "Enforce password protection" : "Sunni parooliga kaitsmist", "Allow public uploads" : "Luba avalikud üleslaadimised", - "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", + "Enforce password protection" : "Sunni parooliga kaitsmist", "Set default expiration date" : "Määra vaikimisi aegumise kuupäev", + "Allow users to send mail notification for shared files" : "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Expire after " : "Aegu pärast", "days" : "päeva", "Enforce expiration date" : "Sunnitud aegumise kuupäev", @@ -195,6 +195,7 @@ "Current password" : "Praegune parool", "New password" : "Uus parool", "Change password" : "Muuda parooli", + "Name" : "Nimi", "Language" : "Keel", "Help translate" : "Aita tõlkida", "Get the apps to sync your files" : "Hangi rakendusi failide sünkroniseerimiseks", diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js index 5ff313c9987..7e45f144525 100644 --- a/settings/l10n/eu.js +++ b/settings/l10n/eu.js @@ -101,10 +101,10 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")", "Allow apps to use the Share API" : "Baimendu aplikazioak partekatzeko APIa erabiltzeko", "Allow users to share via link" : "Baimendu erabiltzaileak esteken bidez partekatzea", - "Enforce password protection" : "Betearazi pasahitzaren babesa", "Allow public uploads" : "Baimendu igoera publikoak", - "Allow users to send mail notification for shared files" : "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", + "Enforce password protection" : "Betearazi pasahitzaren babesa", "Set default expiration date" : "Ezarri muga data lehenetsia", + "Allow users to send mail notification for shared files" : "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", "Expire after " : "Iraungia honen ondoren", "days" : "egun", "Enforce expiration date" : "Muga data betearazi", @@ -161,6 +161,7 @@ OC.L10N.register( "Current password" : "Uneko pasahitza", "New password" : "Pasahitz berria", "Change password" : "Aldatu pasahitza", + "Name" : "Izena", "Language" : "Hizkuntza", "Help translate" : "Lagundu itzultzen", "Get the apps to sync your files" : "Lortu aplikazioak zure fitxategiak sinkronizatzeko", diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json index 1ab3a48792a..204d1a45107 100644 --- a/settings/l10n/eu.json +++ b/settings/l10n/eu.json @@ -99,10 +99,10 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")", "Allow apps to use the Share API" : "Baimendu aplikazioak partekatzeko APIa erabiltzeko", "Allow users to share via link" : "Baimendu erabiltzaileak esteken bidez partekatzea", - "Enforce password protection" : "Betearazi pasahitzaren babesa", "Allow public uploads" : "Baimendu igoera publikoak", - "Allow users to send mail notification for shared files" : "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", + "Enforce password protection" : "Betearazi pasahitzaren babesa", "Set default expiration date" : "Ezarri muga data lehenetsia", + "Allow users to send mail notification for shared files" : "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", "Expire after " : "Iraungia honen ondoren", "days" : "egun", "Enforce expiration date" : "Muga data betearazi", @@ -159,6 +159,7 @@ "Current password" : "Uneko pasahitza", "New password" : "Pasahitz berria", "Change password" : "Aldatu pasahitza", + "Name" : "Izena", "Language" : "Hizkuntza", "Help translate" : "Lagundu itzultzen", "Get the apps to sync your files" : "Lortu aplikazioak zure fitxategiak sinkronizatzeko", diff --git a/settings/l10n/fa.js b/settings/l10n/fa.js index 556e9a52f28..c6d8a17b4fb 100644 --- a/settings/l10n/fa.js +++ b/settings/l10n/fa.js @@ -108,10 +108,10 @@ OC.L10N.register( "Open documentation" : "بازکردن مستند", "Allow apps to use the Share API" : "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", "Allow users to share via link" : "اجازه دادن به کاربران برای اشتراک گذاری توسط پیوند", - "Enforce password protection" : "اجبار برای محافظت توسط رمز عبور", "Allow public uploads" : "اجازه بارگذاری عمومی", - "Allow users to send mail notification for shared files" : "اجازه به کاربران برای ارسال ایمیل نوتیفیکیشن برای فایلهای به اشتراکگذاشته شده", + "Enforce password protection" : "اجبار برای محافظت توسط رمز عبور", "Set default expiration date" : "اعمال تاریخ اتمام پیش فرض", + "Allow users to send mail notification for shared files" : "اجازه به کاربران برای ارسال ایمیل نوتیفیکیشن برای فایلهای به اشتراکگذاشته شده", "Expire after " : "اتمام اعتبار بعد از", "days" : "روز", "Enforce expiration date" : "اعمال تاریخ اتمام اشتراک گذاری", @@ -186,6 +186,7 @@ OC.L10N.register( "Current password" : "گذرواژه کنونی", "New password" : "گذرواژه جدید", "Change password" : "تغییر گذر واژه", + "Name" : "نام", "Language" : "زبان", "Help translate" : "به ترجمه آن کمک کنید", "Get the apps to sync your files" : "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید", diff --git a/settings/l10n/fa.json b/settings/l10n/fa.json index 506f16d5816..19c9426a8bd 100644 --- a/settings/l10n/fa.json +++ b/settings/l10n/fa.json @@ -106,10 +106,10 @@ "Open documentation" : "بازکردن مستند", "Allow apps to use the Share API" : "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", "Allow users to share via link" : "اجازه دادن به کاربران برای اشتراک گذاری توسط پیوند", - "Enforce password protection" : "اجبار برای محافظت توسط رمز عبور", "Allow public uploads" : "اجازه بارگذاری عمومی", - "Allow users to send mail notification for shared files" : "اجازه به کاربران برای ارسال ایمیل نوتیفیکیشن برای فایلهای به اشتراکگذاشته شده", + "Enforce password protection" : "اجبار برای محافظت توسط رمز عبور", "Set default expiration date" : "اعمال تاریخ اتمام پیش فرض", + "Allow users to send mail notification for shared files" : "اجازه به کاربران برای ارسال ایمیل نوتیفیکیشن برای فایلهای به اشتراکگذاشته شده", "Expire after " : "اتمام اعتبار بعد از", "days" : "روز", "Enforce expiration date" : "اعمال تاریخ اتمام اشتراک گذاری", @@ -184,6 +184,7 @@ "Current password" : "گذرواژه کنونی", "New password" : "گذرواژه جدید", "Change password" : "تغییر گذر واژه", + "Name" : "نام", "Language" : "زبان", "Help translate" : "به ترجمه آن کمک کنید", "Get the apps to sync your files" : "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید", diff --git a/settings/l10n/fi_FI.js b/settings/l10n/fi_FI.js index 0e438ae7445..8b0dc72daf9 100644 --- a/settings/l10n/fi_FI.js +++ b/settings/l10n/fi_FI.js @@ -85,6 +85,7 @@ OC.L10N.register( "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Tämä sovellus on otettu käyttöön, mutta se vaatii päivityksen. Sinut ohjataan päivityssivulle viiden sekunnin kuluttua.", "App update" : "Sovelluspäivitys", "No apps found for {query}" : "Haulla {query} ei löytynyt sovelluksia", + "Disconnect" : "Katkaise yhteys", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Tapahtu virhe. Lähetä ASCII-koodattu PEM-varmenne.", "Valid until {date}" : "Kelvollinen {date} asti", "Delete" : "Poista", @@ -113,6 +114,8 @@ OC.L10N.register( "__language_name__" : "_kielen_nimi_", "Unlimited" : "Rajoittamaton", "Personal info" : "Henkilökohtaiset tiedot", + "Sessions" : "Istunnot", + "Devices" : "Laitteet", "Sync clients" : "Synkronointisovellukset", "Everything (fatal issues, errors, warnings, info, debug)" : "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)", "Info, warnings, errors and fatal issues" : "Tiedot, varoitukset, virheet ja vakavat ongelmat", @@ -137,10 +140,10 @@ OC.L10N.register( "Open documentation" : "Avaa dokumentaatio", "Allow apps to use the Share API" : "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", "Allow users to share via link" : "Salli käyttäjien jakaa linkkien kautta", - "Enforce password protection" : "Pakota salasanasuojaus", "Allow public uploads" : "Salli julkiset lähetykset", - "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", + "Enforce password protection" : "Pakota salasanasuojaus", "Set default expiration date" : "Aseta oletusvanhenemispäivä", + "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Expire after " : "Vanhenna", "days" : "päivän jälkeen", "Enforce expiration date" : "Pakota vanhenemispäivä", @@ -249,6 +252,12 @@ OC.L10N.register( "Current password" : "Nykyinen salasana", "New password" : "Uusi salasana", "Change password" : "Vaihda salasana", + "These are the web browsers currently logged in to your ownCloud." : "Nämä ovat parhaillaan ownCloudiisi sisäänkirjautuneet selaimet.", + "Browser" : "Selain", + "Most recent activity" : "Viimeisimmät toimet", + "You've linked these devices." : "Olet linkittänyt nämä laitteet.", + "Name" : "Nimi", + "A device password is a passcode that gives an app or device permissions to access your ownCloud account." : "Laitesalasana on suojakoodi, jonka avulla sovellus tai laite saa oikeuden käyttää ownCloud-tiliäsi.", "Language" : "Kieli", "Help translate" : "Auta kääntämisessä", "Get the apps to sync your files" : "Aseta sovellukset synkronoimaan tiedostosi", diff --git a/settings/l10n/fi_FI.json b/settings/l10n/fi_FI.json index 768f7e46b39..a602456e440 100644 --- a/settings/l10n/fi_FI.json +++ b/settings/l10n/fi_FI.json @@ -83,6 +83,7 @@ "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Tämä sovellus on otettu käyttöön, mutta se vaatii päivityksen. Sinut ohjataan päivityssivulle viiden sekunnin kuluttua.", "App update" : "Sovelluspäivitys", "No apps found for {query}" : "Haulla {query} ei löytynyt sovelluksia", + "Disconnect" : "Katkaise yhteys", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Tapahtu virhe. Lähetä ASCII-koodattu PEM-varmenne.", "Valid until {date}" : "Kelvollinen {date} asti", "Delete" : "Poista", @@ -111,6 +112,8 @@ "__language_name__" : "_kielen_nimi_", "Unlimited" : "Rajoittamaton", "Personal info" : "Henkilökohtaiset tiedot", + "Sessions" : "Istunnot", + "Devices" : "Laitteet", "Sync clients" : "Synkronointisovellukset", "Everything (fatal issues, errors, warnings, info, debug)" : "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)", "Info, warnings, errors and fatal issues" : "Tiedot, varoitukset, virheet ja vakavat ongelmat", @@ -135,10 +138,10 @@ "Open documentation" : "Avaa dokumentaatio", "Allow apps to use the Share API" : "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", "Allow users to share via link" : "Salli käyttäjien jakaa linkkien kautta", - "Enforce password protection" : "Pakota salasanasuojaus", "Allow public uploads" : "Salli julkiset lähetykset", - "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", + "Enforce password protection" : "Pakota salasanasuojaus", "Set default expiration date" : "Aseta oletusvanhenemispäivä", + "Allow users to send mail notification for shared files" : "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Expire after " : "Vanhenna", "days" : "päivän jälkeen", "Enforce expiration date" : "Pakota vanhenemispäivä", @@ -247,6 +250,12 @@ "Current password" : "Nykyinen salasana", "New password" : "Uusi salasana", "Change password" : "Vaihda salasana", + "These are the web browsers currently logged in to your ownCloud." : "Nämä ovat parhaillaan ownCloudiisi sisäänkirjautuneet selaimet.", + "Browser" : "Selain", + "Most recent activity" : "Viimeisimmät toimet", + "You've linked these devices." : "Olet linkittänyt nämä laitteet.", + "Name" : "Nimi", + "A device password is a passcode that gives an app or device permissions to access your ownCloud account." : "Laitesalasana on suojakoodi, jonka avulla sovellus tai laite saa oikeuden käyttää ownCloud-tiliäsi.", "Language" : "Kieli", "Help translate" : "Auta kääntämisessä", "Get the apps to sync your files" : "Aseta sovellukset synkronoimaan tiedostosi", diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js index 86bab961623..ccfd0a27135 100644 --- a/settings/l10n/fr.js +++ b/settings/l10n/fr.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Voir la documentation", "Allow apps to use the Share API" : "Autoriser les applications à utiliser l'API de partage", "Allow users to share via link" : "Autoriser les utilisateurs à partager par lien", - "Enforce password protection" : "Imposer la protection par mot de passe", "Allow public uploads" : "Autoriser les téléversements publics", - "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail", + "Enforce password protection" : "Imposer la protection par mot de passe", "Set default expiration date" : "Spécifier une date d'expiration par défaut", + "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail", "Expire after " : "Expiration après ", "days" : "jours", "Enforce expiration date" : "Imposer la date d'expiration", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Mot de passe actuel", "New password" : "Nouveau mot de passe", "Change password" : "Changer de mot de passe", + "Name" : "Nom", "Language" : "Langue", "Help translate" : "Aidez à traduire", "Get the apps to sync your files" : "Obtenez les applications de synchronisation de vos fichiers", diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json index 4291b6f8757..db18ce3d44e 100644 --- a/settings/l10n/fr.json +++ b/settings/l10n/fr.json @@ -143,10 +143,10 @@ "Open documentation" : "Voir la documentation", "Allow apps to use the Share API" : "Autoriser les applications à utiliser l'API de partage", "Allow users to share via link" : "Autoriser les utilisateurs à partager par lien", - "Enforce password protection" : "Imposer la protection par mot de passe", "Allow public uploads" : "Autoriser les téléversements publics", - "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail", + "Enforce password protection" : "Imposer la protection par mot de passe", "Set default expiration date" : "Spécifier une date d'expiration par défaut", + "Allow users to send mail notification for shared files" : "Autoriser les utilisateurs à envoyer des notifications de partage par e-mail", "Expire after " : "Expiration après ", "days" : "jours", "Enforce expiration date" : "Imposer la date d'expiration", @@ -258,6 +258,7 @@ "Current password" : "Mot de passe actuel", "New password" : "Nouveau mot de passe", "Change password" : "Changer de mot de passe", + "Name" : "Nom", "Language" : "Langue", "Help translate" : "Aidez à traduire", "Get the apps to sync your files" : "Obtenez les applications de synchronisation de vos fichiers", diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js index e698566696a..fe21e8e143a 100644 --- a/settings/l10n/gl.js +++ b/settings/l10n/gl.js @@ -130,10 +130,10 @@ OC.L10N.register( "Open documentation" : "Abrir a documentación", "Allow apps to use the Share API" : "Permitir que as aplicacións empreguen o API para compartir", "Allow users to share via link" : "Permitir que os usuarios compartan a través de ligazóns", - "Enforce password protection" : "Forzar a protección por contrasinal", "Allow public uploads" : "Permitir os envíos públicos", - "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", + "Enforce password protection" : "Forzar a protección por contrasinal", "Set default expiration date" : "Definir a data predeterminada de caducidade", + "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Expire after " : "Caduca após", "days" : "días", "Enforce expiration date" : "Obrigar a data de caducidade", @@ -223,6 +223,7 @@ OC.L10N.register( "Current password" : "Contrasinal actual", "New password" : "Novo contrasinal", "Change password" : "Cambiar o contrasinal", + "Name" : "Nome", "Language" : "Idioma", "Help translate" : "Axude na tradución", "Get the apps to sync your files" : "Obteña as aplicacións para sincronizar os seus ficheiros", diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json index 8f0e2cfcb8f..92f0788ba43 100644 --- a/settings/l10n/gl.json +++ b/settings/l10n/gl.json @@ -128,10 +128,10 @@ "Open documentation" : "Abrir a documentación", "Allow apps to use the Share API" : "Permitir que as aplicacións empreguen o API para compartir", "Allow users to share via link" : "Permitir que os usuarios compartan a través de ligazóns", - "Enforce password protection" : "Forzar a protección por contrasinal", "Allow public uploads" : "Permitir os envíos públicos", - "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", + "Enforce password protection" : "Forzar a protección por contrasinal", "Set default expiration date" : "Definir a data predeterminada de caducidade", + "Allow users to send mail notification for shared files" : "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Expire after " : "Caduca após", "days" : "días", "Enforce expiration date" : "Obrigar a data de caducidade", @@ -221,6 +221,7 @@ "Current password" : "Contrasinal actual", "New password" : "Novo contrasinal", "Change password" : "Cambiar o contrasinal", + "Name" : "Nome", "Language" : "Idioma", "Help translate" : "Axude na tradución", "Get the apps to sync your files" : "Obteña as aplicacións para sincronizar os seus ficheiros", diff --git a/settings/l10n/he.js b/settings/l10n/he.js index 6e53e4f91df..5740edbb761 100644 --- a/settings/l10n/he.js +++ b/settings/l10n/he.js @@ -143,10 +143,10 @@ OC.L10N.register( "Open documentation" : "תיעוד פתוח", "Allow apps to use the Share API" : "לאפשר ליישום להשתמש ב־API השיתוף", "Allow users to share via link" : "אפשר למשתמשים לשתף באמצעות קישור", - "Enforce password protection" : "חייב הגנת סיסמא", "Allow public uploads" : "אפשר העלאות ציבוריות", - "Allow users to send mail notification for shared files" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים", + "Enforce password protection" : "חייב הגנת סיסמא", "Set default expiration date" : "הגדרת תאריך תפוגה ברירת מחדל", + "Allow users to send mail notification for shared files" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים", "Expire after " : "פג אחרי", "days" : "ימים", "Enforce expiration date" : "חייב תאריך תפוגה", @@ -258,6 +258,7 @@ OC.L10N.register( "Current password" : "סיסמא נוכחית", "New password" : "סיסמא חדשה", "Change password" : "שינוי סיסמא", + "Name" : "שם", "Language" : "שפה", "Help translate" : "עזרה בתרגום", "Get the apps to sync your files" : "קבלת היישומים לסנכרון הקבצים שלך", diff --git a/settings/l10n/he.json b/settings/l10n/he.json index dd0a90db149..cfa9f79b760 100644 --- a/settings/l10n/he.json +++ b/settings/l10n/he.json @@ -141,10 +141,10 @@ "Open documentation" : "תיעוד פתוח", "Allow apps to use the Share API" : "לאפשר ליישום להשתמש ב־API השיתוף", "Allow users to share via link" : "אפשר למשתמשים לשתף באמצעות קישור", - "Enforce password protection" : "חייב הגנת סיסמא", "Allow public uploads" : "אפשר העלאות ציבוריות", - "Allow users to send mail notification for shared files" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים", + "Enforce password protection" : "חייב הגנת סיסמא", "Set default expiration date" : "הגדרת תאריך תפוגה ברירת מחדל", + "Allow users to send mail notification for shared files" : "אפשר למשתמשים לשלוח הודעות דואר אלקטרוני לשיתוף קבצים", "Expire after " : "פג אחרי", "days" : "ימים", "Enforce expiration date" : "חייב תאריך תפוגה", @@ -256,6 +256,7 @@ "Current password" : "סיסמא נוכחית", "New password" : "סיסמא חדשה", "Change password" : "שינוי סיסמא", + "Name" : "שם", "Language" : "שפה", "Help translate" : "עזרה בתרגום", "Get the apps to sync your files" : "קבלת היישומים לסנכרון הקבצים שלך", diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js index e60de5bc04e..653b9c540ba 100644 --- a/settings/l10n/hr.js +++ b/settings/l10n/hr.js @@ -80,10 +80,10 @@ OC.L10N.register( "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.", "Allow apps to use the Share API" : "Dopustite apps korištenje Share API", "Allow users to share via link" : "Dopustite korisnicia dijeljenje putem veze", - "Enforce password protection" : "Nametnite zaštitu lozinki", "Allow public uploads" : "Dopustite javno učitavanje sadržaja", - "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", + "Enforce password protection" : "Nametnite zaštitu lozinki", "Set default expiration date" : "Postavite zadani datum isteka", + "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Expire after " : "Istek nakon", "days" : "dana", "Enforce expiration date" : "Nametnite datum isteka", @@ -132,6 +132,7 @@ OC.L10N.register( "Current password" : "Trenutna lozinka", "New password" : "Nova lozinka", "Change password" : "Promijenite lozinku", + "Name" : "Naziv", "Language" : "Jezik", "Help translate" : "Pomozite prevesti", "Get the apps to sync your files" : "Koristite aplikacije za sinkronizaciju svojih datoteka", diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json index 23e28664d78..d663d9152a7 100644 --- a/settings/l10n/hr.json +++ b/settings/l10n/hr.json @@ -78,10 +78,10 @@ "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.", "Allow apps to use the Share API" : "Dopustite apps korištenje Share API", "Allow users to share via link" : "Dopustite korisnicia dijeljenje putem veze", - "Enforce password protection" : "Nametnite zaštitu lozinki", "Allow public uploads" : "Dopustite javno učitavanje sadržaja", - "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", + "Enforce password protection" : "Nametnite zaštitu lozinki", "Set default expiration date" : "Postavite zadani datum isteka", + "Allow users to send mail notification for shared files" : "Dopustite korisnicima slanje notifikacijske e-pošte za podijeljene datoteke", "Expire after " : "Istek nakon", "days" : "dana", "Enforce expiration date" : "Nametnite datum isteka", @@ -130,6 +130,7 @@ "Current password" : "Trenutna lozinka", "New password" : "Nova lozinka", "Change password" : "Promijenite lozinku", + "Name" : "Naziv", "Language" : "Jezik", "Help translate" : "Pomozite prevesti", "Get the apps to sync your files" : "Koristite aplikacije za sinkronizaciju svojih datoteka", diff --git a/settings/l10n/hu_HU.js b/settings/l10n/hu_HU.js index 1bb3a4eb5ba..cc1b2b322fc 100644 --- a/settings/l10n/hu_HU.js +++ b/settings/l10n/hu_HU.js @@ -144,10 +144,10 @@ OC.L10N.register( "Open documentation" : "Dokumentáció megnyitása", "Allow apps to use the Share API" : "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", "Allow users to share via link" : "Engedjük meg az állományok linkekkel történő megosztását", - "Enforce password protection" : "Legyen kötelező a linkek jelszóval való védelme", "Allow public uploads" : "Nyilvános feltöltés engedélyezése", - "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", + "Enforce password protection" : "Legyen kötelező a linkek jelszóval való védelme", "Set default expiration date" : "Alapértelmezett lejárati idő beállítása", + "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", "Expire after " : "A lejárat legyen", "days" : "nap", "Enforce expiration date" : "A beállított lejárati idő legyen kötelezően érvényes", @@ -258,6 +258,7 @@ OC.L10N.register( "Current password" : "A jelenlegi jelszó", "New password" : "Az új jelszó", "Change password" : "A jelszó megváltoztatása", + "Name" : "Név", "Language" : "Nyelv", "Help translate" : "Segítsen a fordításban!", "Get the apps to sync your files" : "Töltse le az állományok szinkronizációjához szükséges programokat!", diff --git a/settings/l10n/hu_HU.json b/settings/l10n/hu_HU.json index c43ecc9d9cf..8e4e8595ba1 100644 --- a/settings/l10n/hu_HU.json +++ b/settings/l10n/hu_HU.json @@ -142,10 +142,10 @@ "Open documentation" : "Dokumentáció megnyitása", "Allow apps to use the Share API" : "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", "Allow users to share via link" : "Engedjük meg az állományok linkekkel történő megosztását", - "Enforce password protection" : "Legyen kötelező a linkek jelszóval való védelme", "Allow public uploads" : "Nyilvános feltöltés engedélyezése", - "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", + "Enforce password protection" : "Legyen kötelező a linkek jelszóval való védelme", "Set default expiration date" : "Alapértelmezett lejárati idő beállítása", + "Allow users to send mail notification for shared files" : "A felhasználók küldhessenek e-mail értesítést a megosztás létrejöttéről", "Expire after " : "A lejárat legyen", "days" : "nap", "Enforce expiration date" : "A beállított lejárati idő legyen kötelezően érvényes", @@ -256,6 +256,7 @@ "Current password" : "A jelenlegi jelszó", "New password" : "Az új jelszó", "Change password" : "A jelszó megváltoztatása", + "Name" : "Név", "Language" : "Nyelv", "Help translate" : "Segítsen a fordításban!", "Get the apps to sync your files" : "Töltse le az állományok szinkronizációjához szükséges programokat!", diff --git a/settings/l10n/hy.js b/settings/l10n/hy.js index 376d0aee144..16e00699138 100644 --- a/settings/l10n/hy.js +++ b/settings/l10n/hy.js @@ -23,6 +23,7 @@ OC.L10N.register( "Password" : "Գաղտնաբառ", "New password" : "Նոր գաղտնաբառ", "Change password" : "Փոխել գաղտնաբառը", + "Name" : "Անուն", "Language" : "Լեզու", "Help translate" : "Օգնել թարգմանել", "Username" : "Օգտանուն", diff --git a/settings/l10n/hy.json b/settings/l10n/hy.json index 1d271f8dadf..50db186ef45 100644 --- a/settings/l10n/hy.json +++ b/settings/l10n/hy.json @@ -21,6 +21,7 @@ "Password" : "Գաղտնաբառ", "New password" : "Նոր գաղտնաբառ", "Change password" : "Փոխել գաղտնաբառը", + "Name" : "Անուն", "Language" : "Լեզու", "Help translate" : "Օգնել թարգմանել", "Username" : "Օգտանուն", diff --git a/settings/l10n/ia.js b/settings/l10n/ia.js index 5dbc61ba7a3..d8ee2f7b95c 100644 --- a/settings/l10n/ia.js +++ b/settings/l10n/ia.js @@ -29,6 +29,7 @@ OC.L10N.register( "Current password" : "Contrasigno currente", "New password" : "Nove contrasigno", "Change password" : "Cambiar contrasigno", + "Name" : "Nomine", "Language" : "Linguage", "Help translate" : "Adjuta a traducer", "Get the apps to sync your files" : "Obtene le apps (applicationes) pro synchronizar tu files", diff --git a/settings/l10n/ia.json b/settings/l10n/ia.json index a74f90347b4..5d8b38f65be 100644 --- a/settings/l10n/ia.json +++ b/settings/l10n/ia.json @@ -27,6 +27,7 @@ "Current password" : "Contrasigno currente", "New password" : "Nove contrasigno", "Change password" : "Cambiar contrasigno", + "Name" : "Nomine", "Language" : "Linguage", "Help translate" : "Adjuta a traducer", "Get the apps to sync your files" : "Obtene le apps (applicationes) pro synchronizar tu files", diff --git a/settings/l10n/id.js b/settings/l10n/id.js index c2b71b5ddf2..e978b49dbaa 100644 --- a/settings/l10n/id.js +++ b/settings/l10n/id.js @@ -133,10 +133,10 @@ OC.L10N.register( "Open documentation" : "Buka dokumentasi", "Allow apps to use the Share API" : "Izinkan aplikasi untuk menggunakan API Pembagian", "Allow users to share via link" : "Izinkan pengguna untuk membagikan via tautan", - "Enforce password protection" : "Berlakukan perlindungan sandi", "Allow public uploads" : "Izinkan unggahan publik", - "Allow users to send mail notification for shared files" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", + "Enforce password protection" : "Berlakukan perlindungan sandi", "Set default expiration date" : "Atur tanggal kadaluarsa default", + "Allow users to send mail notification for shared files" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", "Expire after " : "Kadaluarsa setelah", "days" : "hari", "Enforce expiration date" : "Berlakukan tanggal kadaluarsa", @@ -233,6 +233,7 @@ OC.L10N.register( "Current password" : "Sandi saat ini", "New password" : "Sandi baru", "Change password" : "Ubah sandi", + "Name" : "Nama", "Language" : "Bahasa", "Help translate" : "Bantu menerjemahkan", "Get the apps to sync your files" : "Dapatkan aplikasi untuk sinkronisasi berkas Anda", diff --git a/settings/l10n/id.json b/settings/l10n/id.json index 373ac90dc55..336a1c22938 100644 --- a/settings/l10n/id.json +++ b/settings/l10n/id.json @@ -131,10 +131,10 @@ "Open documentation" : "Buka dokumentasi", "Allow apps to use the Share API" : "Izinkan aplikasi untuk menggunakan API Pembagian", "Allow users to share via link" : "Izinkan pengguna untuk membagikan via tautan", - "Enforce password protection" : "Berlakukan perlindungan sandi", "Allow public uploads" : "Izinkan unggahan publik", - "Allow users to send mail notification for shared files" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", + "Enforce password protection" : "Berlakukan perlindungan sandi", "Set default expiration date" : "Atur tanggal kadaluarsa default", + "Allow users to send mail notification for shared files" : "Izinkan pengguna untuk mengirimkan email pemberitahuan untuk berkas berbagi", "Expire after " : "Kadaluarsa setelah", "days" : "hari", "Enforce expiration date" : "Berlakukan tanggal kadaluarsa", @@ -231,6 +231,7 @@ "Current password" : "Sandi saat ini", "New password" : "Sandi baru", "Change password" : "Ubah sandi", + "Name" : "Nama", "Language" : "Bahasa", "Help translate" : "Bantu menerjemahkan", "Get the apps to sync your files" : "Dapatkan aplikasi untuk sinkronisasi berkas Anda", diff --git a/settings/l10n/is.js b/settings/l10n/is.js index 5b0d8b352f3..55f8ad6ec13 100644 --- a/settings/l10n/is.js +++ b/settings/l10n/is.js @@ -130,10 +130,10 @@ OC.L10N.register( "Open documentation" : "Opna hjálparskjöl", "Allow apps to use the Share API" : "Leyfa forritum að nota Share API", "Allow users to share via link" : "Leyfa notendum að deila með tengli", - "Enforce password protection" : "Krefjast verndunar með aðgangsorði", "Allow public uploads" : "Leyfa opinberar innsendingar", - "Allow users to send mail notification for shared files" : "Leyfa notendum að senda tilkynningar í tölvupósti vegna deildra skráa", + "Enforce password protection" : "Krefjast verndunar með aðgangsorði", "Set default expiration date" : "Setja sjálfgefinn gildistíma", + "Allow users to send mail notification for shared files" : "Leyfa notendum að senda tilkynningar í tölvupósti vegna deildra skráa", "Expire after " : "Rennur út eftir ", "days" : "daga", "Enforce expiration date" : "Krefjast dagsetningar á gildistíma", @@ -243,6 +243,7 @@ OC.L10N.register( "Current password" : "Núverandi lykilorð", "New password" : "Nýtt lykilorð", "Change password" : "Breyta lykilorði", + "Name" : "Heiti", "Language" : "Tungumál", "Help translate" : "Hjálpa við þýðingu", "Get the apps to sync your files" : "Náðu í forrit til að samstilla skrárnar þínar", diff --git a/settings/l10n/is.json b/settings/l10n/is.json index bddd75f1ae4..8933e593452 100644 --- a/settings/l10n/is.json +++ b/settings/l10n/is.json @@ -128,10 +128,10 @@ "Open documentation" : "Opna hjálparskjöl", "Allow apps to use the Share API" : "Leyfa forritum að nota Share API", "Allow users to share via link" : "Leyfa notendum að deila með tengli", - "Enforce password protection" : "Krefjast verndunar með aðgangsorði", "Allow public uploads" : "Leyfa opinberar innsendingar", - "Allow users to send mail notification for shared files" : "Leyfa notendum að senda tilkynningar í tölvupósti vegna deildra skráa", + "Enforce password protection" : "Krefjast verndunar með aðgangsorði", "Set default expiration date" : "Setja sjálfgefinn gildistíma", + "Allow users to send mail notification for shared files" : "Leyfa notendum að senda tilkynningar í tölvupósti vegna deildra skráa", "Expire after " : "Rennur út eftir ", "days" : "daga", "Enforce expiration date" : "Krefjast dagsetningar á gildistíma", @@ -241,6 +241,7 @@ "Current password" : "Núverandi lykilorð", "New password" : "Nýtt lykilorð", "Change password" : "Breyta lykilorði", + "Name" : "Heiti", "Language" : "Tungumál", "Help translate" : "Hjálpa við þýðingu", "Get the apps to sync your files" : "Náðu í forrit til að samstilla skrárnar þínar", diff --git a/settings/l10n/it.js b/settings/l10n/it.js index 09f49c21312..d81f4a4ffc3 100644 --- a/settings/l10n/it.js +++ b/settings/l10n/it.js @@ -86,6 +86,10 @@ OC.L10N.register( "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", "App update" : "Aggiornamento applicazione", "No apps found for {query}" : "Nessuna applicazione trovata per {query}", + "Disconnect" : "Disconnetti", + "Error while loading browser sessions and device tokens" : "Errore durante il caricamento delle sessioni del browser e dei token di dispositivo", + "Error while creating device token" : "Errore durante la creazione del token di dispositivo", + "Error while deleting the token" : "Errore durante l'eliminazione del token", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Si è verificato un errore. Carica un certificato PEM codificato in ASCII.", "Valid until {date}" : "Valido fino al {date}", "Delete" : "Elimina", @@ -114,6 +118,8 @@ OC.L10N.register( "__language_name__" : "Italiano", "Unlimited" : "Illimitata", "Personal info" : "Informazioni personali", + "Sessions" : "Sessioni", + "Devices" : "Dispositivi", "Sync clients" : "Client di sincronizzazione", "Everything (fatal issues, errors, warnings, info, debug)" : "Tutto (problemi gravi, errori, avvisi, informazioni, debug)", "Info, warnings, errors and fatal issues" : "Informazioni, avvisi, errori e problemi gravi", @@ -145,10 +151,10 @@ OC.L10N.register( "Open documentation" : "Apri la documentazione", "Allow apps to use the Share API" : "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow users to share via link" : "Consenti agli utenti di condividere tramite collegamento", - "Enforce password protection" : "Imponi la protezione con password", "Allow public uploads" : "Consenti caricamenti pubblici", - "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", + "Enforce password protection" : "Imponi la protezione con password", "Set default expiration date" : "Imposta data di scadenza predefinita", + "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", "Expire after " : "Scadenza dopo", "days" : "giorni", "Enforce expiration date" : "Forza la data di scadenza", @@ -260,6 +266,12 @@ OC.L10N.register( "Current password" : "Password attuale", "New password" : "Nuova password", "Change password" : "Modifica password", + "These are the web browsers currently logged in to your ownCloud." : "Questi sono i browser web che hanno effettuato attualmente l'accesso al tuo ownCloud.", + "Browser" : "Browser", + "Most recent activity" : "Attività più recenti", + "You've linked these devices." : "Hai collegato questi dispositivi.", + "Name" : "Nome", + "A device password is a passcode that gives an app or device permissions to access your ownCloud account." : "Una password di dispositivo è un codice di sicurezza che fornisce a un'applicazione o a un dispositivo i permessi per accedere al tuo account ownCloud.", "Language" : "Lingua", "Help translate" : "Migliora la traduzione", "Get the apps to sync your files" : "Scarica le applicazioni per sincronizzare i tuoi file", diff --git a/settings/l10n/it.json b/settings/l10n/it.json index 11a91a2ed4f..cd85a9692dc 100644 --- a/settings/l10n/it.json +++ b/settings/l10n/it.json @@ -84,6 +84,10 @@ "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", "App update" : "Aggiornamento applicazione", "No apps found for {query}" : "Nessuna applicazione trovata per {query}", + "Disconnect" : "Disconnetti", + "Error while loading browser sessions and device tokens" : "Errore durante il caricamento delle sessioni del browser e dei token di dispositivo", + "Error while creating device token" : "Errore durante la creazione del token di dispositivo", + "Error while deleting the token" : "Errore durante l'eliminazione del token", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Si è verificato un errore. Carica un certificato PEM codificato in ASCII.", "Valid until {date}" : "Valido fino al {date}", "Delete" : "Elimina", @@ -112,6 +116,8 @@ "__language_name__" : "Italiano", "Unlimited" : "Illimitata", "Personal info" : "Informazioni personali", + "Sessions" : "Sessioni", + "Devices" : "Dispositivi", "Sync clients" : "Client di sincronizzazione", "Everything (fatal issues, errors, warnings, info, debug)" : "Tutto (problemi gravi, errori, avvisi, informazioni, debug)", "Info, warnings, errors and fatal issues" : "Informazioni, avvisi, errori e problemi gravi", @@ -143,10 +149,10 @@ "Open documentation" : "Apri la documentazione", "Allow apps to use the Share API" : "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow users to share via link" : "Consenti agli utenti di condividere tramite collegamento", - "Enforce password protection" : "Imponi la protezione con password", "Allow public uploads" : "Consenti caricamenti pubblici", - "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", + "Enforce password protection" : "Imponi la protezione con password", "Set default expiration date" : "Imposta data di scadenza predefinita", + "Allow users to send mail notification for shared files" : "Consenti agli utenti di inviare email di notifica per i file condivisi", "Expire after " : "Scadenza dopo", "days" : "giorni", "Enforce expiration date" : "Forza la data di scadenza", @@ -258,6 +264,12 @@ "Current password" : "Password attuale", "New password" : "Nuova password", "Change password" : "Modifica password", + "These are the web browsers currently logged in to your ownCloud." : "Questi sono i browser web che hanno effettuato attualmente l'accesso al tuo ownCloud.", + "Browser" : "Browser", + "Most recent activity" : "Attività più recenti", + "You've linked these devices." : "Hai collegato questi dispositivi.", + "Name" : "Nome", + "A device password is a passcode that gives an app or device permissions to access your ownCloud account." : "Una password di dispositivo è un codice di sicurezza che fornisce a un'applicazione o a un dispositivo i permessi per accedere al tuo account ownCloud.", "Language" : "Lingua", "Help translate" : "Migliora la traduzione", "Get the apps to sync your files" : "Scarica le applicazioni per sincronizzare i tuoi file", diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js index 06e3043ed75..e75a11a10fe 100644 --- a/settings/l10n/ja.js +++ b/settings/l10n/ja.js @@ -86,6 +86,10 @@ OC.L10N.register( "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", "App update" : "アプリのアップデート", "No apps found for {query}" : "{query} に対応するアプリはありません", + "Disconnect" : "切断", + "Error while loading browser sessions and device tokens" : "ブラウザセッションとデバイストークンの読み込みにおけるエラー", + "Error while creating device token" : "デバイストークンの作成におけるエラー", + "Error while deleting the token" : "トークンの削除におけるエラー", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "エラーが発生しました。ASCIIコードのPEM証明書をアップロードしてください。", "Valid until {date}" : "{date} まで有効", "Delete" : "削除", @@ -114,6 +118,8 @@ OC.L10N.register( "__language_name__" : "Japanese (日本語)", "Unlimited" : "無制限", "Personal info" : "個人情報", + "Sessions" : "セッション", + "Devices" : "デバイス", "Sync clients" : "同期用クライアント", "Everything (fatal issues, errors, warnings, info, debug)" : "すべて (致命的な問題、エラー、警告、情報、デバッグ)", "Info, warnings, errors and fatal issues" : "情報、警告、エラー、致命的な問題", @@ -145,10 +151,10 @@ OC.L10N.register( "Open documentation" : "ドキュメントを開く", "Allow apps to use the Share API" : "アプリからの共有APIの利用を許可する", "Allow users to share via link" : "URLリンクでの共有を許可する", - "Enforce password protection" : "常にパスワード保護を有効にする", "Allow public uploads" : "パブリックなアップロードを許可する", - "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", + "Enforce password protection" : "常にパスワード保護を有効にする", "Set default expiration date" : "有効期限のデフォルト値を設定する", + "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", "Expire after " : "無効になるまで", "days" : "日", "Enforce expiration date" : "有効期限を反映させる", @@ -260,6 +266,12 @@ OC.L10N.register( "Current password" : "現在のパスワード", "New password" : "新しいパスワード", "Change password" : "パスワードを変更", + "These are the web browsers currently logged in to your ownCloud." : "現在システムにログインしているWebブラウザ", + "Browser" : "ブラウザ", + "Most recent activity" : "最新のアクティビティ", + "You've linked these devices." : "以下のデバイスをリンクしました。", + "Name" : "名前", + "A device password is a passcode that gives an app or device permissions to access your ownCloud account." : "デバイスパスワードはownCloudアカウントがアプリにアクセスするためアクセス許可をデバイスに与えるパスコードです。", "Language" : "言語", "Help translate" : "翻訳に協力する", "Get the apps to sync your files" : "ファイルを同期するアプリを取得しましょう", diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json index 688f86388cd..afa8989d566 100644 --- a/settings/l10n/ja.json +++ b/settings/l10n/ja.json @@ -84,6 +84,10 @@ "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", "App update" : "アプリのアップデート", "No apps found for {query}" : "{query} に対応するアプリはありません", + "Disconnect" : "切断", + "Error while loading browser sessions and device tokens" : "ブラウザセッションとデバイストークンの読み込みにおけるエラー", + "Error while creating device token" : "デバイストークンの作成におけるエラー", + "Error while deleting the token" : "トークンの削除におけるエラー", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "エラーが発生しました。ASCIIコードのPEM証明書をアップロードしてください。", "Valid until {date}" : "{date} まで有効", "Delete" : "削除", @@ -112,6 +116,8 @@ "__language_name__" : "Japanese (日本語)", "Unlimited" : "無制限", "Personal info" : "個人情報", + "Sessions" : "セッション", + "Devices" : "デバイス", "Sync clients" : "同期用クライアント", "Everything (fatal issues, errors, warnings, info, debug)" : "すべて (致命的な問題、エラー、警告、情報、デバッグ)", "Info, warnings, errors and fatal issues" : "情報、警告、エラー、致命的な問題", @@ -143,10 +149,10 @@ "Open documentation" : "ドキュメントを開く", "Allow apps to use the Share API" : "アプリからの共有APIの利用を許可する", "Allow users to share via link" : "URLリンクでの共有を許可する", - "Enforce password protection" : "常にパスワード保護を有効にする", "Allow public uploads" : "パブリックなアップロードを許可する", - "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", + "Enforce password protection" : "常にパスワード保護を有効にする", "Set default expiration date" : "有効期限のデフォルト値を設定する", + "Allow users to send mail notification for shared files" : "共有ファイルに関するメール通知の送信をユーザーに許可する", "Expire after " : "無効になるまで", "days" : "日", "Enforce expiration date" : "有効期限を反映させる", @@ -258,6 +264,12 @@ "Current password" : "現在のパスワード", "New password" : "新しいパスワード", "Change password" : "パスワードを変更", + "These are the web browsers currently logged in to your ownCloud." : "現在システムにログインしているWebブラウザ", + "Browser" : "ブラウザ", + "Most recent activity" : "最新のアクティビティ", + "You've linked these devices." : "以下のデバイスをリンクしました。", + "Name" : "名前", + "A device password is a passcode that gives an app or device permissions to access your ownCloud account." : "デバイスパスワードはownCloudアカウントがアプリにアクセスするためアクセス許可をデバイスに与えるパスコードです。", "Language" : "言語", "Help translate" : "翻訳に協力する", "Get the apps to sync your files" : "ファイルを同期するアプリを取得しましょう", diff --git a/settings/l10n/ka_GE.js b/settings/l10n/ka_GE.js index 5ed505fe2dc..41f84a34d7a 100644 --- a/settings/l10n/ka_GE.js +++ b/settings/l10n/ka_GE.js @@ -52,6 +52,7 @@ OC.L10N.register( "Current password" : "მიმდინარე პაროლი", "New password" : "ახალი პაროლი", "Change password" : "პაროლის შეცვლა", + "Name" : "სახელი", "Language" : "ენა", "Help translate" : "თარგმნის დახმარება", "Get the apps to sync your files" : "აპლიკაცია ფაილების სინქრონიზაციისთვის", diff --git a/settings/l10n/ka_GE.json b/settings/l10n/ka_GE.json index 92d71cc4969..87ead0dce93 100644 --- a/settings/l10n/ka_GE.json +++ b/settings/l10n/ka_GE.json @@ -50,6 +50,7 @@ "Current password" : "მიმდინარე პაროლი", "New password" : "ახალი პაროლი", "Change password" : "პაროლის შეცვლა", + "Name" : "სახელი", "Language" : "ენა", "Help translate" : "თარგმნის დახმარება", "Get the apps to sync your files" : "აპლიკაცია ფაილების სინქრონიზაციისთვის", diff --git a/settings/l10n/km.js b/settings/l10n/km.js index 585f392891d..b4222fb7142 100644 --- a/settings/l10n/km.js +++ b/settings/l10n/km.js @@ -71,6 +71,7 @@ OC.L10N.register( "Current password" : "ពាក្យសម្ងាត់បច្ចុប្បន្ន", "New password" : "ពាក្យសម្ងាត់ថ្មី", "Change password" : "ប្តូរពាក្យសម្ងាត់", + "Name" : "ឈ្មោះ", "Language" : "ភាសា", "Help translate" : "ជួយបកប្រែ", "Get the apps to sync your files" : "ដាក់អោយកម្មវិធីផ្សេងៗ ធ្វើសមកាលកម្មឯកសារអ្នក", diff --git a/settings/l10n/km.json b/settings/l10n/km.json index d5d7bdc7187..4fa00aca327 100644 --- a/settings/l10n/km.json +++ b/settings/l10n/km.json @@ -69,6 +69,7 @@ "Current password" : "ពាក្យសម្ងាត់បច្ចុប្បន្ន", "New password" : "ពាក្យសម្ងាត់ថ្មី", "Change password" : "ប្តូរពាក្យសម្ងាត់", + "Name" : "ឈ្មោះ", "Language" : "ភាសា", "Help translate" : "ជួយបកប្រែ", "Get the apps to sync your files" : "ដាក់អោយកម្មវិធីផ្សេងៗ ធ្វើសមកាលកម្មឯកសារអ្នក", diff --git a/settings/l10n/kn.js b/settings/l10n/kn.js index 3461f854b88..de48a66a0d3 100644 --- a/settings/l10n/kn.js +++ b/settings/l10n/kn.js @@ -106,6 +106,7 @@ OC.L10N.register( "Current password" : "ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ", "New password" : "ಹೊಸ ಗುಪ್ತಪದ", "Change password" : "ಗುಪ್ತ ಪದವನ್ನು ಬದಲಾಯಿಸಿ", + "Name" : "ಹೆಸರು", "Language" : "ಭಾಷೆ", "Help translate" : "ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ", "Username" : "ಬಳಕೆಯ ಹೆಸರು", diff --git a/settings/l10n/kn.json b/settings/l10n/kn.json index 89e0ea39661..2422d0ee688 100644 --- a/settings/l10n/kn.json +++ b/settings/l10n/kn.json @@ -104,6 +104,7 @@ "Current password" : "ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ", "New password" : "ಹೊಸ ಗುಪ್ತಪದ", "Change password" : "ಗುಪ್ತ ಪದವನ್ನು ಬದಲಾಯಿಸಿ", + "Name" : "ಹೆಸರು", "Language" : "ಭಾಷೆ", "Help translate" : "ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ", "Username" : "ಬಳಕೆಯ ಹೆಸರು", diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js index 47dd6c29c8a..d7727b0adde 100644 --- a/settings/l10n/ko.js +++ b/settings/l10n/ko.js @@ -139,10 +139,10 @@ OC.L10N.register( "Open documentation" : "문서 열기", "Allow apps to use the Share API" : "앱에서 공유 API를 사용할 수 있도록 허용", "Allow users to share via link" : "사용자별 링크 공유 허용", - "Enforce password protection" : "암호 보호 강제", "Allow public uploads" : "공개 업로드 허용", - "Allow users to send mail notification for shared files" : "공유 파일 이메일 알림 전송 허용", + "Enforce password protection" : "암호 보호 강제", "Set default expiration date" : "기본 만료 날짜 설정", + "Allow users to send mail notification for shared files" : "공유 파일 이메일 알림 전송 허용", "Expire after " : "다음 날짜 후 만료", "days" : "일", "Enforce expiration date" : "만료 날짜 강제", @@ -250,6 +250,7 @@ OC.L10N.register( "Current password" : "현재 암호", "New password" : "새 암호", "Change password" : "암호 변경", + "Name" : "이름", "Language" : "언어", "Help translate" : "번역 돕기", "Get the apps to sync your files" : "파일 동기화 앱 가져오기", diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json index 2669a027d83..4b096f6697f 100644 --- a/settings/l10n/ko.json +++ b/settings/l10n/ko.json @@ -137,10 +137,10 @@ "Open documentation" : "문서 열기", "Allow apps to use the Share API" : "앱에서 공유 API를 사용할 수 있도록 허용", "Allow users to share via link" : "사용자별 링크 공유 허용", - "Enforce password protection" : "암호 보호 강제", "Allow public uploads" : "공개 업로드 허용", - "Allow users to send mail notification for shared files" : "공유 파일 이메일 알림 전송 허용", + "Enforce password protection" : "암호 보호 강제", "Set default expiration date" : "기본 만료 날짜 설정", + "Allow users to send mail notification for shared files" : "공유 파일 이메일 알림 전송 허용", "Expire after " : "다음 날짜 후 만료", "days" : "일", "Enforce expiration date" : "만료 날짜 강제", @@ -248,6 +248,7 @@ "Current password" : "현재 암호", "New password" : "새 암호", "Change password" : "암호 변경", + "Name" : "이름", "Language" : "언어", "Help translate" : "번역 돕기", "Get the apps to sync your files" : "파일 동기화 앱 가져오기", diff --git a/settings/l10n/ku_IQ.js b/settings/l10n/ku_IQ.js index 1bdf686bf4d..02db397a5a5 100644 --- a/settings/l10n/ku_IQ.js +++ b/settings/l10n/ku_IQ.js @@ -12,6 +12,7 @@ OC.L10N.register( "Email" : "ئیمهیل", "Password" : "وشەی تێپەربو", "New password" : "وشەی نهێنی نوێ", + "Name" : "ناو", "Username" : "ناوی بهکارهێنهر" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ku_IQ.json b/settings/l10n/ku_IQ.json index cfc9fc59e7c..a0588dc0060 100644 --- a/settings/l10n/ku_IQ.json +++ b/settings/l10n/ku_IQ.json @@ -10,6 +10,7 @@ "Email" : "ئیمهیل", "Password" : "وشەی تێپەربو", "New password" : "وشەی نهێنی نوێ", + "Name" : "ناو", "Username" : "ناوی بهکارهێنهر" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/lb.js b/settings/l10n/lb.js index 2b3629cfbbd..0668fddcf76 100644 --- a/settings/l10n/lb.js +++ b/settings/l10n/lb.js @@ -41,6 +41,7 @@ OC.L10N.register( "Current password" : "Momentan 't Passwuert", "New password" : "Neit Passwuert", "Change password" : "Passwuert änneren", + "Name" : "Numm", "Language" : "Sprooch", "Help translate" : "Hëllef iwwersetzen", "Desktop client" : "Desktop-Programm", diff --git a/settings/l10n/lb.json b/settings/l10n/lb.json index 6f1579d9679..20500fbc909 100644 --- a/settings/l10n/lb.json +++ b/settings/l10n/lb.json @@ -39,6 +39,7 @@ "Current password" : "Momentan 't Passwuert", "New password" : "Neit Passwuert", "Change password" : "Passwuert änneren", + "Name" : "Numm", "Language" : "Sprooch", "Help translate" : "Hëllef iwwersetzen", "Desktop client" : "Desktop-Programm", diff --git a/settings/l10n/lt_LT.js b/settings/l10n/lt_LT.js index c19c9c92b94..83c2e715dc6 100644 --- a/settings/l10n/lt_LT.js +++ b/settings/l10n/lt_LT.js @@ -92,6 +92,7 @@ OC.L10N.register( "Current password" : "Dabartinis slaptažodis", "New password" : "Naujas slaptažodis", "Change password" : "Pakeisti slaptažodį", + "Name" : "Pavadinimas", "Language" : "Kalba", "Help translate" : "Padėkite išversti", "Get the apps to sync your files" : "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus", diff --git a/settings/l10n/lt_LT.json b/settings/l10n/lt_LT.json index 3a8d28dcb3c..3cbf7c8bc98 100644 --- a/settings/l10n/lt_LT.json +++ b/settings/l10n/lt_LT.json @@ -90,6 +90,7 @@ "Current password" : "Dabartinis slaptažodis", "New password" : "Naujas slaptažodis", "Change password" : "Pakeisti slaptažodį", + "Name" : "Pavadinimas", "Language" : "Kalba", "Help translate" : "Padėkite išversti", "Get the apps to sync your files" : "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus", diff --git a/settings/l10n/lv.js b/settings/l10n/lv.js index 90538cf7ef5..373468f4868 100644 --- a/settings/l10n/lv.js +++ b/settings/l10n/lv.js @@ -134,6 +134,7 @@ OC.L10N.register( "Current password" : "Pašreizējā parole", "New password" : "Jauna parole", "Change password" : "Mainīt paroli", + "Name" : "Nosaukums", "Language" : "Valoda", "Help translate" : "Palīdzi tulkot", "Get the apps to sync your files" : "Saņem lietotnes, lai sinhronizētu savas datnes", diff --git a/settings/l10n/lv.json b/settings/l10n/lv.json index 9c5bd4f7aa6..4cd06ecd22a 100644 --- a/settings/l10n/lv.json +++ b/settings/l10n/lv.json @@ -132,6 +132,7 @@ "Current password" : "Pašreizējā parole", "New password" : "Jauna parole", "Change password" : "Mainīt paroli", + "Name" : "Nosaukums", "Language" : "Valoda", "Help translate" : "Palīdzi tulkot", "Get the apps to sync your files" : "Saņem lietotnes, lai sinhronizētu savas datnes", diff --git a/settings/l10n/mk.js b/settings/l10n/mk.js index 908b0e4eb2e..e184f72513b 100644 --- a/settings/l10n/mk.js +++ b/settings/l10n/mk.js @@ -110,8 +110,8 @@ OC.L10N.register( "Open documentation" : "Отвори ја документацијата", "Allow apps to use the Share API" : "Дозволете апликациите да го користат API-то за споделување", "Allow users to share via link" : "Допушти корисниците да споделуваат со линкови", - "Enforce password protection" : "Наметни заштита на лозинка", "Allow public uploads" : "Дозволи јавен аплоуд", + "Enforce password protection" : "Наметни заштита на лозинка", "Set default expiration date" : "Постави основен датум на истекување", "Expire after " : "Истекува по", "days" : "денови", @@ -165,6 +165,7 @@ OC.L10N.register( "Current password" : "Моментална лозинка", "New password" : "Нова лозинка", "Change password" : "Смени лозинка", + "Name" : "Име", "Language" : "Јазик", "Help translate" : "Помогни во преводот", "Get the apps to sync your files" : "Преземете апликации за синхронизирање на вашите датотеки", diff --git a/settings/l10n/mk.json b/settings/l10n/mk.json index d49be90382d..ce7291c9cb1 100644 --- a/settings/l10n/mk.json +++ b/settings/l10n/mk.json @@ -108,8 +108,8 @@ "Open documentation" : "Отвори ја документацијата", "Allow apps to use the Share API" : "Дозволете апликациите да го користат API-то за споделување", "Allow users to share via link" : "Допушти корисниците да споделуваат со линкови", - "Enforce password protection" : "Наметни заштита на лозинка", "Allow public uploads" : "Дозволи јавен аплоуд", + "Enforce password protection" : "Наметни заштита на лозинка", "Set default expiration date" : "Постави основен датум на истекување", "Expire after " : "Истекува по", "days" : "денови", @@ -163,6 +163,7 @@ "Current password" : "Моментална лозинка", "New password" : "Нова лозинка", "Change password" : "Смени лозинка", + "Name" : "Име", "Language" : "Јазик", "Help translate" : "Помогни во преводот", "Get the apps to sync your files" : "Преземете апликации за синхронизирање на вашите датотеки", diff --git a/settings/l10n/ms_MY.js b/settings/l10n/ms_MY.js index 31430268320..e474482799b 100644 --- a/settings/l10n/ms_MY.js +++ b/settings/l10n/ms_MY.js @@ -24,6 +24,7 @@ OC.L10N.register( "Current password" : "Kata laluan semasa", "New password" : "Kata laluan baru", "Change password" : "Ubah kata laluan", + "Name" : "Nama", "Language" : "Bahasa", "Help translate" : "Bantu terjemah", "Username" : "Nama pengguna", diff --git a/settings/l10n/ms_MY.json b/settings/l10n/ms_MY.json index 7d872d97bc1..353c93059a2 100644 --- a/settings/l10n/ms_MY.json +++ b/settings/l10n/ms_MY.json @@ -22,6 +22,7 @@ "Current password" : "Kata laluan semasa", "New password" : "Kata laluan baru", "Change password" : "Ubah kata laluan", + "Name" : "Nama", "Language" : "Bahasa", "Help translate" : "Bantu terjemah", "Username" : "Nama pengguna", diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js index 88bc27bbc45..7fdadca911e 100644 --- a/settings/l10n/nb_NO.js +++ b/settings/l10n/nb_NO.js @@ -144,10 +144,10 @@ OC.L10N.register( "Open documentation" : "Åpne dokumentasjonen", "Allow apps to use the Share API" : "Tillat apper å bruke API for Deling", "Allow users to share via link" : "Tillat brukere å dele via lenke", - "Enforce password protection" : "Krev passordbeskyttelse", "Allow public uploads" : "Tillat offentlig opplasting", - "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", + "Enforce password protection" : "Krev passordbeskyttelse", "Set default expiration date" : "Sett standard utløpsdato", + "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", "Expire after " : "Utløper etter", "days" : "dager", "Enforce expiration date" : "Krev utløpsdato", @@ -259,6 +259,7 @@ OC.L10N.register( "Current password" : "Nåværende passord", "New password" : "Nytt passord", "Change password" : "Endre passord", + "Name" : "Navn", "Language" : "Språk", "Help translate" : "Bidra til oversettelsen", "Get the apps to sync your files" : "Hent apper som synkroniserer filene dine", diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json index 2eb207b366a..6a4052810a9 100644 --- a/settings/l10n/nb_NO.json +++ b/settings/l10n/nb_NO.json @@ -142,10 +142,10 @@ "Open documentation" : "Åpne dokumentasjonen", "Allow apps to use the Share API" : "Tillat apper å bruke API for Deling", "Allow users to share via link" : "Tillat brukere å dele via lenke", - "Enforce password protection" : "Krev passordbeskyttelse", "Allow public uploads" : "Tillat offentlig opplasting", - "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", + "Enforce password protection" : "Krev passordbeskyttelse", "Set default expiration date" : "Sett standard utløpsdato", + "Allow users to send mail notification for shared files" : "Tlllat at brukere sender e-postvarsler for delte filer", "Expire after " : "Utløper etter", "days" : "dager", "Enforce expiration date" : "Krev utløpsdato", @@ -257,6 +257,7 @@ "Current password" : "Nåværende passord", "New password" : "Nytt passord", "Change password" : "Endre passord", + "Name" : "Navn", "Language" : "Språk", "Help translate" : "Bidra til oversettelsen", "Get the apps to sync your files" : "Hent apper som synkroniserer filene dine", diff --git a/settings/l10n/nds.js b/settings/l10n/nds.js index 19920e7b984..461f9dff1d3 100644 --- a/settings/l10n/nds.js +++ b/settings/l10n/nds.js @@ -15,6 +15,7 @@ OC.L10N.register( "Port" : "Port", "Cancel" : "Abbrechen", "Password" : "Passwort", + "Name" : "Name", "Username" : "Benutzername" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/nds.json b/settings/l10n/nds.json index 9c969ffbe68..6fa5b38a368 100644 --- a/settings/l10n/nds.json +++ b/settings/l10n/nds.json @@ -13,6 +13,7 @@ "Port" : "Port", "Cancel" : "Abbrechen", "Password" : "Passwort", + "Name" : "Name", "Username" : "Benutzername" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js index 3e1fa89cf4d..46ccd93bb07 100644 --- a/settings/l10n/nl.js +++ b/settings/l10n/nl.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Open documentatie", "Allow apps to use the Share API" : "Apps toestaan de Share API te gebruiken", "Allow users to share via link" : "Sta gebruikers toe om te delen via een link", - "Enforce password protection" : "Dwing wachtwoordbeveiliging af", "Allow public uploads" : "Sta publieke uploads toe", - "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", + "Enforce password protection" : "Dwing wachtwoordbeveiliging af", "Set default expiration date" : "Stel standaard vervaldatum in", + "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Expire after " : "Vervalt na", "days" : "dagen", "Enforce expiration date" : "Verplicht de vervaldatum", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Huidig wachtwoord", "New password" : "Nieuw", "Change password" : "Wijzig wachtwoord", + "Name" : "Naam", "Language" : "Taal", "Help translate" : "Help met vertalen", "Get the apps to sync your files" : "Download de apps om bestanden te synchroniseren", diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json index 78b2cad9956..04e6364e905 100644 --- a/settings/l10n/nl.json +++ b/settings/l10n/nl.json @@ -143,10 +143,10 @@ "Open documentation" : "Open documentatie", "Allow apps to use the Share API" : "Apps toestaan de Share API te gebruiken", "Allow users to share via link" : "Sta gebruikers toe om te delen via een link", - "Enforce password protection" : "Dwing wachtwoordbeveiliging af", "Allow public uploads" : "Sta publieke uploads toe", - "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", + "Enforce password protection" : "Dwing wachtwoordbeveiliging af", "Set default expiration date" : "Stel standaard vervaldatum in", + "Allow users to send mail notification for shared files" : "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Expire after " : "Vervalt na", "days" : "dagen", "Enforce expiration date" : "Verplicht de vervaldatum", @@ -258,6 +258,7 @@ "Current password" : "Huidig wachtwoord", "New password" : "Nieuw", "Change password" : "Wijzig wachtwoord", + "Name" : "Naam", "Language" : "Taal", "Help translate" : "Help met vertalen", "Get the apps to sync your files" : "Download de apps om bestanden te synchroniseren", diff --git a/settings/l10n/nn_NO.js b/settings/l10n/nn_NO.js index 86aedfbcbf6..9ab1943bf73 100644 --- a/settings/l10n/nn_NO.js +++ b/settings/l10n/nn_NO.js @@ -31,6 +31,9 @@ OC.L10N.register( "Select a profile picture" : "Vel eit profilbilete", "Very weak password" : "Veldig svakt passord", "Weak password" : "Svakt passord", + "So-so password" : "Middelmåtig passord", + "Good password" : "OK passord", + "Strong password" : "Sterkt passord", "Groups" : "Grupper", "undo" : "angra", "never" : "aldri", @@ -62,6 +65,7 @@ OC.L10N.register( "Current password" : "Passord", "New password" : "Nytt passord", "Change password" : "Endra passord", + "Name" : "Namn", "Language" : "Språk", "Help translate" : "Hjelp oss å omsetja", "Get the apps to sync your files" : "Få app-ar som kan synkronisera filene dine", diff --git a/settings/l10n/nn_NO.json b/settings/l10n/nn_NO.json index d1b61ce5ca6..23f857d38ad 100644 --- a/settings/l10n/nn_NO.json +++ b/settings/l10n/nn_NO.json @@ -29,6 +29,9 @@ "Select a profile picture" : "Vel eit profilbilete", "Very weak password" : "Veldig svakt passord", "Weak password" : "Svakt passord", + "So-so password" : "Middelmåtig passord", + "Good password" : "OK passord", + "Strong password" : "Sterkt passord", "Groups" : "Grupper", "undo" : "angra", "never" : "aldri", @@ -60,6 +63,7 @@ "Current password" : "Passord", "New password" : "Nytt passord", "Change password" : "Endra passord", + "Name" : "Namn", "Language" : "Språk", "Help translate" : "Hjelp oss å omsetja", "Get the apps to sync your files" : "Få app-ar som kan synkronisera filene dine", diff --git a/settings/l10n/oc.js b/settings/l10n/oc.js index 29e53f51413..e753637756d 100644 --- a/settings/l10n/oc.js +++ b/settings/l10n/oc.js @@ -133,10 +133,10 @@ OC.L10N.register( "Open documentation" : "Veire la documentacion", "Allow apps to use the Share API" : "Autorizar las aplicacions a utilizar l'API de partiment", "Allow users to share via link" : "Autorizar los utilizaires a partejar per ligam", - "Enforce password protection" : "Obligar la proteccion per senhal", "Allow public uploads" : "Autorizar los mandadisses publics", - "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", + "Enforce password protection" : "Obligar la proteccion per senhal", "Set default expiration date" : "Especificar la data d'expiracion per defaut", + "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", "Expire after " : "Expiracion aprèp ", "days" : "jorns", "Enforce expiration date" : "Impausar la data d'expiracion", @@ -233,6 +233,7 @@ OC.L10N.register( "Current password" : "Senhal actual", "New password" : "Senhal novèl", "Change password" : "Cambiar de senhal", + "Name" : "Nom", "Language" : "Lenga", "Help translate" : "Ajudatz a tradusir", "Get the apps to sync your files" : "Obtenètz las aplicacions de sincronizacion de vòstres fichièrs", diff --git a/settings/l10n/oc.json b/settings/l10n/oc.json index d53cd867989..e403fc90bb5 100644 --- a/settings/l10n/oc.json +++ b/settings/l10n/oc.json @@ -131,10 +131,10 @@ "Open documentation" : "Veire la documentacion", "Allow apps to use the Share API" : "Autorizar las aplicacions a utilizar l'API de partiment", "Allow users to share via link" : "Autorizar los utilizaires a partejar per ligam", - "Enforce password protection" : "Obligar la proteccion per senhal", "Allow public uploads" : "Autorizar los mandadisses publics", - "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", + "Enforce password protection" : "Obligar la proteccion per senhal", "Set default expiration date" : "Especificar la data d'expiracion per defaut", + "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", "Expire after " : "Expiracion aprèp ", "days" : "jorns", "Enforce expiration date" : "Impausar la data d'expiracion", @@ -231,6 +231,7 @@ "Current password" : "Senhal actual", "New password" : "Senhal novèl", "Change password" : "Cambiar de senhal", + "Name" : "Nom", "Language" : "Lenga", "Help translate" : "Ajudatz a tradusir", "Get the apps to sync your files" : "Obtenètz las aplicacions de sincronizacion de vòstres fichièrs", diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js index c7ed9f667e5..8c592ec5114 100644 --- a/settings/l10n/pl.js +++ b/settings/l10n/pl.js @@ -101,10 +101,10 @@ OC.L10N.register( "Open documentation" : "Otwórz dokumentację", "Allow apps to use the Share API" : "Zezwalaj aplikacjom na korzystanie z API udostępniania", "Allow users to share via link" : "Pozwól użytkownikom współdzielić przez link", - "Enforce password protection" : "Wymuś zabezpieczenie hasłem", "Allow public uploads" : "Pozwól na publiczne wczytywanie", - "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", + "Enforce password protection" : "Wymuś zabezpieczenie hasłem", "Set default expiration date" : "Ustaw domyślną datę wygaśnięcia", + "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Expire after " : "Wygaś po", "days" : "dniach", "Enforce expiration date" : "Wymuś datę wygaśnięcia", @@ -172,6 +172,7 @@ OC.L10N.register( "Current password" : "Bieżące hasło", "New password" : "Nowe hasło", "Change password" : "Zmień hasło", + "Name" : "Nazwa", "Language" : "Język", "Help translate" : "Pomóż w tłumaczeniu", "Get the apps to sync your files" : "Pobierz aplikacje żeby synchronizować swoje pliki", diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json index 8736774cfef..ded5e82af0a 100644 --- a/settings/l10n/pl.json +++ b/settings/l10n/pl.json @@ -99,10 +99,10 @@ "Open documentation" : "Otwórz dokumentację", "Allow apps to use the Share API" : "Zezwalaj aplikacjom na korzystanie z API udostępniania", "Allow users to share via link" : "Pozwól użytkownikom współdzielić przez link", - "Enforce password protection" : "Wymuś zabezpieczenie hasłem", "Allow public uploads" : "Pozwól na publiczne wczytywanie", - "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", + "Enforce password protection" : "Wymuś zabezpieczenie hasłem", "Set default expiration date" : "Ustaw domyślną datę wygaśnięcia", + "Allow users to send mail notification for shared files" : "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Expire after " : "Wygaś po", "days" : "dniach", "Enforce expiration date" : "Wymuś datę wygaśnięcia", @@ -170,6 +170,7 @@ "Current password" : "Bieżące hasło", "New password" : "Nowe hasło", "Change password" : "Zmień hasło", + "Name" : "Nazwa", "Language" : "Język", "Help translate" : "Pomóż w tłumaczeniu", "Get the apps to sync your files" : "Pobierz aplikacje żeby synchronizować swoje pliki", diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js index 80856cc52fa..686c1f014fc 100644 --- a/settings/l10n/pt_BR.js +++ b/settings/l10n/pt_BR.js @@ -86,6 +86,7 @@ OC.L10N.register( "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi habilitado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", "App update" : "Atualização de aplicativo", "No apps found for {query}" : "Nenhum aplicativo encontrados para {query}", + "Disconnect" : "Desconectar", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ocorreu um erro. Por favor envie um certificado ASCII-encoded PEM", "Valid until {date}" : "Vádido até {date}", "Delete" : "Excluir", @@ -145,10 +146,10 @@ OC.L10N.register( "Open documentation" : "Abrir documentação", "Allow apps to use the Share API" : "Permitir que aplicativos usem a API de Compartilhamento", "Allow users to share via link" : "Permitir que os usuários compartilhem por link", - "Enforce password protection" : "Reforce a proteção por senha", "Allow public uploads" : "Permitir envio público", - "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", + "Enforce password protection" : "Reforce a proteção por senha", "Set default expiration date" : "Configurar a data de expiração", + "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Expire after " : "Expirar depois de", "days" : "dias", "Enforce expiration date" : "Fazer cumprir a data de expiração", @@ -260,6 +261,7 @@ OC.L10N.register( "Current password" : "Senha atual", "New password" : "Nova senha", "Change password" : "Alterar senha", + "Name" : "Nome", "Language" : "Idioma", "Help translate" : "Ajude a traduzir", "Get the apps to sync your files" : "Obtenha apps para sincronizar seus arquivos", diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json index 1a724f7c7a1..08ccfb7a2ac 100644 --- a/settings/l10n/pt_BR.json +++ b/settings/l10n/pt_BR.json @@ -84,6 +84,7 @@ "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi habilitado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", "App update" : "Atualização de aplicativo", "No apps found for {query}" : "Nenhum aplicativo encontrados para {query}", + "Disconnect" : "Desconectar", "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Ocorreu um erro. Por favor envie um certificado ASCII-encoded PEM", "Valid until {date}" : "Vádido até {date}", "Delete" : "Excluir", @@ -143,10 +144,10 @@ "Open documentation" : "Abrir documentação", "Allow apps to use the Share API" : "Permitir que aplicativos usem a API de Compartilhamento", "Allow users to share via link" : "Permitir que os usuários compartilhem por link", - "Enforce password protection" : "Reforce a proteção por senha", "Allow public uploads" : "Permitir envio público", - "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", + "Enforce password protection" : "Reforce a proteção por senha", "Set default expiration date" : "Configurar a data de expiração", + "Allow users to send mail notification for shared files" : "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Expire after " : "Expirar depois de", "days" : "dias", "Enforce expiration date" : "Fazer cumprir a data de expiração", @@ -258,6 +259,7 @@ "Current password" : "Senha atual", "New password" : "Nova senha", "Change password" : "Alterar senha", + "Name" : "Nome", "Language" : "Idioma", "Help translate" : "Ajude a traduzir", "Get the apps to sync your files" : "Obtenha apps para sincronizar seus arquivos", diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js index 32202c87d40..7ad92277ced 100644 --- a/settings/l10n/pt_PT.js +++ b/settings/l10n/pt_PT.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Abrir documentação", "Allow apps to use the Share API" : "Permitir que os utilizadores usem a API de partilha", "Allow users to share via link" : "Permitir que os utilizadores partilhem através do link", - "Enforce password protection" : "Forçar proteção por palavra-passe", "Allow public uploads" : "Permitir Envios Públicos", - "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", + "Enforce password protection" : "Forçar proteção por palavra-passe", "Set default expiration date" : "Especificar a data padrão de expiração", + "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Expire after " : "Expira após", "days" : "dias", "Enforce expiration date" : "Forçar a data de expiração", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Palavra-passe atual", "New password" : "Nova palavra-passe", "Change password" : "Alterar palavra-passe", + "Name" : "Nome", "Language" : "Idioma", "Help translate" : "Ajude a traduzir", "Get the apps to sync your files" : "Obtenha as aplicações para sincronizar os seus ficheiros", diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json index 132ca5b992b..eaf64cef990 100644 --- a/settings/l10n/pt_PT.json +++ b/settings/l10n/pt_PT.json @@ -143,10 +143,10 @@ "Open documentation" : "Abrir documentação", "Allow apps to use the Share API" : "Permitir que os utilizadores usem a API de partilha", "Allow users to share via link" : "Permitir que os utilizadores partilhem através do link", - "Enforce password protection" : "Forçar proteção por palavra-passe", "Allow public uploads" : "Permitir Envios Públicos", - "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", + "Enforce password protection" : "Forçar proteção por palavra-passe", "Set default expiration date" : "Especificar a data padrão de expiração", + "Allow users to send mail notification for shared files" : "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Expire after " : "Expira após", "days" : "dias", "Enforce expiration date" : "Forçar a data de expiração", @@ -258,6 +258,7 @@ "Current password" : "Palavra-passe atual", "New password" : "Nova palavra-passe", "Change password" : "Alterar palavra-passe", + "Name" : "Nome", "Language" : "Idioma", "Help translate" : "Ajude a traduzir", "Get the apps to sync your files" : "Obtenha as aplicações para sincronizar os seus ficheiros", diff --git a/settings/l10n/ro.js b/settings/l10n/ro.js index e0d750a6c8c..3c9cc56d06d 100644 --- a/settings/l10n/ro.js +++ b/settings/l10n/ro.js @@ -101,6 +101,7 @@ OC.L10N.register( "Current password" : "Parola curentă", "New password" : "Noua parolă", "Change password" : "Schimbă parola", + "Name" : "Nume", "Language" : "Limba", "Help translate" : "Ajută la traducere", "Get the apps to sync your files" : "Ia acum aplicatia pentru sincronizarea fisierelor ", diff --git a/settings/l10n/ro.json b/settings/l10n/ro.json index 57b068f61fe..ba2c1382d81 100644 --- a/settings/l10n/ro.json +++ b/settings/l10n/ro.json @@ -99,6 +99,7 @@ "Current password" : "Parola curentă", "New password" : "Noua parolă", "Change password" : "Schimbă parola", + "Name" : "Nume", "Language" : "Limba", "Help translate" : "Ajută la traducere", "Get the apps to sync your files" : "Ia acum aplicatia pentru sincronizarea fisierelor ", diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js index dbfde04a7dd..2bc4d212a3a 100644 --- a/settings/l10n/ru.js +++ b/settings/l10n/ru.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Открыть документацию", "Allow apps to use the Share API" : "Позволить приложениям использовать API общего доступа", "Allow users to share via link" : "Разрешить пользователям публикации через ссылки", - "Enforce password protection" : "Защита паролем обязательна", "Allow public uploads" : "Разрешить открытые/публичные загрузки", - "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам", + "Enforce password protection" : "Защита паролем обязательна", "Set default expiration date" : "Установить дату истечения по умолчанию", + "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам", "Expire after " : "Истечение через", "days" : "дней", "Enforce expiration date" : "Срок действия обязателен", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Текущий пароль", "New password" : "Новый пароль", "Change password" : "Сменить пароль", + "Name" : "Наименование контакта", "Language" : "Язык", "Help translate" : "Помочь с переводом", "Get the apps to sync your files" : "Получить приложения для синхронизации ваших файлов", diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json index 4a939f45b91..8eebf01810e 100644 --- a/settings/l10n/ru.json +++ b/settings/l10n/ru.json @@ -143,10 +143,10 @@ "Open documentation" : "Открыть документацию", "Allow apps to use the Share API" : "Позволить приложениям использовать API общего доступа", "Allow users to share via link" : "Разрешить пользователям публикации через ссылки", - "Enforce password protection" : "Защита паролем обязательна", "Allow public uploads" : "Разрешить открытые/публичные загрузки", - "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам", + "Enforce password protection" : "Защита паролем обязательна", "Set default expiration date" : "Установить дату истечения по умолчанию", + "Allow users to send mail notification for shared files" : "Разрешить пользователям отправлять email об открытии доступа к файлам", "Expire after " : "Истечение через", "days" : "дней", "Enforce expiration date" : "Срок действия обязателен", @@ -258,6 +258,7 @@ "Current password" : "Текущий пароль", "New password" : "Новый пароль", "Change password" : "Сменить пароль", + "Name" : "Наименование контакта", "Language" : "Язык", "Help translate" : "Помочь с переводом", "Get the apps to sync your files" : "Получить приложения для синхронизации ваших файлов", diff --git a/settings/l10n/si_LK.js b/settings/l10n/si_LK.js index cf9466a4831..9d0343b3ab0 100644 --- a/settings/l10n/si_LK.js +++ b/settings/l10n/si_LK.js @@ -33,6 +33,7 @@ OC.L10N.register( "Current password" : "වත්මන් මුරපදය", "New password" : "නව මුරපදය", "Change password" : "මුරපදය වෙනස් කිරීම", + "Name" : "නම", "Language" : "භාෂාව", "Help translate" : "පරිවර්ථන සහය", "Username" : "පරිශීලක නම", diff --git a/settings/l10n/si_LK.json b/settings/l10n/si_LK.json index 07e0cde9539..24bee43d9a7 100644 --- a/settings/l10n/si_LK.json +++ b/settings/l10n/si_LK.json @@ -31,6 +31,7 @@ "Current password" : "වත්මන් මුරපදය", "New password" : "නව මුරපදය", "Change password" : "මුරපදය වෙනස් කිරීම", + "Name" : "නම", "Language" : "භාෂාව", "Help translate" : "පරිවර්ථන සහය", "Username" : "පරිශීලක නම", diff --git a/settings/l10n/sk_SK.js b/settings/l10n/sk_SK.js index c5bb3e8eae4..fcd54cdc92b 100644 --- a/settings/l10n/sk_SK.js +++ b/settings/l10n/sk_SK.js @@ -121,10 +121,10 @@ OC.L10N.register( "Open documentation" : "Otvoriť dokumentáciu", "Allow apps to use the Share API" : "Povoliť aplikáciám používať API na zdieľanie", "Allow users to share via link" : "Povoliť používateľom zdieľanie pomocou odkazov", - "Enforce password protection" : "Vynútiť ochranu heslom", "Allow public uploads" : "Povoliť verejné nahrávanie súborov", - "Allow users to send mail notification for shared files" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", + "Enforce password protection" : "Vynútiť ochranu heslom", "Set default expiration date" : "Nastaviť predvolený dátum expirácie", + "Allow users to send mail notification for shared files" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", "Expire after " : "Platnosť do", "days" : "dni", "Enforce expiration date" : "Vynútiť dátum expirácie", @@ -211,6 +211,7 @@ OC.L10N.register( "Current password" : "Aktuálne heslo", "New password" : "Nové heslo", "Change password" : "Zmeniť heslo", + "Name" : "Názov", "Language" : "Jazyk", "Help translate" : "Pomôcť s prekladom", "Get the apps to sync your files" : "Získať aplikácie na synchronizáciu vašich súborov", diff --git a/settings/l10n/sk_SK.json b/settings/l10n/sk_SK.json index aa88d2eec75..7b84596c60d 100644 --- a/settings/l10n/sk_SK.json +++ b/settings/l10n/sk_SK.json @@ -119,10 +119,10 @@ "Open documentation" : "Otvoriť dokumentáciu", "Allow apps to use the Share API" : "Povoliť aplikáciám používať API na zdieľanie", "Allow users to share via link" : "Povoliť používateľom zdieľanie pomocou odkazov", - "Enforce password protection" : "Vynútiť ochranu heslom", "Allow public uploads" : "Povoliť verejné nahrávanie súborov", - "Allow users to send mail notification for shared files" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", + "Enforce password protection" : "Vynútiť ochranu heslom", "Set default expiration date" : "Nastaviť predvolený dátum expirácie", + "Allow users to send mail notification for shared files" : "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", "Expire after " : "Platnosť do", "days" : "dni", "Enforce expiration date" : "Vynútiť dátum expirácie", @@ -209,6 +209,7 @@ "Current password" : "Aktuálne heslo", "New password" : "Nové heslo", "Change password" : "Zmeniť heslo", + "Name" : "Názov", "Language" : "Jazyk", "Help translate" : "Pomôcť s prekladom", "Get the apps to sync your files" : "Získať aplikácie na synchronizáciu vašich súborov", diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js index 08b70d0da7d..dcfd15f6ec9 100644 --- a/settings/l10n/sl.js +++ b/settings/l10n/sl.js @@ -128,10 +128,10 @@ OC.L10N.register( "Open documentation" : "Odprta dokumentacija", "Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe", "Allow users to share via link" : "Uporabnikom dovoli omogočanje souporabe s povezavami", - "Enforce password protection" : "Vsili zaščito z geslom", "Allow public uploads" : "Dovoli javno pošiljanje datotek v oblak", - "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", + "Enforce password protection" : "Vsili zaščito z geslom", "Set default expiration date" : "Nastavitev privzetega datuma poteka", + "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Expire after " : "Preteče po", "days" : "dneh", "Enforce expiration date" : "Vsili datum preteka", @@ -225,6 +225,7 @@ OC.L10N.register( "Current password" : "Trenutno geslo", "New password" : "Novo geslo", "Change password" : "Spremeni geslo", + "Name" : "Ime", "Language" : "Jezik", "Help translate" : "Sodelujte pri prevajanju", "Get the apps to sync your files" : "Pridobi programe za usklajevanje datotek", diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json index d92337968f6..efa8ddc3271 100644 --- a/settings/l10n/sl.json +++ b/settings/l10n/sl.json @@ -126,10 +126,10 @@ "Open documentation" : "Odprta dokumentacija", "Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe", "Allow users to share via link" : "Uporabnikom dovoli omogočanje souporabe s povezavami", - "Enforce password protection" : "Vsili zaščito z geslom", "Allow public uploads" : "Dovoli javno pošiljanje datotek v oblak", - "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", + "Enforce password protection" : "Vsili zaščito z geslom", "Set default expiration date" : "Nastavitev privzetega datuma poteka", + "Allow users to send mail notification for shared files" : "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Expire after " : "Preteče po", "days" : "dneh", "Enforce expiration date" : "Vsili datum preteka", @@ -223,6 +223,7 @@ "Current password" : "Trenutno geslo", "New password" : "Novo geslo", "Change password" : "Spremeni geslo", + "Name" : "Ime", "Language" : "Jezik", "Help translate" : "Sodelujte pri prevajanju", "Get the apps to sync your files" : "Pridobi programe za usklajevanje datotek", diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js index d2e5d1b6537..f9f207ed570 100644 --- a/settings/l10n/sq.js +++ b/settings/l10n/sq.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Hapni dokumentimin", "Allow apps to use the Share API" : "Lejoni aplikacionet të përdorin API Share", "Allow users to share via link" : "Lejoji përdoruesit të ndajnë me të tjerët përmes lidhjesh", - "Enforce password protection" : "Detyro mbrojtje me fjalëkalim", "Allow public uploads" : "Lejo ngarkime publike", - "Allow users to send mail notification for shared files" : "Lejoju përdoruesve të dërgojnë njoftime me email për kartela të ndara me të tjerët", + "Enforce password protection" : "Detyro mbrojtje me fjalëkalim", "Set default expiration date" : "Caktoni datë parazgjedhje skadimi", + "Allow users to send mail notification for shared files" : "Lejoju përdoruesve të dërgojnë njoftime me email për kartela të ndara me të tjerët", "Expire after " : "Skadon pas ", "days" : "ditësh", "Enforce expiration date" : "Detyro datë skadimi", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Fjalëkalimi i tanishëm", "New password" : "Fjalëkalimi i ri", "Change password" : "Ndrysho fjalëkalimin", + "Name" : "Emër", "Language" : "Gjuhë", "Help translate" : "Ndihmoni në përkthim", "Get the apps to sync your files" : "Merrni aplikacionet për njëkohësim të kartelave tuaja", diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json index e00f1f6560a..b91ce6d1f48 100644 --- a/settings/l10n/sq.json +++ b/settings/l10n/sq.json @@ -143,10 +143,10 @@ "Open documentation" : "Hapni dokumentimin", "Allow apps to use the Share API" : "Lejoni aplikacionet të përdorin API Share", "Allow users to share via link" : "Lejoji përdoruesit të ndajnë me të tjerët përmes lidhjesh", - "Enforce password protection" : "Detyro mbrojtje me fjalëkalim", "Allow public uploads" : "Lejo ngarkime publike", - "Allow users to send mail notification for shared files" : "Lejoju përdoruesve të dërgojnë njoftime me email për kartela të ndara me të tjerët", + "Enforce password protection" : "Detyro mbrojtje me fjalëkalim", "Set default expiration date" : "Caktoni datë parazgjedhje skadimi", + "Allow users to send mail notification for shared files" : "Lejoju përdoruesve të dërgojnë njoftime me email për kartela të ndara me të tjerët", "Expire after " : "Skadon pas ", "days" : "ditësh", "Enforce expiration date" : "Detyro datë skadimi", @@ -258,6 +258,7 @@ "Current password" : "Fjalëkalimi i tanishëm", "New password" : "Fjalëkalimi i ri", "Change password" : "Ndrysho fjalëkalimin", + "Name" : "Emër", "Language" : "Gjuhë", "Help translate" : "Ndihmoni në përkthim", "Get the apps to sync your files" : "Merrni aplikacionet për njëkohësim të kartelave tuaja", diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js index 8ef9866264b..30a290ea0eb 100644 --- a/settings/l10n/sr.js +++ b/settings/l10n/sr.js @@ -127,10 +127,10 @@ OC.L10N.register( "Open documentation" : "Отвори документацију", "Allow apps to use the Share API" : "Дозвољава апликацијама да користе АПИ дељења", "Allow users to share via link" : "Дозволи корисницима да деле путем везе", - "Enforce password protection" : "Захтевај заштиту лозинком", "Allow public uploads" : "Дозволи јавна отпремања", - "Allow users to send mail notification for shared files" : "Дозволи корисницима да шаљу обавештења за дељене фајлове", + "Enforce password protection" : "Захтевај заштиту лозинком", "Set default expiration date" : "Постави подразумевано време истека", + "Allow users to send mail notification for shared files" : "Дозволи корисницима да шаљу обавештења за дељене фајлове", "Expire after " : "Истиче након", "days" : "дана", "Enforce expiration date" : "Захтевај датум истека", @@ -220,6 +220,7 @@ OC.L10N.register( "Current password" : "Тренутна лозинка", "New password" : "Нова лозинка", "Change password" : "Измени лозинку", + "Name" : "назив", "Language" : "Језик", "Help translate" : " Помозите у превођењу", "Get the apps to sync your files" : "Преузмите апликације ради синхронизовања ваших фајлова", diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json index 166c653ef7f..b34706ea7b6 100644 --- a/settings/l10n/sr.json +++ b/settings/l10n/sr.json @@ -125,10 +125,10 @@ "Open documentation" : "Отвори документацију", "Allow apps to use the Share API" : "Дозвољава апликацијама да користе АПИ дељења", "Allow users to share via link" : "Дозволи корисницима да деле путем везе", - "Enforce password protection" : "Захтевај заштиту лозинком", "Allow public uploads" : "Дозволи јавна отпремања", - "Allow users to send mail notification for shared files" : "Дозволи корисницима да шаљу обавештења за дељене фајлове", + "Enforce password protection" : "Захтевај заштиту лозинком", "Set default expiration date" : "Постави подразумевано време истека", + "Allow users to send mail notification for shared files" : "Дозволи корисницима да шаљу обавештења за дељене фајлове", "Expire after " : "Истиче након", "days" : "дана", "Enforce expiration date" : "Захтевај датум истека", @@ -218,6 +218,7 @@ "Current password" : "Тренутна лозинка", "New password" : "Нова лозинка", "Change password" : "Измени лозинку", + "Name" : "назив", "Language" : "Језик", "Help translate" : " Помозите у превођењу", "Get the apps to sync your files" : "Преузмите апликације ради синхронизовања ваших фајлова", diff --git a/settings/l10n/sr@latin.js b/settings/l10n/sr@latin.js index 72d2fd5b3d9..587d565c0c7 100644 --- a/settings/l10n/sr@latin.js +++ b/settings/l10n/sr@latin.js @@ -25,6 +25,7 @@ OC.L10N.register( "Current password" : "Trenutna lozinka", "New password" : "Nova lozinka", "Change password" : "Izmeni lozinku", + "Name" : "naziv", "Language" : "Jezik", "Get the apps to sync your files" : "Preuzmite aplikacije za sinhronizaciju Vaših fajlova", "Desktop client" : "Desktop klijent", diff --git a/settings/l10n/sr@latin.json b/settings/l10n/sr@latin.json index bfd87c0026e..80858b4dd18 100644 --- a/settings/l10n/sr@latin.json +++ b/settings/l10n/sr@latin.json @@ -23,6 +23,7 @@ "Current password" : "Trenutna lozinka", "New password" : "Nova lozinka", "Change password" : "Izmeni lozinku", + "Name" : "naziv", "Language" : "Jezik", "Get the apps to sync your files" : "Preuzmite aplikacije za sinhronizaciju Vaših fajlova", "Desktop client" : "Desktop klijent", diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js index 9d66be29696..761b55a9b30 100644 --- a/settings/l10n/sv.js +++ b/settings/l10n/sv.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Öppna dokumentation", "Allow apps to use the Share API" : "Tillåt applikationer att använda delat API", "Allow users to share via link" : "Tillåt användare att dela via länk", - "Enforce password protection" : "Tillämpa lösenordskydd", "Allow public uploads" : "Tillåt offentlig uppladdning", - "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", + "Enforce password protection" : "Tillämpa lösenordskydd", "Set default expiration date" : "Ställ in standardutgångsdatum", + "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", "Expire after " : "Förfaller efter", "days" : "dagar", "Enforce expiration date" : "Tillämpa förfallodatum", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Nuvarande lösenord", "New password" : "Nytt lösenord", "Change password" : "Ändra lösenord", + "Name" : "Namn", "Language" : "Språk", "Help translate" : "Hjälp att översätta", "Get the apps to sync your files" : "Skaffa apparna för att synkronisera dina filer", diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json index a0e2baca0e3..82c4b64aca6 100644 --- a/settings/l10n/sv.json +++ b/settings/l10n/sv.json @@ -143,10 +143,10 @@ "Open documentation" : "Öppna dokumentation", "Allow apps to use the Share API" : "Tillåt applikationer att använda delat API", "Allow users to share via link" : "Tillåt användare att dela via länk", - "Enforce password protection" : "Tillämpa lösenordskydd", "Allow public uploads" : "Tillåt offentlig uppladdning", - "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", + "Enforce password protection" : "Tillämpa lösenordskydd", "Set default expiration date" : "Ställ in standardutgångsdatum", + "Allow users to send mail notification for shared files" : "Tillåt användare att skicka mailnotifieringar för delade filer", "Expire after " : "Förfaller efter", "days" : "dagar", "Enforce expiration date" : "Tillämpa förfallodatum", @@ -258,6 +258,7 @@ "Current password" : "Nuvarande lösenord", "New password" : "Nytt lösenord", "Change password" : "Ändra lösenord", + "Name" : "Namn", "Language" : "Språk", "Help translate" : "Hjälp att översätta", "Get the apps to sync your files" : "Skaffa apparna för att synkronisera dina filer", diff --git a/settings/l10n/ta_LK.js b/settings/l10n/ta_LK.js index 46f7a0c71d8..e374ff28886 100644 --- a/settings/l10n/ta_LK.js +++ b/settings/l10n/ta_LK.js @@ -32,6 +32,7 @@ OC.L10N.register( "Current password" : "தற்போதைய கடவுச்சொல்", "New password" : "புதிய கடவுச்சொல்", "Change password" : "கடவுச்சொல்லை மாற்றுக", + "Name" : "பெயர்", "Language" : "மொழி", "Help translate" : "மொழிபெயர்க்க உதவி", "Username" : "பயனாளர் பெயர்", diff --git a/settings/l10n/ta_LK.json b/settings/l10n/ta_LK.json index 77c28801450..b386bdcc31a 100644 --- a/settings/l10n/ta_LK.json +++ b/settings/l10n/ta_LK.json @@ -30,6 +30,7 @@ "Current password" : "தற்போதைய கடவுச்சொல்", "New password" : "புதிய கடவுச்சொல்", "Change password" : "கடவுச்சொல்லை மாற்றுக", + "Name" : "பெயர்", "Language" : "மொழி", "Help translate" : "மொழிபெயர்க்க உதவி", "Username" : "பயனாளர் பெயர்", diff --git a/settings/l10n/te.js b/settings/l10n/te.js index 6db1a682c12..d1cbfae0065 100644 --- a/settings/l10n/te.js +++ b/settings/l10n/te.js @@ -9,6 +9,7 @@ OC.L10N.register( "Your email address" : "మీ ఈమెయిలు చిరునామా", "Password" : "సంకేతపదం", "New password" : "కొత్త సంకేతపదం", + "Name" : "పేరు", "Language" : "భాష", "Username" : "వాడుకరి పేరు" }, diff --git a/settings/l10n/te.json b/settings/l10n/te.json index 5b4d5344fa3..7e039c31d98 100644 --- a/settings/l10n/te.json +++ b/settings/l10n/te.json @@ -7,6 +7,7 @@ "Your email address" : "మీ ఈమెయిలు చిరునామా", "Password" : "సంకేతపదం", "New password" : "కొత్త సంకేతపదం", + "Name" : "పేరు", "Language" : "భాష", "Username" : "వాడుకరి పేరు" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/th_TH.js b/settings/l10n/th_TH.js index 58f2df9d5e9..4607c1df4fd 100644 --- a/settings/l10n/th_TH.js +++ b/settings/l10n/th_TH.js @@ -142,10 +142,10 @@ OC.L10N.register( "Open documentation" : "เปิดเอกสาร", "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow users to share via link" : "อนุญาตให้ผู้ใช้สามารถแชร์ผ่านทางลิงค์", - "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", "Allow public uploads" : "อนุญาตให้อัพโหลดสาธารณะ", - "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", + "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", "Set default expiration date" : "ตั้งค่าเริ่มต้นวันหมดอายุ", + "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", "Expire after " : "หลังจากหมดอายุ", "days" : "วัน", "Enforce expiration date" : "บังคับให้มีวันที่หมดอายุ", @@ -255,6 +255,7 @@ OC.L10N.register( "Current password" : "รหัสผ่านปัจจุบัน", "New password" : "รหัสผ่านใหม่", "Change password" : "เปลี่ยนรหัสผ่าน", + "Name" : "ชื่อ", "Language" : "ภาษา", "Help translate" : "มาช่วยกันแปลสิ!", "Get the apps to sync your files" : "ใช้แอพพลิเคชันในการประสานไฟล์ของคุณ", diff --git a/settings/l10n/th_TH.json b/settings/l10n/th_TH.json index eaf4789de83..e40da57a999 100644 --- a/settings/l10n/th_TH.json +++ b/settings/l10n/th_TH.json @@ -140,10 +140,10 @@ "Open documentation" : "เปิดเอกสาร", "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow users to share via link" : "อนุญาตให้ผู้ใช้สามารถแชร์ผ่านทางลิงค์", - "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", "Allow public uploads" : "อนุญาตให้อัพโหลดสาธารณะ", - "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", + "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", "Set default expiration date" : "ตั้งค่าเริ่มต้นวันหมดอายุ", + "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", "Expire after " : "หลังจากหมดอายุ", "days" : "วัน", "Enforce expiration date" : "บังคับให้มีวันที่หมดอายุ", @@ -253,6 +253,7 @@ "Current password" : "รหัสผ่านปัจจุบัน", "New password" : "รหัสผ่านใหม่", "Change password" : "เปลี่ยนรหัสผ่าน", + "Name" : "ชื่อ", "Language" : "ภาษา", "Help translate" : "มาช่วยกันแปลสิ!", "Get the apps to sync your files" : "ใช้แอพพลิเคชันในการประสานไฟล์ของคุณ", diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js index 9801ef07653..220cf7282bc 100644 --- a/settings/l10n/tr.js +++ b/settings/l10n/tr.js @@ -145,10 +145,10 @@ OC.L10N.register( "Open documentation" : "Belgelendirmeyi aç", "Allow apps to use the Share API" : "Uygulamaların paylaşım API'sini kullanmasına izin ver", "Allow users to share via link" : "Kullanıcıların bağlantı ile paylaşmasına izin ver", - "Enforce password protection" : "Parola korumasını zorla", "Allow public uploads" : "Herkes tarafından yüklemeye izin ver", - "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", + "Enforce password protection" : "Parola korumasını zorla", "Set default expiration date" : "Öntanımlı son kullanma tarihini ayarla", + "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Expire after " : "Süre", "days" : "gün sonra dolsun", "Enforce expiration date" : "Son kullanma tarihini zorla", @@ -260,6 +260,7 @@ OC.L10N.register( "Current password" : "Mevcut parola", "New password" : "Yeni parola", "Change password" : "Parola değiştir", + "Name" : "Ad", "Language" : "Dil", "Help translate" : "Çevirilere yardım edin", "Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin", diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json index 72cefaffcdd..789b283aed2 100644 --- a/settings/l10n/tr.json +++ b/settings/l10n/tr.json @@ -143,10 +143,10 @@ "Open documentation" : "Belgelendirmeyi aç", "Allow apps to use the Share API" : "Uygulamaların paylaşım API'sini kullanmasına izin ver", "Allow users to share via link" : "Kullanıcıların bağlantı ile paylaşmasına izin ver", - "Enforce password protection" : "Parola korumasını zorla", "Allow public uploads" : "Herkes tarafından yüklemeye izin ver", - "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", + "Enforce password protection" : "Parola korumasını zorla", "Set default expiration date" : "Öntanımlı son kullanma tarihini ayarla", + "Allow users to send mail notification for shared files" : "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Expire after " : "Süre", "days" : "gün sonra dolsun", "Enforce expiration date" : "Son kullanma tarihini zorla", @@ -258,6 +258,7 @@ "Current password" : "Mevcut parola", "New password" : "Yeni parola", "Change password" : "Parola değiştir", + "Name" : "Ad", "Language" : "Dil", "Help translate" : "Çevirilere yardım edin", "Get the apps to sync your files" : "Dosyalarınızı eşitlemek için uygulamaları indirin", diff --git a/settings/l10n/ug.js b/settings/l10n/ug.js index ae564676710..616f5e51816 100644 --- a/settings/l10n/ug.js +++ b/settings/l10n/ug.js @@ -44,6 +44,7 @@ OC.L10N.register( "Current password" : "نۆۋەتتىكى ئىم", "New password" : "يېڭى ئىم", "Change password" : "ئىم ئۆزگەرت", + "Name" : "ئاتى", "Language" : "تىل", "Help translate" : "تەرجىمىگە ياردەم", "Username" : "ئىشلەتكۈچى ئاتى", diff --git a/settings/l10n/ug.json b/settings/l10n/ug.json index 7944b86b914..3fc60618bdc 100644 --- a/settings/l10n/ug.json +++ b/settings/l10n/ug.json @@ -42,6 +42,7 @@ "Current password" : "نۆۋەتتىكى ئىم", "New password" : "يېڭى ئىم", "Change password" : "ئىم ئۆزگەرت", + "Name" : "ئاتى", "Language" : "تىل", "Help translate" : "تەرجىمىگە ياردەم", "Username" : "ئىشلەتكۈچى ئاتى", diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js index 351b81004b0..77b6a0d34eb 100644 --- a/settings/l10n/uk.js +++ b/settings/l10n/uk.js @@ -130,10 +130,10 @@ OC.L10N.register( "Open documentation" : "Відкрити документацію", "Allow apps to use the Share API" : "Дозволити програмам використовувати API спільного доступу", "Allow users to share via link" : "Дозволити користувачам ділитися через посилання", - "Enforce password protection" : "Захист паролем обов'язковий", "Allow public uploads" : "Дозволити публічне завантаження", - "Allow users to send mail notification for shared files" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", + "Enforce password protection" : "Захист паролем обов'язковий", "Set default expiration date" : "Встановити термін дії за замовчуванням", + "Allow users to send mail notification for shared files" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", "Expire after " : "Скінчиться через", "days" : "днів", "Enforce expiration date" : "Термін дії обов'язковий", @@ -224,6 +224,7 @@ OC.L10N.register( "Current password" : "Поточний пароль", "New password" : "Новий пароль", "Change password" : "Змінити пароль", + "Name" : "Ім’я", "Language" : "Мова", "Help translate" : "Допомогти з перекладом", "Get the apps to sync your files" : "Отримати додатки для синхронізації ваших файлів", diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json index 4c6b894cb0b..f8f1c655ff6 100644 --- a/settings/l10n/uk.json +++ b/settings/l10n/uk.json @@ -128,10 +128,10 @@ "Open documentation" : "Відкрити документацію", "Allow apps to use the Share API" : "Дозволити програмам використовувати API спільного доступу", "Allow users to share via link" : "Дозволити користувачам ділитися через посилання", - "Enforce password protection" : "Захист паролем обов'язковий", "Allow public uploads" : "Дозволити публічне завантаження", - "Allow users to send mail notification for shared files" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", + "Enforce password protection" : "Захист паролем обов'язковий", "Set default expiration date" : "Встановити термін дії за замовчуванням", + "Allow users to send mail notification for shared files" : "Дозволити користувачам сповіщати листами про спільний доступ до файлів", "Expire after " : "Скінчиться через", "days" : "днів", "Enforce expiration date" : "Термін дії обов'язковий", @@ -222,6 +222,7 @@ "Current password" : "Поточний пароль", "New password" : "Новий пароль", "Change password" : "Змінити пароль", + "Name" : "Ім’я", "Language" : "Мова", "Help translate" : "Допомогти з перекладом", "Get the apps to sync your files" : "Отримати додатки для синхронізації ваших файлів", diff --git a/settings/l10n/ur_PK.js b/settings/l10n/ur_PK.js index a88f1bd2b99..0ccb7860353 100644 --- a/settings/l10n/ur_PK.js +++ b/settings/l10n/ur_PK.js @@ -15,6 +15,7 @@ OC.L10N.register( "Cancel" : "منسوخ کریں", "Password" : "پاسورڈ", "New password" : "نیا پاسورڈ", + "Name" : "اسم", "Username" : "یوزر نیم", "Other" : "دیگر" }, diff --git a/settings/l10n/ur_PK.json b/settings/l10n/ur_PK.json index 1560e1c449b..1661d61dcd3 100644 --- a/settings/l10n/ur_PK.json +++ b/settings/l10n/ur_PK.json @@ -13,6 +13,7 @@ "Cancel" : "منسوخ کریں", "Password" : "پاسورڈ", "New password" : "نیا پاسورڈ", + "Name" : "اسم", "Username" : "یوزر نیم", "Other" : "دیگر" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/vi.js b/settings/l10n/vi.js index e11d7bd6c71..6865aedd4b6 100644 --- a/settings/l10n/vi.js +++ b/settings/l10n/vi.js @@ -56,6 +56,7 @@ OC.L10N.register( "Current password" : "Mật khẩu cũ", "New password" : "Mật khẩu mới", "Change password" : "Đổi mật khẩu", + "Name" : "Tên", "Language" : "Ngôn ngữ", "Help translate" : "Hỗ trợ dịch thuật", "Get the apps to sync your files" : "Nhận ứng dụng để đồng bộ file của bạn", diff --git a/settings/l10n/vi.json b/settings/l10n/vi.json index cfbffb2905b..9318a78eb1d 100644 --- a/settings/l10n/vi.json +++ b/settings/l10n/vi.json @@ -54,6 +54,7 @@ "Current password" : "Mật khẩu cũ", "New password" : "Mật khẩu mới", "Change password" : "Đổi mật khẩu", + "Name" : "Tên", "Language" : "Ngôn ngữ", "Help translate" : "Hỗ trợ dịch thuật", "Get the apps to sync your files" : "Nhận ứng dụng để đồng bộ file của bạn", diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js index 7932263b443..05db4eba3c7 100644 --- a/settings/l10n/zh_CN.js +++ b/settings/l10n/zh_CN.js @@ -139,10 +139,10 @@ OC.L10N.register( "Open documentation" : "打开文档", "Allow apps to use the Share API" : "允许应用软件使用共享API", "Allow users to share via link" : "允许用户通过链接分享文件", - "Enforce password protection" : "强制密码保护", "Allow public uploads" : "允许公开上传", - "Allow users to send mail notification for shared files" : "允许用户发送共享文件的邮件通知", + "Enforce password protection" : "强制密码保护", "Set default expiration date" : "设置默认过期日期", + "Allow users to send mail notification for shared files" : "允许用户发送共享文件的邮件通知", "Expire after " : "过期于", "days" : "天", "Enforce expiration date" : "强制过期日期", @@ -251,6 +251,7 @@ OC.L10N.register( "Current password" : "当前密码", "New password" : "新密码", "Change password" : "修改密码", + "Name" : "名称", "Language" : "语言", "Help translate" : "帮助翻译", "Get the apps to sync your files" : "安装应用进行文件同步", diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json index c4aa102afec..7298dfe1b0f 100644 --- a/settings/l10n/zh_CN.json +++ b/settings/l10n/zh_CN.json @@ -137,10 +137,10 @@ "Open documentation" : "打开文档", "Allow apps to use the Share API" : "允许应用软件使用共享API", "Allow users to share via link" : "允许用户通过链接分享文件", - "Enforce password protection" : "强制密码保护", "Allow public uploads" : "允许公开上传", - "Allow users to send mail notification for shared files" : "允许用户发送共享文件的邮件通知", + "Enforce password protection" : "强制密码保护", "Set default expiration date" : "设置默认过期日期", + "Allow users to send mail notification for shared files" : "允许用户发送共享文件的邮件通知", "Expire after " : "过期于", "days" : "天", "Enforce expiration date" : "强制过期日期", @@ -249,6 +249,7 @@ "Current password" : "当前密码", "New password" : "新密码", "Change password" : "修改密码", + "Name" : "名称", "Language" : "语言", "Help translate" : "帮助翻译", "Get the apps to sync your files" : "安装应用进行文件同步", diff --git a/settings/l10n/zh_HK.js b/settings/l10n/zh_HK.js index 8e958df025c..cc00f6ada77 100644 --- a/settings/l10n/zh_HK.js +++ b/settings/l10n/zh_HK.js @@ -43,6 +43,7 @@ OC.L10N.register( "Password" : "密碼", "New password" : "新密碼", "Change password" : "更改密碼", + "Name" : "名稱", "Language" : "語言", "Help translate" : "幫忙翻譯", "Android app" : "Android 應用程式", diff --git a/settings/l10n/zh_HK.json b/settings/l10n/zh_HK.json index e94ef72ea99..af66c2b5e02 100644 --- a/settings/l10n/zh_HK.json +++ b/settings/l10n/zh_HK.json @@ -41,6 +41,7 @@ "Password" : "密碼", "New password" : "新密碼", "Change password" : "更改密碼", + "Name" : "名稱", "Language" : "語言", "Help translate" : "幫忙翻譯", "Android app" : "Android 應用程式", diff --git a/settings/l10n/zh_TW.js b/settings/l10n/zh_TW.js index f3537750bcd..0d5d8337948 100644 --- a/settings/l10n/zh_TW.js +++ b/settings/l10n/zh_TW.js @@ -136,10 +136,10 @@ OC.L10N.register( "Open documentation" : "開啟說明文件", "Allow apps to use the Share API" : "允許 apps 使用分享 API", "Allow users to share via link" : "允許使用者透過連結分享", - "Enforce password protection" : "強制分享連結使用密碼保護", "Allow public uploads" : "允許公開上傳", - "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", + "Enforce password protection" : "強制分享連結使用密碼保護", "Set default expiration date" : "設定預設到期日", + "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", "Expire after " : "在什麼時候過期", "days" : "天", "Enforce expiration date" : "強制分享連結設定到期日", @@ -245,6 +245,7 @@ OC.L10N.register( "Current password" : "目前密碼", "New password" : "新密碼", "Change password" : "變更密碼", + "Name" : "名稱", "Language" : "語言", "Help translate" : "幫助翻譯", "Get the apps to sync your files" : "下載應用程式來同步您的檔案", diff --git a/settings/l10n/zh_TW.json b/settings/l10n/zh_TW.json index a88659411f0..e58097097a6 100644 --- a/settings/l10n/zh_TW.json +++ b/settings/l10n/zh_TW.json @@ -134,10 +134,10 @@ "Open documentation" : "開啟說明文件", "Allow apps to use the Share API" : "允許 apps 使用分享 API", "Allow users to share via link" : "允許使用者透過連結分享", - "Enforce password protection" : "強制分享連結使用密碼保護", "Allow public uploads" : "允許公開上傳", - "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", + "Enforce password protection" : "強制分享連結使用密碼保護", "Set default expiration date" : "設定預設到期日", + "Allow users to send mail notification for shared files" : "允許使用者寄送有關分享檔案的郵件通知", "Expire after " : "在什麼時候過期", "days" : "天", "Enforce expiration date" : "強制分享連結設定到期日", @@ -243,6 +243,7 @@ "Current password" : "目前密碼", "New password" : "新密碼", "Change password" : "變更密碼", + "Name" : "名稱", "Language" : "語言", "Help translate" : "幫助翻譯", "Get the apps to sync your files" : "下載應用程式來同步您的檔案", diff --git a/tests/Core/Controller/LoginControllerTest.php b/tests/Core/Controller/LoginControllerTest.php index e82c4cdc076..ea9d6a44148 100644 --- a/tests/Core/Controller/LoginControllerTest.php +++ b/tests/Core/Controller/LoginControllerTest.php @@ -304,8 +304,11 @@ class LoginControllerTest extends TestCase { ->method('checkPassword') ->will($this->returnValue($user)); $this->userSession->expects($this->once()) + ->method('login') + ->with($user, $password); + $this->userSession->expects($this->once()) ->method('createSessionToken') - ->with($this->request, $user->getUID(), $password); + ->with($this->request, $user->getUID(), $user, $password); $this->twoFactorManager->expects($this->once()) ->method('isTwoFactorAuthenticated') ->with($user) @@ -330,11 +333,11 @@ class LoginControllerTest extends TestCase { $this->userManager->expects($this->once()) ->method('checkPassword') - ->with('jane', $password) + ->with('Jane', $password) ->will($this->returnValue($user)); $this->userSession->expects($this->once()) ->method('createSessionToken') - ->with($this->request, $user->getUID(), $password); + ->with($this->request, $user->getUID(), 'Jane', $password); $this->userSession->expects($this->once()) ->method('isLoggedIn') ->with() @@ -345,11 +348,14 @@ class LoginControllerTest extends TestCase { ->will($this->returnValue($redirectUrl)); $expected = new \OCP\AppFramework\Http\RedirectResponse(urldecode($redirectUrl)); - $this->assertEquals($expected, $this->loginController->tryLogin($user->getUID(), $password, $originalUrl)); + $this->assertEquals($expected, $this->loginController->tryLogin('Jane', $password, $originalUrl)); } public function testLoginWithTwoFactorEnforced() { $user = $this->getMock('\OCP\IUser'); + $user->expects($this->any()) + ->method('getUID') + ->will($this->returnValue('john')); $password = 'secret'; $challengeUrl = 'challenge/url'; @@ -357,8 +363,11 @@ class LoginControllerTest extends TestCase { ->method('checkPassword') ->will($this->returnValue($user)); $this->userSession->expects($this->once()) + ->method('login') + ->with('john@doe.com', $password); + $this->userSession->expects($this->once()) ->method('createSessionToken') - ->with($this->request, $user->getUID(), $password); + ->with($this->request, $user->getUID(), 'john@doe.com', $password); $this->twoFactorManager->expects($this->once()) ->method('isTwoFactorAuthenticated') ->with($user) @@ -372,7 +381,7 @@ class LoginControllerTest extends TestCase { ->will($this->returnValue($challengeUrl)); $expected = new \OCP\AppFramework\Http\RedirectResponse($challengeUrl); - $this->assertEquals($expected, $this->loginController->tryLogin($user, $password, null)); + $this->assertEquals($expected, $this->loginController->tryLogin('john@doe.com', $password, null)); } } diff --git a/tests/Core/Controller/TokenControllerTest.php b/tests/Core/Controller/TokenControllerTest.php index b600bfa5451..386140a8a4f 100644 --- a/tests/Core/Controller/TokenControllerTest.php +++ b/tests/Core/Controller/TokenControllerTest.php @@ -75,14 +75,21 @@ class TokenControllerTest extends TestCase { } public function testWithValidCredentials() { + $user = $this->getMock('\OCP\IUser'); $this->userManager->expects($this->once()) ->method('checkPassword') ->with('john', '123456') - ->will($this->returnValue(true)); + ->will($this->returnValue($user)); + $user->expects($this->once()) + ->method('getUID') + ->will($this->returnValue('john')); $this->secureRandom->expects($this->once()) ->method('generate') ->with(128) ->will($this->returnValue('verysecurerandomtoken')); + $this->tokenProvider->expects($this->once()) + ->method('generateToken') + ->with('verysecurerandomtoken', 'john', 'john', '123456', 'unknown client', \OC\Authentication\Token\IToken::PERMANENT_TOKEN); $expected = [ 'token' => 'verysecurerandomtoken' ]; diff --git a/tests/lib/Authentication/Token/DefaultTokenMapperTest.php b/tests/lib/Authentication/Token/DefaultTokenMapperTest.php index 9179e23bfb2..5d49f75aaa4 100644 --- a/tests/lib/Authentication/Token/DefaultTokenMapperTest.php +++ b/tests/lib/Authentication/Token/DefaultTokenMapperTest.php @@ -57,6 +57,7 @@ class DefaultTokenMapperTest extends TestCase { $qb->delete('authtoken')->execute(); $qb->insert('authtoken')->values([ 'uid' => $qb->createNamedParameter('user1'), + 'login_name' => $qb->createNamedParameter('User1'), 'password' => $qb->createNamedParameter('a75c7116460c082912d8f6860a850904|3nz5qbG1nNSLLi6V|c55365a0e54cfdfac4a175bcf11a7612aea74492277bba6e5d96a24497fa9272488787cb2f3ad34d8b9b8060934fce02f008d371df3ff3848f4aa61944851ff0'), 'name' => $qb->createNamedParameter('Firefox on Linux'), 'token' => $qb->createNamedParameter('9c5a2e661482b65597408a6bb6c4a3d1af36337381872ac56e445a06cdb7fea2b1039db707545c11027a4966919918b19d875a8b774840b18c6cbb7ae56fe206'), @@ -65,6 +66,7 @@ class DefaultTokenMapperTest extends TestCase { ])->execute(); $qb->insert('authtoken')->values([ 'uid' => $qb->createNamedParameter('user2'), + 'login_name' => $qb->createNamedParameter('User2'), 'password' => $qb->createNamedParameter('971a337057853344700bbeccf836519f|UwOQwyb34sJHtqPV|036d4890f8c21d17bbc7b88072d8ef049a5c832a38e97f3e3d5f9186e896c2593aee16883f617322fa242728d0236ff32d163caeb4bd45e14ca002c57a88665f'), 'name' => $qb->createNamedParameter('Firefox on Android'), 'token' => $qb->createNamedParameter('1504445f1524fc801035448a95681a9378ba2e83930c814546c56e5d6ebde221198792fd900c88ed5ead0555780dad1ebce3370d7e154941cd5de87eb419899b'), @@ -73,6 +75,7 @@ class DefaultTokenMapperTest extends TestCase { ])->execute(); $qb->insert('authtoken')->values([ 'uid' => $qb->createNamedParameter('user1'), + 'login_name' => $qb->createNamedParameter('User1'), 'password' => $qb->createNamedParameter('063de945d6f6b26862d9b6f40652f2d5|DZ/z520tfdXPtd0T|395f6b89be8d9d605e409e20b9d9abe477fde1be38a3223f9e508f979bf906e50d9eaa4dca983ca4fb22a241eb696c3f98654e7775f78c4caf13108f98642b53'), 'name' => $qb->createNamedParameter('Iceweasel on Linux'), 'token' => $qb->createNamedParameter('47af8697ba590fb82579b5f1b3b6e8066773a62100abbe0db09a289a62f5d980dc300fa3d98b01d7228468d1ab05c1aa14c8d14bd5b6eee9cdf1ac14864680c3'), @@ -118,6 +121,7 @@ class DefaultTokenMapperTest extends TestCase { $token = '1504445f1524fc801035448a95681a9378ba2e83930c814546c56e5d6ebde221198792fd900c88ed5ead0555780dad1ebce3370d7e154941cd5de87eb419899b'; $token = new DefaultToken(); $token->setUid('user2'); + $token->setLoginName('User2'); $token->setPassword('971a337057853344700bbeccf836519f|UwOQwyb34sJHtqPV|036d4890f8c21d17bbc7b88072d8ef049a5c832a38e97f3e3d5f9186e896c2593aee16883f617322fa242728d0236ff32d163caeb4bd45e14ca002c57a88665f'); $token->setName('Firefox on Android'); $token->setToken('1504445f1524fc801035448a95681a9378ba2e83930c814546c56e5d6ebde221198792fd900c88ed5ead0555780dad1ebce3370d7e154941cd5de87eb419899b'); diff --git a/tests/lib/Authentication/Token/DefaultTokenProviderTest.php b/tests/lib/Authentication/Token/DefaultTokenProviderTest.php index 8af5e1e933a..e04424e4628 100644 --- a/tests/lib/Authentication/Token/DefaultTokenProviderTest.php +++ b/tests/lib/Authentication/Token/DefaultTokenProviderTest.php @@ -61,6 +61,7 @@ class DefaultTokenProviderTest extends TestCase { public function testGenerateToken() { $token = 'token'; $uid = 'user'; + $user = 'User'; $password = 'passme'; $name = 'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12' . 'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12' @@ -70,6 +71,7 @@ class DefaultTokenProviderTest extends TestCase { $toInsert = new DefaultToken(); $toInsert->setUid($uid); + $toInsert->setLoginName($user); $toInsert->setPassword('encryptedpassword'); $toInsert->setName($name); $toInsert->setToken(hash('sha512', $token . '1f4h9s')); @@ -88,7 +90,7 @@ class DefaultTokenProviderTest extends TestCase { ->method('insert') ->with($this->equalTo($toInsert)); - $actual = $this->tokenProvider->generateToken($token, $uid, $password, $name, $type); + $actual = $this->tokenProvider->generateToken($token, $uid, $user, $password, $name, $type); $this->assertEquals($toInsert, $actual); } diff --git a/tests/lib/User/SessionTest.php b/tests/lib/User/SessionTest.php index 140c4321c51..5ff2a16acb9 100644 --- a/tests/lib/User/SessionTest.php +++ b/tests/lib/User/SessionTest.php @@ -24,6 +24,9 @@ class SessionTest extends \Test\TestCase { /** @var \OC\Authentication\Token\DefaultTokenProvider */ protected $defaultProvider; + /** @var \OCP\IConfig */ + private $config; + protected function setUp() { parent::setUp(); @@ -34,12 +37,17 @@ class SessionTest extends \Test\TestCase { $this->defaultProvider = $this->getMockBuilder('\OC\Authentication\Token\DefaultTokenProvider') ->disableOriginalConstructor() ->getMock(); + $this->config = $this->getMock('\OCP\IConfig'); } public function testGetUser() { $token = new \OC\Authentication\Token\DefaultToken(); + $token->setLoginName('User123'); - $expectedUser = new User('foo', null); + $expectedUser = $this->getMock('\OCP\IUser'); + $expectedUser->expects($this->any()) + ->method('getUID') + ->will($this->returnValue('user123')); $session = $this->getMock('\OC\Session\Memory', array(), array('')); $session->expects($this->at(0)) ->method('get') @@ -66,7 +74,10 @@ class SessionTest extends \Test\TestCase { ->will($this->returnValue('password123')); $manager->expects($this->once()) ->method('checkPassword') - ->with($expectedUser->getUID(), 'password123') + ->with('User123', 'password123') + ->will($this->returnValue(true)); + $expectedUser->expects($this->once()) + ->method('isEnabled') ->will($this->returnValue(true)); $session->expects($this->at(3)) ->method('set') @@ -88,7 +99,7 @@ class SessionTest extends \Test\TestCase { ->with($expectedUser->getUID()) ->will($this->returnValue($expectedUser)); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $user = $userSession->getUser(); $this->assertSame($expectedUser, $user); } @@ -111,7 +122,7 @@ class SessionTest extends \Test\TestCase { ->getMock(); $userSession = $this->getMockBuilder('\OC\User\Session') - ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider]) + ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider, $this->config]) ->setMethods([ 'getUser' ]) @@ -138,7 +149,7 @@ class SessionTest extends \Test\TestCase { ->method('getUID') ->will($this->returnValue('foo')); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $userSession->setUser($user); } @@ -190,7 +201,7 @@ class SessionTest extends \Test\TestCase { ->will($this->returnValue($user)); $userSession = $this->getMockBuilder('\OC\User\Session') - ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider]) + ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider, $this->config]) ->setMethods([ 'prepareUserLogin' ]) @@ -237,7 +248,7 @@ class SessionTest extends \Test\TestCase { ->with('foo', 'bar') ->will($this->returnValue($user)); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $userSession->login('foo', 'bar'); } @@ -273,7 +284,7 @@ class SessionTest extends \Test\TestCase { ->with('foo', 'bar') ->will($this->returnValue(false)); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $userSession->login('foo', 'bar'); } @@ -293,10 +304,64 @@ class SessionTest extends \Test\TestCase { ->with('foo', 'bar') ->will($this->returnValue(false)); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $userSession->login('foo', 'bar'); } + public function testLogClientInNoTokenPasswordWith2fa() { + $manager = $this->getMockBuilder('\OC\User\Manager') + ->disableOriginalConstructor() + ->getMock(); + $session = $this->getMock('\OCP\ISession'); + + /** @var \OC\User\Session $userSession */ + $userSession = $this->getMockBuilder('\OC\User\Session') + ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider, $this->config]) + ->setMethods(['login']) + ->getMock(); + + $this->defaultProvider->expects($this->once()) + ->method('getToken') + ->with('doe') + ->will($this->throwException(new \OC\Authentication\Exceptions\InvalidTokenException())); + $this->config->expects($this->once()) + ->method('getSystemValue') + ->with('token_auth_enforced', false) + ->will($this->returnValue(true)); + + $this->assertFalse($userSession->logClientIn('john', 'doe')); + } + + public function testLogClientInNoTokenPasswordNo2fa() { + $manager = $this->getMockBuilder('\OC\User\Manager') + ->disableOriginalConstructor() + ->getMock(); + $session = $this->getMock('\OCP\ISession'); + $user = $this->getMock('\OCP\IUser'); + + /** @var \OC\User\Session $userSession */ + $userSession = $this->getMockBuilder('\OC\User\Session') + ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider, $this->config]) + ->setMethods(['login', 'isTwoFactorEnforced']) + ->getMock(); + + $this->defaultProvider->expects($this->once()) + ->method('getToken') + ->with('doe') + ->will($this->throwException(new \OC\Authentication\Exceptions\InvalidTokenException())); + $this->config->expects($this->once()) + ->method('getSystemValue') + ->with('token_auth_enforced', false) + ->will($this->returnValue(false)); + + $userSession->expects($this->once()) + ->method('isTwoFactorEnforced') + ->with('john') + ->will($this->returnValue(true)); + + $this->assertFalse($userSession->logClientIn('john', 'doe')); + } + public function testRememberLoginValidToken() { $session = $this->getMock('\OC\Session\Memory', array(), array('')); $session->expects($this->exactly(1)) @@ -348,7 +413,7 @@ class SessionTest extends \Test\TestCase { //override, otherwise tests will fail because of setcookie() array('setMagicInCookie'), //there are passed as parameters to the constructor - array($manager, $session, $this->timeFactory, $this->defaultProvider)); + array($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config)); $granted = $userSession->loginWithCookie('foo', $token); @@ -393,7 +458,7 @@ class SessionTest extends \Test\TestCase { $token = 'goodToken'; \OC::$server->getConfig()->setUserValue('foo', 'login_token', $token, time()); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $granted = $userSession->loginWithCookie('foo', 'badToken'); $this->assertSame($granted, false); @@ -436,7 +501,7 @@ class SessionTest extends \Test\TestCase { $token = 'goodToken'; \OC::$server->getConfig()->setUserValue('foo', 'login_token', $token, time()); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $granted = $userSession->loginWithCookie('foo', $token); $this->assertSame($granted, false); @@ -461,7 +526,7 @@ class SessionTest extends \Test\TestCase { $session = new Memory(''); $session->set('user_id', 'foo'); $userSession = $this->getMockBuilder('\OC\User\Session') - ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider]) + ->setConstructorArgs([$manager, $session, $this->timeFactory, $this->defaultProvider, $this->config]) ->setMethods([ 'validateSession' ]) @@ -484,7 +549,7 @@ class SessionTest extends \Test\TestCase { $session = new Memory(''); $token = $this->getMock('\OC\Authentication\Token\IToken'); $user = $this->getMock('\OCP\IUser'); - $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider); + $userSession = new \OC\User\Session($manager, $session, $this->timeFactory, $this->defaultProvider, $this->config); $request = $this->getMock('\OCP\IRequest'); $request->expects($this->once()) @@ -515,7 +580,7 @@ class SessionTest extends \Test\TestCase { $timeFactory = $this->getMock('\OCP\AppFramework\Utility\ITimeFactory'); $tokenProvider = $this->getMock('\OC\Authentication\Token\IProvider'); $userSession = $this->getMockBuilder('\OC\User\Session') - ->setConstructorArgs([$userManager, $session, $timeFactory, $tokenProvider]) + ->setConstructorArgs([$userManager, $session, $timeFactory, $tokenProvider, $this->config]) ->setMethods(['logout']) ->getMock(); @@ -540,12 +605,12 @@ class SessionTest extends \Test\TestCase { ->method('getPassword') ->with($token, 'sessionid') ->will($this->returnValue('123456')); - $user->expects($this->once()) - ->method('getUID') - ->will($this->returnValue('user5')); + $token->expects($this->once()) + ->method('getLoginName') + ->will($this->returnValue('User5')); $userManager->expects($this->once()) ->method('checkPassword') - ->with('user5', '123456') + ->with('User5', '123456') ->will($this->returnValue(true)); $user->expects($this->once()) ->method('isEnabled') diff --git a/tests/settings/controller/AuthSettingsControllerTest.php b/tests/settings/controller/AuthSettingsControllerTest.php index 49491c8ff52..ee67b221022 100644 --- a/tests/settings/controller/AuthSettingsControllerTest.php +++ b/tests/settings/controller/AuthSettingsControllerTest.php @@ -89,6 +89,9 @@ class AuthSettingsControllerTest extends TestCase { ->method('getPassword') ->with($sessionToken, 'sessionid') ->will($this->returnValue($password)); + $sessionToken->expects($this->once()) + ->method('getLoginName') + ->will($this->returnValue('User13')); $this->secureRandom->expects($this->exactly(4)) ->method('generate') @@ -98,7 +101,7 @@ class AuthSettingsControllerTest extends TestCase { $this->tokenProvider->expects($this->once()) ->method('generateToken') - ->with($newToken, $this->uid, $password, $name, IToken::PERMANENT_TOKEN) + ->with($newToken, $this->uid, 'User13', $password, $name, IToken::PERMANENT_TOKEN) ->will($this->returnValue($deviceToken)); $expected = [ diff --git a/version.php b/version.php index a4f1c4dbce0..d1fbb4c0a53 100644 --- a/version.php +++ b/version.php @@ -26,7 +26,7 @@ // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(9, 1, 0, 3); +$OC_Version = array(9, 1, 0, 4); // The human readable string $OC_VersionString = '9.1.0 pre alpha'; |