diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 5 | ||||
-rw-r--r-- | core/js/singleselect.js | 76 | ||||
-rw-r--r-- | core/l10n/bn_BD.php | 2 | ||||
-rw-r--r-- | core/l10n/ca.php | 2 | ||||
-rw-r--r-- | core/l10n/cs_CZ.php | 2 | ||||
-rw-r--r-- | core/l10n/da.php | 5 | ||||
-rw-r--r-- | core/l10n/de.php | 2 | ||||
-rw-r--r-- | core/l10n/de_DE.php | 4 | ||||
-rw-r--r-- | core/l10n/es.php | 2 | ||||
-rw-r--r-- | core/l10n/es_AR.php | 6 | ||||
-rw-r--r-- | core/l10n/et_EE.php | 1 | ||||
-rw-r--r-- | core/l10n/eu.php | 6 | ||||
-rw-r--r-- | core/l10n/fr.php | 2 | ||||
-rw-r--r-- | core/l10n/hi.php | 10 | ||||
-rw-r--r-- | core/l10n/it.php | 2 | ||||
-rw-r--r-- | core/l10n/ja_JP.php | 4 | ||||
-rw-r--r-- | core/l10n/ko.php | 2 | ||||
-rw-r--r-- | core/l10n/lv.php | 2 | ||||
-rw-r--r-- | core/l10n/nl.php | 5 | ||||
-rw-r--r-- | core/l10n/pl.php | 2 | ||||
-rw-r--r-- | core/l10n/pt_BR.php | 2 | ||||
-rw-r--r-- | core/l10n/pt_PT.php | 2 | ||||
-rw-r--r-- | core/l10n/ru.php | 2 | ||||
-rw-r--r-- | core/l10n/ru_RU.php | 2 | ||||
-rw-r--r-- | core/l10n/sk_SK.php | 2 | ||||
-rw-r--r-- | core/l10n/sv.php | 2 | ||||
-rw-r--r-- | core/l10n/th_TH.php | 2 | ||||
-rw-r--r-- | core/l10n/uk.php | 2 | ||||
-rw-r--r-- | core/l10n/vi.php | 2 | ||||
-rw-r--r-- | core/l10n/zh_CN.php | 2 | ||||
-rw-r--r-- | core/l10n/zh_TW.php | 2 |
31 files changed, 136 insertions, 28 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index f6bf652f07c..b8b6188671e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -192,8 +192,9 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } position:absolute!important; height:14px; width:24px; background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3; } -#personal-show + label { margin-top:1em; } -#passwordbutton { margin-left:2.5em; } +#pass2, input[name="personal-password-clone"] { padding:0.6em 2.5em 0.4em 0.4em; width:8em;} +#personal-show + label { margin-top:1em; margin-left:-3em; } +#passwordbutton { margin-left:0.5em; } /* Database selector */ #login form #selectDbType { text-align:center; } diff --git a/core/js/singleselect.js b/core/js/singleselect.js new file mode 100644 index 00000000000..1a018b74148 --- /dev/null +++ b/core/js/singleselect.js @@ -0,0 +1,76 @@ +(function ($) { + $.fn.singleSelect = function () { + return this.each(function (i, select) { + var input = $('<input/>'); + select = $(select); + input.css('position', 'absolute'); + input.css(select.offset()); + input.css({ + 'box-sizing': 'border-box', + '-moz-box-sizing': 'border-box', + 'margin': 0, + 'width': (select.width() - 5) + 'px', + 'height': (select.outerHeight() - 2) + 'px', + 'border': 'none', + 'box-shadow': 'none', + 'margin-top': '1px', + 'margin-left': '1px', + 'z-index': 1000 + }); + input.hide(); + $('body').append(input); + + select.on('change', function (event) { + var value = $(this).val(), + newAttr = $('option:selected', $(this)).attr('data-new'); + if (!(typeof newAttr !== 'undefined' && newAttr !== false)) { + input.hide(); + select.data('previous', value); + } else { + event.stopImmediatePropagation(); + input.show(); + select.css('background-color', 'white'); + input.focus(); + } + }); + + $(select).data('previous', $(select).val()); + + input.on('change', function () { + var value = $(this).val(); + if (value) { + select.children().attr('selected', null); + var existingOption = select.children().filter(function (i, option) { + return ($(option).val() == value); + }); + if (existingOption.length) { + existingOption.attr('selected', 'selected'); + } else { + var option = $('<option/>'); + option.attr('selected', 'selected').attr('value', value).text(value); + select.children().last().before(option); + } + select.val(value); + select.css('background-color', null); + input.val(null); + input.hide(); + select.change(); + } else { + var previous = select.data('previous'); + select.children().attr('selected', null); + select.children().each(function (i, option) { + if ($(option).val() == previous) { + $(option).attr('selected', 'selected'); + } + }); + select.removeClass('active'); + input.hide(); + } + }); + + input.on('blur', function () { + $(this).change(); + }); + }); + } +})(jQuery); diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 426b4856707..686ebdf9af1 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -52,8 +52,8 @@ "Error" => "সমস্যা", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", "The required file {file} is not installed!" => "আবশ্যিক {file} টি সংস্থাপিত নেই !", -"Share" => "ভাগাভাগি কর", "Shared" => "ভাগাভাগিকৃত", +"Share" => "ভাগাভাগি কর", "Error while sharing" => "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে ", "Error while unsharing" => "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে", "Error while changing permissions" => "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 2126b96eddb..d260241c4d6 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -53,8 +53,8 @@ "Error" => "Error", "The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", "The required file {file} is not installed!" => "El fitxer requerit {file} no està instal·lat!", -"Share" => "Comparteix", "Shared" => "Compartit", +"Share" => "Comparteix", "Error while sharing" => "Error en compartir", "Error while unsharing" => "Error en deixar de compartir", "Error while changing permissions" => "Error en canviar els permisos", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 331fcefd923..afd55d42bf4 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -53,8 +53,8 @@ "Error" => "Chyba", "The app name is not specified." => "Není určen název aplikace.", "The required file {file} is not installed!" => "Požadovaný soubor {file} není nainstalován.", -"Share" => "Sdílet", "Shared" => "Sdílené", +"Share" => "Sdílet", "Error while sharing" => "Chyba při sdílení", "Error while unsharing" => "Chyba při rušení sdílení", "Error while changing permissions" => "Chyba při změně oprávnění", diff --git a/core/l10n/da.php b/core/l10n/da.php index ebe4808544b..6d982aac2a9 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s", "Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", +"This category already exists: %s" => "Kategorien eksisterer allerede: %s", "Object type not provided." => "Object type ikke er fastsat.", "%s ID not provided." => "%s ID ikke oplyst.", "Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.", @@ -52,6 +53,7 @@ "Error" => "Fejl", "The app name is not specified." => "Den app navn er ikke angivet.", "The required file {file} is not installed!" => "Den krævede fil {file} er ikke installeret!", +"Shared" => "Delt", "Share" => "Del", "Error while sharing" => "Fejl under deling", "Error while unsharing" => "Fejl under annullering af deling", @@ -107,6 +109,8 @@ "Security Warning" => "Sikkerhedsadvarsel", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uden en sikker tilfældighedsgenerator til tal kan en angriber måske gætte dit gendan kodeord og overtage din konto", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker.", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "For at vide mere om hvordan du konfigurerer din server ordentligt, se venligst <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentationen</a>.", "Create an <strong>admin account</strong>" => "Opret en <strong>administratorkonto</strong>", "Advanced" => "Avanceret", "Data folder" => "Datamappe", @@ -126,6 +130,7 @@ "Lost your password?" => "Mistet dit kodeord?", "remember" => "husk", "Log in" => "Log ind", +"Alternative Logins" => "Alternative logins", "prev" => "forrige", "next" => "næste", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid." diff --git a/core/l10n/de.php b/core/l10n/de.php index d14af6639c9..57dfd329bd2 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -52,8 +52,8 @@ "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", "The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert.", -"Share" => "Freigeben", "Shared" => "Freigegeben", +"Share" => "Freigeben", "Error while sharing" => "Fehler beim Freigeben", "Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler beim Ändern der Rechte", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index fdebfeb6587..b099510d0d9 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -53,8 +53,8 @@ "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", "The required file {file} is not installed!" => "Die benötigte Datei {file} ist nicht installiert.", -"Share" => "Freigeben", "Shared" => "Freigegeben", +"Share" => "Freigeben", "Error while sharing" => "Fehler bei der Freigabe", "Error while unsharing" => "Fehler bei der Aufhebung der Freigabe", "Error while changing permissions" => "Fehler bei der Änderung der Rechte", @@ -109,6 +109,8 @@ "Security Warning" => "Sicherheitshinweis", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dein Daten-Verzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Bitte lesen Sie die <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">Dokumentation</a> für Informationen, wie Sie Ihren Server wahrscheinlich konfigurieren.", "Create an <strong>admin account</strong>" => "<strong>Administrator-Konto</strong> anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", diff --git a/core/l10n/es.php b/core/l10n/es.php index 6e6c56205b7..5f4a2d6b724 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -53,8 +53,8 @@ "Error" => "Fallo", "The app name is not specified." => "El nombre de la app no se ha especificado.", "The required file {file} is not installed!" => "El fichero {file} requerido, no está instalado.", -"Share" => "Compartir", "Shared" => "Compartido", +"Share" => "Compartir", "Error while sharing" => "Error compartiendo", "Error while unsharing" => "Error descompartiendo", "Error while changing permissions" => "Error cambiando permisos", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 819e52a7856..dcbae5c1e94 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. Está disponible para su descarga aquí: %s", "Category type not provided." => "Tipo de categoría no provisto. ", "No category to add?" => "¿Ninguna categoría para añadir?", +"This category already exists: %s" => "Esta categoría ya existe: %s", "Object type not provided." => "Tipo de objeto no provisto. ", "%s ID not provided." => "%s ID no provista. ", "Error adding %s to favorites." => "Error al agregar %s a favoritos. ", @@ -52,8 +53,8 @@ "Error" => "Error", "The app name is not specified." => "El nombre de la aplicación no esta especificado.", "The required file {file} is not installed!" => "¡El archivo requerido {file} no está instalado!", -"Share" => "Compartir", "Shared" => "Compartido", +"Share" => "Compartir", "Error while sharing" => "Error al compartir", "Error while unsharing" => "Error en el procedimiento de ", "Error while changing permissions" => "Error al cambiar permisos", @@ -108,6 +109,8 @@ "Security Warning" => "Advertencia de seguridad", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando.", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Para información sobre cómo configurar adecuadamente tu servidor, por favor mirá la <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentación</a>.", "Create an <strong>admin account</strong>" => "Crear una <strong>cuenta de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", @@ -127,6 +130,7 @@ "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", "Log in" => "Entrar", +"Alternative Logins" => "Nombre alternativos de usuarios", "prev" => "anterior", "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index b0fc75736a0..de75b3f6f16 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -24,6 +24,7 @@ "seconds ago" => "sekundit tagasi", "1 minute ago" => "1 minut tagasi", "{minutes} minutes ago" => "{minutes} minutit tagasi", +"1 hour ago" => "1 tund tagasi", "today" => "täna", "yesterday" => "eile", "{days} days ago" => "{days} päeva tagasi", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 7dce8c53fb9..8c36254caf8 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s", "Category type not provided." => "Kategoria mota ez da zehaztu.", "No category to add?" => "Ez dago gehitzeko kategoriarik?", +"This category already exists: %s" => "Kategoria hau dagoeneko existitzen da: %s", "Object type not provided." => "Objetu mota ez da zehaztu.", "%s ID not provided." => "%s ID mota ez da zehaztu.", "Error adding %s to favorites." => "Errorea gertatu da %s gogokoetara gehitzean.", @@ -52,8 +53,8 @@ "Error" => "Errorea", "The app name is not specified." => "App izena ez dago zehaztuta.", "The required file {file} is not installed!" => "Beharrezkoa den {file} fitxategia ez dago instalatuta!", -"Share" => "Elkarbanatu", "Shared" => "Elkarbanatuta", +"Share" => "Elkarbanatu", "Error while sharing" => "Errore bat egon da elkarbanatzean", "Error while unsharing" => "Errore bat egon da elkarbanaketa desegitean", "Error while changing permissions" => "Errore bat egon da baimenak aldatzean", @@ -108,6 +109,8 @@ "Security Warning" => "Segurtasun abisua", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Zure data karpeta eta fitxategiak interneten bidez eskuragarri egon daitezke .htaccess fitxategia ez delako funtzionatzen ari.", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Zure zerbitzaria ongi konfiguratzeko informazioa eskuratzeko, begiratu <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentazioa</a>.", "Create an <strong>admin account</strong>" => "Sortu <strong>kudeatzaile kontu<strong> bat", "Advanced" => "Aurreratua", "Data folder" => "Datuen karpeta", @@ -127,6 +130,7 @@ "Lost your password?" => "Galdu duzu pasahitza?", "remember" => "gogoratu", "Log in" => "Hasi saioa", +"Alternative Logins" => "Beste erabiltzaile izenak", "prev" => "aurrekoa", "next" => "hurrengoa", "Updating ownCloud to version %s, this may take a while." => "ownCloud %s bertsiora eguneratzen, denbora har dezake." diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 630d541b11b..f6ad077d268 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -53,8 +53,8 @@ "Error" => "Erreur", "The app name is not specified." => "Le nom de l'application n'est pas spécifié.", "The required file {file} is not installed!" => "Le fichier requis {file} n'est pas installé !", -"Share" => "Partager", "Shared" => "Partagé", +"Share" => "Partager", "Error while sharing" => "Erreur lors de la mise en partage", "Error while unsharing" => "Erreur lors de l'annulation du partage", "Error while changing permissions" => "Erreur lors du changement des permissions", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index d7f9fd150b0..7d55c5b6b2f 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -1,17 +1,27 @@ <?php $TRANSLATIONS = array( +"Settings" => "सेटिंग्स", "Password" => "पासवर्ड", "Use the following link to reset your password: {link}" => "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}", "You will receive a link to reset your password via Email." => "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|", "Username" => "प्रयोक्ता का नाम", "Your password was reset" => "आपका पासवर्ड बदला गया है", "New password" => "नया पासवर्ड", +"Personal" => "यक्तिगत", +"Users" => "उपयोगकर्ता", +"Apps" => "Apps", +"Help" => "सहयोग", "Cloud not found" => "क्लौड नहीं मिला ", "Create an <strong>admin account</strong>" => "व्यवस्थापक खाता बनाएँ", "Advanced" => "उन्नत", +"Data folder" => "डाटा फोल्डर", "Configure the database" => "डेटाबेस कॉन्फ़िगर करें ", +"will be used" => "उपयोग होगा", "Database user" => "डेटाबेस उपयोगकर्ता", "Database password" => "डेटाबेस पासवर्ड", +"Database name" => "डेटाबेस का नाम", "Finish setup" => "सेटअप समाप्त करे", +"Log out" => "लोग आउट", +"remember" => "याद रखें", "prev" => "पिछला", "next" => "अगला" ); diff --git a/core/l10n/it.php b/core/l10n/it.php index c0109b91239..e8bd848bfee 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -53,8 +53,8 @@ "Error" => "Errore", "The app name is not specified." => "Il nome dell'applicazione non è specificato.", "The required file {file} is not installed!" => "Il file richiesto {file} non è installato!", -"Share" => "Condividi", "Shared" => "Condivisi", +"Share" => "Condividi", "Error while sharing" => "Errore durante la condivisione", "Error while unsharing" => "Errore durante la rimozione della condivisione", "Error while changing permissions" => "Errore durante la modifica dei permessi", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 803faaf75a6..2a69275e334 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -53,8 +53,8 @@ "Error" => "エラー", "The app name is not specified." => "アプリ名がしていされていません。", "The required file {file} is not installed!" => "必要なファイル {file} がインストールされていません!", -"Share" => "共有", "Shared" => "共有中", +"Share" => "共有", "Error while sharing" => "共有でエラー発生", "Error while unsharing" => "共有解除でエラー発生", "Error while changing permissions" => "権限変更でエラー発生", @@ -109,6 +109,8 @@ "Security Warning" => "セキュリティ警告", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者はパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "あなたのサーバの適切な設定に関する情報として、<a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">ドキュメント</a>を参照して下さい。", "Create an <strong>admin account</strong>" => "<strong>管理者アカウント</strong>を作成してください", "Advanced" => "詳細設定", "Data folder" => "データフォルダ", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 172ec3e03a5..408afa372b7 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -52,8 +52,8 @@ "Error" => "오류", "The app name is not specified." => "앱 이름이 지정되지 않았습니다.", "The required file {file} is not installed!" => "필요한 파일 {file}이(가) 설치되지 않았습니다!", -"Share" => "공유", "Shared" => "공유됨", +"Share" => "공유", "Error while sharing" => "공유하는 중 오류 발생", "Error while unsharing" => "공유 해제하는 중 오류 발생", "Error while changing permissions" => "권한 변경하는 중 오류 발생", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 78be7df9aaf..9e3f169b2f4 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -53,8 +53,8 @@ "Error" => "Kļūda", "The app name is not specified." => "Nav norādīts lietotnes nosaukums.", "The required file {file} is not installed!" => "Pieprasītā datne {file} nav instalēta!", -"Share" => "Dalīties", "Shared" => "Kopīgs", +"Share" => "Dalīties", "Error while sharing" => "Kļūda, daloties", "Error while unsharing" => "Kļūda, beidzot dalīties", "Error while changing permissions" => "Kļūda, mainot atļaujas", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 1dc8a9ca3be..6daa9227904 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", +"This category already exists: %s" => "Deze categorie bestaat al: %s", "Object type not provided." => "Object type niet opgegeven.", "%s ID not provided." => "%s ID niet opgegeven.", "Error adding %s to favorites." => "Toevoegen van %s aan favorieten is mislukt.", @@ -52,8 +53,8 @@ "Error" => "Fout", "The app name is not specified." => "De app naam is niet gespecificeerd.", "The required file {file} is not installed!" => "Het vereiste bestand {file} is niet geïnstalleerd!", -"Share" => "Delen", "Shared" => "Gedeeld", +"Share" => "Delen", "Error while sharing" => "Fout tijdens het delen", "Error while unsharing" => "Fout tijdens het stoppen met delen", "Error while changing permissions" => "Fout tijdens het veranderen van permissies", @@ -108,6 +109,8 @@ "Security Warning" => "Beveiligingswaarschuwing", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Uw gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess bestand niet werkt.", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Informatie over het configureren van uw server is hier te vinden <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentatie</a>.", "Create an <strong>admin account</strong>" => "Maak een <strong>beheerdersaccount</strong> aan", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 682289326dd..8f548fe5be6 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -52,8 +52,8 @@ "Error" => "Błąd", "The app name is not specified." => "Nazwa aplikacji nie jest określona.", "The required file {file} is not installed!" => "Żądany plik {file} nie jest zainstalowany!", -"Share" => "Udostępnij", "Shared" => "Udostępniono", +"Share" => "Udostępnij", "Error while sharing" => "Błąd podczas współdzielenia", "Error while unsharing" => "Błąd podczas zatrzymywania współdzielenia", "Error while changing permissions" => "Błąd przy zmianie uprawnień", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 0d440f4c9d3..6cf1efe0e2a 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -52,8 +52,8 @@ "Error" => "Erro", "The app name is not specified." => "O nome do app não foi especificado.", "The required file {file} is not installed!" => "O arquivo {file} necessário não está instalado!", -"Share" => "Compartilhar", "Shared" => "Compartilhados", +"Share" => "Compartilhar", "Error while sharing" => "Erro ao compartilhar", "Error while unsharing" => "Erro ao descompartilhar", "Error while changing permissions" => "Erro ao mudar permissões", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 1a17161ae5a..28d6506bd33 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -53,8 +53,8 @@ "Error" => "Erro", "The app name is not specified." => "O nome da aplicação não foi especificado", "The required file {file} is not installed!" => "O ficheiro necessário {file} não está instalado!", -"Share" => "Partilhar", "Shared" => "Partilhado", +"Share" => "Partilhar", "Error while sharing" => "Erro ao partilhar", "Error while unsharing" => "Erro ao deixar de partilhar", "Error while changing permissions" => "Erro ao mudar permissões", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index b9c00c6691c..2ca4eeb4777 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -53,8 +53,8 @@ "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано", "The required file {file} is not installed!" => "Необходимый файл {file} не установлен!", -"Share" => "Открыть доступ", "Shared" => "Общие", +"Share" => "Открыть доступ", "Error while sharing" => "Ошибка при открытии доступа", "Error while unsharing" => "Ошибка при закрытии доступа", "Error while changing permissions" => "Ошибка при смене разрешений", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 86e068c6c8d..0399d56dfcf 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -53,8 +53,8 @@ "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано.", "The required file {file} is not installed!" => "Требуемый файл {файл} не установлен!", -"Share" => "Сделать общим", "Shared" => "Опубликовано", +"Share" => "Сделать общим", "Error while sharing" => "Ошибка создания общего доступа", "Error while unsharing" => "Ошибка отключения общего доступа", "Error while changing permissions" => "Ошибка при изменении прав доступа", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ef0b7c26ce3..b2c2dcf989f 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -53,8 +53,8 @@ "Error" => "Chyba", "The app name is not specified." => "Nešpecifikované meno aplikácie.", "The required file {file} is not installed!" => "Požadovaný súbor {file} nie je inštalovaný!", -"Share" => "Zdieľaj", "Shared" => "Zdieľané", +"Share" => "Zdieľaj", "Error while sharing" => "Chyba počas zdieľania", "Error while unsharing" => "Chyba počas ukončenia zdieľania", "Error while changing permissions" => "Chyba počas zmeny oprávnení", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index ff0006ee19b..590f2f3c846 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -53,8 +53,8 @@ "Error" => "Fel", "The app name is not specified." => " Namnet på appen är inte specificerad.", "The required file {file} is not installed!" => "Den nödvändiga filen {file} är inte installerad!", -"Share" => "Dela", "Shared" => "Delad", +"Share" => "Dela", "Error while sharing" => "Fel vid delning", "Error while unsharing" => "Fel när delning skulle avslutas", "Error while changing permissions" => "Fel vid ändring av rättigheter", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index e5295cee103..560c150066c 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -52,8 +52,8 @@ "Error" => "พบข้อผิดพลาด", "The app name is not specified." => "ชื่อของแอปยังไม่ได้รับการระบุชื่อ", "The required file {file} is not installed!" => "ไฟล์ {file} ซึ่งเป็นไฟล์ที่จำเป็นต้องได้รับการติดตั้งไว้ก่อน ยังไม่ได้ถูกติดตั้ง", -"Share" => "แชร์", "Shared" => "แชร์แล้ว", +"Share" => "แชร์", "Error while sharing" => "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล", "Error while unsharing" => "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล", "Error while changing permissions" => "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 7eab365a39d..a2f297fc224 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -52,8 +52,8 @@ "Error" => "Помилка", "The app name is not specified." => "Не визначено ім'я програми.", "The required file {file} is not installed!" => "Необхідний файл {file} не встановлено!", -"Share" => "Поділитися", "Shared" => "Опубліковано", +"Share" => "Поділитися", "Error while sharing" => "Помилка під час публікації", "Error while unsharing" => "Помилка під час відміни публікації", "Error while changing permissions" => "Помилка при зміні повноважень", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 0c4b197322e..f03c58f3491 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -53,8 +53,8 @@ "Error" => "Lỗi", "The app name is not specified." => "Tên ứng dụng không được chỉ định.", "The required file {file} is not installed!" => "Tập tin cần thiết {file} không được cài đặt!", -"Share" => "Chia sẻ", "Shared" => "Được chia sẻ", +"Share" => "Chia sẻ", "Error while sharing" => "Lỗi trong quá trình chia sẻ", "Error while unsharing" => "Lỗi trong quá trình gỡ chia sẻ", "Error while changing permissions" => "Lỗi trong quá trình phân quyền", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 086687c08c3..6a2c2e35a48 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -52,8 +52,8 @@ "Error" => "错误", "The app name is not specified." => "未指定App名称。", "The required file {file} is not installed!" => "所需文件{file}未安装!", -"Share" => "共享", "Shared" => "已共享", +"Share" => "共享", "Error while sharing" => "共享时出错", "Error while unsharing" => "取消共享时出错", "Error while changing permissions" => "修改权限时出错", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 96142d20689..765aeb34eac 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -53,8 +53,8 @@ "Error" => "錯誤", "The app name is not specified." => "沒有指定 app 名稱。", "The required file {file} is not installed!" => "沒有安裝所需的檔案 {file} !", -"Share" => "分享", "Shared" => "已分享", +"Share" => "分享", "Error while sharing" => "分享時發生錯誤", "Error while unsharing" => "取消分享時發生錯誤", "Error while changing permissions" => "修改權限時發生錯誤", |