summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/ajax/update.php43
-rw-r--r--core/js/share.js21
-rw-r--r--core/l10n/ar.php2
-rw-r--r--core/l10n/bg_BG.php1
-rw-r--r--core/l10n/ca.php2
-rw-r--r--core/l10n/cs_CZ.php2
-rw-r--r--core/l10n/da.php2
-rw-r--r--core/l10n/de.php2
-rw-r--r--core/l10n/de_DE.php2
-rw-r--r--core/l10n/es.php2
-rw-r--r--core/l10n/es_AR.php2
-rw-r--r--core/l10n/eu.php2
-rw-r--r--core/l10n/fi.php4
-rw-r--r--core/l10n/fi_FI.php6
-rw-r--r--core/l10n/fr.php2
-rw-r--r--core/l10n/gl.php2
-rw-r--r--core/l10n/hu_HU.php2
-rw-r--r--core/l10n/it.php2
-rw-r--r--core/l10n/ja_JP.php2
-rw-r--r--core/l10n/nl.php2
-rw-r--r--core/l10n/pl.php2
-rw-r--r--core/l10n/pt_PT.php2
-rw-r--r--core/l10n/ru.php2
-rw-r--r--core/l10n/sk_SK.php2
-rw-r--r--core/l10n/sl.php2
-rw-r--r--core/l10n/sv.php2
-rw-r--r--core/l10n/te.php52
-rw-r--r--core/l10n/tr.php2
-rw-r--r--core/l10n/zh_CN.php1
-rw-r--r--core/l10n/zh_TW.php2
30 files changed, 168 insertions, 6 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php
index 8b20150d432..31b8c0dbb65 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -14,6 +14,10 @@ if (OC::checkUpgrade(false)) {
try {
$result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml');
$watcher->success('Updated database');
+
+ // do a file cache upgrade for users with files
+ // this can take loooooooooooooooooooooooong
+ __doFileCacheUpgrade($watcher);
} catch (Exception $exception) {
$watcher->failure($exception->getMessage());
}
@@ -26,6 +30,45 @@ if (OC::checkUpgrade(false)) {
$watcher->done();
}
+/**
+ * The FileCache Upgrade routine
+ *
+ * @param UpdateWatcher $watcher
+ */
+function __doFileCacheUpgrade($watcher) {
+ $query = \OC_DB::prepare('
+ SELECT DISTINCT `user`
+ FROM `*PREFIX*fscache`
+ ');
+ $result = $query->execute();
+ $users = $result->fetchAll();
+ if(count($users) == 0) {
+ return;
+ }
+ $step = 100 / count($users);
+ $percentCompleted = 0;
+ $lastPercentCompletedOutput = 0;
+ $startInfoShown = false;
+ foreach($users as $userRow) {
+ $user = $userRow['user'];
+ \OC\Files\Filesystem::initMountPoints($user);
+ \OC\Files\Cache\Upgrade::doSilentUpgrade($user);
+ if(!$startInfoShown) {
+ //We show it only now, because otherwise Info about upgraded apps
+ //will appear between this and progress info
+ $watcher->success('Updating filecache, this may take really long...');
+ $startInfoShown = true;
+ }
+ $percentCompleted += $step;
+ $out = floor($percentCompleted);
+ if($out != $lastPercentCompletedOutput) {
+ $watcher->success('... '. $out.'% done ...');
+ $lastPercentCompletedOutput = $out;
+ }
+ }
+ $watcher->success('Updated filecache');
+}
+
class UpdateWatcher {
/**
* @var \OC_EventSource $eventSource;
diff --git a/core/js/share.js b/core/js/share.js
index 8e767663f12..7f6ee0ec417 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -235,7 +235,18 @@ OC.Share={
});
return false;
}
- });
+ })
+ // customize internal _renderItem function to display groups and users differently
+ .data("ui-autocomplete")._renderItem = function( ul, item ) {
+ var insert = $( "<a>" ).text( item.label );
+ if(item.label.length > 8 && item.label.substr(item.label.length-8) === ' (group)') {
+ // current label is group - wrap "strong" element
+ insert = insert.wrapInner('<strong>');
+ }
+ return $( "<li>" )
+ .append( insert )
+ .appendTo( ul );
+ };
} else {
html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Resharing is not allowed')+'" style="width:90%;" disabled="disabled"/>';
html += '</div>';
@@ -271,7 +282,7 @@ OC.Share={
}
var collectionList = $('#shareWithList li').filterAttr('data-collection', item);
if (collectionList.length > 0) {
- $(collectionList).append(', '+shareWith);
+ $(collectionList).append(', '+shareWithDisplayName);
} else {
var html = '<li style="clear: both;" data-collection="'+item+'">'+t('core', 'Shared in {item} with {user}', {'item': item, user: shareWithDisplayName})+'</li>';
$('#shareWithList').prepend(html);
@@ -383,7 +394,7 @@ OC.Share={
}
$(document).ready(function() {
-
+
if(typeof monthNames != 'undefined'){
$.datepicker.setDefaults({
monthNames: monthNames,
@@ -421,7 +432,7 @@ $(document).ready(function() {
$(this).click(function(event) {
var target = $(event.target);
- var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon')
+ var isMatched = !target.is('.drop, .ui-datepicker-next, .ui-datepicker-prev, .ui-icon')
&& !target.closest('#ui-datepicker-div').length;
if (OC.Share.droppedDown && isMatched && $('#dropdown').has(event.target).length === 0) {
OC.Share.hideDropDown();
@@ -569,7 +580,7 @@ $(document).ready(function() {
});
}
});
-
+
$(document).on('change', '#dropdown #expirationDate', function() {
var itemType = $('#dropdown').data('item-type');
var itemSource = $('#dropdown').data('item-source');
diff --git a/core/l10n/ar.php b/core/l10n/ar.php
index d3fa6552a83..f75d8071709 100644
--- a/core/l10n/ar.php
+++ b/core/l10n/ar.php
@@ -107,6 +107,8 @@
"Edit categories" => "عدل الفئات",
"Add" => "أدخل",
"Security Warning" => "تحذير أمان",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Please update your PHP installation to use ownCloud securely.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.",
"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 لا يعمل بشكل صحيح.",
diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php
index f2320f1340e..dadb570d93e 100644
--- a/core/l10n/bg_BG.php
+++ b/core/l10n/bg_BG.php
@@ -8,6 +8,7 @@
"last month" => "последният месец",
"last year" => "последната година",
"years ago" => "последните години",
+"Cancel" => "Отказ",
"Error" => "Грешка",
"Share" => "Споделяне",
"Password" => "Парола",
diff --git a/core/l10n/ca.php b/core/l10n/ca.php
index 3837ceb0f92..acf617034fe 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -107,6 +107,8 @@
"Edit categories" => "Edita les categories",
"Add" => "Afegeix",
"Security Warning" => "Avís de seguretat",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Actualitzeu la instal·lació de PHP per usar ownCloud de forma segura.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No està disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona.",
diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php
index cbe48f6b683..eb70ac3e096 100644
--- a/core/l10n/cs_CZ.php
+++ b/core/l10n/cs_CZ.php
@@ -107,6 +107,8 @@
"Edit categories" => "Upravit kategorie",
"Add" => "Přidat",
"Security Warning" => "Bezpečnostní upozornění",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Aktualizujte prosím vaši instanci PHP pro bezpečné používání ownCloud.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Není dostupný žádný bezpečný generátor náhodných čísel. Povolte, prosím, rozšíření OpenSSL v PHP.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečného generátoru náhodných čísel může útočník předpovědět token pro obnovu hesla a převzít kontrolu nad Vaším účtem.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje.",
diff --git a/core/l10n/da.php b/core/l10n/da.php
index 6d982aac2a9..6650a7e1d8c 100644
--- a/core/l10n/da.php
+++ b/core/l10n/da.php
@@ -107,6 +107,8 @@
"Edit categories" => "Rediger kategorier",
"Add" => "Tilføj",
"Security Warning" => "Sikkerhedsadvarsel",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Opdater venligs din PHP-installation for at kunne bruge ownCloud sikkert.",
"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.",
diff --git a/core/l10n/de.php b/core/l10n/de.php
index e60f061ff3c..3b9ac15f4e5 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -107,6 +107,8 @@
"Edit categories" => "Kategorien bearbeiten",
"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitswarnung",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar",
+"Please update your PHP installation to use ownCloud securely." => "Bitte bringe deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere 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 Konten zu übernehmen.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.",
diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php
index d071294bba7..d6a8b1405e5 100644
--- a/core/l10n/de_DE.php
+++ b/core/l10n/de_DE.php
@@ -107,6 +107,8 @@
"Edit categories" => "Kategorien bearbeiten",
"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitshinweis",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar",
+"Please update your PHP installation to use ownCloud securely." => "Bitte bringen Sie Ihre PHP Version auf den neuesten Stand um ownCloud sicher nutzen zu können.",
"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." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.",
diff --git a/core/l10n/es.php b/core/l10n/es.php
index 5f4a2d6b724..e64858c4b11 100644
--- a/core/l10n/es.php
+++ b/core/l10n/es.php
@@ -107,6 +107,8 @@
"Edit categories" => "Editar categorías",
"Add" => "Añadir",
"Security Warning" => "Advertencia de seguridad",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Por favor, actualice su instalación de PHP para utilizar ownCloud en forma segura.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite 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 su contraseña y tomar control de su cuenta.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos están probablemente accesibles a través de internet ya que el archivo .htaccess no está funcionando.",
diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php
index dcbae5c1e94..f17a6d9baf1 100644
--- a/core/l10n/es_AR.php
+++ b/core/l10n/es_AR.php
@@ -107,6 +107,8 @@
"Edit categories" => "Editar categorías",
"Add" => "Agregar",
"Security Warning" => "Advertencia de seguridad",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Actualizá tu instalación de PHP para usar ownCloud de manera segura.",
"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.",
diff --git a/core/l10n/eu.php b/core/l10n/eu.php
index 834af44b382..dde2d59cbdf 100644
--- a/core/l10n/eu.php
+++ b/core/l10n/eu.php
@@ -107,6 +107,8 @@
"Edit categories" => "Editatu kategoriak",
"Add" => "Gehitu",
"Security Warning" => "Segurtasun abisua",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Zure PHP bertsioa NULL Byte erasoak (CVE-2006-7243) mendera dezake.",
+"Please update your PHP installation to use ownCloud securely." => "Mesedez eguneratu zure PHP instalazioa ownCloud modu seguru batean erabiltzeko.",
"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.",
diff --git a/core/l10n/fi.php b/core/l10n/fi.php
new file mode 100644
index 00000000000..655d544d393
--- /dev/null
+++ b/core/l10n/fi.php
@@ -0,0 +1,4 @@
+<?php $TRANSLATIONS = array(
+"Settings" => "asetukset",
+"Username" => "Käyttäjätunnus"
+);
diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php
index 1b412510e0a..e9386cad431 100644
--- a/core/l10n/fi_FI.php
+++ b/core/l10n/fi_FI.php
@@ -3,7 +3,9 @@
"User %s shared a folder with you" => "Käyttäjä %s jakoi kansion kanssasi",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa täältä: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s",
+"Category type not provided." => "Luokan tyyppiä ei määritelty.",
"No category to add?" => "Ei lisättävää luokkaa?",
+"This category already exists: %s" => "Luokka on jo olemassa: %s",
"Error adding %s to favorites." => "Virhe lisätessä kohdetta %s suosikkeihin.",
"No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.",
"Error removing %s from favorites." => "Virhe poistaessa kohdetta %s suosikeista.",
@@ -48,6 +50,7 @@
"Error" => "Virhe",
"The app name is not specified." => "Sovelluksen nimeä ei ole määritelty.",
"The required file {file} is not installed!" => "Vaadittua tiedostoa {file} ei ole asennettu!",
+"Shared" => "Jaettu",
"Share" => "Jaa",
"Error while sharing" => "Virhe jaettaessa",
"Error while unsharing" => "Virhe jakoa peruttaessa",
@@ -100,6 +103,8 @@
"Edit categories" => "Muokkaa luokkia",
"Add" => "Lisää",
"Security Warning" => "Turvallisuusvaroitus",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Päivitä PHP-asennuksesi käyttääksesi ownCloudia turvallisesti.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi.",
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Katso palvelimen asetuksien määrittämiseen liittyvät ohjeet <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentaatiosta</a>.",
"Create an <strong>admin account</strong>" => "Luo <strong>ylläpitäjän tunnus</strong>",
@@ -121,6 +126,7 @@
"Lost your password?" => "Unohditko salasanasi?",
"remember" => "muista",
"Log in" => "Kirjaudu sisään",
+"Alternative Logins" => "Vaihtoehtoiset kirjautumiset",
"prev" => "edellinen",
"next" => "seuraava",
"Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken."
diff --git a/core/l10n/fr.php b/core/l10n/fr.php
index f6ad077d268..84c4c0abdf4 100644
--- a/core/l10n/fr.php
+++ b/core/l10n/fr.php
@@ -107,6 +107,8 @@
"Edit categories" => "Modifier les catégories",
"Add" => "Ajouter",
"Security Warning" => "Avertissement de sécurité",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Veuillez mettre à jour votre installation PHP pour utiliser ownCloud de façon sécurisée.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun générateur de nombre aléatoire sécurisé n'est disponible, veuillez activer l'extension PHP OpenSSL",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans générateur de nombre aléatoire sécurisé, un attaquant peut être en mesure de prédire les jetons de réinitialisation du mot de passe, et ainsi prendre le contrôle de votre compte utilisateur.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner",
diff --git a/core/l10n/gl.php b/core/l10n/gl.php
index 194c28e7cfb..4e8eb6e4fbd 100644
--- a/core/l10n/gl.php
+++ b/core/l10n/gl.php
@@ -107,6 +107,8 @@
"Edit categories" => "Editar categorías",
"Add" => "Engadir",
"Security Warning" => "Aviso de seguranza",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Actualice a instalación de PHP para empregar ownCloud de xeito seguro.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de números ao chou dispoñíbel. Active o engadido de OpenSSL para PHP.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de números ao chou podería acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa súa conta.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "O seu directorio de datos e os ficheiros probabelmente sexan accesíbeis desde a Internet xa que o ficheiro .htaccess non está a traballar.",
diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php
index e8fcdeeca11..0f110bfc4c7 100644
--- a/core/l10n/hu_HU.php
+++ b/core/l10n/hu_HU.php
@@ -107,6 +107,8 @@
"Edit categories" => "Kategóriák szerkesztése",
"Add" => "Hozzáadás",
"Security Warning" => "Biztonsági figyelmeztetés",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az ownCloud szolgáltatása.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem érhető el megfelelő véletlenszám-generátor, telepíteni kellene a PHP OpenSSL kiegészítését.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Megfelelő véletlenszám-generátor hiányában egy támadó szándékú idegen képes lehet megjósolni a jelszóvisszaállító tokent, és Ön helyett belépni.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Az adatkönyvtár és a benne levő állományok valószínűleg közvetlenül is elérhetők az internetről, mert a .htaccess állomány nem érvényesül.",
diff --git a/core/l10n/it.php b/core/l10n/it.php
index e8bd848bfee..2d9b46ddfc1 100644
--- a/core/l10n/it.php
+++ b/core/l10n/it.php
@@ -107,6 +107,8 @@
"Edit categories" => "Modifica le categorie",
"Add" => "Aggiungi",
"Security Warning" => "Avviso di sicurezza",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Aggiorna la tua installazione di PHP per utilizzare ownCloud in modo sicuro.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non è disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "La cartella dei dati e i file sono probabilmente accessibili da Internet poiché il file .htaccess non funziona.",
diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php
index 2a69275e334..617a8bf4f49 100644
--- a/core/l10n/ja_JP.php
+++ b/core/l10n/ja_JP.php
@@ -107,6 +107,8 @@
"Edit categories" => "カテゴリを編集",
"Add" => "追加",
"Security Warning" => "セキュリティ警告",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。",
+"Please update your PHP installation to use ownCloud securely." => "ownCloud を安全に利用するに、PHPの更新を行なってください。",
"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 ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。",
diff --git a/core/l10n/nl.php b/core/l10n/nl.php
index 6daa9227904..d7379849f14 100644
--- a/core/l10n/nl.php
+++ b/core/l10n/nl.php
@@ -107,6 +107,8 @@
"Edit categories" => "Wijzigen categorieën",
"Add" => "Toevoegen",
"Security Warning" => "Beveiligingswaarschuwing",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uw PHP versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Werk uw PHP installatie bij om ownCloud veilig te kunnen gebruiken.",
"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.",
diff --git a/core/l10n/pl.php b/core/l10n/pl.php
index 4914ec66918..79b7301a039 100644
--- a/core/l10n/pl.php
+++ b/core/l10n/pl.php
@@ -107,6 +107,8 @@
"Edit categories" => "Edytuj kategorie",
"Add" => "Dodaj",
"Security Warning" => "Ostrzeżenie o zabezpieczeniach",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Proszę uaktualnij swoją instalacje PHP, aby używać ownCloud bezpiecznie.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Bezpieczny generator liczb losowych jest niedostępny. Włącz rozszerzenie OpenSSL w PHP.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpiecznego generatora liczb losowych, osoba atakująca może przewidzieć token resetujący hasło i przejąć kontrolę nad twoim kontem.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.",
diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php
index 28d6506bd33..41506bd9ec4 100644
--- a/core/l10n/pt_PT.php
+++ b/core/l10n/pt_PT.php
@@ -107,6 +107,8 @@
"Edit categories" => "Editar categorias",
"Add" => "Adicionar",
"Security Warning" => "Aviso de Segurança",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Por favor atualize a sua versão PHP instalada para usar o ownCloud com segurança.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Não existe nenhum gerador seguro de números aleatórios, por favor, active a extensão OpenSSL no PHP.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem nenhum gerador seguro de números aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranças adicionais e tomar conta da sua conta. ",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "A pasta de dados do ownCloud e os respectivos ficheiros, estarão provavelmente acessíveis a partir da internet, pois o ficheiros .htaccess não funciona.",
diff --git a/core/l10n/ru.php b/core/l10n/ru.php
index 2ca4eeb4777..2f90c5c5df3 100644
--- a/core/l10n/ru.php
+++ b/core/l10n/ru.php
@@ -107,6 +107,8 @@
"Edit categories" => "Редактировать категории",
"Add" => "Добавить",
"Security Warning" => "Предупреждение безопасности",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Пожалуйста обновите Ваш PHP чтобы использовать ownCloud безопасно.",
"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 не работает.",
diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php
index 7e32dac57e4..9b0bd45fce3 100644
--- a/core/l10n/sk_SK.php
+++ b/core/l10n/sk_SK.php
@@ -107,6 +107,8 @@
"Edit categories" => "Úprava kategórií",
"Add" => "Pridať",
"Security Warning" => "Bezpečnostné varovanie",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Aktualizujte prosím Vašu inštanciu PHP pre bezpečné používanie ownCloud.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nie je dostupný žiadny bezpečný generátor náhodných čísel, prosím, povoľte rozšírenie OpenSSL v PHP.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečného generátora náhodných čísel môže útočník predpovedať token pre obnovu hesla a prevziať kontrolu nad vaším kontom.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje.",
diff --git a/core/l10n/sl.php b/core/l10n/sl.php
index 502a37cb31e..df86a608bbd 100644
--- a/core/l10n/sl.php
+++ b/core/l10n/sl.php
@@ -107,6 +107,8 @@
"Edit categories" => "Uredi kategorije",
"Add" => "Dodaj",
"Security Warning" => "Varnostno opozorilo",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Priporočeno je posodobiti namestitev PHP in varno uporabljati oblak ownCloud",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.",
diff --git a/core/l10n/sv.php b/core/l10n/sv.php
index 590f2f3c846..ff2e8d8d680 100644
--- a/core/l10n/sv.php
+++ b/core/l10n/sv.php
@@ -107,6 +107,8 @@
"Edit categories" => "Redigera kategorier",
"Add" => "Lägg till",
"Security Warning" => "Säkerhetsvarning",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Uppdatera din PHP-installation för att använda ownCloud säkert.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar.",
diff --git a/core/l10n/te.php b/core/l10n/te.php
new file mode 100644
index 00000000000..a18af79ab17
--- /dev/null
+++ b/core/l10n/te.php
@@ -0,0 +1,52 @@
+<?php $TRANSLATIONS = array(
+"This category already exists: %s" => "ఈ వర్గం ఇప్పటికే ఉంది: %s",
+"Sunday" => "ఆదివారం",
+"Monday" => "సోమవారం",
+"Tuesday" => "మంగళవారం",
+"Wednesday" => "బుధవారం",
+"Thursday" => "గురువారం",
+"Friday" => "శుక్రవారం",
+"Saturday" => "శనివారం",
+"January" => "జనవరి",
+"February" => "ఫిబ్రవరి",
+"March" => "మార్చి",
+"April" => "ఏప్రిల్",
+"May" => "మే",
+"June" => "జూన్",
+"July" => "జూలై",
+"August" => "ఆగస్ట్",
+"September" => "సెప్టెంబర్",
+"October" => "అక్టోబర్",
+"November" => "నవంబర్",
+"December" => "డిసెంబర్",
+"Settings" => "అమరికలు",
+"seconds ago" => "క్షణాల క్రితం",
+"1 minute ago" => "1 నిమిషం క్రితం",
+"{minutes} minutes ago" => "{minutes} నిమిషాల క్రితం",
+"1 hour ago" => "1 గంట క్రితం",
+"{hours} hours ago" => "{hours} గంటల క్రితం",
+"today" => "ఈరోజు",
+"yesterday" => "నిన్న",
+"{days} days ago" => "{days} రోజుల క్రితం",
+"last month" => "పోయిన నెల",
+"{months} months ago" => "{months} నెలల క్రితం",
+"months ago" => "నెలల క్రితం",
+"last year" => "పోయిన సంవత్సరం",
+"years ago" => "సంవత్సరాల క్రితం",
+"Cancel" => "రద్దుచేయి",
+"No" => "కాదు",
+"Yes" => "అవును",
+"Ok" => "సరే",
+"Error" => "పొరపాటు",
+"Password" => "సంకేతపదం",
+"Send" => "పంపించు",
+"Expiration date" => "కాలం చెల్లు తేదీ",
+"delete" => "తొలగించు",
+"Username" => "వాడుకరి పేరు",
+"New password" => "కొత్త సంకేతపదం",
+"Users" => "వాడుకరులు",
+"Help" => "సహాయం",
+"Add" => "చేర్చు",
+"Log out" => "నిష్క్రమించు",
+"Lost your password?" => "మీ సంకేతపదం పోయిందా?"
+);
diff --git a/core/l10n/tr.php b/core/l10n/tr.php
index 9d9ff0e7eba..342a010da0a 100644
--- a/core/l10n/tr.php
+++ b/core/l10n/tr.php
@@ -107,6 +107,8 @@
"Edit categories" => "Kategorileri düzenle",
"Add" => "Ekle",
"Security Warning" => "Güvenlik Uyarisi",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "ownCloud'u güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir.",
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık.",
diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php
index 631baf7cef9..68f8280f799 100644
--- a/core/l10n/zh_CN.php
+++ b/core/l10n/zh_CN.php
@@ -128,7 +128,6 @@
"If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!",
"Please change your password to secure your account again." => "请修改您的密码,以保护您的账户安全。",
"Lost your password?" => "忘记密码?",
-"remember" => "记住",
"Log in" => "登录",
"Alternative Logins" => "其他登录方式",
"prev" => "上一页",
diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php
index 765aeb34eac..a6c4251d1fa 100644
--- a/core/l10n/zh_TW.php
+++ b/core/l10n/zh_TW.php
@@ -107,6 +107,8 @@
"Edit categories" => "編輯分類",
"Add" => "增加",
"Security Warning" => "安全性警告",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的PHP版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "請更新您的PHP安裝以更安全地使用ownCloud。",
"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." => "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。",