summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/css/mobile.css5
-rw-r--r--core/css/share.css2
-rw-r--r--core/css/styles.css10
-rw-r--r--core/js/js.js4
-rw-r--r--core/js/oc-dialogs.js7
-rw-r--r--core/js/share.js6
-rw-r--r--core/l10n/ca.php26
-rw-r--r--core/l10n/da.php5
-rw-r--r--core/l10n/el.php10
-rw-r--r--core/l10n/en_GB.php12
-rw-r--r--core/l10n/es.php5
-rw-r--r--core/l10n/et_EE.php23
-rw-r--r--core/l10n/fr.php11
-rw-r--r--core/l10n/ja.php12
-rw-r--r--core/l10n/nb_NO.php24
-rw-r--r--core/l10n/nl.php10
-rw-r--r--core/l10n/pl.php8
-rw-r--r--core/l10n/pt_PT.php7
-rw-r--r--core/l10n/ru.php6
-rw-r--r--core/l10n/sl.php6
-rw-r--r--core/l10n/zh_TW.php1
21 files changed, 181 insertions, 19 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css
index 2e515957c80..d840cdafa26 100644
--- a/core/css/mobile.css
+++ b/core/css/mobile.css
@@ -129,11 +129,6 @@ table.multiselect thead {
left: 0 !important;
}
-/* shorten elements for mobile */
-#uploadprogresswrapper {
- width: 50px;
-}
-
/* fix controls bar jumping when navigation is slid out */
.snapjs-left #app-navigation-toggle,
diff --git a/core/css/share.css b/core/css/share.css
index 0859c195858..314c6140d78 100644
--- a/core/css/share.css
+++ b/core/css/share.css
@@ -35,6 +35,8 @@
#shareWithList label input[type=checkbox]{
margin-left: 0;
+ top: 3px;
+ position: relative;
}
#shareWithList .username{
padding-right: 8px;
diff --git a/core/css/styles.css b/core/css/styles.css
index d407fd7629b..c1f42b457ed 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -263,6 +263,10 @@ input[type="submit"].enabled {
left: 250px;
padding-right: 250px;
}
+.viewer-mode #app-navigation+#app-content #controls {
+ left: 0;
+ padding-right: 0;
+}
#controls .button,
#controls button,
@@ -618,6 +622,12 @@ label.infield {
cursor: pointer;
}
+/* fixes for update page TODO should be fixed some time in a proper way */
+/* this is just for an error while updating the ownCloud instance */
+#body-login .updateProgress .error {
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
/* Alternative Logins */
#alternative-logins legend { margin-bottom:10px; }
diff --git a/core/js/js.js b/core/js/js.js
index a8dd9ca889d..544b26647a9 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1411,6 +1411,10 @@ OC.Util.History = {
if (pos >= 0) {
return hash.substr(pos + 1);
}
+ if (hash.length) {
+ // remove hash sign
+ return hash.substr(1);
+ }
return '';
},
diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js
index 0e4c346e8cc..a76f9170dc8 100644
--- a/core/js/oc-dialogs.js
+++ b/core/js/oc-dialogs.js
@@ -144,7 +144,13 @@ var OCdialogs = {
*/
filepicker:function(title, callback, multiselect, mimetypeFilter, modal) {
var self = this;
+ // avoid opening the picker twice
+ if (this.filepicker.loading) {
+ return;
+ }
+ this.filepicker.loading = true;
$.when(this._getFilePickerTemplate()).then(function($tmpl) {
+ self.filepicker.loading = false;
var dialogName = 'oc-dialog-filepicker-content';
if(self.$filePicker) {
self.$filePicker.ocdialog('close');
@@ -220,6 +226,7 @@ var OCdialogs = {
.fail(function(status, error) {
// If the method is called while navigating away
// from the page, it is probably not needed ;)
+ self.filepicker.loading = false;
if(status !== 0) {
alert(t('core', 'Error loading file picker template: {error}', {error: error}));
}
diff --git a/core/js/share.js b/core/js/share.js
index e164602d0ab..1c59524939c 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -569,6 +569,9 @@ OC.Share={
}
html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify by email')+'</label> ';
}
+ if (possiblePermissions & OC.PERMISSION_SHARE) {
+ html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" />'+t('core', 'can share')+'</label>';
+ }
if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) {
html += '<label><input type="checkbox" name="edit" class="permissions" '+editChecked+' />'+t('core', 'can edit')+'</label> ';
}
@@ -583,9 +586,6 @@ OC.Share={
if (possiblePermissions & OC.PERMISSION_DELETE) {
html += '<label><input type="checkbox" name="delete" class="permissions" '+deleteChecked+' data-permissions="'+OC.PERMISSION_DELETE+'" />'+t('core', 'delete')+'</label>';
}
- if (possiblePermissions & OC.PERMISSION_SHARE) {
- html += '<label><input type="checkbox" name="share" class="permissions" '+shareChecked+' data-permissions="'+OC.PERMISSION_SHARE+'" />'+t('core', 'share')+'</label>';
- }
html += '</div>';
html += '</li>';
html = $(html).appendTo('#shareWithList');
diff --git a/core/l10n/ca.php b/core/l10n/ca.php
index ce6c106be90..60623fe0647 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -5,6 +5,8 @@ $TRANSLATIONS = array(
"Turned on maintenance mode" => "Activat el mode de manteniment",
"Turned off maintenance mode" => "Desactivat el mode de manteniment",
"Updated database" => "Actualitzada la base de dades",
+"Checked database schema update" => "S'ha comprobat l'actualització de l'esquema de la base de dades",
+"Disabled incompatible apps: %s" => "Aplicacions incompatibles desactivades: %s",
"No image or file provided" => "No s'han proporcionat imatges o fitxers",
"Unknown filetype" => "Tipus de fitxer desconegut",
"Invalid image" => "Imatge no vàlida",
@@ -33,6 +35,7 @@ $TRANSLATIONS = array(
"File" => "Fitxer",
"Folder" => "Carpeta",
"Image" => "Imatge",
+"Audio" => "Audio",
"Saving..." => "Desant...",
"seconds ago" => "segons enrere",
"_%n minute ago_::_%n minutes ago_" => array("fa %n minut","fa %n minuts"),
@@ -44,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"),
"last year" => "l'any passat",
"years ago" => "anys enrere",
+"Couldn't send reset email. Please contact your administrator." => "No s'ha pogut restablir el correu. Contacteu amb l'administrador.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu. Si no el rebeu en un temps raonable comproveu les carpetes de spam. <br>Si no és allà, pregunteu a l'administrador local.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Els vostres fitxers estan encriptats. Si no heu habilitat la clau de recuperació no hi haurà manera de recuperar les dades després que reestabliu la contrasenya. <br />Si sabeu què fer, contacteu amb l'administrador abans de continuar.<br />Voleu continuar?",
+"I know what I'm doing" => "Sé el que faig",
"Reset password" => "Reinicialitza la contrasenya",
+"Password can not be changed. Please contact your administrator." => "La contrasenya no es pot canviar. Contacteu amb l'administrador.",
"Yes" => "Sí",
"No" => "No",
"Choose" => "Escull",
@@ -69,6 +77,7 @@ $TRANSLATIONS = array(
"Strong password" => "Contrasenya forta",
"Shared" => "Compartit",
"Shared by {owner}" => "Compartits per {owner}",
+"Shared with {recipients}" => "Compartit amb {recipients}",
"Share" => "Comparteix",
"Error" => "Error",
"Error while sharing" => "Error en compartir",
@@ -78,7 +87,10 @@ $TRANSLATIONS = array(
"Shared with you by {owner}" => "Compartit amb vos per {owner}",
"Share with user or group …" => "Comparteix amb usuari o grup...",
"Share link" => "Enllaç de compartició",
+"The public link will expire no later than {days} days after it is created" => "L'enllaç públic tindrà venciment abans de {days} dies després de crear-lo",
+"By default the public link will expire after {days} days" => "Per defecte l'enllaç públic té venciment en {days} dies",
"Password protect" => "Protegir amb contrasenya",
+"Choose a password for the public link" => "Escolliu una contrasenya per l'enllaç públic",
"Allow Public Upload" => "Permet pujada pública",
"Email link to person" => "Enllaç per correu electrónic amb la persona",
"Send" => "Envia",
@@ -110,8 +122,13 @@ $TRANSLATIONS = array(
"Edit tags" => "Edita etiquetes",
"Error loading dialog template: {error}" => "Error en carregar la plantilla de diàleg: {error}",
"No tags selected for deletion." => "No heu seleccionat les etiquetes a eliminar.",
+"Updating {productName} to version {version}, this may take a while." => "Actualitzant {productName} a la versió {version}. Pot trigar una estona.",
"Please reload the page." => "Carregueu la pàgina de nou.",
+"The update was unsuccessful." => "L'actualització no ha tingut èxit.",
"The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.",
+"Couldn't reset password because the token is invalid" => "No es pot restablir la contrasenya perquè el testimoni no és vàlid",
+"Couldn't send reset email. Please make sure your username is correct." => "No s'ha pogut enviar el correu de restabliment. Assegureu-vos que el vostre nom d'usuari és correcte.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "No s'ha pogut enviar el correu de restabliment perquè no hi ha cap correu electrònic per aquest usuari. Contacteu amb l'administrador.",
"%s password reset" => "restableix la contrasenya %s",
"Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}",
"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.",
@@ -120,6 +137,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Sí, vull restablir ara la contrasenya",
"Reset" => "Estableix de nou",
"New password" => "Contrasenya nova",
+"New Password" => "Contrasenya nova",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X no té suport i %s no funcionarà correctament en aquesta plataforma. Useu-ho al vostre risc!",
"For the best results, please consider using a GNU/Linux server instead." => "Per millors resultats, millor considereu utilitzar un servidor GNU/Linux.",
"Personal" => "Personal",
@@ -151,11 +169,13 @@ $TRANSLATIONS = array(
"Storage & database" => "Emmagatzematge i base de dades",
"Data folder" => "Carpeta de dades",
"Configure the database" => "Configura la base de dades",
+"Only %s is available." => "Només hi ha disponible %s",
"Database user" => "Usuari de la base de dades",
"Database password" => "Contrasenya de la base de dades",
"Database name" => "Nom de la base de dades",
"Database tablespace" => "Espai de taula de la base de dades",
"Database host" => "Ordinador central de la base de dades",
+"SQLite will be used as database. For larger installations we recommend to change this." => "S'utilitzarà SQLite com a base de dades. Per instal·lacions grans recomanem que la canvieu.",
"Finish setup" => "Acaba la configuració",
"Finishing …" => "Acabant...",
"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Aquesta aplicació necessita tenir JavaScript activat per funcionar correctament. <a href=\"http://enable-javascript.com/\" target=\"_blank\">Activeu JavaScript</a> i carregueu aquesta interfície de nou.",
@@ -166,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Canvieu la contrasenya de nou per assegurar el vostre compte.",
"Server side authentication failed!" => "L'autenticació del servidor ha fallat!",
"Please contact your administrator." => "Contacteu amb l'administrador.",
+"Forgot your password? Reset it!" => "Heu oblidat la contrasenya? Restabliu-la!",
"remember" => "recorda'm",
"Log in" => "Inici de sessió",
"Alternative Logins" => "Acreditacions alternatives",
@@ -174,6 +195,11 @@ $TRANSLATIONS = array(
"This means only administrators can use the instance." => "Això significa que només els administradors poden usar la instància.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament.",
"Thank you for your patience." => "Gràcies per la paciència.",
+"%s will be updated to version %s." => "%s s'actualitzarà a la versió %s.",
+"The following apps will be disabled:" => "Les següents aplicacions es desactivaran:",
+"The theme %s has been disabled." => "S'ha desactivat el tema %s",
+"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Assegureu-vos que heu fet una còpia de seguretat de la base de dades, del fitxer de configuració i de la carpeta de dades abans de continuar.",
+"Start update" => "Inicia l'actualització",
"This ownCloud instance is currently being updated, which may take a while." => "Aquesta instància d'ownCloud s'està actualitzant i podria trigar una estona.",
"Please reload this page after a short time to continue using ownCloud." => "Carregueu de nou aquesta pàgina d'aquí a poc temps per continuar usant ownCloud."
);
diff --git a/core/l10n/da.php b/core/l10n/da.php
index 34f89dae1b6..96e714faf4b 100644
--- a/core/l10n/da.php
+++ b/core/l10n/da.php
@@ -47,7 +47,10 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"),
"last year" => "sidste år",
"years ago" => "år siden",
+"Couldn't send reset email. Please contact your administrator." => "Der opstod et problem under afsending af reset-emailen. Kontakt venligst systemadministratoren.",
+"I know what I'm doing" => "Jeg ved, hvad jeg har gang i",
"Reset password" => "Nulstil kodeord",
+"Password can not be changed. Please contact your administrator." => "Adgangskoden kunne ikke ændres. Kontakt venligst din administrator.",
"Yes" => "Ja",
"No" => "Nej",
"Choose" => "Vælg",
@@ -129,6 +132,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Ja, Jeg ønsker virkelig at nulstille mit kodeord",
"Reset" => "Nulstil",
"New password" => "Nyt kodeord",
+"New Password" => "Ny adgangskode",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X understøttes ikke og %s vil ikke virke optimalt på denne platform. Anvend på eget ansvar!",
"For the best results, please consider using a GNU/Linux server instead." => "For de bedste resultater, overvej venligst at bruge en GNU/Linux-server i stedet.",
"Personal" => "Personligt",
@@ -177,6 +181,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Skift adgangskode for at sikre din konto igen.",
"Server side authentication failed!" => "Server side godkendelse mislykkedes!",
"Please contact your administrator." => "Kontakt venligst din administrator",
+"Forgot your password? Reset it!" => "Glemt din adgangskode? Nulstil det!",
"remember" => "husk",
"Log in" => "Log ind",
"Alternative Logins" => "Alternative logins",
diff --git a/core/l10n/el.php b/core/l10n/el.php
index 098b3221418..540dde794f0 100644
--- a/core/l10n/el.php
+++ b/core/l10n/el.php
@@ -47,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"),
"last year" => "τελευταίο χρόνο",
"years ago" => "χρόνια πριν",
+"Couldn't send reset email. Please contact your administrator." => "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς. Παρακαλώ επικοινωνήστε με το διαχειριστή σας.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Ο σύνδεσμος για την επαναφορά του κωδικού πρόσβασής σας απεστάλη στο ηλ. ταχυδρομείο σας. Εάν δεν το παραλάβετε μέσα σε ένα εύλογο χρονικό διάστημα, ελέγξτε το φάκελο ανεπιθύμητων μηνυμάτων σας. <br>Εάν δεν βρίσκεται εκεί ρωτήστε τον τοπικό διαχειριστή σας.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί επαναφοράς, δεν θα υπάρχει τρόπος να ανακτήσετε τα δεδομένα σας μετά την επαναφορά του κωδικού πρόσβασής σας.<br />Εάν δεν είστε σίγουροι για το τι θα θέλατε να κάνετε, παρακαλώ επικοινωνήστε με το διαχειριστή σας πριν συνεχίσετε. <br />Θέλετε στ' αλήθεια να συνεχίσετε;",
+"I know what I'm doing" => "Γνωρίζω τι κάνω",
"Reset password" => "Επαναφορά συνθηματικού",
+"Password can not be changed. Please contact your administrator." => "Ο κωδικός πρόσβασης δεν μπορεί να αλλάξει. Παρακαλώ επικοινωνήστε με το διαχειριστή σας.",
"Yes" => "Ναι",
"No" => "Όχι",
"Choose" => "Επιλέξτε",
@@ -121,6 +126,9 @@ $TRANSLATIONS = array(
"Please reload the page." => "Παρακαλώ επαναφορτώστε τη σελίδα.",
"The update was unsuccessful." => "Η ενημέρωση δεν ήταν επιτυχής.",
"The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.",
+"Couldn't reset password because the token is invalid" => "Αδυναμία επαναφοράς κωδικού πρόσβασης καθώς το τεκμήριο είναι άκυρο",
+"Couldn't send reset email. Please make sure your username is correct." => "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς. Παρακαλώ ελέγξτε ότι το όνομα χρήστη σας είναι ορθό.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Αδυναμία αποστολής ηλ. μηνύματος επαναφοράς καθώς δεν αντιστοιχεί καμμία διεύθυνση ηλ. ταχυδρομείου σε αυτό το όνομα χρήστη. Παρακαλώ επικοινωνήστε με το διαχειριστή σας.",
"%s password reset" => "%s επαναφορά κωδικού πρόσβασης",
"Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}",
"You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.",
@@ -129,6 +137,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα.",
"Reset" => "Επαναφορά",
"New password" => "Νέο συνθηματικό",
+"New Password" => "Νέος Κωδικός",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Το Mac OS X δεν υποστηρίζεται και το %s δεν θα λειτουργήσει σωστά σε αυτή την πλατφόρμα. Χρησιμοποιείτε με δική σας ευθύνη!",
"For the best results, please consider using a GNU/Linux server instead." => "Για καλύτερα αποτελέσματα, παρακαλούμε εξετάστε την μετατροπή σε έναν διακομιστή GNU/Linux.",
"Personal" => "Προσωπικά",
@@ -177,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας.",
"Server side authentication failed!" => "Η διαδικασία επικύρωσης απέτυχε από την πλευρά του διακομιστή!",
"Please contact your administrator." => "Παρακαλώ επικοινωνήστε με τον διαχειριστή.",
+"Forgot your password? Reset it!" => "Ξεχάσατε τον κωδικό πρόσβασής σας; Επαναφέρετέ τον!",
"remember" => "απομνημόνευση",
"Log in" => "Είσοδος",
"Alternative Logins" => "Εναλλακτικές Συνδέσεις",
diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php
index 210ee74db26..ffaca5de1c5 100644
--- a/core/l10n/en_GB.php
+++ b/core/l10n/en_GB.php
@@ -34,6 +34,8 @@ $TRANSLATIONS = array(
"Settings" => "Settings",
"File" => "File",
"Folder" => "Folder",
+"Image" => "Image",
+"Audio" => "Audio",
"Saving..." => "Saving...",
"seconds ago" => "seconds ago",
"_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"),
@@ -45,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"),
"last year" => "last year",
"years ago" => "years ago",
+"Couldn't send reset email. Please contact your administrator." => "Couldn't send reset email. Please contact your administrator.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?",
+"I know what I'm doing" => "I know what I'm doing",
"Reset password" => "Reset password",
+"Password can not be changed. Please contact your administrator." => "Password can not be changed. Please contact your administrator.",
"Yes" => "Yes",
"No" => "No",
"Choose" => "Choose",
@@ -119,6 +126,9 @@ $TRANSLATIONS = array(
"Please reload the page." => "Please reload the page.",
"The update was unsuccessful." => "The update was unsuccessful.",
"The update was successful. Redirecting you to ownCloud now." => "The update was successful. Redirecting you to ownCloud now.",
+"Couldn't reset password because the token is invalid" => "Couldn't reset password because the token is invalid",
+"Couldn't send reset email. Please make sure your username is correct." => "Couldn't send reset email. Please make sure your username is correct.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Couldn't send reset email because there is no email address for this username. Please contact your administrator.",
"%s password reset" => "%s password reset",
"Use the following link to reset your password: {link}" => "Use the following link to reset your password: {link}",
"You will receive a link to reset your password via Email." => "You will receive a link to reset your password via email.",
@@ -127,6 +137,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Yes, I really want to reset my password now",
"Reset" => "Reset",
"New password" => "New password",
+"New Password" => "New Password",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! ",
"For the best results, please consider using a GNU/Linux server instead." => "For the best results, please consider using a GNU/Linux server instead.",
"Personal" => "Personal",
@@ -175,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Please change your password to secure your account again.",
"Server side authentication failed!" => "Server side authentication failed!",
"Please contact your administrator." => "Please contact your administrator.",
+"Forgot your password? Reset it!" => "Forgot your password? Reset it!",
"remember" => "remember",
"Log in" => "Log in",
"Alternative Logins" => "Alternative Logins",
diff --git a/core/l10n/es.php b/core/l10n/es.php
index 0c2861966d1..08d82867383 100644
--- a/core/l10n/es.php
+++ b/core/l10n/es.php
@@ -48,6 +48,8 @@ $TRANSLATIONS = array(
"last year" => "el año pasado",
"years ago" => "hace años",
"Couldn't send reset email. Please contact your administrator." => "El mail de reset no pudo ser enviado. Por favor, contacte con su administrador.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Un enlace para reestablecer su contraseña ha sido enviado a su email. Si usted no lo recibe en un tiempo razonable, revise tu carpeta spam/correo no deseado.<br>Si no lo encuentra, pregunte a su administrador local.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Sus archivos están encriptados. Si no ha habilitado la clave de recuperación, no habrá manera de recuperar los datos despues de un reset de la contraseña. .<br /> Si no está seguro de lo que debe hacer, por favor contacte con su administrador antes de continuar.<br />¿Realmente desea continuar?",
"I know what I'm doing" => "Yo soy consciente de lo que estoy haciendo",
"Reset password" => "Restablecer contraseña",
"Password can not be changed. Please contact your administrator." => "La contraseña no se puede cambiar. Por favor, contacte con su administrador.",
@@ -124,6 +126,9 @@ $TRANSLATIONS = array(
"Please reload the page." => "Recargue/Actualice la página",
"The update was unsuccessful." => "Falló la actualización",
"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.",
+"Couldn't reset password because the token is invalid" => "No se puede restablecer la contraseña porque el token no es válido",
+"Couldn't send reset email. Please make sure your username is correct." => "No se pudo resetear su correo electrónico. Por favor, asegúrese de que su nombre de usuario es correcto.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "No se pudo resetear su correo electrónico, porque no hay una dirección de correo electrónico asociada para este nombre de usuario. Por favor, póngase en contacto con su administrador.",
"%s password reset" => "%s restablecer contraseña",
"Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer su contraseña: {link}",
"You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña",
diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php
index e91991966d1..96b1a0fbeef 100644
--- a/core/l10n/et_EE.php
+++ b/core/l10n/et_EE.php
@@ -5,6 +5,8 @@ $TRANSLATIONS = array(
"Turned on maintenance mode" => "Haldusrežiimis sisse lülitatud",
"Turned off maintenance mode" => "Haldusrežiimis välja lülitatud",
"Updated database" => "Uuendatud andmebaas",
+"Checked database schema update" => "Andmebaasi skeemi uuendus kontrollitud",
+"Disabled incompatible apps: %s" => "Keelatud mitteühilduvad rakendid: %s",
"No image or file provided" => "Ühtegi pilti või faili pole pakutud",
"Unknown filetype" => "Tundmatu failitüüp",
"Invalid image" => "Vigane pilt",
@@ -33,6 +35,7 @@ $TRANSLATIONS = array(
"File" => "Fail",
"Folder" => "Kaust",
"Image" => "Pilt",
+"Audio" => "Helid",
"Saving..." => "Salvestamine...",
"seconds ago" => "sekundit tagasi",
"_%n minute ago_::_%n minutes ago_" => array("%n minut tagasi","%n minutit tagasi"),
@@ -44,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("%n kuu tagasi","%n kuud tagasi"),
"last year" => "viimasel aastal",
"years ago" => "aastat tagasi",
+"Couldn't send reset email. Please contact your administrator." => "Ei suutnud lähtestada e-maili. Palun kontakteeru süsteemihalduriga.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressil.<br>Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge<br>.Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada. <br />Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga. <br />Oled sa kindel, et sa soovid jätkata?",
+"I know what I'm doing" => "Ma tean mida teen",
"Reset password" => "Nulli parool",
+"Password can not be changed. Please contact your administrator." => "Parooli ei saa muuta. Palun kontakteeru oma süsteemihalduriga.",
"Yes" => "Jah",
"No" => "Ei",
"Choose" => "Vali",
@@ -69,6 +77,7 @@ $TRANSLATIONS = array(
"Strong password" => "Väga hea parool",
"Shared" => "Jagatud",
"Shared by {owner}" => "Jagas {owner}",
+"Shared with {recipients}" => "Jagatud {recipients}",
"Share" => "Jaga",
"Error" => "Viga",
"Error while sharing" => "Viga jagamisel",
@@ -113,8 +122,13 @@ $TRANSLATIONS = array(
"Edit tags" => "Muuda silte",
"Error loading dialog template: {error}" => "Viga dialoogi malli laadimisel: {error}",
"No tags selected for deletion." => "Kustutamiseks pole ühtegi silti valitud.",
+"Updating {productName} to version {version}, this may take a while." => "Uuendan {productName} versioonile {version}, see võtab veidi aega.",
"Please reload the page." => "Palun laadi see uuesti.",
+"The update was unsuccessful." => "Uuendus ebaõnnestus.",
"The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.",
+"Couldn't reset password because the token is invalid" => "Ei saanud parooli taastada, kuna märgend on vigane",
+"Couldn't send reset email. Please make sure your username is correct." => "Ei suutnud lähtestada e-maili. Palun veendu, et kasutajatunnus on õige.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Ei suutnud lähtestada e-maili, kuna sellel kasutajal pole e-posti määratud. Palun kontakteeru süsteemihalduriga.",
"%s password reset" => "%s parooli lähtestus",
"Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}",
"You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.",
@@ -123,6 +137,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Jah, ma tõesti soovin oma parooli praegu taastada",
"Reset" => "Algseaded",
"New password" => "Uus parool",
+"New Password" => "Uus parool",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X ei ole toetatud ja %s ei pruugi korralikult toimida sellel platvormil. Kasuta seda omal vastutusel!",
"For the best results, please consider using a GNU/Linux server instead." => "Parema tulemuse saavitamiseks palun kaalu serveris GNU/Linux kasutamist.",
"Personal" => "Isiklik",
@@ -154,11 +169,13 @@ $TRANSLATIONS = array(
"Storage & database" => "Andmehoidla ja andmebaas",
"Data folder" => "Andmete kaust",
"Configure the database" => "Seadista andmebaasi",
+"Only %s is available." => "Ainult %s on saadaval.",
"Database user" => "Andmebaasi kasutaja",
"Database password" => "Andmebaasi parool",
"Database name" => "Andmebasi nimi",
"Database tablespace" => "Andmebaasi tabeliruum",
"Database host" => "Andmebaasi host",
+"SQLite will be used as database. For larger installations we recommend to change this." => "Andmebaasina kasutatakse SQLite-t. Suuremate paigalduste puhul me soovitame seda muuta.",
"Finish setup" => "Lõpeta seadistamine",
"Finishing …" => "Lõpetamine ...",
"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "See rakendus vajab toimimiseks JavaScripti. Palun <a href=\"http://enable-javascript.com/\" target=\"_blank\">luba JavaScript</a> ning laadi see leht uuesti.",
@@ -169,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.",
"Server side authentication failed!" => "Serveripoolne autentimine ebaõnnestus!",
"Please contact your administrator." => "Palun kontakteeru oma süsteemihalduriga.",
+"Forgot your password? Reset it!" => "Unustasid parooli? Taasta see!",
"remember" => "pea meeles",
"Log in" => "Logi sisse",
"Alternative Logins" => "Alternatiivsed sisselogimisviisid",
@@ -177,6 +195,11 @@ $TRANSLATIONS = array(
"This means only administrators can use the instance." => "See tähendab, et seda saavad kasutada ainult administraatorid.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult.",
"Thank you for your patience." => "Täname kannatlikkuse eest.",
+"%s will be updated to version %s." => "%s uuendatakse versioonile %s.",
+"The following apps will be disabled:" => "Järgnevad rakendid keelatakse:",
+"The theme %s has been disabled." => "Teema %s on keelatud.",
+"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Enne jätkamist veendu, et andmebaas, seadete ning andmete kataloog on varundatud.",
+"Start update" => "Käivita uuendus",
"This ownCloud instance is currently being updated, which may take a while." => "Seda ownCloud instantsi hetkel uuendatakse, võib võtta veidi aega.",
"Please reload this page after a short time to continue using ownCloud." => "Palun laadi see leht uuesti veidi aja pärast jätkamaks ownCloud kasutamist."
);
diff --git a/core/l10n/fr.php b/core/l10n/fr.php
index 9044b98a2d4..b7bc5aecf1c 100644
--- a/core/l10n/fr.php
+++ b/core/l10n/fr.php
@@ -35,6 +35,7 @@ $TRANSLATIONS = array(
"File" => "Fichier",
"Folder" => "Dossier",
"Image" => "Image",
+"Audio" => "Audio",
"Saving..." => "Enregistrement...",
"seconds ago" => "il y a quelques secondes",
"_%n minute ago_::_%n minutes ago_" => array("il y a %n minute","il y a %n minutes"),
@@ -46,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("Il y a %n mois","Il y a %n mois"),
"last year" => "l'année dernière",
"years ago" => "il y a plusieurs années",
+"Couldn't send reset email. Please contact your administrator." => "Impossible d'envoyer l’émail de réinitialisation. Veuillez contacter votre administrateur.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis à votre adresse email.<br>Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.<br>Au besoin, contactez votre administrateur local.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?",
+"I know what I'm doing" => "Je sais ce que je fais",
"Reset password" => "Réinitialiser le mot de passe",
+"Password can not be changed. Please contact your administrator." => "Le mot de passe ne peut être modifié. Veuillez contacter votre administrateur.",
"Yes" => "Oui",
"No" => "Non",
"Choose" => "Choisir",
@@ -120,6 +126,9 @@ $TRANSLATIONS = array(
"Please reload the page." => "Veuillez recharger la page.",
"The update was unsuccessful." => "La mise à jour a échoué.",
"The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.",
+"Couldn't reset password because the token is invalid" => "Impossible de réinitialiser le mot de passe car le jeton est invalide.",
+"Couldn't send reset email. Please make sure your username is correct." => "Impossible d'envoyer l’émail de réinitialisation. Veuillez vérifier que votre nom d'utilisateur est correct.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Impossible d'envoyer l'email de réinitialisation car il n'y a aucune adresse email pour cet utilisateur. Veuillez contacter votre administrateur.",
"%s password reset" => "Réinitialisation de votre mot de passe %s",
"Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}",
"You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.",
@@ -128,6 +137,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Oui, je veux vraiment réinitialiser mon mot de passe maintenant",
"Reset" => "Réinitialiser",
"New password" => "Nouveau mot de passe",
+"New Password" => "Nouveau mot de passe",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X n'est pas supporté et %s ne fonctionnera pas correctement sur cette plateforme. Son utilisation est à vos risques et périls !",
"For the best results, please consider using a GNU/Linux server instead." => "Pour des résultats meilleurs encore, pensez à utiliser un serveur GNU/Linux à la place.",
"Personal" => "Personnel",
@@ -176,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Veuillez changer votre mot de passe pour sécuriser à nouveau votre compte.",
"Server side authentication failed!" => "L'authentification côté serveur a échoué !",
"Please contact your administrator." => "Veuillez contacter votre administrateur.",
+"Forgot your password? Reset it!" => "Mot de passe perdu ? Réinitialisez-le !",
"remember" => "se souvenir de moi",
"Log in" => "Connexion",
"Alternative Logins" => "Logins alternatifs",
diff --git a/core/l10n/ja.php b/core/l10n/ja.php
index d33031337cf..80e83eb6883 100644
--- a/core/l10n/ja.php
+++ b/core/l10n/ja.php
@@ -48,6 +48,9 @@ $TRANSLATIONS = array(
"last year" => "1年前",
"years ago" => "数年前",
"Couldn't send reset email. Please contact your administrator." => "リセットメールを送信できませんでした。管理者に問い合わせてください。",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "パスワードをリセットする、このリンクをクリックするとメールを送信します。しばらく経ってもメールが届かなかった場合は、スパム/ジャンクフォルダを確認してください。<br>それでも見つからなかった場合は、管理者に問合せてください。",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "ファイルが暗号化されています。リカバリーキーが有効でない場合は、パスワードをリセットした後にあなたのデータを元に戻す方法はありません。<br />どういうことか分からない場合は、操作を継続する前に管理者に連絡してください。<br />続けてよろしいでしょうか?",
+"I know what I'm doing" => "どういう操作をしているか理解しています",
"Reset password" => "パスワードをリセット",
"Password can not be changed. Please contact your administrator." => "パスワードは変更できません。管理者に問い合わせてください。",
"Yes" => "はい",
@@ -84,10 +87,10 @@ $TRANSLATIONS = array(
"Shared with you by {owner}" => "{owner} と共有中",
"Share with user or group …" => "ユーザーもしくはグループと共有 ...",
"Share link" => "URLで共有",
-"The public link will expire no later than {days} days after it is created" => "公開用リンクは、作成してから {days} 日以内に有効期限切れになります",
-"By default the public link will expire after {days} days" => "デフォルトの設定では、公開用リンクは {days} 日後に有効期限切れになります",
-"Password protect" => "パスワード保護",
-"Choose a password for the public link" => "公開用リンクのパスワードを選択",
+"The public link will expire no later than {days} days after it is created" => "URLによる共有は、作成してから {days} 日以内に有効期限切れになります",
+"By default the public link will expire after {days} days" => "デフォルトの設定では、URLによる共有は {days} 日後に有効期限切れになります",
+"Password protect" => "パスワード保護を有効化",
+"Choose a password for the public link" => "URLによる共有のパスワードを入力",
"Allow Public Upload" => "アップロードを許可",
"Email link to person" => "メールリンク",
"Send" => "送信",
@@ -183,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "アカウント保護のため、パスワードを再度変更してください。",
"Server side authentication failed!" => "サーバーサイドの認証に失敗しました!",
"Please contact your administrator." => "管理者に問い合わせてください。",
+"Forgot your password? Reset it!" => "パスワードを忘れましたか?リセットします!",
"remember" => "パスワードを保存",
"Log in" => "ログイン",
"Alternative Logins" => "代替ログイン",
diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php
index 7fe264ebea7..e5f959f1e13 100644
--- a/core/l10n/nb_NO.php
+++ b/core/l10n/nb_NO.php
@@ -47,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("for %n måned siden","for %n måneder siden"),
"last year" => "i fjor",
"years ago" => "årevis siden",
+"Couldn't send reset email. Please contact your administrator." => "Klarte ikke å sende e-post for tilbakestilling. Kontakt administratoren.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "Lenken for tilbakestilling av passordet ditt er sendt til din e-postadresse. Hvis du ikke mottar den innen rimelig tid, sjekk mappen for søppelpost.<br>Hvis du ikke finner den der, kontakt din lokale administrator.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at pasordet ditt er tilbakestilt.<br />Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter. <br />Vil du virkelig fortsette?",
+"I know what I'm doing" => "Jeg vet hva jeg gjør",
"Reset password" => "Tilbakestill passord",
+"Password can not be changed. Please contact your administrator." => "Passordet kan ikke endres. Kontakt administratoren din.",
"Yes" => "Ja",
"No" => "Nei",
"Choose" => "Velg",
@@ -94,7 +99,7 @@ $TRANSLATIONS = array(
"Share via email:" => "Del på epost",
"No people found" => "Ingen personer funnet",
"group" => "gruppe",
-"Resharing is not allowed" => "Videredeling er ikke tillatt",
+"Resharing is not allowed" => "Videre deling er ikke tillatt",
"Shared in {item} with {user}" => "Delt i {item} med {user}",
"Unshare" => "Avslutt deling",
"notify by email" => "Varsle på email",
@@ -121,14 +126,18 @@ $TRANSLATIONS = array(
"Please reload the page." => "Vennligst last siden på nytt.",
"The update was unsuccessful." => "Oppdateringen var vellykket.",
"The update was successful. Redirecting you to ownCloud now." => "Oppdateringen var vellykket. Du omdirigeres nå til ownCloud.",
-"%s password reset" => "%s nullstilling av passord",
+"Couldn't reset password because the token is invalid" => "Klarte ikke å tilbakestille passordet fordi token er ugyldig.",
+"Couldn't send reset email. Please make sure your username is correct." => "Klarte ikke å sende e-post for tilbakestilling av passord. Sjekk at brukernavnet ditt er korrekt.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Klarte ikke å sende e-post for tilbakestilling av passord fordi det ikke finnes noen e-postadresse for dette brukernavnet. Kontakt administratoren din.",
+"%s password reset" => "%s tilbakestilling av passord",
"Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}",
"You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.",
"Username" => "Brukernavn",
-"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at passordet ditt er nullstilt. Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter. Vil du virkelig fortsette?",
-"Yes, I really want to reset my password now" => "Ja, jeg vil virkelig nullstille passordet mitt nå",
-"Reset" => "Nullstill",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at passordet ditt er tilbakestilt. Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter. Vil du virkelig fortsette?",
+"Yes, I really want to reset my password now" => "Ja, jeg vil virkelig tilbakestille passordet mitt nå",
+"Reset" => "Tilbakestill",
"New password" => "Nytt passord",
+"New Password" => "Nytt passord",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X støttes ikke og %s vil ikke fungere korrekt på denne plattformen. Bruk på egen risiko!",
"For the best results, please consider using a GNU/Linux server instead." => "For beste resultat, vurder å bruke en GNU/Linux-server i stedet.",
"Personal" => "Personlig",
@@ -152,7 +161,7 @@ $TRANSLATIONS = array(
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-versjonen din er sårbar for NULL Byte attack (CVE-2006-7243)",
"Please update your PHP installation to use %s securely." => "Vennligst oppdater PHP-installasjonen din for å bruke %s på en sikker måte.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker slumptallsgenerator er tilgjengelig. Vennligst aktiver PHP OpenSSL-utvidelsen.",
-"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uten en sikker slumptallsgenerator er det mulig at en angriper kan forutse passordnullstilling-tokens og ta over kontoen din.",
+"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uten en sikker slumptallsgenerator er det mulig at en angriper kan forutse tokens for tilbakestilling av passord og ta over kontoen din.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer.",
"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "For informasjon om hvordan du setter opp serveren din riktig, se <a href=\"%s\" target=\"_blank\">dokumentasjonen</a>.",
"Create an <strong>admin account</strong>" => "opprett en <strong>administrator-konto</strong>",
@@ -177,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Vennligst skift passord for å gjøre kontoen din sikker igjen.",
"Server side authentication failed!" => "Autentisering feilet på serveren!",
"Please contact your administrator." => "Vennligst kontakt administratoren din.",
+"Forgot your password? Reset it!" => "Glemt passordet ditt? Tilbakestill det!",
"remember" => "husk",
"Log in" => "Logg inn",
"Alternative Logins" => "Alternative innlogginger",
@@ -186,7 +196,7 @@ $TRANSLATIONS = array(
"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakt systemadministratoren hvis denne meldingen var uventet eller ikke forsvinner.",
"Thank you for your patience." => "Takk for din tålmodighet.",
"%s will be updated to version %s." => "%s vil bli oppdatert til versjon %s.",
-"The following apps will be disabled:" => "Følgende apps vil bli deaktivert:",
+"The following apps will be disabled:" => "Følgende apper vil bli deaktivert:",
"The theme %s has been disabled." => "Temaet %s har blitt deaktivert.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." => "Forsikre deg om at databasen, config-mappen og datamappen er blitt sikkerhetskopiert før du fortsetter.",
"Start update" => "Start oppdatering",
diff --git a/core/l10n/nl.php b/core/l10n/nl.php
index 7c977ae71d7..599f05f4521 100644
--- a/core/l10n/nl.php
+++ b/core/l10n/nl.php
@@ -47,7 +47,12 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("","%n maanden geleden"),
"last year" => "vorig jaar",
"years ago" => "jaar geleden",
+"Couldn't send reset email. Please contact your administrator." => "Kon herstel e-mail niet versturen. Neem contact op met uw beheerder.",
+"The link to reset your password has been sent to your email. If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator." => "De link om uw wachtwoord te herstellen is per e-mail naar u verstuurd. Als u dit bericht niet binnen redelijke tijd hebt ontvangen, controleer dan uw spammapje. <br>Als het daar niet in zit, neem dan contact op met uw beheerder.",
+"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset.<br />If you are not sure what to do, please contact your administrator before you continue. <br />Do you really want to continue?" => "Uw bestanden zijn versleuteld. Als u de herstelsleutel niet hebt geactiveerd, dan is er geen mogelijk om uw gegevens terug te krijgen nadat uw wachtwoord is hersteld. <br>Als u niet weet wat u moet doen, neem dan eerst contact op met uw beheerder. <br>Wilt u echt verder gaan?",
+"I know what I'm doing" => "Ik weet wat ik doe",
"Reset password" => "Reset wachtwoord",
+"Password can not be changed. Please contact your administrator." => "Het wachtwoord kan niet worden gewijzigd. Neem contact op met uw beheerder.",
"Yes" => "Ja",
"No" => "Nee",
"Choose" => "Kies",
@@ -121,6 +126,9 @@ $TRANSLATIONS = array(
"Please reload the page." => "Herlaad deze pagina.",
"The update was unsuccessful." => "De update is niet geslaagd.",
"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. U wordt teruggeleid naar uw eigen ownCloud.",
+"Couldn't reset password because the token is invalid" => "Kon het wachtwoord niet herstellen omdat het token ongeldig is",
+"Couldn't send reset email. Please make sure your username is correct." => "Kon e-mail niet versturen. Verifieer of uw gebruikersnaam correct is.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Kon wachtwoordherstel e-mailbericht niet versturen, omdat er geen e-mailadres bekend is voor deze gebruikersnaam. Neem contact op met uw beheerder.",
"%s password reset" => "%s wachtwoord reset",
"Use the following link to reset your password: {link}" => "Gebruik de volgende link om uw wachtwoord te resetten: {link}",
"You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.",
@@ -129,6 +137,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Ja, ik wil mijn wachtwoord nu echt resetten",
"Reset" => "Reset",
"New password" => "Nieuw wachtwoord",
+"New Password" => "Nieuw wachtwoord",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wordt niet ondersteund en %s zal niet goed werken op dit platform. Gebruik het op uw eigen risico!",
"For the best results, please consider using a GNU/Linux server instead." => "Voor het beste resultaat adviseren wij het gebruik van een GNU/Linux server.",
"Personal" => "Persoonlijk",
@@ -177,6 +186,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Wijzig uw wachtwoord zodat uw account weer beveiligd is.",
"Server side authentication failed!" => "Authenticatie bij de server mislukte!",
"Please contact your administrator." => "Neem contact op met uw systeembeheerder.",
+"Forgot your password? Reset it!" => "Wachtwoord vergeten? Herstel het!",
"remember" => "onthoud gegevens",
"Log in" => "Meld u aan",
"Alternative Logins" => "Alternatieve inlogs",
diff --git a/core/l10n/pl.php b/core/l10n/pl.php
index f9b7efedfd3..a6b2301f5a0 100644
--- a/core/l10n/pl.php
+++ b/core/l10n/pl.php
@@ -47,7 +47,10 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"),
"last year" => "w zeszłym roku",
"years ago" => "lat temu",
+"Couldn't send reset email. Please contact your administrator." => "Nie mogę wysłać maila resetującego. Skontaktuj się z administratorem.",
+"I know what I'm doing" => "Wiem co robię",
"Reset password" => "Zresetuj hasło",
+"Password can not be changed. Please contact your administrator." => "Hasło nie może zostać zmienione. Skontaktuj się z administratorem.",
"Yes" => "Tak",
"No" => "Nie",
"Choose" => "Wybierz",
@@ -121,6 +124,9 @@ $TRANSLATIONS = array(
"Please reload the page." => "Proszę przeładować stronę",
"The update was unsuccessful." => "Aktualizacja nie powiodła się.",
"The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.",
+"Couldn't reset password because the token is invalid" => "Nie można zresetować hasła, ponieważ token jest niepoprawny",
+"Couldn't send reset email. Please make sure your username is correct." => "Nie mogę wysłać maila resetującego. Sprawdź czy nazwa użytkownika jest poprawna.",
+"Couldn't send reset email because there is no email address for this username. Please contact your administrator." => "Nie mogę wysłać maila resetującego. Sprawdź czy nazwa użytkownika lub adres email jest poprawny. Skontaktuj się z administratorem.",
"%s password reset" => "%s reset hasła",
"Use the following link to reset your password: {link}" => "Użyj tego odnośnika by zresetować hasło: {link}",
"You will receive a link to reset your password via Email." => "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail.",
@@ -129,6 +135,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Tak, naprawdę chcę zresetować hasło teraz",
"Reset" => "Resetuj",
"New password" => "Nowe hasło",
+"New Password" => "Nowe hasło",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X nie jest wspierany i %s nie będzie działać poprawnie na tej platformie. Używasz na własne ryzyko!",
"For the best results, please consider using a GNU/Linux server instead." => "Aby uzyskać najlepsze rezultaty, rozważ w to miejsce użycie serwera GNU/Linux.",
"Personal" => "Osobiste",
@@ -177,6 +184,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto.",
"Server side authentication failed!" => "Uwierzytelnianie po stronie serwera nie powiodło się!",
"Please contact your administrator." => "Skontaktuj się z administratorem",
+"Forgot your password? Reset it!" => "Nie pamiętasz hasła? Zresetuj je!",
"remember" => "pamiętaj",
"Log in" => "Zaloguj",
"Alternative Logins" => "Alternatywne loginy",
diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php
index 9a6512dddd4..ec417c4f178 100644
--- a/core/l10n/pt_PT.php
+++ b/core/l10n/pt_PT.php
@@ -5,6 +5,7 @@ $TRANSLATIONS = array(
"Turned on maintenance mode" => "Activado o modo de manutenção",
"Turned off maintenance mode" => "Desactivado o modo de manutenção",
"Updated database" => "Base de dados actualizada",
+"Disabled incompatible apps: %s" => "Apps incompatíveis desativadas: %s",
"No image or file provided" => "Não foi selecionado nenhum ficheiro para importar",
"Unknown filetype" => "Ficheiro desconhecido",
"Invalid image" => "Imagem inválida",
@@ -33,6 +34,7 @@ $TRANSLATIONS = array(
"File" => "Ficheiro",
"Folder" => "Pasta",
"Image" => "Imagem",
+"Audio" => "Audio",
"Saving..." => "A guardar...",
"seconds ago" => "Minutos atrás",
"_%n minute ago_::_%n minutes ago_" => array("%n minuto atrás","%n minutos atrás"),
@@ -113,7 +115,9 @@ $TRANSLATIONS = array(
"Edit tags" => "Editar etiquetas",
"Error loading dialog template: {error}" => "Erro ao carregar modelo de diálogo: {error}",
"No tags selected for deletion." => "Não foram escolhidas etiquetas para apagar.",
+"Updating {productName} to version {version}, this may take a while." => "A atualizar {productName} para a versão {version}, isto poderá demorar algum tempo.",
"Please reload the page." => "Por favor recarregue a página.",
+"The update was unsuccessful." => "Não foi possível atualizar.",
"The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.",
"%s password reset" => "%s reposição da password",
"Use the following link to reset your password: {link}" => "Use o seguinte endereço para repor a sua password: {link}",
@@ -177,6 +181,9 @@ $TRANSLATIONS = array(
"This means only administrators can use the instance." => "Isto significa que apenas os administradores podem usar a instância.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte o seu administrador de sistema se esta mensagem continuar a aparecer ou apareceu inesperadamente.",
"Thank you for your patience." => "Obrigado pela sua paciência.",
+"%s will be updated to version %s." => "O %s irá ser atualizado para a versão %s.",
+"The following apps will be disabled:" => "As seguintes apps irão ser desativadas:",
+"The theme %s has been disabled." => "O tema %s foi desativado.",
"This ownCloud instance is currently being updated, which may take a while." => "Esta instância do ownCloud está a ser actualizada, poderá demorar algum tempo.",
"Please reload this page after a short time to continue using ownCloud." => "Por favo recarregue esta página após algum tempo para continuar a usar ownCloud."
);
diff --git a/core/l10n/ru.php b/core/l10n/ru.php
index 957b18017cc..d8fe5740726 100644
--- a/core/l10n/ru.php
+++ b/core/l10n/ru.php
@@ -46,7 +46,10 @@ $TRANSLATIONS = array(
"_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"),
"last year" => "в прошлом году",
"years ago" => "несколько лет назад",
+"Couldn't send reset email. Please contact your administrator." => "Не удалось отправить письмо для сброса пароля. Пожалуйста, свяжитесь с вашим администратором.",
+"I know what I'm doing" => "Я понимаю, что делаю",
"Reset password" => "Сбросить пароль",
+"Password can not be changed. Please contact your administrator." => "Пароль не может быть изменён. Пожалуйста, свяжитесь с вашим администратором.",
"Yes" => "Да",
"No" => "Нет",
"Choose" => "Выбрать",
@@ -119,6 +122,7 @@ $TRANSLATIONS = array(
"Please reload the page." => "Пожалуйста, перезагрузите страницу.",
"The update was unsuccessful." => "Обновление не удалось.",
"The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...",
+"Couldn't send reset email. Please make sure your username is correct." => "Не удалось отправить письмо для сброса пароля. Пожалуйста, убедитесь в том, что ваше имя пользователя введено верно.",
"%s password reset" => "%s сброс пароля",
"Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}",
"You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.",
@@ -165,6 +169,7 @@ $TRANSLATIONS = array(
"Database name" => "Название базы данных",
"Database tablespace" => "Табличое пространство базы данных",
"Database host" => "Хост базы данных",
+"SQLite will be used as database. For larger installations we recommend to change this." => "SQLite будет использован в качестве базы данных. Мы рекомендуем изменить это для крупных установок.",
"Finish setup" => "Завершить установку",
"Finishing …" => "Завершаем...",
"This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Это приложение требует включённый JavaScript для корректной работы. Пожалуйста, <a href=\"http://enable-javascript.com/\" target=\"_blank\">включите JavaScript</a> и перезагрузите интерфейс.",
@@ -175,6 +180,7 @@ $TRANSLATIONS = array(
"Please change your password to secure your account again." => "Пожалуйста, смените пароль, чтобы обезопасить свою учетную запись.",
"Server side authentication failed!" => "Неудачная аутентификация с сервером!",
"Please contact your administrator." => "Пожалуйста, свяжитесь с вашим администратором.",
+"Forgot your password? Reset it!" => "Забыли пароль? Сбросьте его!",
"remember" => "запомнить",
"Log in" => "Войти",
"Alternative Logins" => "Альтернативные имена пользователя",
diff --git a/core/l10n/sl.php b/core/l10n/sl.php
index 4fe12d76021..0f9f66e3d1e 100644
--- a/core/l10n/sl.php
+++ b/core/l10n/sl.php
@@ -33,6 +33,7 @@ $TRANSLATIONS = array(
"File" => "Datoteka",
"Folder" => "Mapa",
"Image" => "Slika",
+"Audio" => "Zvok",
"Saving..." => "Poteka shranjevanje ...",
"seconds ago" => "pred nekaj sekundami",
"_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"),
@@ -45,6 +46,7 @@ $TRANSLATIONS = array(
"last year" => "lansko leto",
"years ago" => "let nazaj",
"Reset password" => "Ponastavi geslo",
+"Password can not be changed. Please contact your administrator." => "Gesla ni mogoče spremeniti. Stopite v stik s skrbnikom.",
"Yes" => "Da",
"No" => "Ne",
"Choose" => "Izbor",
@@ -111,6 +113,7 @@ $TRANSLATIONS = array(
"Error loading dialog template: {error}" => "Napaka nalaganja predloge pogovornega okna: {error}",
"No tags selected for deletion." => "Ni izbranih oznak za izbris.",
"Please reload the page." => "Stran je treba ponovno naložiti",
+"The update was unsuccessful." => "Posodobitev je spodletela",
"The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.",
"%s password reset" => "Ponastavitev gesla %s",
"Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}",
@@ -120,6 +123,7 @@ $TRANSLATIONS = array(
"Yes, I really want to reset my password now" => "Da, potrjujem ponastavitev gesla",
"Reset" => "Ponastavi",
"New password" => "Novo geslo",
+"New Password" => "Novo geslo",
"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Sistem Mac OS X ni podprt, zato %s ne bo deloval zanesljivo v tem okolju. Program uporabljate na lastno odgovornost! ",
"For the best results, please consider using a GNU/Linux server instead." => "Za najbolj še rezultate je priporočljivo uporabljati strežnik GNU/Linux.",
"Personal" => "Osebno",
@@ -174,6 +178,8 @@ $TRANSLATIONS = array(
"This means only administrators can use the instance." => "To pomeni, da lahko oblak uporabljajo le osebe s skrbniškimi dovoljenji.",
"Contact your system administrator if this message persists or appeared unexpectedly." => "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.",
"Thank you for your patience." => "Hvala za potrpežljivost!",
+"The theme %s has been disabled." => "Tema %s je onemogočena za uporabo.",
+"Start update" => "Začni posodobitev",
"This ownCloud instance is currently being updated, which may take a while." => "Nastavitev oblaka ownCloud se trenutno posodablja. Opravilo je lahko dolgotrajno ...",
"Please reload this page after a short time to continue using ownCloud." => "Ponovno naložite to stran po krajšem preteku časa in nadaljujte z uporabo oblaka ownCloud."
);
diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php
index a74558d908c..40f6b983f5c 100644
--- a/core/l10n/zh_TW.php
+++ b/core/l10n/zh_TW.php
@@ -29,6 +29,7 @@ $TRANSLATIONS = array(
"November" => "十一月",
"December" => "十二月",
"Settings" => "設定",
+"File" => "檔案",
"Folder" => "資料夾",
"Saving..." => "儲存中...",
"seconds ago" => "幾秒前",