summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/ajax/share.php23
-rw-r--r--core/ajax/update.php9
-rw-r--r--core/css/multiselect.css165
-rw-r--r--core/css/styles.css43
-rw-r--r--core/img/logo-mail.gifbin0 -> 2196 bytes
-rw-r--r--core/js/config.php2
-rw-r--r--core/js/js.js5
-rw-r--r--core/js/multiselect.js4
-rw-r--r--core/l10n/af_ZA.php2
-rw-r--r--core/l10n/ar.php6
-rw-r--r--core/l10n/bg_BG.php2
-rw-r--r--core/l10n/bn_BD.php6
-rw-r--r--core/l10n/bs.php4
-rw-r--r--core/l10n/ca.php11
-rw-r--r--core/l10n/cs_CZ.php11
-rw-r--r--core/l10n/cy_GB.php6
-rw-r--r--core/l10n/da.php10
-rw-r--r--core/l10n/de.php7
-rw-r--r--core/l10n/de_DE.php11
-rw-r--r--core/l10n/el.php12
-rw-r--r--core/l10n/en@pirate.php1
-rw-r--r--core/l10n/eo.php23
-rw-r--r--core/l10n/es.php39
-rw-r--r--core/l10n/es_AR.php15
-rw-r--r--core/l10n/et_EE.php6
-rw-r--r--core/l10n/eu.php6
-rw-r--r--core/l10n/fa.php6
-rw-r--r--core/l10n/fi_FI.php10
-rw-r--r--core/l10n/fr.php12
-rw-r--r--core/l10n/gl.php11
-rw-r--r--core/l10n/he.php11
-rw-r--r--core/l10n/hi.php14
-rw-r--r--core/l10n/hr.php2
-rw-r--r--core/l10n/hu_HU.php10
-rw-r--r--core/l10n/ia.php2
-rw-r--r--core/l10n/id.php6
-rw-r--r--core/l10n/is.php9
-rw-r--r--core/l10n/it.php11
-rw-r--r--core/l10n/ja_JP.php11
-rw-r--r--core/l10n/ka_GE.php6
-rw-r--r--core/l10n/ko.php6
-rw-r--r--core/l10n/ku_IQ.php2
-rw-r--r--core/l10n/lb.php2
-rw-r--r--core/l10n/lt_LT.php35
-rw-r--r--core/l10n/lv.php6
-rw-r--r--core/l10n/mk.php6
-rw-r--r--core/l10n/ms_MY.php2
-rw-r--r--core/l10n/my_MM.php2
-rw-r--r--core/l10n/nb_NO.php2
-rw-r--r--core/l10n/nl.php65
-rw-r--r--core/l10n/nn_NO.php6
-rw-r--r--core/l10n/oc.php2
-rw-r--r--core/l10n/pl.php8
-rw-r--r--core/l10n/pt_BR.php11
-rw-r--r--core/l10n/pt_PT.php6
-rw-r--r--core/l10n/ro.php15
-rw-r--r--core/l10n/ru.php10
-rw-r--r--core/l10n/si_LK.php2
-rw-r--r--core/l10n/sk_SK.php11
-rw-r--r--core/l10n/sl.php6
-rw-r--r--core/l10n/sq.php6
-rw-r--r--core/l10n/sr.php4
-rw-r--r--core/l10n/sv.php16
-rw-r--r--core/l10n/ta_LK.php2
-rw-r--r--core/l10n/th_TH.php6
-rw-r--r--core/l10n/tr.php7
-rw-r--r--core/l10n/uk.php6
-rw-r--r--core/l10n/ur_PK.php2
-rw-r--r--core/l10n/vi.php6
-rw-r--r--core/l10n/zh_CN.GB2312.php10
-rw-r--r--core/l10n/zh_CN.php6
-rw-r--r--core/l10n/zh_TW.php7
-rw-r--r--core/lostpassword/controller.php16
-rw-r--r--core/lostpassword/templates/lostpassword.php6
-rw-r--r--core/templates/altmail.php9
-rw-r--r--core/templates/layout.base.php4
-rw-r--r--core/templates/layout.guest.php16
-rw-r--r--core/templates/layout.user.php11
-rw-r--r--core/templates/mail.php33
79 files changed, 529 insertions, 399 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php
index 5854b65aa03..bdcb61284ec 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -94,23 +94,28 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
$l = OC_L10N::get('core');
// setup the email
- $subject = (string)$l->t('User %s shared a file with you', $displayName);
- if ($type === 'folder')
- $subject = (string)$l->t('User %s shared a folder with you', $displayName);
+ $subject = (string)$l->t('%s shared »%s« with you', array($displayName, $file));
- $text = (string)$l->t('User %s shared the file "%s" with you. It is available for download here: %s',
- array($displayName, $file, $link));
- if ($type === 'folder')
- $text = (string)$l->t('User %s shared the folder "%s" with you. It is available for download here: %s',
- array($displayName, $file, $link));
+ $content = new OC_Template("core", "mail", "");
+ $content->assign ('link', $link);
+ $content->assign ('type', $type);
+ $content->assign ('user_displayname', $displayName);
+ $content->assign ('filename', $file);
+ $text = $content->fetchPage();
+ $content = new OC_Template("core", "altmail", "");
+ $content->assign ('link', $link);
+ $content->assign ('type', $type);
+ $content->assign ('user_displayname', $displayName);
+ $content->assign ('filename', $file);
+ $alttext = $content->fetchPage();
$default_from = OCP\Util::getDefaultEmailAddress('sharing-noreply');
$from_address = OCP\Config::getUserValue($user, 'settings', 'email', $default_from );
// send it out now
try {
- OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $displayName);
+ OCP\Util::sendMail($to_address, $to_address, $subject, $text, $from_address, $displayName, 1, $alttext);
OCP\JSON::success();
} catch (Exception $exception) {
OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($exception->getMessage()))));
diff --git a/core/ajax/update.php b/core/ajax/update.php
index 6015a901eb7..db00da02239 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -5,11 +5,15 @@ require_once '../../lib/base.php';
if (OC::checkUpgrade(false)) {
\OC_DB::enableCaching(false);
+ OC_Config::setValue('maintenance', true);
+ $installedVersion = OC_Config::getValue('version', '0.0.0');
+ $currentVersion = implode('.', OC_Util::getVersion());
+ OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::WARN);
$updateEventSource = new OC_EventSource();
$watcher = new UpdateWatcher($updateEventSource);
OC_Hook::connect('update', 'success', $watcher, 'success');
OC_Hook::connect('update', 'error', $watcher, 'error');
- OC_Hook::connect('update', 'error', $watcher, 'failure');
+ OC_Hook::connect('update', 'failure', $watcher, 'failure');
$watcher->success('Turned on maintenance mode');
try {
$result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml');
@@ -99,6 +103,7 @@ class UpdateWatcher {
OC_Util::obEnd();
$this->eventSource->send('failure', $message);
$this->eventSource->close();
+ OC_Config::setValue('maintenance', false);
die();
}
@@ -108,4 +113,4 @@ class UpdateWatcher {
$this->eventSource->close();
}
-}
+} \ No newline at end of file
diff --git a/core/css/multiselect.css b/core/css/multiselect.css
index def4e60d74d..a2d1b20d3a5 100644
--- a/core/css/multiselect.css
+++ b/core/css/multiselect.css
@@ -1,84 +1,105 @@
-/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
- This file is licensed under the Affero General Public License version 3 or later.
- See the COPYING-README file. */
+/* Copyright (c) 2011, Jan-Christoph Borchardt, http: //jancborchardt.net
+This file is licensed under the Affero General Public License version 3 or later.
+See the COPYING-README file. */
- ul.multiselectoptions {
- background-color:#fff;
- border:1px solid #ddd;
- border-top:none;
- box-shadow:0 1px 1px #ddd;
- padding-top:.5em;
- position:absolute;
- max-height: 20em;
- overflow-y: auto;
- z-index:49;
- }
+ul.multiselectoptions {
+ background-color: #fff;
+ border: 1px solid #ddd;
+ border-top: none;
+ box-shadow: 0 1px 1px #ddd;
+ padding-top: .5em;
+ position: absolute;
+ max-height: 20em;
+ overflow-y: auto;
+ z-index: 49;
+}
- ul.multiselectoptions.down {
- border-bottom-left-radius:.5em;
- border-bottom-right-radius:.5em;
- }
+ul.multiselectoptions.down {
+ border-bottom-left-radius: .5em;
+ border-bottom-right-radius: .5em;
+ width: 100%; /* do not cut off group names */
+ -webkit-box-shadow: 0px 0px 20px rgba(29,45,68,.4);
+ -moz-box-shadow: 0px 0px 20px rgba(29,45,68,.4);
+ box-shadow: 0px 0px 20px rgba(29,45,68,.4);
+}
- ul.multiselectoptions.up {
- border-top-left-radius:.5em;
- border-top-right-radius:.5em;
- }
+ul.multiselectoptions.up {
+ border-top-left-radius: .5em;
+ border-top-right-radius: .5em;
+}
- ul.multiselectoptions>li {
- overflow:hidden;
- white-space:nowrap;
- }
+ul.multiselectoptions>li {
+ overflow: hidden;
+ white-space: nowrap;
+}
- ul.multiselectoptions>li>input[type="checkbox"] {
- margin-top: 3px;
- margin-right: 5px;
- margin-left: 3px;
- }
+ul.multiselectoptions > li > input[type="checkbox"] {
+ margin: 10px 7px;
+ vertical-align: middle;
+}
+ul.multiselectoptions > li input[type='checkbox']+label {
+ font-weight: normal;
+ display: inline-block;
+ width: 100%;
+ padding: 5px 27px;
+ margin-left: -27px; /* to have area around checkbox clickable as well */
+}
+ul.multiselectoptions > li input[type='checkbox']:checked+label {
+ font-weight: bold;
+}
- div.multiselect {
- display:inline-block;
- max-width:400px;
- min-width:100px;
- padding-right:.6em;
- position:relative;
- vertical-align:bottom;
- }
+div.multiselect {
+ display: inline-block;
+ max-width: 400px;
+ min-width: 150px;
+ padding-right: .6em;
+ position: relative;
+ vertical-align: bottom;
+}
- div.multiselect.active {
- background-color:#fff;
- position:relative;
- z-index:50;
- }
+div.multiselect.active {
+ background-color: #fff;
+ position: relative;
+ z-index: 50;
+}
- div.multiselect.up {
- border-top:0 none;
- border-top-left-radius:0;
- border-top-right-radius:0;
- }
+div.multiselect.up {
+ border-top: 0 none;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
- div.multiselect.down {
- border-bottom:none;
- border-bottom-left-radius:0;
- border-bottom-right-radius:0;
- }
+div.multiselect.down {
+ border-bottom: none;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+}
- div.multiselect>span:first-child {
- float:left;
- margin-right:2em;
- overflow:hidden;
- text-overflow:ellipsis;
- width:90%;
- }
+div.multiselect>span:first-child {
+ float: left;
+ margin-right: 2em;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ width: 90%;
+}
- div.multiselect>span:last-child {
- position:absolute;
- right:.8em;
- }
+div.multiselect>span:last-child {
+ position: absolute;
+ right: .8em;
+}
- ul.multiselectoptions input.new {
- border-top-left-radius:0;
- border-top-right-radius:0;
- padding-bottom:.2em;
- padding-top:.2em;
- margin:0;
- }
+ul.multiselectoptions input.new {
+ padding-bottom: .2em;
+ padding-top: .2em;
+ margin: 0;
+}
+
+ul.multiselectoptions > li.creator {
+ padding: 10px;
+ font-weight: bold;
+}
+ul.multiselectoptions > li.creator > input {
+ width: 95% !important; /* do not constrain size of text input */
+ padding: 5px;
+ margin: -5px;
+}
diff --git a/core/css/styles.css b/core/css/styles.css
index 78671a7bc11..40a17a42876 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -37,7 +37,7 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC
/* INPUTS */
-input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"],
+input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"],
textarea, select,
button, .button,
#quota, div.jp-progress, .pager li a {
@@ -48,11 +48,11 @@ button, .button,
-moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;
}
input[type="hidden"] { height:0; width:0; }
-input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea {
+input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"], textarea {
background:#f8f8f8; color:#555; cursor:text;
font-family: inherit; /* use default ownCloud font instead of default textarea monospace */
}
-input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] {
+input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"] {
-webkit-appearance:textfield; -moz-appearance:textfield;
-webkit-box-sizing:content-box; -moz-box-sizing:content-box; box-sizing:content-box;
}
@@ -61,6 +61,7 @@ input[type="password"]:hover, input[type="password"]:focus, input[type="password
input[type="number"]:hover, input[type="number"]:focus, input[type="number"]:active,
.searchbox input[type="search"]:hover, .searchbox input[type="search"]:focus, .searchbox input[type="search"]:active,
input[type="email"]:hover, input[type="email"]:focus, input[type="email"]:active,
+input[type="url"]:hover, input[type="url"]:focus, input[type="url"]:active,
textarea:hover, textarea:focus, textarea:active {
background-color:#fff; color:#333;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1;
@@ -140,7 +141,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
padding:0 70px 0 0.5em; margin:0;
-moz-box-sizing:border-box; box-sizing:border-box;
-moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000;
- background:#f7f7f7; border-bottom:1px solid #eee; z-index:50;
+ background:#eee; border-bottom:1px solid #e7e7e7; z-index:50;
}
#controls .button { display:inline-block; }
@@ -354,14 +355,27 @@ tr .action { width:16px; height:16px; }
tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; }
tbody tr:hover, tr:active { background-color:#f8f8f8; }
-#body-settings .personalblock, #body-settings .helpblock { padding:.5em 1em; margin:1em; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; }
+#body-settings .personalblock, #body-settings .helpblock {
+ padding: .5em 1em;
+ margin: 1em;
+ background-color: rgb(240,240,240);
+ color: #555;
+ text-shadow: #fff 0 1px 0;
+ -moz-border-radius: .5em; -webkit-border-radius: .5em; border-radius: .5em;
+}
#body-settings .personalblock#quota { position:relative; padding:0; }
#body-settings #controls+.helpblock { position:relative; margin-top:3em; }
.personalblock > legend { margin-top:2em; }
.personalblock > legend, th, dt, label { font-weight:bold; }
code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; }
-#quota div, div.jp-play-bar, div.jp-seek-bar { padding:0; background:#e6e6e6; font-weight:normal; white-space:nowrap; -moz-border-radius-bottomleft:.4em; -webkit-border-bottom-left-radius:.4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft:.4em; -webkit-border-top-left-radius:.4em; border-top-left-radius:.4em; }
+#quota div, div.jp-play-bar, div.jp-seek-bar {
+ padding: 0;
+ background-color: rgb(220,220,220);
+ font-weight: normal;
+ white-space: nowrap;
+ -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; border-bottom-left-radius:.4em;
+ -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; border-top-left-radius: .4em; }
#quotatext {padding:.6em 1em;}
div.jp-play-bar, div.jp-seek-bar { padding:0; }
@@ -426,12 +440,22 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;}
.help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; }
.help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;}
+
/* ---- BREADCRUMB ---- */
div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; -moz-box-sizing:border-box; box-sizing:border-box; }
div.crumb:first-child { padding:10px 20px 10px 5px; }
div.crumb.last { font-weight:bold; background:none; padding-right:10px; }
div.crumb a{ padding: 0.9em 0 0.7em 0; }
+/* some feedback for hover/tap on breadcrumbs */
+div.crumb:hover,
+div.crumb:focus,
+div.crumb:active {
+ -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
+ filter:alpha(opacity=70);
+ opacity:.7;
+}
+
/* ---- APP STYLING ---- */
@@ -640,3 +664,10 @@ button.loading {
background-position: right 10px center; background-repeat: no-repeat;
padding-right: 30px;
}
+
+
+
+/* ---- BROWSER-SPECIFIC FIXES ---- */
+::-moz-focus-inner {
+ border: 0; /* remove dotted outlines in Firefox */
+}
diff --git a/core/img/logo-mail.gif b/core/img/logo-mail.gif
new file mode 100644
index 00000000000..6a1caaa9188
--- /dev/null
+++ b/core/img/logo-mail.gif
Binary files differ
diff --git a/core/js/config.php b/core/js/config.php
index 53a8fb96388..dd46f7889d1 100644
--- a/core/js/config.php
+++ b/core/js/config.php
@@ -26,8 +26,6 @@ $array = array(
"oc_debug" => (defined('DEBUG') && DEBUG) ? 'true' : 'false',
"oc_webroot" => "\"".OC::$WEBROOT."\"",
"oc_appswebroots" => str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution
- "oc_current_user" => "document.getElementsByTagName('head')[0].getAttribute('data-user')",
- "oc_requesttoken" => "document.getElementsByTagName('head')[0].getAttribute('data-requesttoken')",
"datepickerFormatDate" => json_encode($l->l('jsdate', 'jsdate')),
"dayNames" => json_encode(
array(
diff --git a/core/js/js.js b/core/js/js.js
index 3cb4d3dd151..08b429a555b 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -7,7 +7,10 @@
*/
var oc_debug;
var oc_webroot;
-var oc_requesttoken;
+
+var oc_current_user = document.getElementsByTagName('head')[0].getAttribute('data-user');
+var oc_requesttoken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken');
+
if (typeof oc_webroot === "undefined") {
oc_webroot = location.pathname.substr(0, location.pathname.lastIndexOf('/'));
}
diff --git a/core/js/multiselect.js b/core/js/multiselect.js
index 463c397d8cd..48d521e1856 100644
--- a/core/js/multiselect.js
+++ b/core/js/multiselect.js
@@ -176,10 +176,10 @@
});
button.parent().data('preventHide',false);
if(settings.createText){
- var li=$('<li class="creator">+ <em>'+settings.createText+'<em></li>');
+ var li=$('<li class="creator">+ '+settings.createText+'</li>');
li.click(function(event){
li.empty();
- var input=$('<input class="new">');
+ var input=$('<input type="text" class="new">');
li.append(input);
input.focus();
input.css('width',button.innerWidth());
diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php
index f5f27d2af58..4878c75edde 100644
--- a/core/l10n/af_ZA.php
+++ b/core/l10n/af_ZA.php
@@ -15,6 +15,7 @@
"Admin" => "Admin",
"Help" => "Hulp",
"Cloud not found" => "Wolk nie gevind",
+"web services under your control" => "webdienste onder jou beheer",
"Create an <strong>admin account</strong>" => "Skep `n <strong>admin-rekening</strong>",
"Advanced" => "Gevorderd",
"Configure the database" => "Stel databasis op",
@@ -23,7 +24,6 @@
"Database password" => "Databasis-wagwoord",
"Database name" => "Databasis naam",
"Finish setup" => "Maak opstelling klaar",
-"web services under your control" => "webdienste onder jou beheer",
"Log out" => "Teken uit",
"Lost your password?" => "Jou wagwoord verloor?",
"remember" => "onthou",
diff --git a/core/l10n/ar.php b/core/l10n/ar.php
index 8bd4429338a..7ac7a564c35 100644
--- a/core/l10n/ar.php
+++ b/core/l10n/ar.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "المستخدم %s قام بمشاركة ملف معك",
-"User %s shared a folder with you" => "المستخدم %s قام بمشاركة مجلد معك",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "المستخدم %s قام بمشاركة الملف \"%s\" معك . الملف متاح للتحميل من هنا : %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "المستخدم %s قام بمشاركة المجلد \"%s\" معك . المجلد متاح للتحميل من هنا : %s",
"Category type not provided." => "نوع التصنيف لم يدخل",
"No category to add?" => "ألا توجد فئة للإضافة؟",
"This category already exists: %s" => "هذا التصنيف موجود مسبقا : %s",
@@ -102,6 +98,7 @@
"Help" => "المساعدة",
"Access forbidden" => "التوصّل محظور",
"Cloud not found" => "لم يتم إيجاد",
+"web services under your control" => "خدمات الشبكة تحت سيطرتك",
"Edit categories" => "عدل الفئات",
"Add" => "اضف",
"Security Warning" => "تحذير أمان",
@@ -122,7 +119,6 @@
"Database tablespace" => "مساحة جدول قاعدة البيانات",
"Database host" => "خادم قاعدة البيانات",
"Finish setup" => "انهاء التعديلات",
-"web services under your control" => "خدمات الشبكة تحت سيطرتك",
"Log out" => "الخروج",
"Automatic logon rejected!" => "تم رفض تسجيل الدخول التلقائي!",
"If you did not change your password recently, your account may be compromised!" => "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً",
diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php
index 6c04907e15b..490bea9b170 100644
--- a/core/l10n/bg_BG.php
+++ b/core/l10n/bg_BG.php
@@ -50,6 +50,7 @@
"Help" => "Помощ",
"Access forbidden" => "Достъпът е забранен",
"Cloud not found" => "облакът не намерен",
+"web services under your control" => "уеб услуги под Ваш контрол",
"Edit categories" => "Редактиране на категориите",
"Add" => "Добавяне",
"Create an <strong>admin account</strong>" => "Създаване на <strong>админ профил</strong>",
@@ -62,7 +63,6 @@
"Database name" => "Име на базата",
"Database host" => "Хост за базата",
"Finish setup" => "Завършване на настройките",
-"web services under your control" => "уеб услуги под Ваш контрол",
"Log out" => "Изход",
"Lost your password?" => "Забравена парола?",
"remember" => "запомни",
diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php
index 218bbce04aa..c775d2fb6af 100644
--- a/core/l10n/bn_BD.php
+++ b/core/l10n/bn_BD.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফাইল ভাগাভাগি করেছেন",
-"User %s shared a folder with you" => "%s নামের ব্যবহারকারি আপনার সাথে একটা ফোল্ডার ভাগাভাগি করেছেন",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফাইলটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের ব্যবহারকারী \"%s\" ফোল্ডারটি আপনার সাথে ভাগাভাগি করেছেন। এটি এখন এখানে ডাউনলোড করার জন্য সুলভঃ %s",
"Category type not provided." => "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।",
"No category to add?" => "যোগ করার মত কোন ক্যাটেগরি নেই ?",
"Object type not provided." => "অবজেক্টের ধরণটি প্রদান করা হয় নি।",
@@ -99,6 +95,7 @@
"Help" => "সহায়িকা",
"Access forbidden" => "অধিগমনের অনুমতি নেই",
"Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না",
+"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়",
"Edit categories" => "ক্যাটেগরি সম্পাদনা",
"Add" => "যোগ কর",
"Security Warning" => "নিরাপত্তাজনিত সতর্কতা",
@@ -113,7 +110,6 @@
"Database tablespace" => "ডাটাবেজ টেবলস্পেস",
"Database host" => "ডাটাবেজ হোস্ট",
"Finish setup" => "সেটআপ সুসম্পন্ন কর",
-"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়",
"Log out" => "প্রস্থান",
"Lost your password?" => "কূটশব্দ হারিয়েছেন?",
"remember" => "মনে রাখ",
diff --git a/core/l10n/bs.php b/core/l10n/bs.php
new file mode 100644
index 00000000000..6b65cf81f28
--- /dev/null
+++ b/core/l10n/bs.php
@@ -0,0 +1,4 @@
+<?php $TRANSLATIONS = array(
+"Share" => "Podijeli",
+"Add" => "Dodaj"
+);
diff --git a/core/l10n/ca.php b/core/l10n/ca.php
index dad970d4179..e66571fc75f 100644
--- a/core/l10n/ca.php
+++ b/core/l10n/ca.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "L'usuari %s ha compartit un fitxer amb vós",
-"User %s shared a folder with you" => "L'usuari %s ha compartit una carpeta amb vós",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit el fitxer \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. Està disponible per a la descàrrega a: %s",
+"%s shared »%s« with you" => "%s ha compartit »%s« amb tu",
"Category type not provided." => "No s'ha especificat el tipus de categoria.",
"No category to add?" => "No voleu afegir cap categoria?",
"This category already exists: %s" => "Aquesta categoria ja existeix: %s",
@@ -93,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "La petició ha fallat!<br>Esteu segur que el correu/nom d'usuari és correcte?",
"You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.",
"Username" => "Nom d'usuari",
+"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?" => "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. Si sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?",
+"Yes, I really want to reset my password now" => "Sí, vull restablir ara la contrasenya",
"Request reset" => "Sol·licita reinicialització",
"Your password was reset" => "La vostra contrasenya s'ha reinicialitzat",
"To login page" => "A la pàgina d'inici de sessió",
@@ -105,6 +104,8 @@
"Help" => "Ajuda",
"Access forbidden" => "Accés prohibit",
"Cloud not found" => "No s'ha trobat el núvol",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!",
+"web services under your control" => "controleu els vostres serveis web",
"Edit categories" => "Edita les categories",
"Add" => "Afegeix",
"Security Warning" => "Avís de seguretat",
@@ -125,7 +126,6 @@
"Database tablespace" => "Espai de taula de la base de dades",
"Database host" => "Ordinador central de la base de dades",
"Finish setup" => "Acaba la configuració",
-"web services under your control" => "controleu els vostres serveis web",
"%s is available. Get more information on how to update." => "%s està disponible. Obtingueu més informació de com actualitzar.",
"Log out" => "Surt",
"Automatic logon rejected!" => "L'ha rebutjat l'acceditació automàtica!",
@@ -135,6 +135,7 @@
"remember" => "recorda'm",
"Log in" => "Inici de sessió",
"Alternative Logins" => "Acreditacions alternatives",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ei,<br><br>només fer-te saber que %s ha compartit %s amb tu.<br><a href=\"%s\">Mira-ho:</a><br><br>Salut!",
"prev" => "anterior",
"next" => "següent",
"Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona."
diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php
index 06cf7c214be..9eca3af1052 100644
--- a/core/l10n/cs_CZ.php
+++ b/core/l10n/cs_CZ.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Uživatel %s s vámi sdílí soubor",
-"User %s shared a folder with you" => "Uživatel %s s vámi sdílí složku",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí soubor \"%s\". Můžete jej stáhnout zde: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vámi sdílí složku \"%s\". Můžete ji stáhnout zde: %s",
+"%s shared »%s« with you" => "%s s vámi sdílí »%s«",
"Category type not provided." => "Nezadán typ kategorie.",
"No category to add?" => "Žádná kategorie k přidání?",
"This category already exists: %s" => "Kategorie již existuje: %s",
@@ -46,6 +43,7 @@
"years ago" => "před lety",
"Choose" => "Vybrat",
"Cancel" => "Zrušit",
+"Error loading file picker template" => "Chyba při načítání šablony výběru souborů",
"Yes" => "Ano",
"No" => "Ne",
"Ok" => "Ok",
@@ -92,6 +90,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Požadavek selhal.<br>Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?",
"You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.",
"Username" => "Uživatelské jméno",
+"Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit své heslo",
"Request reset" => "Vyžádat obnovu",
"Your password was reset" => "Vaše heslo bylo obnoveno",
"To login page" => "Na stránku přihlášení",
@@ -104,6 +103,8 @@
"Help" => "Nápověda",
"Access forbidden" => "Přístup zakázán",
"Cloud not found" => "Cloud nebyl nalezen",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky",
+"web services under your control" => "služby webu pod Vaší kontrolou",
"Edit categories" => "Upravit kategorie",
"Add" => "Přidat",
"Security Warning" => "Bezpečnostní upozornění",
@@ -124,7 +125,6 @@
"Database tablespace" => "Tabulkový prostor databáze",
"Database host" => "Hostitel databáze",
"Finish setup" => "Dokončit nastavení",
-"web services under your control" => "služby webu pod Vaší kontrolou",
"%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.",
"Log out" => "Odhlásit se",
"Automatic logon rejected!" => "Automatické přihlášení odmítnuto.",
@@ -134,6 +134,7 @@
"remember" => "zapamatovat",
"Log in" => "Přihlásit",
"Alternative Logins" => "Alternativní přihlášení",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ahoj,<br><br>jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete <br><a href=\"%s\">zde</a>.<br><br>Díky",
"prev" => "předchozí",
"next" => "následující",
"Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat."
diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php
index cdb2576d457..6158a356dc7 100644
--- a/core/l10n/cy_GB.php
+++ b/core/l10n/cy_GB.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Rhannodd defnyddiwr %s ffeil â chi",
-"User %s shared a folder with you" => "Rhannodd defnyddiwr %s blygell â chi",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s",
"Category type not provided." => "Math o gategori heb ei ddarparu.",
"No category to add?" => "Dim categori i'w ychwanegu?",
"This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s",
@@ -104,6 +100,7 @@
"Help" => "Cymorth",
"Access forbidden" => "Mynediad wedi'i wahardd",
"Cloud not found" => "Methwyd canfod cwmwl",
+"web services under your control" => "gwasanaethau gwe a reolir gennych",
"Edit categories" => "Golygu categorïau",
"Add" => "Ychwanegu",
"Security Warning" => "Rhybudd Diogelwch",
@@ -124,7 +121,6 @@
"Database tablespace" => "Tablespace cronfa ddata",
"Database host" => "Gwesteiwr cronfa ddata",
"Finish setup" => "Gorffen sefydlu",
-"web services under your control" => "gwasanaethau gwe a reolir gennych",
"%s is available. Get more information on how to update." => "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru.",
"Log out" => "Allgofnodi",
"Automatic logon rejected!" => "Gwrthodwyd mewngofnodi awtomatig!",
diff --git a/core/l10n/da.php b/core/l10n/da.php
index 4e9f742e80d..b3da17ba798 100644
--- a/core/l10n/da.php
+++ b/core/l10n/da.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Bruger %s delte en fil med dig",
-"User %s shared a folder with you" => "Bruger %s delte en mappe med dig",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s",
-"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",
@@ -46,6 +42,7 @@
"years ago" => "år siden",
"Choose" => "Vælg",
"Cancel" => "Annuller",
+"Error loading file picker template" => "Fejl ved indlæsning af filvælger skabelon",
"Yes" => "Ja",
"No" => "Nej",
"Ok" => "OK",
@@ -88,6 +85,8 @@
"The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.",
"ownCloud password reset" => "Nulstil ownCloud kodeord",
"Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}",
+"The link to reset your password has been sent to your email.<br>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 ." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post. <br> Hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam / junk mapper.<br> Hvis det ikke er der, så spørg din lokale administrator.",
+"Request failed!<br>Did you make sure your email/username was right?" => "Anmodning mislykkedes!<br>Er du sikker på at din e-post / brugernavn var korrekt?",
"You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.",
"Username" => "Brugernavn",
"Request reset" => "Anmod om nulstilling",
@@ -102,6 +101,7 @@
"Help" => "Hjælp",
"Access forbidden" => "Adgang forbudt",
"Cloud not found" => "Sky ikke fundet",
+"web services under your control" => "Webtjenester under din kontrol",
"Edit categories" => "Rediger kategorier",
"Add" => "Tilføj",
"Security Warning" => "Sikkerhedsadvarsel",
@@ -122,7 +122,7 @@
"Database tablespace" => "Database tabelplads",
"Database host" => "Databasehost",
"Finish setup" => "Afslut opsætning",
-"web services under your control" => "Webtjenester under din kontrol",
+"%s is available. Get more information on how to update." => "%s er tilgængelig. Få mere information om, hvordan du opdaterer.",
"Log out" => "Log ud",
"Automatic logon rejected!" => "Automatisk login afvist!",
"If you did not change your password recently, your account may be compromised!" => "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!",
diff --git a/core/l10n/de.php b/core/l10n/de.php
index 62e9925b945..bf301b11790 100644
--- a/core/l10n/de.php
+++ b/core/l10n/de.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Der Nutzer %s hat eine Datei mit Dir geteilt",
-"User %s shared a folder with you" => "%s hat ein Verzeichnis mit Dir geteilt",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat die Datei \"%s\" mit Dir geteilt. Sie ist hier zum Download verfügbar: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat den Ordner \"%s\" mit Dir geteilt. Er ist hier zum Download verfügbar: %s",
"Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: %s" => "Die Kategorie '%s' existiert bereits.",
@@ -46,6 +42,7 @@
"years ago" => "Vor Jahren",
"Choose" => "Auswählen",
"Cancel" => "Abbrechen",
+"Error loading file picker template" => "Dateiauswahltemplate konnte nicht geladen werden",
"Yes" => "Ja",
"No" => "Nein",
"Ok" => "OK",
@@ -104,6 +101,7 @@
"Help" => "Hilfe",
"Access forbidden" => "Zugriff verboten",
"Cloud not found" => "Cloud nicht gefunden",
+"web services under your control" => "Web-Services unter Deiner Kontrolle",
"Edit categories" => "Kategorien bearbeiten",
"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitswarnung",
@@ -124,7 +122,6 @@
"Database tablespace" => "Datenbank-Tablespace",
"Database host" => "Datenbank-Host",
"Finish setup" => "Installation abschließen",
-"web services under your control" => "Web-Services unter Deiner Kontrolle",
"%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.",
"Log out" => "Abmelden",
"Automatic logon rejected!" => "Automatischer Login zurückgewiesen!",
diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php
index ea8a4e5adc3..e7842eb1576 100644
--- a/core/l10n/de_DE.php
+++ b/core/l10n/de_DE.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Der Nutzer %s hat eine Datei mit Ihnen geteilt",
-"User %s shared a folder with you" => "%s hat einen Ordner mit Ihnen geteilt",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat die Datei \"%s\" mit Ihnen geteilt. Sie ist hier zum Download verfügbar: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat den Ordner \"%s\" mit Ihnen geteilt. Er ist hier zum Download verfügbar: %s",
+"%s shared »%s« with you" => "%s geteilt »%s« mit Ihnen",
"Category type not provided." => "Kategorie nicht angegeben.",
"No category to add?" => "Keine Kategorie hinzuzufügen?",
"This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s",
@@ -93,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!<br>Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?",
"You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.",
"Username" => "Benutzername",
+"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?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keinen Weg geben, um Ihre Daten wieder zu bekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?",
+"Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.",
"Request reset" => "Zurücksetzung anfordern",
"Your password was reset" => "Ihr Passwort wurde zurückgesetzt.",
"To login page" => "Zur Login-Seite",
@@ -105,6 +104,8 @@
"Help" => "Hilfe",
"Access forbidden" => "Zugriff verboten",
"Cloud not found" => "Cloud wurde nicht gefunden",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!",
+"web services under your control" => "Web-Services unter Ihrer Kontrolle",
"Edit categories" => "Kategorien ändern",
"Add" => "Hinzufügen",
"Security Warning" => "Sicherheitshinweis",
@@ -125,7 +126,6 @@
"Database tablespace" => "Datenbank-Tablespace",
"Database host" => "Datenbank-Host",
"Finish setup" => "Installation abschließen",
-"web services under your control" => "Web-Services unter Ihrer Kontrolle",
"%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.",
"Log out" => "Abmelden",
"Automatic logon rejected!" => "Automatische Anmeldung verweigert!",
@@ -135,6 +135,7 @@
"remember" => "merken",
"Log in" => "Einloggen",
"Alternative Logins" => "Alternative Logins",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br><br>ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.<br><a href=\"%s\">Schauen Sie es sich an!</a><br><br>Viele Grüße!",
"prev" => "Zurück",
"next" => "Weiter",
"Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern."
diff --git a/core/l10n/el.php b/core/l10n/el.php
index 11295105e31..022d9d90039 100644
--- a/core/l10n/el.php
+++ b/core/l10n/el.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς",
-"User %s shared a folder with you" => "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s",
+"%s shared »%s« with you" => "Ο %s διαμοιράστηκε μαζί σας το »%s«",
"Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.",
"No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;",
"This category already exists: %s" => "Αυτή η κατηγορία υπάρχει ήδη: %s",
@@ -92,6 +89,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ",
"You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.",
"Username" => "Όνομα χρήστη",
+"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?" => "Τα αρχεία σας είναι κρυπτογραφημένα. Εάν δεν έχετε ενεργοποιήσει το κλειδί ανάκτησης, δεν υπάρχει περίπτωση να έχετε πρόσβαση στα δεδομένα σας μετά την επαναφορά του συνθηματικού. Εάν δεν είστε σίγουροι τι να κάνετε, παρακαλώ επικοινωνήστε με τον διαχειριστή πριν συνεχίσετε. Θέλετε να συνεχίσετε;",
+"Yes, I really want to reset my password now" => "Ναι, θέλω να επαναφέρω το συνθηματικό μου τώρα.",
"Request reset" => "Επαναφορά αίτησης",
"Your password was reset" => "Ο κωδικός πρόσβασής σας επαναφέρθηκε",
"To login page" => "Σελίδα εισόδου",
@@ -104,6 +103,8 @@
"Help" => "Βοήθεια",
"Access forbidden" => "Δεν επιτρέπεται η πρόσβαση",
"Cloud not found" => "Δεν βρέθηκε νέφος",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!",
+"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας",
"Edit categories" => "Επεξεργασία κατηγοριών",
"Add" => "Προσθήκη",
"Security Warning" => "Προειδοποίηση Ασφαλείας",
@@ -124,7 +125,7 @@
"Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων",
"Database host" => "Διακομιστής βάσης δεδομένων",
"Finish setup" => "Ολοκλήρωση εγκατάστασης",
-"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας",
+"%s is available. Get more information on how to update." => "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε.",
"Log out" => "Αποσύνδεση",
"Automatic logon rejected!" => "Απορρίφθηκε η αυτόματη σύνδεση!",
"If you did not change your password recently, your account may be compromised!" => "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!",
@@ -133,6 +134,7 @@
"remember" => "απομνημόνευση",
"Log in" => "Είσοδος",
"Alternative Logins" => "Εναλλακτικές Συνδέσεις",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Γεια σας,<br><br>σας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το »%s«.<br><a href=\"%s\">Δείτε το!</a><br><br>Γεια χαρά!",
"prev" => "προηγούμενο",
"next" => "επόμενο",
"Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο."
diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php
index 981d9a1ca0f..0c590d0b758 100644
--- a/core/l10n/en@pirate.php
+++ b/core/l10n/en@pirate.php
@@ -1,5 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "User %s shared a file with you",
"Password" => "Passcode",
"web services under your control" => "web services under your control"
);
diff --git a/core/l10n/eo.php b/core/l10n/eo.php
index 72cdf90c61e..2adf09d3a01 100644
--- a/core/l10n/eo.php
+++ b/core/l10n/eo.php
@@ -1,10 +1,8 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "La uzanto %s kunhavigis dosieron kun vi",
-"User %s shared a folder with you" => "La uzanto %s kunhavigis dosierujon kun vi",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosieron “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosierujon “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s",
+"%s shared »%s« with you" => "%s kunhavigis “%s” kun vi",
"Category type not provided." => "Ne proviziĝis tipon de kategorio.",
"No category to add?" => "Ĉu neniu kategorio estas aldonota?",
+"This category already exists: %s" => "Tiu kategorio jam ekzistas: %s",
"Object type not provided." => "Ne proviziĝis tipon de objekto.",
"%s ID not provided." => "Ne proviziĝis ID-on de %s.",
"Error adding %s to favorites." => "Eraro dum aldono de %s al favoratoj.",
@@ -52,6 +50,7 @@
"Error" => "Eraro",
"The app name is not specified." => "Ne indikiĝis nomo de la aplikaĵo.",
"The required file {file} is not installed!" => "La necesa dosiero {file} ne instaliĝis!",
+"Shared" => "Dividita",
"Share" => "Kunhavigi",
"Error while sharing" => "Eraro dum kunhavigo",
"Error while unsharing" => "Eraro dum malkunhavigo",
@@ -82,10 +81,14 @@
"Error setting expiration date" => "Eraro dum agordado de limdato",
"Sending ..." => "Sendante...",
"Email sent" => "La retpoŝtaĵo sendiĝis",
+"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouda komunumo</a>.",
+"The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.",
"ownCloud password reset" => "La pasvorto de ownCloud restariĝis.",
"Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}",
+"Request failed!<br>Did you make sure your email/username was right?" => "La peto malsukcesis!<br />Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?",
"You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.",
"Username" => "Uzantonomo",
+"Yes, I really want to reset my password now" => "Jes, mi vere volas restarigi mian pasvorton nun",
"Request reset" => "Peti rekomencigon",
"Your password was reset" => "Via pasvorto rekomencis",
"To login page" => "Al la ensaluta paĝo",
@@ -98,9 +101,13 @@
"Help" => "Helpo",
"Access forbidden" => "Aliro estas malpermesata",
"Cloud not found" => "La nubo ne estas trovita",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!",
+"web services under your control" => "TTT-servoj regataj de vi",
"Edit categories" => "Redakti kategoriojn",
"Add" => "Aldoni",
"Security Warning" => "Sekureca averto",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Bonvolu ĝisdatigi vian instalon de PHP por uzi ownCloud-on sekure.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP.",
"Create an <strong>admin account</strong>" => "Krei <strong>administran konton</strong>",
"Advanced" => "Progresinta",
@@ -113,13 +120,17 @@
"Database tablespace" => "Datumbaza tabelospaco",
"Database host" => "Datumbaza gastigo",
"Finish setup" => "Fini la instalon",
-"web services under your control" => "TTT-servoj regataj de vi",
+"%s is available. Get more information on how to update." => "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi.",
"Log out" => "Elsaluti",
+"Automatic logon rejected!" => "La aŭtomata ensaluto malakceptiĝis!",
"If you did not change your password recently, your account may be compromised!" => "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!",
"Please change your password to secure your account again." => "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree.",
"Lost your password?" => "Ĉu vi perdis vian pasvorton?",
"remember" => "memori",
"Log in" => "Ensaluti",
+"Alternative Logins" => "Alternativaj ensalutoj",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Saluton:<br /><br />Ni nur sciigas vin, ke %s kunhavigis “%s” kun vi.<br /><a href=\"%s\">Vidu ĝin</a><br /><br />Ĝis!",
"prev" => "maljena",
-"next" => "jena"
+"next" => "jena",
+"Updating ownCloud to version %s, this may take a while." => "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo."
);
diff --git a/core/l10n/es.php b/core/l10n/es.php
index 4b8d5c7b189..f5caa232dc9 100644
--- a/core/l10n/es.php
+++ b/core/l10n/es.php
@@ -1,14 +1,11 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "El usuario %s ha compartido un archivo contigo.",
-"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo.",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s.",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s.",
+"%s shared »%s« with you" => "%s compatido »%s« contigo",
"Category type not provided." => "Tipo de categoría no proporcionado.",
"No category to add?" => "¿Ninguna categoría para añadir?",
-"This category already exists: %s" => "Ya existe esta categoría: %s",
+"This category already exists: %s" => "Esta categoría ya existe: %s",
"Object type not provided." => "Tipo de objeto no proporcionado.",
"%s ID not provided." => "ID de %s no proporcionado.",
-"Error adding %s to favorites." => "Error añadiendo %s a los favoritos.",
+"Error adding %s to favorites." => "Error añadiendo %s a favoritos.",
"No categories selected for deletion." => "No hay categorías seleccionadas para borrar.",
"Error removing %s from favorites." => "Error eliminando %s de los favoritos.",
"Sunday" => "Domingo",
@@ -50,9 +47,9 @@
"Yes" => "Sí",
"No" => "No",
"Ok" => "Aceptar",
-"The object type is not specified." => "No se ha especificado el tipo de objeto",
+"The object type is not specified." => "El tipo de objeto no está especificado.",
"Error" => "Error",
-"The app name is not specified." => "No se ha especificado el nombre de la aplicación.",
+"The app name is not specified." => "El nombre de la aplicación no está especificado.",
"The required file {file} is not installed!" => "¡El fichero requerido {file} no está instalado!",
"Shared" => "Compartido",
"Share" => "Compartir",
@@ -86,13 +83,15 @@
"Sending ..." => "Enviando...",
"Email sent" => "Correo electrónico enviado",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización ha fracasado. Por favor, informe de este problema a la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Comunidad de ownCloud</ a>.",
-"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado correctamente. Redireccionando a ownCloud ahora.",
-"ownCloud password reset" => "Restablecer contraseña de ownCloud",
-"Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}",
+"The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.",
+"ownCloud password reset" => "Reseteo contraseña de ownCloud",
+"Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer tu contraseña: {link}",
"The link to reset your password has been sent to your email.<br>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 ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico. <br> Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado. <br> Si no está allí, pregunte a su administrador local.",
"Request failed!<br>Did you make sure your email/username was right?" => "La petición ha fallado! <br> ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?",
"You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña",
"Username" => "Nombre de usuario",
+"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?" => "Sus archivos están cifrados. Si no ha habilitado la clave de recurperación, no habrá forma de recuperar sus datos luego de que la contraseña sea reseteada. Si no está seguro de qué hacer, contacte a su administrador antes de continuar. ¿Realmente desea continuar?",
+"Yes, I really want to reset my password now" => "Sí. Realmente deseo resetear mi contraseña ahora",
"Request reset" => "Solicitar restablecimiento",
"Your password was reset" => "Su contraseña ha sido establecida",
"To login page" => "A la página de inicio de sesión",
@@ -103,20 +102,22 @@
"Apps" => "Aplicaciones",
"Admin" => "Administración",
"Help" => "Ayuda",
-"Access forbidden" => "Acceso denegado",
-"Cloud not found" => "No se ha encontrado la nube",
+"Access forbidden" => "Acceso prohibido",
+"Cloud not found" => "No se ha encuentra la nube",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!",
+"web services under your control" => "Servicios web bajo su control",
"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 es vulnerable al ataque de Byte NULL (CVE-2006-7243)",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su 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 de manera 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 restablecimiento de contraseñas y tomar el control de su cuenta.",
-"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Probablemente su directorio de datos y sus archivos sean accesibles a través de internet ya que el archivo .htaccess no funciona.",
+"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 probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona.",
"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 su servidor, por favor vea 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",
+"Data folder" => "Directorio de datos",
"Configure the database" => "Configurar la base de datos",
"will be used" => "se utilizarán",
"Database user" => "Usuario de la base de datos",
@@ -125,16 +126,16 @@
"Database tablespace" => "Espacio de tablas de la base de datos",
"Database host" => "Host de la base de datos",
"Finish setup" => "Completar la instalación",
-"web services under your control" => "Servicios web bajo su control",
"%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.",
"Log out" => "Salir",
"Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!",
"If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!",
"Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.",
"Lost your password?" => "¿Ha perdido su contraseña?",
-"remember" => "recordarme",
+"remember" => "recordar",
"Log in" => "Entrar",
-"Alternative Logins" => "Nombre de usuarios alternativos",
+"Alternative Logins" => "Inicios de sesión alternativos",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Oye,<br><br>sólo te hago saber que %s compartido %s contigo,<br><a href=\"%s\">\nMíralo!</a><br><br>Disfrutalo!",
"prev" => "anterior",
"next" => "siguiente",
"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo."
diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php
index 38b0791b94b..77c3fb854b4 100644
--- a/core/l10n/es_AR.php
+++ b/core/l10n/es_AR.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "El usurario %s compartió un archivo con vos.",
-"User %s shared a folder with you" => "El usurario %s compartió una carpeta con vos.",
-"User %s shared the file \"%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",
-"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",
+"%s shared »%s« with you" => "%s compartió \"%s\" con vos",
"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",
@@ -46,6 +43,7 @@
"years ago" => "años atrás",
"Choose" => "Elegir",
"Cancel" => "Cancelar",
+"Error loading file picker template" => "Error al cargar la plantilla del seleccionador de archivos",
"Yes" => "Sí",
"No" => "No",
"Ok" => "Aceptar",
@@ -88,8 +86,12 @@
"The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.",
"ownCloud password reset" => "Restablecer contraseña de ownCloud",
"Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}",
+"The link to reset your password has been sent to your email.<br>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 ." => "El enlace para restablecer la contraseña fue enviada a tu correo electrónico. <br> Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado. <br> Si no está ahí, preguntale a tu administrador.",
+"Request failed!<br>Did you make sure your email/username was right?" => "¡Error en el pedido! <br> ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?",
"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña",
"Username" => "Nombre de usuario",
+"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?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?",
+"Yes, I really want to reset my password now" => "Sí, definitivamente quiero resetear mi contraseña ahora",
"Request reset" => "Solicitar restablecimiento",
"Your password was reset" => "Tu contraseña fue restablecida",
"To login page" => "A la página de inicio de sesión",
@@ -102,6 +104,8 @@
"Help" => "Ayuda",
"Access forbidden" => "Acceso denegado",
"Cloud not found" => "No se encontró ownCloud",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!",
+"web services under your control" => "servicios web controlados por vos",
"Edit categories" => "Editar categorías",
"Add" => "Agregar",
"Security Warning" => "Advertencia de seguridad",
@@ -122,7 +126,7 @@
"Database tablespace" => "Espacio de tablas de la base de datos",
"Database host" => "Host de la base de datos",
"Finish setup" => "Completar la instalación",
-"web services under your control" => "servicios web controlados por vos",
+"%s is available. Get more information on how to update." => "%s está disponible. Obtené más información sobre cómo actualizar.",
"Log out" => "Cerrar la sesión",
"Automatic logon rejected!" => "¡El inicio de sesión automático fue rechazado!",
"If you did not change your password recently, your account may be compromised!" => "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!",
@@ -131,6 +135,7 @@
"remember" => "recordame",
"Log in" => "Entrar",
"Alternative Logins" => "Nombre alternativos de usuarios",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hola,<br><br>Simplemente te informo que %s compartió %s con vos.<br><a href=\"%s\">Miralo acá:</a><br><br>¡Chau!",
"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 803b36e1c31..4c0a41c5087 100644
--- a/core/l10n/et_EE.php
+++ b/core/l10n/et_EE.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Kasutaja %s jagas sinuga faili",
-"User %s shared a folder with you" => "Kasutaja %s jagas Sinuga kausta.",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas sinuga kausta \"%s\". See on allalaadimiseks saadaval siin: %s",
"Category type not provided." => "Kategooria tüüp puudub.",
"No category to add?" => "Pole kategooriat, mida lisada?",
"This category already exists: %s" => "See kategooria on juba olemas: %s",
@@ -105,6 +101,7 @@
"Help" => "Abiinfo",
"Access forbidden" => "Ligipääs on keelatud",
"Cloud not found" => "Pilve ei leitud",
+"web services under your control" => "veebitenused sinu kontrolli all",
"Edit categories" => "Muuda kategooriaid",
"Add" => "Lisa",
"Security Warning" => "Turvahoiatus",
@@ -125,7 +122,6 @@
"Database tablespace" => "Andmebaasi tabeliruum",
"Database host" => "Andmebaasi host",
"Finish setup" => "Lõpeta seadistamine",
-"web services under your control" => "veebiteenused sinu kontrolli all",
"%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.",
"Log out" => "Logi välja",
"Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!",
diff --git a/core/l10n/eu.php b/core/l10n/eu.php
index 1ec4ee8f5c4..117c0105756 100644
--- a/core/l10n/eu.php
+++ b/core/l10n/eu.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s erabiltzaileak zurekin fitxategi bat elkarbanatu du ",
-"User %s shared a folder with you" => "%s erabiltzaileak zurekin karpeta bat elkarbanatu du ",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" fitxategia zurekin elkarbanatu du. Hemen duzu eskuragarri: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin elkarbanatu 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",
@@ -102,6 +98,7 @@
"Help" => "Laguntza",
"Access forbidden" => "Sarrera debekatuta",
"Cloud not found" => "Ez da hodeia aurkitu",
+"web services under your control" => "web zerbitzuak zure kontrolpean",
"Edit categories" => "Editatu kategoriak",
"Add" => "Gehitu",
"Security Warning" => "Segurtasun abisua",
@@ -122,7 +119,6 @@
"Database tablespace" => "Datu basearen taula-lekua",
"Database host" => "Datubasearen hostalaria",
"Finish setup" => "Bukatu konfigurazioa",
-"web services under your control" => "web zerbitzuak zure kontrolpean",
"Log out" => "Saioa bukatu",
"Automatic logon rejected!" => "Saio hasiera automatikoa ez onartuta!",
"If you did not change your password recently, your account may be compromised!" => "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!",
diff --git a/core/l10n/fa.php b/core/l10n/fa.php
index fb8a312587c..338b3ad4b21 100644
--- a/core/l10n/fa.php
+++ b/core/l10n/fa.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "کاربر %s یک پرونده را با شما به اشتراک گذاشته است.",
-"User %s shared a folder with you" => "کاربر %s یک پوشه را با شما به اشتراک گذاشته است.",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "کاربر %s پرونده \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "کاربر %s پوشه \"%s\" را با شما به اشتراک گذاشته است. پرونده برای دانلود اینجاست : %s",
"Category type not provided." => "نوع دسته بندی ارائه نشده است.",
"No category to add?" => "آیا گروه دیگری برای افزودن ندارید",
"This category already exists: %s" => "این دسته هم اکنون وجود دارد: %s",
@@ -102,6 +98,7 @@
"Help" => "راه‌نما",
"Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید",
"Cloud not found" => "پیدا نشد",
+"web services under your control" => "سرویس های تحت وب در کنترل شما",
"Edit categories" => "ویرایش گروه",
"Add" => "افزودن",
"Security Warning" => "اخطار امنیتی",
@@ -122,7 +119,6 @@
"Database tablespace" => "جدول پایگاه داده",
"Database host" => "هاست پایگاه داده",
"Finish setup" => "اتمام نصب",
-"web services under your control" => "سرویس های تحت وب در کنترل شما",
"Log out" => "خروج",
"Automatic logon rejected!" => "ورود به سیستم اتوماتیک ردشد!",
"If you did not change your password recently, your account may be compromised!" => "اگر شما اخیرا رمزعبور را تغییر نداده اید، حساب شما در معرض خطر می باشد !",
diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php
index 1f7a01e0e06..3e471ad1942 100644
--- a/core/l10n/fi_FI.php
+++ b/core/l10n/fi_FI.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Käyttäjä %s jakoi tiedoston kanssasi",
-"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",
+"%s shared »%s« with you" => "%s jakoi kohteen »%s« kanssasi",
"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",
@@ -87,6 +84,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Pyyntö epäonnistui!<br>Olihan sähköpostiosoitteesi/käyttäjätunnuksesi oikein?",
"You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.",
"Username" => "Käyttäjätunnus",
+"Yes, I really want to reset my password now" => "Kyllä, haluan nollata salasanani nyt",
"Request reset" => "Tilaus lähetetty",
"Your password was reset" => "Salasanasi nollattiin",
"To login page" => "Kirjautumissivulle",
@@ -99,6 +97,8 @@
"Help" => "Ohje",
"Access forbidden" => "Pääsy estetty",
"Cloud not found" => "Pilveä ei löydy",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!",
+"web services under your control" => "verkkopalvelut hallinnassasi",
"Edit categories" => "Muokkaa luokkia",
"Add" => "Lisää",
"Security Warning" => "Turvallisuusvaroitus",
@@ -118,7 +118,6 @@
"Database tablespace" => "Tietokannan taulukkotila",
"Database host" => "Tietokantapalvelin",
"Finish setup" => "Viimeistele asennus",
-"web services under your control" => "verkkopalvelut hallinnassasi",
"%s is available. Get more information on how to update." => "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan.",
"Log out" => "Kirjaudu ulos",
"Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!",
@@ -128,6 +127,7 @@
"remember" => "muista",
"Log in" => "Kirjaudu sisään",
"Alternative Logins" => "Vaihtoehtoiset kirjautumiset",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hei!<br><br>%s jakoi kohteen »%s« kanssasi.<br><a href=\"%s\">Katso se tästä!</a><br><br>Näkemiin!",
"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 b01625a887b..2d1181bfec4 100644
--- a/core/l10n/fr.php
+++ b/core/l10n/fr.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "L'utilisateur %s a partagé un fichier avec vous",
-"User %s shared a folder with you" => "L'utilsateur %s a partagé un dossier avec vous",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le dossier \"%s\" avec vous. Il est disponible au téléchargement ici : %s",
+"%s shared »%s« with you" => "%s partagé »%s« avec vous",
"Category type not provided." => "Type de catégorie non spécifié.",
"No category to add?" => "Pas de catégorie à ajouter ?",
"This category already exists: %s" => "Cette catégorie existe déjà : %s",
@@ -46,6 +43,7 @@
"years ago" => "il y a plusieurs années",
"Choose" => "Choisir",
"Cancel" => "Annuler",
+"Error loading file picker template" => "Erreur de chargement du modèle du sélecteur de fichier",
"Yes" => "Oui",
"No" => "Non",
"Ok" => "Ok",
@@ -92,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Requête en échec!<br>Avez-vous vérifié vos courriel/nom d'utilisateur?",
"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.",
"Username" => "Nom d'utilisateur",
+"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?" => "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 ?",
+"Yes, I really want to reset my password now" => "Oui, je veux vraiment réinitialiser mon mot de passe maintenant",
"Request reset" => "Demander la réinitialisation",
"Your password was reset" => "Votre mot de passe a été réinitialisé",
"To login page" => "Retour à la page d'authentification",
@@ -104,6 +104,8 @@
"Help" => "Aide",
"Access forbidden" => "Accès interdit",
"Cloud not found" => "Introuvable",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!",
+"web services under your control" => "services web sous votre contrôle",
"Edit categories" => "Editer les catégories",
"Add" => "Ajouter",
"Security Warning" => "Avertissement de sécurité",
@@ -124,7 +126,6 @@
"Database tablespace" => "Tablespaces de la base de données",
"Database host" => "Serveur de la base de données",
"Finish setup" => "Terminer l'installation",
-"web services under your control" => "services web sous votre contrôle",
"%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.",
"Log out" => "Se déconnecter",
"Automatic logon rejected!" => "Connexion automatique rejetée !",
@@ -134,6 +135,7 @@
"remember" => "se souvenir de moi",
"Log in" => "Connexion",
"Alternative Logins" => "Logins alternatifs",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Salut,<br><br>je veux juste vous signaler %s partagé »%s« avec vous.<br><a href=\"%s\">Voyez-le!</a><br><br>Bonne continuation!",
"prev" => "précédent",
"next" => "suivant",
"Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps."
diff --git a/core/l10n/gl.php b/core/l10n/gl.php
index 98652695446..db53a3e8a4b 100644
--- a/core/l10n/gl.php
+++ b/core/l10n/gl.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "O usuario %s compartíu un ficheiro con vostede",
-"User %s shared a folder with you" => "O usuario %s compartíu un cartafol con vostede",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o ficheiro «%s» con vostede. Teno dispoñíbel en: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol «%s» con vostede. Teno dispoñíbel en: %s",
+"%s shared »%s« with you" => "%s compartiu «%s» con vostede",
"Category type not provided." => "Non se indicou o tipo de categoría",
"No category to add?" => "Sen categoría que engadir?",
"This category already exists: %s" => "Esta categoría xa existe: %s",
@@ -93,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!<br>Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.",
"You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal",
"Username" => "Nome de usuario",
+"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?" => "Os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?",
+"Yes, I really want to reset my password now" => "Si, confirmo que quero restabelecer agora o meu contrasinal",
"Request reset" => "Petición de restabelecemento",
"Your password was reset" => "O contrasinal foi restabelecido",
"To login page" => "A páxina de conexión",
@@ -105,6 +104,8 @@
"Help" => "Axuda",
"Access forbidden" => "Acceso denegado",
"Cloud not found" => "Nube non atopada",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!",
+"web services under your control" => "servizos web baixo o seu control",
"Edit categories" => "Editar as categorías",
"Add" => "Engadir",
"Security Warning" => "Aviso de seguranza",
@@ -125,7 +126,6 @@
"Database tablespace" => "Táboa de espazos da base de datos",
"Database host" => "Servidor da base de datos",
"Finish setup" => "Rematar a configuración",
-"web services under your control" => "servizos web baixo o seu control",
"%s is available. Get more information on how to update." => "%s está dispoñíbel. Obteña máis información sobre como actualizar.",
"Log out" => "Desconectar",
"Automatic logon rejected!" => "Rexeitouse a entrada automática",
@@ -135,6 +135,7 @@
"remember" => "lembrar",
"Log in" => "Conectar",
"Alternative Logins" => "Accesos alternativos",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ola,<br><br>só facerlle saber que %s compartiu «%s» con vostede.<br><a href=\"%s\">Véxao!</a><br><br>Saúdos!",
"prev" => "anterior",
"next" => "seguinte",
"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco."
diff --git a/core/l10n/he.php b/core/l10n/he.php
index eb2c3f3d153..1095507673b 100644
--- a/core/l10n/he.php
+++ b/core/l10n/he.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "המשתמש %s שיתף אתך קובץ",
-"User %s shared a folder with you" => "המשתמש %s שיתף אתך תיקייה",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "המשתמש %s שיתף אתך את הקובץ „%s“. ניתן להוריד את הקובץ מכאן: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "המשתמש %s שיתף אתך את התיקייה „%s“. ניתן להוריד את התיקייה מכאן: %s",
"Category type not provided." => "סוג הקטגוריה לא סופק.",
"No category to add?" => "אין קטגוריה להוספה?",
"This category already exists: %s" => "הקטגוריה הבאה כבר קיימת: %s",
@@ -46,6 +42,7 @@
"years ago" => "שנים",
"Choose" => "בחירה",
"Cancel" => "ביטול",
+"Error loading file picker template" => "שגיאה בטעינת תבנית בחירת הקבצים",
"Yes" => "כן",
"No" => "לא",
"Ok" => "בסדר",
@@ -88,6 +85,8 @@
"The update was successful. Redirecting you to ownCloud now." => "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud.",
"ownCloud password reset" => "איפוס הססמה של ownCloud",
"Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}",
+"The link to reset your password has been sent to your email.<br>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>אם לא קיבלת את הקישור תוך זמן סביר, מוטב לבדוק את תיבת הזבל שלך.<br>אם ההודעה לא שם, כדאי לשאול את מנהל הרשת שלך .",
+"Request failed!<br>Did you make sure your email/username was right?" => "הבקשה נכשלה!<br>האם כתובת הדוא״ל/שם המשתמש שלך נכונים?",
"You will receive a link to reset your password via Email." => "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה.",
"Username" => "שם משתמש",
"Request reset" => "בקשת איפוס",
@@ -102,10 +101,12 @@
"Help" => "עזרה",
"Access forbidden" => "הגישה נחסמה",
"Cloud not found" => "ענן לא נמצא",
+"web services under your control" => "שירותי רשת תחת השליטה שלך",
"Edit categories" => "ערוך קטגוריות",
"Add" => "הוספה",
"Security Warning" => "אזהרת אבטחה",
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "נא לעדכן את התקנת ה־PHP שלך כדי להשתמש ב־PHP בבטחה.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "אין מחולל מספרים אקראיים מאובטח, נא להפעיל את ההרחבה OpenSSL ב־PHP.",
"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 לא עובד.",
@@ -121,7 +122,7 @@
"Database tablespace" => "מרחב הכתובות של מסד הנתונים",
"Database host" => "שרת בסיס נתונים",
"Finish setup" => "סיום התקנה",
-"web services under your control" => "שירותי רשת תחת השליטה שלך",
+"%s is available. Get more information on how to update." => "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע נוסף כיצד לעדכן.",
"Log out" => "התנתקות",
"Automatic logon rejected!" => "בקשת הכניסה האוטומטית נדחתה!",
"If you did not change your password recently, your account may be compromised!" => "אם לא שינית את ססמתך לאחרונה, יתכן שחשבונך נפגע!",
diff --git a/core/l10n/hi.php b/core/l10n/hi.php
index 7d55c5b6b2f..afdd91d5f83 100644
--- a/core/l10n/hi.php
+++ b/core/l10n/hi.php
@@ -1,5 +1,19 @@
<?php $TRANSLATIONS = array(
+"January" => "जनवरी",
+"February" => "फरवरी",
+"March" => "मार्च",
+"April" => "अप्रैल",
+"May" => "मई",
+"June" => "जून",
+"July" => "जुलाई",
+"August" => "अगस्त",
+"September" => "सितम्बर",
+"October" => "अक्टूबर",
+"November" => "नवंबर",
+"December" => "दिसम्बर",
"Settings" => "सेटिंग्स",
+"Share" => "साझा करें",
+"Share with" => "के साथ साझा",
"Password" => "पासवर्ड",
"Use the following link to reset your password: {link}" => "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}",
"You will receive a link to reset your password via Email." => "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|",
diff --git a/core/l10n/hr.php b/core/l10n/hr.php
index 660b47c54fd..80a34094b27 100644
--- a/core/l10n/hr.php
+++ b/core/l10n/hr.php
@@ -73,6 +73,7 @@
"Help" => "Pomoć",
"Access forbidden" => "Pristup zabranjen",
"Cloud not found" => "Cloud nije pronađen",
+"web services under your control" => "web usluge pod vašom kontrolom",
"Edit categories" => "Uredi kategorije",
"Add" => "Dodaj",
"Create an <strong>admin account</strong>" => "Stvori <strong>administratorski račun</strong>",
@@ -86,7 +87,6 @@
"Database tablespace" => "Database tablespace",
"Database host" => "Poslužitelj baze podataka",
"Finish setup" => "Završi postavljanje",
-"web services under your control" => "web usluge pod vašom kontrolom",
"Log out" => "Odjava",
"Lost your password?" => "Izgubili ste lozinku?",
"remember" => "zapamtiti",
diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php
index 766e1bfc7ea..a0b6979c4ba 100644
--- a/core/l10n/hu_HU.php
+++ b/core/l10n/hu_HU.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s felhasználó megosztott Önnel egy fájlt",
-"User %s shared a folder with you" => "%s felhasználó megosztott Önnel egy mappát",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt az állományt Önnel: %s. A fájl innen tölthető le: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasználó megosztotta ezt a mappát Önnel: %s. A mappa innen tölthető le: %s",
+"%s shared »%s« with you" => "%s megosztotta Önnel ezt: »%s«",
"Category type not provided." => "Nincs megadva a kategória típusa.",
"No category to add?" => "Nincs hozzáadandó kategória?",
"This category already exists: %s" => "Ez a kategória már létezik: %s",
@@ -93,6 +90,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni! <br>Biztos, hogy jó emailcímet/felhasználónevet adott meg?",
"You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.",
"Username" => "Felhasználónév",
+"Yes, I really want to reset my password now" => "Igen, tényleg meg akarom változtatni a jelszavam",
"Request reset" => "Visszaállítás igénylése",
"Your password was reset" => "Jelszó megváltoztatva",
"To login page" => "A bejelentkező ablakhoz",
@@ -105,6 +103,8 @@
"Help" => "Súgó",
"Access forbidden" => "A hozzáférés nem engedélyezett",
"Cloud not found" => "A felhő nem található",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!",
+"web services under your control" => "webszolgáltatások saját kézben",
"Edit categories" => "Kategóriák szerkesztése",
"Add" => "Hozzáadás",
"Security Warning" => "Biztonsági figyelmeztetés",
@@ -125,7 +125,6 @@
"Database tablespace" => "Az adatbázis táblázattér (tablespace)",
"Database host" => "Adatbázis szerver",
"Finish setup" => "A beállítások befejezése",
-"web services under your control" => "webszolgáltatások saját kézben",
"%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.",
"Log out" => "Kilépés",
"Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!",
@@ -135,6 +134,7 @@
"remember" => "emlékezzen",
"Log in" => "Bejelentkezés",
"Alternative Logins" => "Alternatív bejelentkezés",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Üdv!<br><br>Új hír: %s megosztotta Önnel ezt: »%s«.<br><a href=\"%s\">Itt nézhető meg!</a><br><br>Minden jót!",
"prev" => "előző",
"next" => "következő",
"Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet."
diff --git a/core/l10n/ia.php b/core/l10n/ia.php
index b6bb75f2b3b..9df7eda1dad 100644
--- a/core/l10n/ia.php
+++ b/core/l10n/ia.php
@@ -38,6 +38,7 @@
"Help" => "Adjuta",
"Access forbidden" => "Accesso prohibite",
"Cloud not found" => "Nube non trovate",
+"web services under your control" => "servicios web sub tu controlo",
"Edit categories" => "Modificar categorias",
"Add" => "Adder",
"Create an <strong>admin account</strong>" => "Crear un <strong>conto de administration</strong>",
@@ -49,7 +50,6 @@
"Database password" => "Contrasigno de base de datos",
"Database name" => "Nomine de base de datos",
"Database host" => "Hospite de base de datos",
-"web services under your control" => "servicios web sub tu controlo",
"Log out" => "Clauder le session",
"Lost your password?" => "Tu perdeva le contrasigno?",
"remember" => "memora",
diff --git a/core/l10n/id.php b/core/l10n/id.php
index 065a4f2e727..5fe8b542223 100644
--- a/core/l10n/id.php
+++ b/core/l10n/id.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s berbagi berkas dengan Anda",
-"User %s shared a folder with you" => "%s berbagi folder dengan Anda",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s berbagi berkas \"%s\" dengan Anda. Silakan unduh di sini: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s berbagi folder \"%s\" dengan Anda. Silakan unduh di sini: %s",
"Category type not provided." => "Tipe kategori tidak diberikan.",
"No category to add?" => "Tidak ada kategori yang akan ditambahkan?",
"This category already exists: %s" => "Kategori ini sudah ada: %s",
@@ -102,6 +98,7 @@
"Help" => "Bantuan",
"Access forbidden" => "Akses ditolak",
"Cloud not found" => "Cloud tidak ditemukan",
+"web services under your control" => "layanan web dalam kontrol Anda",
"Edit categories" => "Edit kategori",
"Add" => "Tambah",
"Security Warning" => "Peringatan Keamanan",
@@ -122,7 +119,6 @@
"Database tablespace" => "Tablespace basis data",
"Database host" => "Host basis data",
"Finish setup" => "Selesaikan instalasi",
-"web services under your control" => "layanan web dalam kontrol Anda",
"Log out" => "Keluar",
"Automatic logon rejected!" => "Masuk otomatis ditolak!",
"If you did not change your password recently, your account may be compromised!" => "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!",
diff --git a/core/l10n/is.php b/core/l10n/is.php
index bd8b58b2904..b8573b3624a 100644
--- a/core/l10n/is.php
+++ b/core/l10n/is.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Notandinn %s deildi skrá með þér",
-"User %s shared a folder with you" => "Notandinn %s deildi möppu með þér",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi skránni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi möppunni \"%s\" með þér. Hægt er að hlaða henni niður hér: %s",
"Category type not provided." => "Flokkur ekki gefin",
"No category to add?" => "Enginn flokkur til að bæta við?",
"Object type not provided." => "Tegund ekki í boði.",
@@ -52,6 +48,7 @@
"Error" => "Villa",
"The app name is not specified." => "Nafn forrits ekki tilgreint",
"The required file {file} is not installed!" => "Umbeðina skráin {file} ekki tiltæk!",
+"Shared" => "Deilt",
"Share" => "Deila",
"Error while sharing" => "Villa við deilingu",
"Error while unsharing" => "Villa við að hætta deilingu",
@@ -82,6 +79,7 @@
"Error setting expiration date" => "Villa við að setja gildistíma",
"Sending ..." => "Sendi ...",
"Email sent" => "Tölvupóstur sendur",
+"The update was successful. Redirecting you to ownCloud now." => "Uppfærslan heppnaðist. Beini þér til ownCloud nú.",
"ownCloud password reset" => "endursetja ownCloud lykilorð",
"Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}",
"You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.",
@@ -98,6 +96,7 @@
"Help" => "Hjálp",
"Access forbidden" => "Aðgangur bannaður",
"Cloud not found" => "Ský finnst ekki",
+"web services under your control" => "vefþjónusta undir þinni stjórn",
"Edit categories" => "Breyta flokkum",
"Add" => "Bæta við",
"Security Warning" => "Öryggis aðvörun",
@@ -114,7 +113,7 @@
"Database tablespace" => "Töflusvæði gagnagrunns",
"Database host" => "Netþjónn gagnagrunns",
"Finish setup" => "Virkja uppsetningu",
-"web services under your control" => "vefþjónusta undir þinni stjórn",
+"%s is available. Get more information on how to update." => "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir.",
"Log out" => "Útskrá",
"Automatic logon rejected!" => "Sjálfvirkri innskráningu hafnað!",
"If you did not change your password recently, your account may be compromised!" => "Ef þú breyttir ekki lykilorðinu þínu fyrir skömmu, er mögulegt að einhver annar hafi komist inn á aðganginn þinn.",
diff --git a/core/l10n/it.php b/core/l10n/it.php
index ce8f6411295..f14e4fbb313 100644
--- a/core/l10n/it.php
+++ b/core/l10n/it.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "L'utente %s ha condiviso un file con te",
-"User %s shared a folder with you" => "L'utente %s ha condiviso una cartella con te",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso il file \"%s\" con te. È disponibile per lo scaricamento qui: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. È disponibile per lo scaricamento qui: %s",
+"%s shared »%s« with you" => "%s ha condiviso »%s« con te",
"Category type not provided." => "Tipo di categoria non fornito.",
"No category to add?" => "Nessuna categoria da aggiungere?",
"This category already exists: %s" => "Questa categoria esiste già: %s",
@@ -93,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Richiesta non riuscita!<br>Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?",
"You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email",
"Username" => "Nome utente",
+"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?" => "I file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà ripristinata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi davvero continuare?",
+"Yes, I really want to reset my password now" => "Sì, voglio davvero ripristinare la mia password adesso",
"Request reset" => "Richiesta di ripristino",
"Your password was reset" => "La password è stata ripristinata",
"To login page" => "Alla pagina di accesso",
@@ -105,6 +104,8 @@
"Help" => "Aiuto",
"Access forbidden" => "Accesso negato",
"Cloud not found" => "Nuvola non trovata",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!",
+"web services under your control" => "servizi web nelle tue mani",
"Edit categories" => "Modifica categorie",
"Add" => "Aggiungi",
"Security Warning" => "Avviso di sicurezza",
@@ -125,7 +126,6 @@
"Database tablespace" => "Spazio delle tabelle del database",
"Database host" => "Host del database",
"Finish setup" => "Termina la configurazione",
-"web services under your control" => "servizi web nelle tue mani",
"%s is available. Get more information on how to update." => "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento.",
"Log out" => "Esci",
"Automatic logon rejected!" => "Accesso automatico rifiutato.",
@@ -135,6 +135,7 @@
"remember" => "ricorda",
"Log in" => "Accedi",
"Alternative Logins" => "Accessi alternativi",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso »%s« con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!",
"prev" => "precedente",
"next" => "successivo",
"Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo."
diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php
index 8395a1d272e..b1c8b9a438e 100644
--- a/core/l10n/ja_JP.php
+++ b/core/l10n/ja_JP.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "ユーザ %s はあなたとファイルを共有しています",
-"User %s shared a folder with you" => "ユーザ %s はあなたとフォルダを共有しています",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとファイル \"%s\" を共有しています。こちらからダウンロードできます: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ユーザ %s はあなたとフォルダ \"%s\" を共有しています。こちらからダウンロードできます: %s",
+"%s shared »%s« with you" => "%sが あなたと »%s«を共有しました",
"Category type not provided." => "カテゴリタイプは提供されていません。",
"No category to add?" => "追加するカテゴリはありませんか?",
"This category already exists: %s" => "このカテゴリはすでに存在します: %s",
@@ -93,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "リクエストに失敗しました!<br>あなたのメール/ユーザ名が正しいことを確認しましたか?",
"You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。",
"Username" => "ユーザー名",
+"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?" => "ファイルが暗号化されています。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?",
+"Yes, I really want to reset my password now" => "はい、今すぐパスワードをリセットします。",
"Request reset" => "リセットを要求します。",
"Your password was reset" => "あなたのパスワードはリセットされました。",
"To login page" => "ログインページへ戻る",
@@ -105,6 +104,8 @@
"Help" => "ヘルプ",
"Access forbidden" => "アクセスが禁止されています",
"Cloud not found" => "見つかりません",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。",
+"web services under your control" => "管理下のウェブサービス",
"Edit categories" => "カテゴリを編集",
"Add" => "追加",
"Security Warning" => "セキュリティ警告",
@@ -125,7 +126,6 @@
"Database tablespace" => "データベースの表領域",
"Database host" => "データベースのホスト名",
"Finish setup" => "セットアップを完了します",
-"web services under your control" => "管理下のウェブサービス",
"%s is available. Get more information on how to update." => "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。",
"Log out" => "ログアウト",
"Automatic logon rejected!" => "自動ログインは拒否されました!",
@@ -135,6 +135,7 @@
"remember" => "パスワードを記憶する",
"Log in" => "ログイン",
"Alternative Logins" => "代替ログイン",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>それでは。",
"prev" => "前",
"next" => "次",
"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。"
diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php
index b474548eae8..6674106f1d7 100644
--- a/core/l10n/ka_GE.php
+++ b/core/l10n/ka_GE.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "მომხმარებელმა %s გაგიზიარათ ფაილი",
-"User %s shared a folder with you" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s",
"Category type not provided." => "კატეგორიის ტიპი არ არის განხილული.",
"No category to add?" => "არ არის კატეგორია დასამატებლად?",
"This category already exists: %s" => "კატეგორია უკვე არსებობს: %s",
@@ -102,6 +98,7 @@
"Help" => "დახმარება",
"Access forbidden" => "წვდომა აკრძალულია",
"Cloud not found" => "ღრუბელი არ არსებობს",
+"web services under your control" => "web services under your control",
"Edit categories" => "კატეგორიების რედაქტირება",
"Add" => "დამატება",
"Security Warning" => "უსაფრთხოების გაფრთხილება",
@@ -122,7 +119,6 @@
"Database tablespace" => "ბაზის ცხრილის ზომა",
"Database host" => "მონაცემთა ბაზის ჰოსტი",
"Finish setup" => "კონფიგურაციის დასრულება",
-"web services under your control" => "web services under your control",
"Log out" => "გამოსვლა",
"Automatic logon rejected!" => "ავტომატური შესვლა უარყოფილია!",
"If you did not change your password recently, your account may be compromised!" => "თუ თქვენ არ შეცვლით პაროლს, თქვენი ანგარიში შეიძლება იყოს დაშვებადი სხვებისთვის",
diff --git a/core/l10n/ko.php b/core/l10n/ko.php
index 6b97d672cfd..d95daaa3a73 100644
--- a/core/l10n/ko.php
+++ b/core/l10n/ko.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s 님이 파일을 공유하였습니다",
-"User %s shared a folder with you" => "%s 님이 폴더를 공유하였습니다",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s 님이 파일 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s 님이 폴더 \"%s\"을(를) 공유하였습니다. 여기에서 다운로드할 수 있습니다: %s",
"Category type not provided." => "분류 형식이 제공되지 않았습니다.",
"No category to add?" => "추가할 분류가 없습니까?",
"This category already exists: %s" => "분류가 이미 존재합니다: %s",
@@ -102,6 +98,7 @@
"Help" => "도움말",
"Access forbidden" => "접근 금지됨",
"Cloud not found" => "클라우드를 찾을 수 없습니다",
+"web services under your control" => "내가 관리하는 웹 서비스",
"Edit categories" => "분류 수정",
"Add" => "추가",
"Security Warning" => "보안 경고",
@@ -122,7 +119,6 @@
"Database tablespace" => "데이터베이스 테이블 공간",
"Database host" => "데이터베이스 호스트",
"Finish setup" => "설치 완료",
-"web services under your control" => "내가 관리하는 웹 서비스",
"Log out" => "로그아웃",
"Automatic logon rejected!" => "자동 로그인이 거부되었습니다!",
"If you did not change your password recently, your account may be compromised!" => "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!",
diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php
index 3c223bad024..ab46b13a500 100644
--- a/core/l10n/ku_IQ.php
+++ b/core/l10n/ku_IQ.php
@@ -10,6 +10,7 @@
"Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی",
"Help" => "یارمەتی",
"Cloud not found" => "هیچ نه‌دۆزرایه‌وه‌",
+"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه",
"Add" => "زیادکردن",
"Advanced" => "هه‌ڵبژاردنی پیشكه‌وتوو",
"Data folder" => "زانیاری فۆڵده‌ر",
@@ -18,7 +19,6 @@
"Database name" => "ناوی داتابه‌یس",
"Database host" => "هۆستی داتابه‌یس",
"Finish setup" => "كۆتایی هات ده‌ستكاریه‌كان",
-"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه",
"Log out" => "چوونەدەرەوە",
"prev" => "پێشتر",
"next" => "دواتر"
diff --git a/core/l10n/lb.php b/core/l10n/lb.php
index 4c312df6618..dbe7a34de34 100644
--- a/core/l10n/lb.php
+++ b/core/l10n/lb.php
@@ -56,6 +56,7 @@
"Help" => "Hëllef",
"Access forbidden" => "Access net erlaabt",
"Cloud not found" => "Cloud net fonnt",
+"web services under your control" => "Web Servicer ënnert denger Kontroll",
"Edit categories" => "Kategorien editéieren",
"Add" => "Dobäisetzen",
"Security Warning" => "Sécherheets Warnung",
@@ -70,7 +71,6 @@
"Database tablespace" => "Datebank Tabelle-Gréisst",
"Database host" => "Datebank Server",
"Finish setup" => "Installatioun ofschléissen",
-"web services under your control" => "Web Servicer ënnert denger Kontroll",
"Log out" => "Ausloggen",
"Lost your password?" => "Passwuert vergiess?",
"remember" => "verhalen",
diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php
index 1cd400117c8..673ee83dca0 100644
--- a/core/l10n/lt_LT.php
+++ b/core/l10n/lt_LT.php
@@ -1,8 +1,12 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Vartotojas %s pasidalino su jumis failu",
-"User %s shared a folder with you" => "Vartotojas %s su jumis pasidalino aplanku",
+"Category type not provided." => "Kategorija nenurodyta.",
"No category to add?" => "Nepridėsite jokios kategorijos?",
+"This category already exists: %s" => "Ši kategorija jau egzistuoja: %s",
+"Object type not provided." => "Objekto tipas nenurodytas.",
+"%s ID not provided." => "%s ID nenurodytas.",
+"Error adding %s to favorites." => "Klaida perkeliant %s į jūsų mėgstamiausius.",
"No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.",
+"Error removing %s from favorites." => "Klaida ištrinant %s iš jūsų mėgstamiausius.",
"Sunday" => "Sekmadienis",
"Monday" => "Pirmadienis",
"Tuesday" => "Antradienis",
@@ -26,19 +30,27 @@
"seconds ago" => "prieš sekundę",
"1 minute ago" => "Prieš 1 minutę",
"{minutes} minutes ago" => "Prieš {count} minutes",
+"1 hour ago" => "prieš 1 valandą",
+"{hours} hours ago" => "prieš {hours} valandas",
"today" => "šiandien",
"yesterday" => "vakar",
"{days} days ago" => "Prieš {days} dienas",
"last month" => "praeitą mėnesį",
+"{months} months ago" => "prieš {months} mėnesių",
"months ago" => "prieš mėnesį",
"last year" => "praeitais metais",
"years ago" => "prieš metus",
"Choose" => "Pasirinkite",
"Cancel" => "Atšaukti",
+"Error loading file picker template" => "Klaida pakraunant failų naršyklę",
"Yes" => "Taip",
"No" => "Ne",
"Ok" => "Gerai",
+"The object type is not specified." => "Objekto tipas nenurodytas.",
"Error" => "Klaida",
+"The app name is not specified." => "Nenurodytas programos pavadinimas.",
+"The required file {file} is not installed!" => "Reikalingas {file} failas nėra įrašytas!",
+"Shared" => "Dalinamasi",
"Share" => "Dalintis",
"Error while sharing" => "Klaida, dalijimosi metu",
"Error while unsharing" => "Klaida, kai atšaukiamas dalijimasis",
@@ -49,6 +61,8 @@
"Share with link" => "Dalintis nuoroda",
"Password protect" => "Apsaugotas slaptažodžiu",
"Password" => "Slaptažodis",
+"Email link to person" => "Nusiųsti nuorodą paštu",
+"Send" => "Siųsti",
"Set expiration date" => "Nustatykite galiojimo laiką",
"Expiration date" => "Galiojimo laikas",
"Share via email:" => "Dalintis per el. paštą:",
@@ -65,8 +79,14 @@
"Password protected" => "Apsaugota slaptažodžiu",
"Error unsetting expiration date" => "Klaida nuimant galiojimo laiką",
"Error setting expiration date" => "Klaida nustatant galiojimo laiką",
+"Sending ..." => "Siunčiama...",
+"Email sent" => "Laiškas išsiųstas",
+"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud bendruomenei</a>.",
+"The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.",
"ownCloud password reset" => "ownCloud slaptažodžio atkūrimas",
"Use the following link to reset your password: {link}" => "Slaptažodio atkūrimui naudokite šią nuorodą: {link}",
+"The link to reset your password has been sent to your email.<br>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 ." => "Nuorodą su jūsų slaptažodžio atkūrimu buvo nusiųsta jums į paštą.<br>Jei jo negausite per atitinkamą laiką, pasižiūrėkite brukalo aplankale.<br> Jei jo ir ten nėra, teiraukitės administratoriaus.",
+"Request failed!<br>Did you make sure your email/username was right?" => "Klaida!<br>Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?",
"You will receive a link to reset your password via Email." => "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį.",
"Username" => "Prisijungimo vardas",
"Request reset" => "Prašyti nustatymo iš najo",
@@ -81,11 +101,16 @@
"Help" => "Pagalba",
"Access forbidden" => "Priėjimas draudžiamas",
"Cloud not found" => "Negalima rasti",
+"web services under your control" => "jūsų valdomos web paslaugos",
"Edit categories" => "Redaguoti kategorijas",
"Add" => "Pridėti",
"Security Warning" => "Saugumo pranešimas",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Prašome atnaujinti savo PHP norint naudotis savo ownCloud saugiai.",
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Saugaus atsitiktinių skaičių generatoriaus nėra, prašome įjungti PHP OpenSSL modulį.",
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Be saugaus atsitiktinių skaičių generatoriaus, piktavaliai gali atspėti Jūsų slaptažodį ir pasisavinti paskyrą.",
+"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Jūsų failai yra tikriausiai prieinami per internetą nes .htaccess failas neveikia.",
+"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>." => "Norint gauti daugiau informacijos apie tai kaip tinkamai nustatyit savo serverį, prašome perskaityti <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentaciją</a>.",
"Create an <strong>admin account</strong>" => "Sukurti <strong>administratoriaus paskyrą</strong>",
"Advanced" => "Išplėstiniai",
"Data folder" => "Duomenų katalogas",
@@ -97,7 +122,7 @@
"Database tablespace" => "Duomenų bazės loginis saugojimas",
"Database host" => "Duomenų bazės serveris",
"Finish setup" => "Baigti diegimą",
-"web services under your control" => "jūsų valdomos web paslaugos",
+"%s is available. Get more information on how to update." => "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą.",
"Log out" => "Atsijungti",
"Automatic logon rejected!" => "Automatinis prisijungimas atmestas!",
"If you did not change your password recently, your account may be compromised!" => "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!",
@@ -105,6 +130,8 @@
"Lost your password?" => "Pamiršote slaptažodį?",
"remember" => "prisiminti",
"Log in" => "Prisijungti",
+"Alternative Logins" => "Alternatyvūs prisijungimai",
"prev" => "atgal",
-"next" => "kitas"
+"next" => "kitas",
+"Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti."
);
diff --git a/core/l10n/lv.php b/core/l10n/lv.php
index e3d668d0183..b8bfe74c377 100644
--- a/core/l10n/lv.php
+++ b/core/l10n/lv.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Lietotājs %s ar jums dalījās ar datni.",
-"User %s shared a folder with you" => "Lietotājs %s ar jums dalījās ar mapi.",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Lietotājs %s ar jums dalījās ar datni “%s”. To var lejupielādēt šeit — %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Lietotājs %s ar jums dalījās ar mapi “%s”. To var lejupielādēt šeit — %s",
"Category type not provided." => "Kategorijas tips nav norādīts.",
"No category to add?" => "Nav kategoriju, ko pievienot?",
"This category already exists: %s" => "Šāda kategorija jau eksistē — %s",
@@ -102,6 +98,7 @@
"Help" => "Palīdzība",
"Access forbidden" => "Pieeja ir liegta",
"Cloud not found" => "Mākonis netika atrasts",
+"web services under your control" => "tīmekļa servisi tavā varā",
"Edit categories" => "Rediģēt kategoriju",
"Add" => "Pievienot",
"Security Warning" => "Brīdinājums par drošību",
@@ -120,7 +117,6 @@
"Database tablespace" => "Datubāzes tabulas telpa",
"Database host" => "Datubāzes serveris",
"Finish setup" => "Pabeigt iestatīšanu",
-"web services under your control" => "tīmekļa servisi tavā varā",
"Log out" => "Izrakstīties",
"Automatic logon rejected!" => "Automātiskā ierakstīšanās ir noraidīta!",
"If you did not change your password recently, your account may be compromised!" => "Ja neesat pēdējā laikā mainījis paroli, iespējams, ka jūsu konts ir kompromitēts.",
diff --git a/core/l10n/mk.php b/core/l10n/mk.php
index b0c39debb8a..de89403ee3c 100644
--- a/core/l10n/mk.php
+++ b/core/l10n/mk.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Корисникот %s сподели датотека со Вас",
-"User %s shared a folder with you" => "Корисникот %s сподели папка со Вас",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Корисникот %s ја сподели датотека „%s“ со Вас. Достапна е за преземање тука: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Корисникот %s ја сподели папката „%s“ со Вас. Достапна е за преземање тука: %s",
"Category type not provided." => "Не беше доставен тип на категорија.",
"No category to add?" => "Нема категорија да се додаде?",
"Object type not provided." => "Не беше доставен тип на објект.",
@@ -98,6 +94,7 @@
"Help" => "Помош",
"Access forbidden" => "Забранет пристап",
"Cloud not found" => "Облакот не е најден",
+"web services under your control" => "веб сервиси под Ваша контрола",
"Edit categories" => "Уреди категории",
"Add" => "Додади",
"Security Warning" => "Безбедносно предупредување",
@@ -114,7 +111,6 @@
"Database tablespace" => "Табела во базата на податоци",
"Database host" => "Сервер со база",
"Finish setup" => "Заврши го подесувањето",
-"web services under your control" => "веб сервиси под Ваша контрола",
"Log out" => "Одјава",
"Automatic logon rejected!" => "Одбиена автоматска најава!",
"If you did not change your password recently, your account may be compromised!" => "Ако не сте ја промениле лозинката во скоро време, вашата сметка може да е компромитирана",
diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php
index e7dc73a32c1..7a18acea7cc 100644
--- a/core/l10n/ms_MY.php
+++ b/core/l10n/ms_MY.php
@@ -44,6 +44,7 @@
"Help" => "Bantuan",
"Access forbidden" => "Larangan akses",
"Cloud not found" => "Awan tidak dijumpai",
+"web services under your control" => "Perkhidmatan web di bawah kawalan anda",
"Edit categories" => "Ubah kategori",
"Add" => "Tambah",
"Security Warning" => "Amaran keselamatan",
@@ -57,7 +58,6 @@
"Database name" => "Nama pangkalan data",
"Database host" => "Hos pangkalan data",
"Finish setup" => "Setup selesai",
-"web services under your control" => "Perkhidmatan web di bawah kawalan anda",
"Log out" => "Log keluar",
"Lost your password?" => "Hilang kata laluan?",
"remember" => "ingat",
diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php
index 6ea6a2c7bb5..614c353929d 100644
--- a/core/l10n/my_MM.php
+++ b/core/l10n/my_MM.php
@@ -46,6 +46,7 @@
"Admin" => "အက်ဒမင်",
"Help" => "အကူအညီ",
"Cloud not found" => "မတွေ့ရှိမိပါ",
+"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services",
"Add" => "ပေါင်းထည့်",
"Security Warning" => "လုံခြုံရေးသတိပေးချက်",
"Create an <strong>admin account</strong>" => "<strong>အက်ဒမင်အကောင့်</strong>တစ်ခုဖန်တီးမည်",
@@ -55,7 +56,6 @@
"Database password" => "Database စကားဝှက်",
"Database name" => "Database အမည်",
"Finish setup" => "တပ်ဆင်ခြင်းပြီးပါပြီ။",
-"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services",
"Lost your password?" => "သင်၏စကားဝှက်ပျောက်သွားပြီလား။",
"remember" => "မှတ်မိစေသည်",
"Log in" => "ဝင်ရောက်ရန်",
diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php
index 30d3f91df2a..d6d9675d328 100644
--- a/core/l10n/nb_NO.php
+++ b/core/l10n/nb_NO.php
@@ -78,6 +78,7 @@
"Help" => "Hjelp",
"Access forbidden" => "Tilgang nektet",
"Cloud not found" => "Sky ikke funnet",
+"web services under your control" => "web tjenester du kontrollerer",
"Edit categories" => "Rediger kategorier",
"Add" => "Legg til",
"Security Warning" => "Sikkerhetsadvarsel",
@@ -92,7 +93,6 @@
"Database tablespace" => "Database tabellområde",
"Database host" => "Databasevert",
"Finish setup" => "Fullfør oppsetting",
-"web services under your control" => "web tjenester du kontrollerer",
"Log out" => "Logg ut",
"Automatic logon rejected!" => "Automatisk pålogging avvist!",
"If you did not change your password recently, your account may be compromised!" => "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert",
diff --git a/core/l10n/nl.php b/core/l10n/nl.php
index 0f30a2f49aa..1905092886e 100644
--- a/core/l10n/nl.php
+++ b/core/l10n/nl.php
@@ -1,23 +1,20 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Gebruiker %s deelde een bestand met u",
-"User %s shared a folder with you" => "Gebruiker %s deelde een map met u",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s",
-"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",
+"%s shared »%s« with you" => "%s deelde »%s« met jou",
"Category type not provided." => "Categorie type niet opgegeven.",
-"No category to add?" => "Geen categorie toevoegen?",
+"No category to add?" => "Geen categorie om toe te voegen?",
"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.",
"No categories selected for deletion." => "Geen categorie geselecteerd voor verwijdering.",
"Error removing %s from favorites." => "Verwijderen %s van favorieten is mislukt.",
-"Sunday" => "Zondag",
-"Monday" => "Maandag",
-"Tuesday" => "Dinsdag",
-"Wednesday" => "Woensdag",
-"Thursday" => "Donderdag",
-"Friday" => "Vrijdag",
-"Saturday" => "Zaterdag",
+"Sunday" => "zondag",
+"Monday" => "maandag",
+"Tuesday" => "dinsdag",
+"Wednesday" => "woensdag",
+"Thursday" => "donderdag",
+"Friday" => "vrijdag",
+"Saturday" => "zaterdag",
"January" => "januari",
"February" => "februari",
"March" => "maart",
@@ -63,13 +60,13 @@
"Shared with you by {owner}" => "Gedeeld met u door {owner}",
"Share with" => "Deel met",
"Share with link" => "Deel met link",
-"Password protect" => "Wachtwoord beveiliging",
+"Password protect" => "Wachtwoord beveiligd",
"Password" => "Wachtwoord",
"Email link to person" => "E-mail link naar persoon",
"Send" => "Versturen",
"Set expiration date" => "Stel vervaldatum in",
"Expiration date" => "Vervaldatum",
-"Share via email:" => "Deel via email:",
+"Share via email:" => "Deel via e-mail:",
"No people found" => "Geen mensen gevonden",
"Resharing is not allowed" => "Verder delen is niet toegestaan",
"Shared in {item} with {user}" => "Gedeeld in {item} met {user}",
@@ -86,17 +83,19 @@
"Sending ..." => "Versturen ...",
"Email sent" => "E-mail verzonden",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "De update is niet geslaagd. Meld dit probleem aan bij de <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.",
-"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. U wordt teruggeleid naar uw eigen ownCloud.",
-"ownCloud password reset" => "ownCloud wachtwoord herstellen",
+"The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.",
+"ownCloud password reset" => "ownCloud-wachtwoord herstellen",
"Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}",
-"The link to reset your password has been sent to your email.<br>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 voor het resetten van uw wachtwoord is verzonden naar uw e-mailadres.<br>Als u dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.<br>Als het daar ook niet is, vraag dan uw beheerder om te helpen.",
-"Request failed!<br>Did you make sure your email/username was right?" => "Aanvraag mislukt!<br>Weet u zeker dat uw gebruikersnaam en/of wachtwoord goed waren?",
-"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.",
+"The link to reset your password has been sent to your email.<br>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 voor het resetten van je wachtwoord is verzonden naar je e-mailadres.<br>Als je dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.<br>Als het daar ook niet is, vraag dan je beheerder om te helpen.",
+"Request failed!<br>Did you make sure your email/username was right?" => "Aanvraag mislukt!<br>Weet je zeker dat je gebruikersnaam en/of wachtwoord goed waren?",
+"You will receive a link to reset your password via Email." => "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail.",
"Username" => "Gebruikersnaam",
+"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?" => "Je bestanden zijn versleuteld. Als je geen recoverykey hebt ingeschakeld is er geen manier om je data terug te krijgen indien je je wachtwoord reset!\nAls je niet weet wat te doen, neem dan alsjeblieft contact op met je administrator eer je doorgaat.\nWil je echt doorgaan?",
+"Yes, I really want to reset my password now" => "Ja, ik wil mijn wachtwoord nu echt resetten",
"Request reset" => "Resetaanvraag",
"Your password was reset" => "Je wachtwoord is gewijzigd",
"To login page" => "Naar de login-pagina",
-"New password" => "Nieuw",
+"New password" => "Nieuw wachtwoord",
"Reset password" => "Reset wachtwoord",
"Personal" => "Persoonlijk",
"Users" => "Gebruikers",
@@ -105,15 +104,17 @@
"Help" => "Help",
"Access forbidden" => "Toegang verboden",
"Cloud not found" => "Cloud niet gevonden",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!",
+"web services under your control" => "Webdiensten in eigen beheer",
"Edit categories" => "Wijzig 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.",
-"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>.",
+"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)",
+"Please update your PHP installation to use ownCloud securely." => "Werk je 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 resettokens 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." => "Je 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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">hier</a> te vinden.",
"Create an <strong>admin account</strong>" => "Maak een <strong>beheerdersaccount</strong> aan",
"Advanced" => "Geavanceerd",
"Data folder" => "Gegevensmap",
@@ -123,19 +124,19 @@
"Database password" => "Wachtwoord database",
"Database name" => "Naam database",
"Database tablespace" => "Database tablespace",
-"Database host" => "Database server",
+"Database host" => "Databaseserver",
"Finish setup" => "Installatie afronden",
-"web services under your control" => "Webdiensten in eigen beheer",
"%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.",
"Log out" => "Afmelden",
"Automatic logon rejected!" => "Automatische aanmelding geweigerd!",
-"If you did not change your password recently, your account may be compromised!" => "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!",
-"Please change your password to secure your account again." => "Wijzig uw wachtwoord zodat uw account weer beveiligd is.",
-"Lost your password?" => "Uw wachtwoord vergeten?",
+"If you did not change your password recently, your account may be compromised!" => "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!",
+"Please change your password to secure your account again." => "Wijzig je wachtwoord zodat je account weer beveiligd is.",
+"Lost your password?" => "Wachtwoord vergeten?",
"remember" => "onthoud gegevens",
"Log in" => "Meld je aan",
"Alternative Logins" => "Alternatieve inlogs",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo daar,<br><br> %s deelde »%s« met jou.<br><a href=\"%s\">Bekijk!</a><br><br>Veel plezier!",
"prev" => "vorige",
"next" => "volgende",
-"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren."
+"Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren..."
);
diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php
index de181ccc7ad..67dbe32ff61 100644
--- a/core/l10n/nn_NO.php
+++ b/core/l10n/nn_NO.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Brukaren %s delte ei fil med deg",
-"User %s shared a folder with you" => "Brukaren %s delte ei mappe med deg",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Brukaren %s delte fila «%s» med deg. Du kan lasta ho ned her: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Brukaren %s delte mappa «%s» med deg. Du kan lasta ho ned her: %s",
"Category type not provided." => "Ingen kategoritype.",
"No category to add?" => "Ingen kategori å leggja til?",
"This category already exists: %s" => "Denne kategorien finst alt: %s",
@@ -104,6 +100,7 @@
"Help" => "Hjelp",
"Access forbidden" => "Tilgang forbudt",
"Cloud not found" => "Fann ikkje skyen",
+"web services under your control" => "Vev tjenester under din kontroll",
"Edit categories" => "Endra kategoriar",
"Add" => "Legg til",
"Security Warning" => "Tryggleiksåtvaring",
@@ -124,7 +121,6 @@
"Database tablespace" => "Tabellnamnrom for database",
"Database host" => "Databasetenar",
"Finish setup" => "Fullfør oppsettet",
-"web services under your control" => "Vevtenester under din kontroll",
"%s is available. Get more information on how to update." => "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer.",
"Log out" => "Logg ut",
"Automatic logon rejected!" => "Automatisk innlogging avvist!",
diff --git a/core/l10n/oc.php b/core/l10n/oc.php
index 1d14428f183..4440444885d 100644
--- a/core/l10n/oc.php
+++ b/core/l10n/oc.php
@@ -74,6 +74,7 @@
"Help" => "Ajuda",
"Access forbidden" => "Acces enebit",
"Cloud not found" => "Nívol pas trobada",
+"web services under your control" => "Services web jos ton contraròtle",
"Edit categories" => "Edita categorias",
"Add" => "Ajusta",
"Security Warning" => "Avertiment de securitat",
@@ -88,7 +89,6 @@
"Database tablespace" => "Espandi de taula de basa de donadas",
"Database host" => "Òste de basa de donadas",
"Finish setup" => "Configuracion acabada",
-"web services under your control" => "Services web jos ton contraròtle",
"Log out" => "Sortida",
"Lost your password?" => "L'as perdut lo senhal ?",
"remember" => "bremba-te",
diff --git a/core/l10n/pl.php b/core/l10n/pl.php
index 045da821f2e..4d05e4fcd54 100644
--- a/core/l10n/pl.php
+++ b/core/l10n/pl.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Użytkownik %s udostępnił ci plik",
-"User %s shared a folder with you" => "Użytkownik %s udostępnił ci folder",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Użytkownik %s udostępnił ci plik „%s”. Możesz pobrać go stąd: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Użytkownik %s udostępnił ci folder „%s”. Możesz pobrać go stąd: %s",
+"%s shared »%s« with you" => "%s Współdzielone »%s« z tobą",
"Category type not provided." => "Nie podano typu kategorii.",
"No category to add?" => "Brak kategorii do dodania?",
"This category already exists: %s" => "Ta kategoria już istnieje: %s",
@@ -93,6 +90,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Żądanie niepowiodło się!<br>Czy Twój email/nazwa użytkownika są poprawne?",
"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.",
"Username" => "Nazwa użytkownika",
+"Yes, I really want to reset my password now" => "Tak, naprawdę chcę zresetować hasło teraz",
"Request reset" => "Żądanie resetowania",
"Your password was reset" => "Zresetowano hasło",
"To login page" => "Do strony logowania",
@@ -105,6 +103,7 @@
"Help" => "Pomoc",
"Access forbidden" => "Dostęp zabroniony",
"Cloud not found" => "Nie odnaleziono chmury",
+"web services under your control" => "Kontrolowane serwisy",
"Edit categories" => "Edytuj kategorie",
"Add" => "Dodaj",
"Security Warning" => "Ostrzeżenie o zabezpieczeniach",
@@ -125,7 +124,6 @@
"Database tablespace" => "Obszar tabel bazy danych",
"Database host" => "Komputer bazy danych",
"Finish setup" => "Zakończ konfigurowanie",
-"web services under your control" => "Kontrolowane serwisy",
"%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.",
"Log out" => "Wyloguj",
"Automatic logon rejected!" => "Automatyczne logowanie odrzucone!",
diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php
index 59c8f69aee7..f57c0a29291 100644
--- a/core/l10n/pt_BR.php
+++ b/core/l10n/pt_BR.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "O usuário %s compartilhou um arquivo com você",
-"User %s shared a folder with you" => "O usuário %s compartilhou uma pasta com você",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O usuário %s compartilhou com você o arquivo \"%s\", que está disponível para download em: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuário %s compartilhou com você a pasta \"%s\", que está disponível para download em: %s",
+"%s shared »%s« with you" => "%s compartilhou »%s« com você",
"Category type not provided." => "Tipo de categoria não fornecido.",
"No category to add?" => "Nenhuma categoria a adicionar?",
"This category already exists: %s" => "Esta categoria já existe: %s",
@@ -93,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "O pedido falhou! <br>Certifique-se que seu e-mail/username estavam corretos?",
"You will receive a link to reset your password via Email." => "Você receberá um link para redefinir sua senha por e-mail.",
"Username" => "Nome de usuário",
+"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?" => "Seus arquivos estão encriptados. Se você não habilitou a chave de recuperação, não haverá maneira de recuperar seus dados após criar uma nova senha. Se você não tem certeza do que fazer, por favor entre em contato com o administrador antes de continuar. Tem certeza que realmente quer continuar?",
+"Yes, I really want to reset my password now" => "Sim, realmente quero criar uma nova senha.",
"Request reset" => "Pedir redefinição",
"Your password was reset" => "Sua senha foi redefinida",
"To login page" => "Para a página de login",
@@ -105,6 +104,8 @@
"Help" => "Ajuda",
"Access forbidden" => "Acesso proibido",
"Cloud not found" => "Cloud não encontrado",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!",
+"web services under your control" => "serviços web sob seu controle",
"Edit categories" => "Editar categorias",
"Add" => "Adicionar",
"Security Warning" => "Aviso de Segurança",
@@ -125,7 +126,6 @@
"Database tablespace" => "Espaço de tabela do banco de dados",
"Database host" => "Host do banco de dados",
"Finish setup" => "Concluir configuração",
-"web services under your control" => "serviços web sob seu controle",
"%s is available. Get more information on how to update." => "%s está disponível. Obtenha mais informações sobre como atualizar.",
"Log out" => "Sair",
"Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!",
@@ -135,6 +135,7 @@
"remember" => "lembrar",
"Log in" => "Fazer login",
"Alternative Logins" => "Logins alternativos",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Olá,<br><br>apenas para você saber que %s compartilhou %s com você.<br><a href=\"%s\">Veja: </a><br><br>Abraços!",
"prev" => "anterior",
"next" => "próximo",
"Updating ownCloud to version %s, this may take a while." => "Atualizando ownCloud para a versão %s, isto pode levar algum tempo."
diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php
index f6de2db4fb6..77c27b641d1 100644
--- a/core/l10n/pt_PT.php
+++ b/core/l10n/pt_PT.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "O utilizador %s partilhou um ficheiro consigo.",
-"User %s shared a folder with you" => "O utilizador %s partilhou uma pasta consigo.",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "O utilizador %s partilhou o ficheiro \"%s\" consigo. Está disponível para download aqui: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O utilizador %s partilhou a pasta \"%s\" consigo. Está disponível para download aqui: %s",
"Category type not provided." => "Tipo de categoria não fornecido",
"No category to add?" => "Nenhuma categoria para adicionar?",
"This category already exists: %s" => "A categoria já existe: %s",
@@ -105,6 +101,7 @@
"Help" => "Ajuda",
"Access forbidden" => "Acesso interdito",
"Cloud not found" => "Cloud nao encontrada",
+"web services under your control" => "serviços web sob o seu controlo",
"Edit categories" => "Editar categorias",
"Add" => "Adicionar",
"Security Warning" => "Aviso de Segurança",
@@ -125,7 +122,6 @@
"Database tablespace" => "Tablespace da base de dados",
"Database host" => "Anfitrião da base de dados",
"Finish setup" => "Acabar instalação",
-"web services under your control" => "serviços web sob o seu controlo",
"%s is available. Get more information on how to update." => "%s está disponível. Tenha mais informações como actualizar.",
"Log out" => "Sair",
"Automatic logon rejected!" => "Login automático rejeitado!",
diff --git a/core/l10n/ro.php b/core/l10n/ro.php
index 3d25a5f042b..327fb72f430 100644
--- a/core/l10n/ro.php
+++ b/core/l10n/ro.php
@@ -1,9 +1,6 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Utilizatorul %s a partajat un fișier cu tine",
-"User %s shared a folder with you" => "Utilizatorul %s a partajat un dosar cu tine",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat fișierul \"%s\" cu tine. Îl poți descărca de aici: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s ",
-"Category type not provided." => "Tipul de categorie nu este prevazut",
+"%s shared »%s« with you" => "%s Partajat »%s« cu tine de",
+"Category type not provided." => "Tipul de categorie nu a fost specificat.",
"No category to add?" => "Nici o categorie de adăugat?",
"This category already exists: %s" => "Această categorie deja există: %s",
"Object type not provided." => "Tipul obiectului nu este prevazut",
@@ -46,6 +43,7 @@
"years ago" => "ani în urmă",
"Choose" => "Alege",
"Cancel" => "Anulare",
+"Error loading file picker template" => "Eroare la încărcarea șablonului selectorului de fișiere",
"Yes" => "Da",
"No" => "Nu",
"Ok" => "Ok",
@@ -92,6 +90,8 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Cerere esuata!<br>Esti sigur ca email-ul/numele de utilizator sunt corecte?",
"You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email",
"Username" => "Nume utilizator",
+"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?" => "Fișierele tale sunt criptate. Dacă nu ai activat o cheie de recuperare, nu va mai exista nici o metodă prin care să îți recuperezi datele după resetarea parole. Dacă nu ești sigur în privința la ce ai de făcut, contactează un administrator înainte să continuii. Chiar vrei să continui?",
+"Yes, I really want to reset my password now" => "Da, eu chiar doresc să îmi resetez parola acum",
"Request reset" => "Cerere trimisă",
"Your password was reset" => "Parola a fost resetată",
"To login page" => "Spre pagina de autentificare",
@@ -104,6 +104,8 @@
"Help" => "Ajutor",
"Access forbidden" => "Acces interzis",
"Cloud not found" => "Nu s-a găsit",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!",
+"web services under your control" => "servicii web controlate de tine",
"Edit categories" => "Editează categorii",
"Add" => "Adaugă",
"Security Warning" => "Avertisment de securitate",
@@ -124,7 +126,7 @@
"Database tablespace" => "Tabela de spațiu a bazei de date",
"Database host" => "Bază date",
"Finish setup" => "Finalizează instalarea",
-"web services under your control" => "servicii web controlate de tine",
+"%s is available. Get more information on how to update." => "%s este disponibil. Vezi mai multe informații despre procesul de actualizare.",
"Log out" => "Ieșire",
"Automatic logon rejected!" => "Logare automata respinsa",
"If you did not change your password recently, your account may be compromised!" => "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis",
@@ -133,6 +135,7 @@
"remember" => "amintește",
"Log in" => "Autentificare",
"Alternative Logins" => "Conectări alternative",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Salutare, <br><br>Vă aduc la cunoștință că %s a partajat %s cu tine.<br><a href=\"%s\">Accesează-l!</a><br><br>Numai bine!",
"prev" => "precedentul",
"next" => "următorul",
"Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente."
diff --git a/core/l10n/ru.php b/core/l10n/ru.php
index 608b9271df5..17e6150f908 100644
--- a/core/l10n/ru.php
+++ b/core/l10n/ru.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Пользователь %s поделился с вами файлом",
-"User %s shared a folder with you" => "Пользователь %s открыл вам доступ к папке",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл вам доступ к папке \"%s\". Она доступна для загрузки здесь: %s",
+"%s shared »%s« with you" => "%s поделился »%s« с вами",
"Category type not provided." => "Тип категории не предоставлен",
"No category to add?" => "Нет категорий для добавления?",
"This category already exists: %s" => "Эта категория уже существует: %s",
@@ -93,6 +90,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Что-то не так. Вы уверены что Email / Имя пользователя указаны верно?",
"You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.",
"Username" => "Имя пользователя",
+"Yes, I really want to reset my password now" => "Да, я действительно хочу сбросить свой пароль",
"Request reset" => "Запросить сброс",
"Your password was reset" => "Ваш пароль был сброшен",
"To login page" => "На страницу авторизации",
@@ -105,6 +103,8 @@
"Help" => "Помощь",
"Access forbidden" => "Доступ запрещён",
"Cloud not found" => "Облако не найдено",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!",
+"web services under your control" => "веб-сервисы под вашим управлением",
"Edit categories" => "Редактировать категрии",
"Add" => "Добавить",
"Security Warning" => "Предупреждение безопасности",
@@ -125,7 +125,6 @@
"Database tablespace" => "Табличое пространство базы данных",
"Database host" => "Хост базы данных",
"Finish setup" => "Завершить установку",
-"web services under your control" => "веб-сервисы под вашим управлением",
"%s is available. Get more information on how to update." => "%s доступно. Получить дополнительную информацию о порядке обновления.",
"Log out" => "Выйти",
"Automatic logon rejected!" => "Автоматический вход в систему отключен!",
@@ -135,6 +134,7 @@
"remember" => "запомнить",
"Log in" => "Войти",
"Alternative Logins" => "Альтернативные имена пользователя",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Приветствую,<br><br>просто даю знать, что %s поделился »%s« с вами.<br><a href=\"%s\">Посмотреть!</a><br><br>Удачи!",
"prev" => "пред",
"next" => "след",
"Updating ownCloud to version %s, this may take a while." => "Производится обновление ownCloud до версии %s. Это может занять некоторое время."
diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php
index be7c1a24aad..b27f1c6c985 100644
--- a/core/l10n/si_LK.php
+++ b/core/l10n/si_LK.php
@@ -66,6 +66,7 @@
"Help" => "උදව්",
"Access forbidden" => "ඇතුල් වීම තහනම්",
"Cloud not found" => "සොයා ගත නොහැක",
+"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්",
"Edit categories" => "ප්‍රභේදයන් සංස්කරණය",
"Add" => "එකතු කරන්න",
"Security Warning" => "ආරක්ෂක නිවේදනයක්",
@@ -79,7 +80,6 @@
"Database name" => "දත්තගබඩාවේ නම",
"Database host" => "දත්තගබඩා සේවාදායකයා",
"Finish setup" => "ස්ථාපනය කිරීම අවසන් කරන්න",
-"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්",
"Log out" => "නික්මීම",
"Lost your password?" => "මුරපදය අමතකද?",
"remember" => "මතක තබාගන්න",
diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php
index 2dfaa01b5a1..ead3842e452 100644
--- a/core/l10n/sk_SK.php
+++ b/core/l10n/sk_SK.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Používateľ %s zdieľa s Vami súbor",
-"User %s shared a folder with you" => "Používateľ %s zdieľa s Vami priečinok",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami priečinok \"%s\". Môžete si ho stiahnuť tu: %s",
+"%s shared »%s« with you" => "%s s Vami zdieľa »%s«",
"Category type not provided." => "Neposkytnutý typ kategórie.",
"No category to add?" => "Žiadna kategória pre pridanie?",
"This category already exists: %s" => "Kategória: %s už existuje.",
@@ -46,6 +43,7 @@
"years ago" => "pred rokmi",
"Choose" => "Výber",
"Cancel" => "Zrušiť",
+"Error loading file picker template" => "Chyba pri načítaní šablóny výberu súborov",
"Yes" => "Áno",
"No" => "Nie",
"Ok" => "Ok",
@@ -92,6 +90,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "Požiadavka zlyhala.<br>Uistili ste sa, že Vaše používateľské meno a email sú správne?",
"You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.",
"Username" => "Meno používateľa",
+"Yes, I really want to reset my password now" => "Áno, želám si teraz obnoviť svoje heslo",
"Request reset" => "Požiadať o obnovenie",
"Your password was reset" => "Vaše heslo bolo obnovené",
"To login page" => "Na prihlasovaciu stránku",
@@ -104,6 +103,8 @@
"Help" => "Pomoc",
"Access forbidden" => "Prístup odmietnutý",
"Cloud not found" => "Nenájdené",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka",
+"web services under your control" => "webové služby pod Vašou kontrolou",
"Edit categories" => "Upraviť kategórie",
"Add" => "Pridať",
"Security Warning" => "Bezpečnostné varovanie",
@@ -124,7 +125,6 @@
"Database tablespace" => "Tabuľkový priestor databázy",
"Database host" => "Server databázy",
"Finish setup" => "Dokončiť inštaláciu",
-"web services under your control" => "webové služby pod Vašou kontrolou",
"%s is available. Get more information on how to update." => "%s je dostupná. Získajte viac informácií k postupu aktualizáce.",
"Log out" => "Odhlásiť",
"Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!",
@@ -134,6 +134,7 @@
"remember" => "zapamätať",
"Log in" => "Prihlásiť sa",
"Alternative Logins" => "Alternatívne prihlasovanie",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ahoj,<br><br>chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: <br><a href=\"%s\">zde</a>.<br><br>Vďaka",
"prev" => "späť",
"next" => "ďalej",
"Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať."
diff --git a/core/l10n/sl.php b/core/l10n/sl.php
index a433aa2cc4e..3b539f7fe22 100644
--- a/core/l10n/sl.php
+++ b/core/l10n/sl.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Uporabnik %s je omogočil souporabo datoteke",
-"User %s shared a folder with you" => "Uporabnik %s je omogočil souporabo mape",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Uporabnik %s je omogočil souporabo datoteke \"%s\". Prejmete jo lahko preko povezave: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uporabnik %s je omogočil souporabo mape \"%s\". Prejmete jo lahko preko povezave: %s",
"Category type not provided." => "Vrsta kategorije ni podana.",
"No category to add?" => "Ali ni kategorije za dodajanje?",
"This category already exists: %s" => "Kategorija že obstaja: %s",
@@ -104,6 +100,7 @@
"Help" => "Pomoč",
"Access forbidden" => "Dostop je prepovedan",
"Cloud not found" => "Oblaka ni mogoče najti",
+"web services under your control" => "spletne storitve pod vašim nadzorom",
"Edit categories" => "Uredi kategorije",
"Add" => "Dodaj",
"Security Warning" => "Varnostno opozorilo",
@@ -124,7 +121,6 @@
"Database tablespace" => "Razpredelnica podatkovne zbirke",
"Database host" => "Gostitelj podatkovne zbirke",
"Finish setup" => "Končaj namestitev",
-"web services under your control" => "spletne storitve pod vašim nadzorom",
"%s is available. Get more information on how to update." => "%s je na voljo. Pridobite več podrobnosti za posodobitev.",
"Log out" => "Odjava",
"Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!",
diff --git a/core/l10n/sq.php b/core/l10n/sq.php
index 40562add933..f5d7d933768 100644
--- a/core/l10n/sq.php
+++ b/core/l10n/sq.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Përdoruesi %s ndau me ju një skedar",
-"User %s shared a folder with you" => "Përdoruesi %s ndau me ju një dosje",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Përdoruesi %s ndau me ju skedarin \"%s\". Ky skedar është gati për shkarkim nga këtu: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Përdoruesi %s ndau me ju dosjen \"%s\". Kjo dosje është gati për shkarkim nga këto: %s",
"Category type not provided." => "Mungon tipi i kategorisë.",
"No category to add?" => "Asnjë kategori për të shtuar?",
"This category already exists: %s" => "Kjo kategori tashmë ekziston: %s",
@@ -104,6 +100,7 @@
"Help" => "Ndihmë",
"Access forbidden" => "Ndalohet hyrja",
"Cloud not found" => "Cloud-i nuk u gjet",
+"web services under your control" => "shërbime web nën kontrollin tënd",
"Edit categories" => "Ndrysho kategoritë",
"Add" => "Shto",
"Security Warning" => "Paralajmërim sigurie",
@@ -124,7 +121,6 @@
"Database tablespace" => "Tablespace-i i database-it",
"Database host" => "Pozicioni (host) i database-it",
"Finish setup" => "Mbaro setup-in",
-"web services under your control" => "shërbime web nën kontrollin tënd",
"Log out" => "Dalje",
"Automatic logon rejected!" => "Hyrja automatike u refuzua!",
"If you did not change your password recently, your account may be compromised!" => "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të jetë komprometuar.",
diff --git a/core/l10n/sr.php b/core/l10n/sr.php
index 49664f19f34..a85e1bfb7e1 100644
--- a/core/l10n/sr.php
+++ b/core/l10n/sr.php
@@ -1,6 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Корисник %s дели са вама датотеку",
-"User %s shared a folder with you" => "Корисник %s дели са вама директоријум",
"Category type not provided." => "Врста категорије није унет.",
"No category to add?" => "Додати још неку категорију?",
"Object type not provided." => "Врста објекта није унета.",
@@ -95,6 +93,7 @@
"Help" => "Помоћ",
"Access forbidden" => "Забрањен приступ",
"Cloud not found" => "Облак није нађен",
+"web services under your control" => "веб сервиси под контролом",
"Edit categories" => "Измени категорије",
"Add" => "Додај",
"Security Warning" => "Сигурносно упозорење",
@@ -111,7 +110,6 @@
"Database tablespace" => "Радни простор базе података",
"Database host" => "Домаћин базе",
"Finish setup" => "Заврши подешавање",
-"web services under your control" => "веб сервиси под контролом",
"Log out" => "Одјава",
"Automatic logon rejected!" => "Аутоматска пријава је одбијена!",
"If you did not change your password recently, your account may be compromised!" => "Ако ускоро не промените лозинку ваш налог може бити компромитован!",
diff --git a/core/l10n/sv.php b/core/l10n/sv.php
index d4154678b65..492af2cff3e 100644
--- a/core/l10n/sv.php
+++ b/core/l10n/sv.php
@@ -1,8 +1,5 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Användare %s delade en fil med dig",
-"User %s shared a folder with you" => "Användare %s delade en mapp med dig",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Användare %s delade filen \"%s\" med dig. Den finns att ladda ner här: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Användare %s delade mappen \"%s\" med dig. Den finns att ladda ner här: %s",
+"%s shared »%s« with you" => "%s delade »%s« med dig",
"Category type not provided." => "Kategorityp inte angiven.",
"No category to add?" => "Ingen kategori att lägga till?",
"This category already exists: %s" => "Denna kategori finns redan: %s",
@@ -46,6 +43,7 @@
"years ago" => "år sedan",
"Choose" => "Välj",
"Cancel" => "Avbryt",
+"Error loading file picker template" => "Fel vid inläsning av filväljarens mall",
"Yes" => "Ja",
"No" => "Nej",
"Ok" => "Ok",
@@ -85,11 +83,14 @@
"Sending ..." => "Skickar ...",
"Email sent" => "E-post skickat",
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-gemenskapen</a>.",
-"The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud",
+"The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.",
"ownCloud password reset" => "ownCloud lösenordsåterställning",
"Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}",
+"The link to reset your password has been sent to your email.<br>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änken för att återställa ditt lösenorden har skickats till din e-postadress<br>Om du inte har erhållit meddelandet inom kort, vänligen kontrollera din skräppost-mapp<br>Om den inte finns där, vänligen kontakta din administratör.",
+"Request failed!<br>Did you make sure your email/username was right?" => "Begäran misslyckades!<br>Är du helt säker på att din e-postadress/användarnamn är korrekt?",
"You will receive a link to reset your password via Email." => "Du får en länk att återställa ditt lösenord via e-post.",
"Username" => "Användarnamn",
+"Yes, I really want to reset my password now" => "Ja, jag vill verkligen återställa mitt lösenord nu",
"Request reset" => "Begär återställning",
"Your password was reset" => "Ditt lösenord har återställts",
"To login page" => "Till logginsidan",
@@ -102,6 +103,8 @@
"Help" => "Hjälp",
"Access forbidden" => "Åtkomst förbjuden",
"Cloud not found" => "Hittade inget moln",
+"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!",
+"web services under your control" => "webbtjänster under din kontroll",
"Edit categories" => "Editera kategorier",
"Add" => "Lägg till",
"Security Warning" => "Säkerhetsvarning",
@@ -122,7 +125,7 @@
"Database tablespace" => "Databas tabellutrymme",
"Database host" => "Databasserver",
"Finish setup" => "Avsluta installation",
-"web services under your control" => "webbtjänster under din kontroll",
+"%s is available. Get more information on how to update." => "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera.",
"Log out" => "Logga ut",
"Automatic logon rejected!" => "Automatisk inloggning inte tillåten!",
"If you did not change your password recently, your account may be compromised!" => "Om du inte har ändrat ditt lösenord nyligen så kan ditt konto vara manipulerat!",
@@ -131,6 +134,7 @@
"remember" => "kom ihåg",
"Log in" => "Logga in",
"Alternative Logins" => "Alternativa inloggningar",
+"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hej där,<br><br>ville bara informera dig om att %s delade »%s« med dig.<br><a href=\"%s\">Titta på den!</a><br><br>Hörs!",
"prev" => "föregående",
"next" => "nästa",
"Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund."
diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php
index b67f5e967ec..0770805ddf5 100644
--- a/core/l10n/ta_LK.php
+++ b/core/l10n/ta_LK.php
@@ -90,6 +90,7 @@
"Help" => "உதவி",
"Access forbidden" => "அணுக தடை",
"Cloud not found" => "Cloud காணப்படவில்லை",
+"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது",
"Edit categories" => "வகைகளை தொகுக்க",
"Add" => "சேர்க்க",
"Security Warning" => "பாதுகாப்பு எச்சரிக்கை",
@@ -106,7 +107,6 @@
"Database tablespace" => "தரவுத்தள அட்டவணை",
"Database host" => "தரவுத்தள ஓம்புனர்",
"Finish setup" => "அமைப்பை முடிக்க",
-"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது",
"Log out" => "விடுபதிகை செய்க",
"Automatic logon rejected!" => "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!",
"If you did not change your password recently, your account may be compromised!" => "உங்களுடைய கடவுச்சொல்லை அண்மையில் மாற்றவில்லையின், உங்களுடைய கணக்கு சமரசமாகிவிடும்!",
diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php
index 66f5629b933..83642ed89cb 100644
--- a/core/l10n/th_TH.php
+++ b/core/l10n/th_TH.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "ผู้ใช้งาน %s ได้แชร์ไฟล์ให้กับคุณ",
-"User %s shared a folder with you" => "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ให้กับคุณ",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "ผู้ใช้งาน %s ได้แชร์ไฟล์ \"%s\" ให้กับคุณ และคุณสามารถสามารถดาวน์โหลดไฟล์ดังกล่าวได้จากที่นี่: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ผู้ใช้งาน %s ได้แชร์โฟลเดอร์ \"%s\" ให้กับคุณ และคุณสามารถดาวน์โหลดโฟลเดอร์ดังกล่าวได้จากที่นี่: %s",
"Category type not provided." => "ยังไม่ได้ระบุชนิดของหมวดหมู่",
"No category to add?" => "ไม่มีหมวดหมู่ที่ต้องการเพิ่ม?",
"Object type not provided." => "ชนิดของวัตถุยังไม่ได้ถูกระบุ",
@@ -101,6 +97,7 @@
"Help" => "ช่วยเหลือ",
"Access forbidden" => "การเข้าถึงถูกหวงห้าม",
"Cloud not found" => "ไม่พบ Cloud",
+"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้",
"Edit categories" => "แก้ไขหมวดหมู่",
"Add" => "เพิ่ม",
"Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย",
@@ -117,7 +114,6 @@
"Database tablespace" => "พื้นที่ตารางในฐานข้อมูล",
"Database host" => "Database host",
"Finish setup" => "ติดตั้งเรียบร้อยแล้ว",
-"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้",
"Log out" => "ออกจากระบบ",
"Automatic logon rejected!" => "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว",
"If you did not change your password recently, your account may be compromised!" => "หากคุณยังไม่ได้เปลี่ยนรหัสผ่านของคุณเมื่อเร็วๆนี้, บัญชีของคุณอาจถูกบุกรุกโดยผู้อื่น",
diff --git a/core/l10n/tr.php b/core/l10n/tr.php
index 47574a01259..f6112040c50 100644
--- a/core/l10n/tr.php
+++ b/core/l10n/tr.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s kullanıcısı sizinle bir dosyayı paylaştı",
-"User %s shared a folder with you" => "%s kullanıcısı sizinle bir dizini paylaştı",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s kullanıcısı \"%s\" dosyasını sizinle paylaştı. %s adresinden indirilebilir",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s kullanıcısı \"%s\" dizinini sizinle paylaştı. %s adresinden indirilebilir",
"Category type not provided." => "Kategori türü desteklenmemektedir.",
"No category to add?" => "Eklenecek kategori yok?",
"This category already exists: %s" => "Bu kategori zaten mevcut: %s",
@@ -46,6 +42,7 @@
"years ago" => "yıl önce",
"Choose" => "seç",
"Cancel" => "İptal",
+"Error loading file picker template" => "Seçici şablon dosya yüklemesinde hata",
"Yes" => "Evet",
"No" => "Hayır",
"Ok" => "Tamam",
@@ -104,6 +101,7 @@
"Help" => "Yardım",
"Access forbidden" => "Erişim yasaklı",
"Cloud not found" => "Bulut bulunamadı",
+"web services under your control" => "Bilgileriniz güvenli ve şifreli",
"Edit categories" => "Kategorileri düzenle",
"Add" => "Ekle",
"Security Warning" => "Güvenlik Uyarisi",
@@ -124,7 +122,6 @@
"Database tablespace" => "Veritabanı tablo alanı",
"Database host" => "Veritabanı sunucusu",
"Finish setup" => "Kurulumu tamamla",
-"web services under your control" => "Bilgileriniz güvenli ve şifreli",
"%s is available. Get more information on how to update." => "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın.",
"Log out" => "Çıkış yap",
"Automatic logon rejected!" => "Otomatik oturum açma reddedildi!",
diff --git a/core/l10n/uk.php b/core/l10n/uk.php
index 65577297c3c..11ebda3af89 100644
--- a/core/l10n/uk.php
+++ b/core/l10n/uk.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "Користувач %s поділився файлом з вами",
-"User %s shared a folder with you" => "Користувач %s поділився текою з вами",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився файлом \"%s\" з вами. Він доступний для завантаження звідси: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Користувач %s поділився текою \"%s\" з вами. Він доступний для завантаження звідси: %s",
"Category type not provided." => "Не вказано тип категорії.",
"No category to add?" => "Відсутні категорії для додавання?",
"This category already exists: %s" => "Ця категорія вже існує: %s",
@@ -102,6 +98,7 @@
"Help" => "Допомога",
"Access forbidden" => "Доступ заборонено",
"Cloud not found" => "Cloud не знайдено",
+"web services under your control" => "підконтрольні Вам веб-сервіси",
"Edit categories" => "Редагувати категорії",
"Add" => "Додати",
"Security Warning" => "Попередження про небезпеку",
@@ -122,7 +119,6 @@
"Database tablespace" => "Таблиця бази даних",
"Database host" => "Хост бази даних",
"Finish setup" => "Завершити налаштування",
-"web services under your control" => "підконтрольні Вам веб-сервіси",
"Log out" => "Вихід",
"Automatic logon rejected!" => "Автоматичний вхід в систему відхилений!",
"If you did not change your password recently, your account may be compromised!" => "Якщо Ви не міняли пароль останнім часом, Ваш обліковий запис може бути скомпрометованим!",
diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php
index cf26212c25e..0e0489bf33d 100644
--- a/core/l10n/ur_PK.php
+++ b/core/l10n/ur_PK.php
@@ -55,6 +55,7 @@
"Help" => "مدد",
"Access forbidden" => "پہنچ کی اجازت نہیں",
"Cloud not found" => "نہیں مل سکا",
+"web services under your control" => "آپ کے اختیار میں ویب سروسیز",
"Edit categories" => "زمرہ جات کی تدوین کریں",
"Add" => "شامل کریں",
"Create an <strong>admin account</strong>" => "ایک<strong> ایڈمن اکاؤنٹ</strong> بنائیں",
@@ -68,7 +69,6 @@
"Database tablespace" => "ڈیٹابیس ٹیبل سپیس",
"Database host" => "ڈیٹابیس ہوسٹ",
"Finish setup" => "سیٹ اپ ختم کریں",
-"web services under your control" => "آپ کے اختیار میں ویب سروسیز",
"Log out" => "لاگ آؤٹ",
"Lost your password?" => "کیا آپ پاسورڈ بھول گئے ہیں؟",
"remember" => "یاد رکھیں",
diff --git a/core/l10n/vi.php b/core/l10n/vi.php
index 3e320ecf800..ebe6c7006ff 100644
--- a/core/l10n/vi.php
+++ b/core/l10n/vi.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "%s chia sẻ tập tin này cho bạn",
-"User %s shared a folder with you" => "%s chia sẻ thư mục này cho bạn",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Người dùng %s chia sẻ tập tin \"%s\" cho bạn .Bạn có thể tải tại đây : %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Người dùng %s chia sẻ thư mục \"%s\" cho bạn .Bạn có thể tải tại đây : %s",
"Category type not provided." => "Kiểu hạng mục không được cung cấp.",
"No category to add?" => "Không có danh mục được thêm?",
"This category already exists: %s" => "Danh mục này đã tồn tại: %s",
@@ -104,6 +100,7 @@
"Help" => "Giúp đỡ",
"Access forbidden" => "Truy cập bị cấm",
"Cloud not found" => "Không tìm thấy Clound",
+"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn",
"Edit categories" => "Sửa chuyên mục",
"Add" => "Thêm",
"Security Warning" => "Cảnh bảo bảo mật",
@@ -124,7 +121,6 @@
"Database tablespace" => "Cơ sở dữ liệu tablespace",
"Database host" => "Database host",
"Finish setup" => "Cài đặt hoàn tất",
-"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn",
"%s is available. Get more information on how to update." => "%s còn trống. Xem thêm thông tin cách cập nhật.",
"Log out" => "Đăng xuất",
"Automatic logon rejected!" => "Tự động đăng nhập đã bị từ chối !",
diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php
index 2e0d0da6f2f..b4cc129964b 100644
--- a/core/l10n/zh_CN.GB2312.php
+++ b/core/l10n/zh_CN.GB2312.php
@@ -1,13 +1,11 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "用户 %s 与您分享了一个文件",
-"User %s shared a folder with you" => "用户 %s 与您分享了一个文件夹",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您分享了文件“%s”。点击下载:%s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您分享了文件夹“%s”。点击下载:%s",
"Category type not provided." => "未选择分类类型。",
"No category to add?" => "没有分类添加了?",
"This category already exists: %s" => "此分类已存在:%s",
"Object type not provided." => "未选择对象类型。",
+"Error adding %s to favorites." => "在添加 %s 到收藏夹时发生错误。",
"No categories selected for deletion." => "没有选中要删除的分类。",
+"Error removing %s from favorites." => "在移除收藏夹中的 %s 时发生错误。",
"Sunday" => "星期天",
"Monday" => "星期一",
"Tuesday" => "星期二",
@@ -99,6 +97,7 @@
"Help" => "帮助",
"Access forbidden" => "禁止访问",
"Cloud not found" => "云 没有被找到",
+"web services under your control" => "您控制的网络服务",
"Edit categories" => "编辑分类",
"Add" => "添加",
"Security Warning" => "安全警告",
@@ -118,13 +117,12 @@
"Database tablespace" => "数据库表格空间",
"Database host" => "数据库主机",
"Finish setup" => "完成安装",
-"web services under your control" => "您控制的网络服务",
"Log out" => "注销",
"Automatic logon rejected!" => "自动登录被拒绝!",
"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" => "备忘",
+"remember" => "记住登录",
"Log in" => "登陆",
"Alternative Logins" => "备选登录",
"prev" => "后退",
diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php
index 016a1362569..29fef5ff220 100644
--- a/core/l10n/zh_CN.php
+++ b/core/l10n/zh_CN.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "用户 %s 与您共享了一个文件",
-"User %s shared a folder with you" => "用户 %s 与您共享了一个文件夹",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s",
"Category type not provided." => "未提供分类类型。",
"No category to add?" => "没有可添加分类?",
"This category already exists: %s" => "此分类已存在:%s",
@@ -105,6 +101,7 @@
"Help" => "帮助",
"Access forbidden" => "访问禁止",
"Cloud not found" => "未找到云",
+"web services under your control" => "您控制的web服务",
"Edit categories" => "编辑分类",
"Add" => "增加",
"Security Warning" => "安全警告",
@@ -125,7 +122,6 @@
"Database tablespace" => "数据库表空间",
"Database host" => "数据库主机",
"Finish setup" => "安装完成",
-"web services under your control" => "您控制的web服务",
"%s is available. Get more information on how to update." => "%s 可用。获取更多关于如何升级的信息。",
"Log out" => "注销",
"Automatic logon rejected!" => "自动登录被拒绝!",
diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php
index 10279c7ba18..306ae7acb8c 100644
--- a/core/l10n/zh_TW.php
+++ b/core/l10n/zh_TW.php
@@ -1,8 +1,4 @@
<?php $TRANSLATIONS = array(
-"User %s shared a file with you" => "用戶 %s 與您分享了一個檔案",
-"User %s shared a folder with you" => "用戶 %s 與您分享了一個資料夾",
-"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了檔案 \"%s\" ,您可以從這裡下載它: %s",
-"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用戶 %s 與您分享了資料夾 \"%s\" ,您可以從這裡下載它: %s",
"Category type not provided." => "未提供分類類型。",
"No category to add?" => "沒有可增加的分類?",
"This category already exists: %s" => "分類已經存在: %s",
@@ -93,6 +89,7 @@
"Request failed!<br>Did you make sure your email/username was right?" => "請求失敗!<br>您確定填入的電子郵件地址或是帳號名稱是正確的嗎?",
"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。",
"Username" => "使用者名稱",
+"Yes, I really want to reset my password now" => "對,我現在想要重設我的密碼。",
"Request reset" => "請求重設",
"Your password was reset" => "您的密碼已重設",
"To login page" => "至登入頁面",
@@ -105,6 +102,7 @@
"Help" => "說明",
"Access forbidden" => "存取被拒",
"Cloud not found" => "未發現雲端",
+"web services under your control" => "由您控制的網路服務",
"Edit categories" => "編輯分類",
"Add" => "增加",
"Security Warning" => "安全性警告",
@@ -125,7 +123,6 @@
"Database tablespace" => "資料庫 tablespace",
"Database host" => "資料庫主機",
"Finish setup" => "完成設定",
-"web services under your control" => "由您控制的網路服務",
"%s is available. Get more information on how to update." => "%s 已經釋出,瞭解更多資訊以進行更新。",
"Log out" => "登出",
"Automatic logon rejected!" => "自動登入被拒!",
diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php
index fbcf4a87f22..2f996365219 100644
--- a/core/lostpassword/controller.php
+++ b/core/lostpassword/controller.php
@@ -8,8 +8,11 @@
class OC_Core_LostPassword_Controller {
protected static function displayLostPasswordPage($error, $requested) {
+ $isEncrypted = OC_App::isEnabled('files_encryption');
OC_Template::printGuestPage('core/lostpassword', 'lostpassword',
- array('error' => $error, 'requested' => $requested));
+ array('error' => $error,
+ 'requested' => $requested,
+ 'isEncrypted' => $isEncrypted));
}
protected static function displayResetPasswordPage($success, $args) {
@@ -29,7 +32,16 @@ class OC_Core_LostPassword_Controller {
}
public static function sendEmail($args) {
- if (OC_User::userExists($_POST['user'])) {
+
+ $isEncrypted = OC_App::isEnabled('files_encryption');
+
+ if(!$isEncrypted || isset($_POST['continue'])) {
+ $continue = true;
+ } else {
+ $continue = false;
+ }
+
+ if (OC_User::userExists($_POST['user']) && $continue) {
$token = hash('sha256', OC_Util::generate_random_bytes(30).OC_Config::getValue('passwordsalt', ''));
OC_Preferences::setValue($_POST['user'], 'owncloud', 'lostpassword',
hash('sha256', $token)); // Hash the token again to prevent timing attacks
diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php
index c19c6893f13..f5fdb1fb2b3 100644
--- a/core/lostpassword/templates/lostpassword.php
+++ b/core/lostpassword/templates/lostpassword.php
@@ -17,6 +17,12 @@
<input type="text" name="user" id="user" placeholder="" value="" autocomplete="off" required autofocus />
<label for="user" class="infield"><?php print_unescaped($l->t( 'Username' )); ?></label>
<img class="svg" src="<?php print_unescaped(image_path('', 'actions/user.svg')); ?>" alt=""/>
+ <?php if ($_['isEncrypted']): ?>
+ <br /><br />
+ <?php print_unescaped($l->t("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?")); ?><br />
+ <input type="checkbox" name="continue" value="Yes" />
+ <?php print_unescaped($l->t('Yes, I really want to reset my password now')); ?><br/><br/>
+ <?php endif; ?>
</p>
<input type="submit" id="submit" value="<?php print_unescaped($l->t('Request reset')); ?>" />
</fieldset>
diff --git a/core/templates/altmail.php b/core/templates/altmail.php
new file mode 100644
index 00000000000..37dc8eee942
--- /dev/null
+++ b/core/templates/altmail.php
@@ -0,0 +1,9 @@
+<?php
+print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link'])));
+?>
+
+--
+ownCloud - <?php
+print_unescaped($l->t("web services under your control"));
+?>
+http://ownCloud.org
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php
index 336df27ef1c..163e8e3ae7e 100644
--- a/core/templates/layout.base.php
+++ b/core/templates/layout.base.php
@@ -6,7 +6,9 @@
<!--[if gt IE 9]><html class="ng-csp ie"><![endif]-->
<!--[if !IE]><!--><html class="ng-csp"><!--<![endif]-->
<head>
- <title>ownCloud</title>
+ <title>
+ <?php p(OC_Defaults::getName()); ?>
+ </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index a3a8dc5f7ba..4173212dfa3 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -6,7 +6,9 @@
<!--[if gt IE 9]><html class="ng-csp ie"><![endif]-->
<!--[if !IE]><!--><html class="ng-csp"><!--<![endif]-->
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
- <title>ownCloud</title>
+ <title>
+ <?php p(OC_Defaults::getName()); ?>
+ </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="apple-itunes-app" content="app-id=543672169">
<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
@@ -33,10 +35,18 @@
<div id="login">
<header><div id="header">
<img src="<?php print_unescaped(image_path('', 'logo.svg')); ?>" class="svg" alt="ownCloud" />
+ <?php if (OC_Util::getEditionString() !== ''): ?>
+ <div id="logo-claim" style="display:none;">Enterprise Edition</div>
+ <?php endif; ?>
</div></header>
<?php print_unescaped($_['content']); ?>
</div>
- <footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> &ndash;
- <?php p($l->t( 'web services under your control' )); ?></p></footer>
+ <footer>
+ <p class="info">
+ <?php OC_Util::getEditionString() === '' ? '' : p('© 2013 '); ?>
+ <a href="<?php p(OC_Defaults::getBaseUrl())?>">
+ <?php p(OC_Defaults::getEntity()); ?></a>
+ <?php OC_Util::getEditionString() === '' ? print_unescaped(' &ndash; ') : print_unescaped('<br/>'); ?>
+ <?php p(OC_Defaults::getSlogan()); ?></p></footer>
</body>
</html>
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index a3ebf3abd03..8c82a5c028e 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -6,8 +6,11 @@
<!--[if gt IE 9]><html class="ng-csp ie"><![endif]-->
<!--[if !IE]><!--><html class="ng-csp"><!--<![endif]-->
<head data-user="<?php p($_['user_uid']); ?>" data-requesttoken="<?php p($_['requesttoken']); ?>">
- <title><?php p(!empty($_['application'])?$_['application'].' | ':'') ?>ownCloud
- <?php p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?></title>
+ <title>
+ <?php p(!empty($_['application'])?$_['application'].' | ':'');
+ p(OC_Defaults::getName());
+ p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?>
+ </title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="apple-itunes-app" content="app-id=543672169">
@@ -40,7 +43,9 @@
<header><div id="header">
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg"
src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a>
-
+ <?php if (OC_Util::getEditionString() !== ''): ?>
+ <div id="logo-claim" style="display:none;">Enterprise Edition</div>
+ <?php endif; ?>
<ul id="settings" class="svg">
<span id="expand" tabindex="0" role="link">
<span id="expandDisplayName"><?php p(trim($_['user_displayname']) != '' ? $_['user_displayname'] : $_['user_uid']) ?></span>
diff --git a/core/templates/mail.php b/core/templates/mail.php
new file mode 100644
index 00000000000..ebeefd5c7e8
--- /dev/null
+++ b/core/templates/mail.php
@@ -0,0 +1,33 @@
+<table cellspacing="0" cellpadding="0" border="0" width="100%">
+<tr><td>
+<table cellspacing="0" cellpadding="0" border="0" width="600px">
+<tr>
+<td bgcolor="#1d2d44" width="20px">&nbsp;</td>
+<td bgcolor="#1d2d44">
+<img src="<?php print_unescaped(OC_Helper::makeURLAbsolute(image_path('', 'logo-mail.gif'))); ?>" alt="ownCloud"/>
+</td>
+</tr>
+<tr><td bgcolor="#f8f8f8" colspan="2">&nbsp;</td></tr>
+<tr>
+<td bgcolor="#f8f8f8" width="20px">&nbsp;</td>
+<td bgcolor="#f8f8f8" style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">
+<?php
+print_unescaped($l->t('Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href="%s">View it!</a><br><br>Cheers!', array($_['user_displayname'], $_['filename'], $_['link'])));
+?>
+</td>
+</tr>
+<tr><td bgcolor="#f8f8f8" colspan="2">&nbsp;</td></tr>
+<tr>
+<td bgcolor="#f8f8f8" width="20px">&nbsp;</td>
+<td bgcolor="#f8f8f8" style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">--<br>
+ownCloud - <?php
+print_unescaped($l->t('web services under your control'));
+?>
+<br><a href="http://owncloud.org">http://ownCloud.org</a></td>
+</tr>
+<tr>
+<td bgcolor="#f8f8f8" colspan="2">&nbsp;</td>
+</tr>
+</table>
+</td></tr>
+</table>