summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/ajax/share.php8
-rw-r--r--core/ajax/update.php7
-rw-r--r--core/command/app/checkcode.php4
-rw-r--r--core/command/status.php2
-rw-r--r--core/css/apps.css11
-rw-r--r--core/css/fonts.css10
-rw-r--r--core/css/global.css50
-rw-r--r--core/css/header.css9
-rw-r--r--core/css/mobile.css8
-rw-r--r--core/css/styles.css57
-rw-r--r--core/fonts/OpenSans-Regular.woffbin0 -> 20544 bytes
-rw-r--r--core/img/favicon-mask.svg2
-rw-r--r--core/img/favicon.icobin0 -> 5686 bytes
-rw-r--r--core/js/js.js10
-rw-r--r--core/js/mimetype.js2
-rw-r--r--core/js/share.js17
-rw-r--r--core/js/tags.js9
-rw-r--r--core/js/tests/specs/coreSpec.js3
-rw-r--r--core/js/tests/specs/shareSpec.js7
-rw-r--r--core/l10n/ast.js10
-rw-r--r--core/l10n/ast.json10
-rw-r--r--core/l10n/cs_CZ.js5
-rw-r--r--core/l10n/cs_CZ.json5
-rw-r--r--core/l10n/da.js12
-rw-r--r--core/l10n/da.json12
-rw-r--r--core/l10n/el.js11
-rw-r--r--core/l10n/el.json11
-rw-r--r--core/l10n/es.js4
-rw-r--r--core/l10n/es.json4
-rw-r--r--core/l10n/fr.js2
-rw-r--r--core/l10n/fr.json2
-rw-r--r--core/l10n/hu_HU.js12
-rw-r--r--core/l10n/hu_HU.json12
-rw-r--r--core/l10n/hy.js16
-rw-r--r--core/l10n/hy.json16
-rw-r--r--core/l10n/id.js12
-rw-r--r--core/l10n/id.json12
-rw-r--r--core/l10n/it.js2
-rw-r--r--core/l10n/it.json2
-rw-r--r--core/l10n/ja.js8
-rw-r--r--core/l10n/ja.json8
-rw-r--r--core/l10n/ko.js10
-rw-r--r--core/l10n/ko.json10
-rw-r--r--core/l10n/nl.js2
-rw-r--r--core/l10n/nl.json2
-rw-r--r--core/l10n/pt_PT.js11
-rw-r--r--core/l10n/pt_PT.json11
-rw-r--r--core/l10n/sk_SK.js29
-rw-r--r--core/l10n/sk_SK.json29
-rw-r--r--core/l10n/th_TH.js10
-rw-r--r--core/l10n/th_TH.json10
-rw-r--r--core/l10n/tr.js6
-rw-r--r--core/l10n/tr.json6
-rw-r--r--core/l10n/zh_TW.js3
-rw-r--r--core/l10n/zh_TW.json3
-rw-r--r--core/lostpassword/css/resetpassword.css4
-rw-r--r--core/lostpassword/templates/resetpassword.php1
-rw-r--r--core/shipped.json1
-rw-r--r--core/templates/installation.php2
-rw-r--r--core/templates/layout.base.php3
-rw-r--r--core/templates/layout.guest.php3
-rw-r--r--core/templates/layout.user.php9
-rw-r--r--core/templates/login.php2
-rw-r--r--core/templates/update.admin.php4
64 files changed, 433 insertions, 142 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php
index 68afd7b4e84..fd42a94de6e 100644
--- a/core/ajax/share.php
+++ b/core/ajax/share.php
@@ -360,8 +360,8 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
}
if ((!isset($_GET['itemShares'])
- || !is_array((string)$_GET['itemShares'][OCP\Share::SHARE_TYPE_USER])
- || !in_array($uid, (string)$_GET['itemShares'][OCP\Share::SHARE_TYPE_USER]))
+ || !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_USER])
+ || !in_array($uid, $_GET['itemShares'][OCP\Share::SHARE_TYPE_USER]))
&& $uid != OC_User::getUser()) {
$shareWith[] = array(
'label' => $displayName,
@@ -386,8 +386,8 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo
if ($count < $request_limit) {
if (!isset($_GET['itemShares'])
|| !isset($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
- || !is_array((string)$_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
- || !in_array($group, (string)$_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) {
+ || !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])
+ || !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) {
$shareWith[] = array(
'label' => $group,
'value' => array(
diff --git a/core/ajax/update.php b/core/ajax/update.php
index 54038a479fb..7da9b71b751 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -43,9 +43,10 @@ if (OC::checkUpgrade(false)) {
\OC_User::setIncognitoMode(true);
$logger = \OC::$server->getLogger();
+ $config = \OC::$server->getConfig();
$updater = new \OC\Updater(
\OC::$server->getHTTPHelper(),
- \OC::$server->getConfig(),
+ $config,
$logger
);
$incompatibleApps = [];
@@ -96,10 +97,10 @@ if (OC::checkUpgrade(false)) {
$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use (&$disabledThirdPartyApps) {
$disabledThirdPartyApps[]= $app;
});
- $updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource) {
+ $updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource, $config) {
$eventSource->send('failure', $message);
$eventSource->close();
- OC_Config::setValue('maintenance', false);
+ $config->setSystemValue('maintenance', false);
});
$updater->listen('\OC\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use($eventSource, $l) {
$eventSource->send('success', (string)$l->t('Set log level to debug - current level: "%s"', [ $logLevelName ]));
diff --git a/core/command/app/checkcode.php b/core/command/app/checkcode.php
index a04f4bb5e03..e186d458c01 100644
--- a/core/command/app/checkcode.php
+++ b/core/command/app/checkcode.php
@@ -131,6 +131,10 @@ class CheckCode extends Command {
}
});
+ $infoChecker->listen('InfoChecker', 'duplicateRequirement', function($minMax) use ($output) {
+ $output->writeln("<error>Duplicate $minMax ownCloud version requirement found</error>");
+ });
+
$infoChecker->listen('InfoChecker', 'differentVersions', function($versionFile, $infoXML) use ($output) {
$output->writeln("<error>Different versions provided (appinfo/version: $versionFile - appinfo/info.xml: $infoXML)</error>");
});
diff --git a/core/command/status.php b/core/command/status.php
index a65e985a9ec..2eb58525d3e 100644
--- a/core/command/status.php
+++ b/core/command/status.php
@@ -38,7 +38,7 @@ class Status extends Base {
protected function execute(InputInterface $input, OutputInterface $output) {
$values = array(
- 'installed' => (bool) \OC_Config::getValue('installed'),
+ 'installed' => (bool) \OC::$server->getConfig()->getSystemValue('installed', false),
'version' => implode('.', \OC_Util::getVersion()),
'versionstring' => \OC_Util::getVersionString(),
'edition' => \OC_Util::getEditionString(),
diff --git a/core/css/apps.css b/core/css/apps.css
index ee68c45b1f2..ac2be40ac5b 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -307,10 +307,15 @@
-o-filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
filter: drop-shadow(0 0 5px rgba(150, 150, 150, 0.75));
}
+
.ie .bubble,
.ie #app-navigation .app-navigation-entry-menu,
.ie .bubble:after,
-.ie #app-navigation .app-navigation-entry-menu:after {
+.ie #app-navigation .app-navigation-entry-menu:after,
+.edge .bubble,
+.edge #app-navigation .app-navigation-entry-menu,
+.edge .bubble:after,
+.edge #app-navigation .app-navigation-entry-menu:after {
border: 1px solid #eee;
}
.ie8 .bubble {
@@ -561,11 +566,11 @@ button.loading {
.section h2 {
font-size: 20px;
margin-bottom: 12px;
- font-weight: normal;
+ font-weight: 300;
}
.section h3 {
font-size: 15px;
- font-weight: normal;
+ font-weight: 300;
margin: 12px 0;
}
/* slight position correction of checkboxes and radio buttons */
diff --git a/core/css/fonts.css b/core/css/fonts.css
index de2742c6368..2a894031e54 100644
--- a/core/css/fonts.css
+++ b/core/css/fonts.css
@@ -1,3 +1,13 @@
+/* for low-res screens, use Regular font-weight instead of Light */
+@media (-webkit-max-device-pixel-ratio: 1.3), (max-resolution: 124.8dpi) {
+ @font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: normal;
+ src: local('Open Sans'), local('OpenSans'), url(../fonts/OpenSans-Regular.woff) format('woff');
+ }
+}
+
@font-face {
font-family: 'Open Sans';
font-style: normal;
diff --git a/core/css/global.css b/core/css/global.css
new file mode 100644
index 00000000000..9511d4324fa
--- /dev/null
+++ b/core/css/global.css
@@ -0,0 +1,50 @@
+/* Copyright (c) 2015, Raghu Nayyar, http://raghunayyar.com
+ This file is licensed under the Affero General Public License version 3 or later.
+ See the COPYING-README file. */
+
+/* Global Components */
+
+.pull-left {
+ float: left;
+}
+
+.pull-right {
+ float: right;
+}
+
+.clear-left {
+ clear: left;
+}
+
+.clear-right {
+ clear: right;
+}
+
+.clear-both {
+ clear: both;
+}
+
+.hidden {
+ display: none;
+}
+
+.hidden-visually {
+ position: absolute;
+ left:-10000px;
+ top: auto;
+ width: 1px;
+ height: 1px;
+ overflow: hidden;
+}
+
+.bold {
+ font-weight:600;
+}
+
+.center {
+ text-align:center;
+}
+
+.inlineblock {
+ display: inline-block;
+} \ No newline at end of file
diff --git a/core/css/header.css b/core/css/header.css
index 369750251c4..37f06ef0632 100644
--- a/core/css/header.css
+++ b/core/css/header.css
@@ -119,6 +119,7 @@
position: relative;
color: #fff;
font-size: 16px;
+ font-weight: 300;
margin: 0;
margin-top: -24px;
padding: 7px 0 7px 5px;
@@ -352,3 +353,11 @@
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
opacity: 1;
}
+
+/* do not show display name when profile picture is present */
+#header .avatardiv.avatardiv-shown + #expandDisplayName {
+ display: none;
+}
+#header #expand {
+ display: block;
+}
diff --git a/core/css/mobile.css b/core/css/mobile.css
index 26f7b8520b9..288ae2979de 100644
--- a/core/css/mobile.css
+++ b/core/css/mobile.css
@@ -26,14 +26,6 @@
display: none;
}
-/* do not show display name on mobile when profile picture is present */
-#header .avatardiv.avatardiv-shown + #expandDisplayName {
- display: none;
-}
-#header #expand {
- display: block;
-}
-
/* do not show update notification on mobile */
#update-notification {
display: none !important;
diff --git a/core/css/styles.css b/core/css/styles.css
index 060576cb2c0..066087cc433 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -27,7 +27,7 @@ select:hover {
body {
background-color: #ffffff;
- font-weight: 300;
+ font-weight: 400;
font-size: .8em;
line-height: 1.6em;
font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
@@ -259,6 +259,9 @@ button, .button,
border: 1px solid rgba(240,240,240,.9);
cursor: pointer;
}
+select, .button.multiselect {
+ font-weight: 400;
+}
input[type="submit"]:hover, input[type="submit"]:focus,
input[type="button"]:hover, input[type="button"]:focus,
button:hover, button:focus,
@@ -330,7 +333,8 @@ input:disabled+label, input:disabled:hover+label, input:disabled:focus+label {
opacity: .7;
}
.searchbox input[type="search"]:focus,
-.searchbox input[type="search"]:active {
+.searchbox input[type="search"]:active,
+.searchbox input[type="search"]:valid {
color: #fff;
width: 155px;
max-width: 50%;
@@ -586,35 +590,12 @@ input[type="submit"].enabled {
color: #ccc;
}
-/* Icons for username and password fields to better recognize them */
-#adminlogin,
-#adminpass,
-input[name='adminpass-clone'],
-#user,
-#password,
-input[name='password-clone'] {
- width: 223px !important;
- padding-left: 36px !important;
-}
-#adminlogin+label+img,
-#adminpass-icon,
-#user+label+img,
-#password-icon {
- position: absolute;
- left: 16px;
- top: 22px;
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
- opacity: .3;
-}
-#adminpass-icon, #password-icon {
- top: 17px;
-}
-
/* General new input field look */
#body-login input[type="text"],
#body-login input[type="password"],
#body-login input[type="email"] {
border: none;
+ font-weight: 300;
}
/* Nicely grouping input field sets */
@@ -799,6 +780,9 @@ html.ie8 #body-login form input[type="checkbox"] {
color: #fff !important;
font-weight: 600 !important;
}
+.error a.button {
+ color: #555 !important;
+}
.error pre {
white-space: pre-wrap;
text-align: left;
@@ -881,26 +865,6 @@ html.ie8 #body-login form input[type="checkbox"] {
height: 70px;
}
-
-
-
-/* VARIOUS REUSABLE SELECTORS */
-.hidden {
- display: none;
-}
-.hidden-visually {
- position: absolute;
- left:-10000px;
- top: auto;
- width: 1px;
- height: 1px;
- overflow: hidden;
-}
-
-.bold { font-weight:600; }
-.center { text-align:center; }
-.inlineblock { display: inline-block; }
-
/* round profile photos */
.avatar,
.avatar img,
@@ -1205,4 +1169,3 @@ fieldset.warning legend + p, fieldset.update legend + p {
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
-
diff --git a/core/fonts/OpenSans-Regular.woff b/core/fonts/OpenSans-Regular.woff
new file mode 100644
index 00000000000..2abc3ed69fd
--- /dev/null
+++ b/core/fonts/OpenSans-Regular.woff
Binary files differ
diff --git a/core/img/favicon-mask.svg b/core/img/favicon-mask.svg
new file mode 100644
index 00000000000..24dff74ef89
--- /dev/null
+++ b/core/img/favicon-mask.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" height="16" width="16" enable-background="new 0 0 595.275 311.111" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 16 15.999999"><g transform="matrix(.125 0 0 .125 0 14)"><path d="m20-112c-11.08 0-20 8.92-20 20v88c0 11.08 8.92 20 20 20h88c11.08 0 20-8.92 20-20v-88c0-11.08-8.92-20-20-20h-88zm38.328 29.125c8.932 0 16.156 7.2089 16.156 16.141 0 1.2073-0.14055 2.3846-0.39062 3.5156-3.0889-1.4114-6.51-2.2188-10.125-2.2188-7.389 0-14 3.3102-18.484 8.5-2.0669-2.7134-3.2969-6.1152-3.2969-9.7969 0-8.932 7.2089-16.141 16.141-16.141zm-21.078 7.4688c1.7281 0 3.325 0.4979 4.6562 1.3906-0.98881 2.2266-1.5625 4.6906-1.5625 7.2812-0.000001 0.481 0.0253 0.96598 0.0625 1.4375-0.3285-0.02-0.63611-0.03125-0.96875-0.03125-3.4468 0-6.6932 0.9166-9.5 2.5-0.68798-1.2188-1.0781-2.6502-1.0781-4.1562 0-4.6514 3.7392-8.4219 8.3906-8.4219zm39.828 5.7969c8.4592 0 15.31 6.5054 16.016 14.781-2.7381 0.1835-5.3124 0.95225-7.625 2.1562-2.2297-4.0909-5.6126-7.4636-9.6875-9.7188 0.34758-1.3914 0.53125-2.8444 0.53125-4.3438 0-0.9636-0.10364-1.8898-0.25-2.8125 0.33833-0.0212 0.67198-0.0625 1.0156-0.0625zm-13.109 6.0156c12.498 0 22.609 10.11 22.609 22.609 0 12.498-10.11 22.609-22.609 22.609s-22.609-10.111-22.609-22.609c0-12.499 10.111-22.609 22.609-22.609zm-24.531 0.09375c0.41458 0 0.827 0.0345 1.2344 0.0625 0.5497 2.9515 1.8386 5.6671 3.6406 7.9219-3.0103 4.063-4.7813 9.0916-4.7813 14.531 0.000001 1.1378 0.06803 2.2628 0.21875 3.3594-0.48017-0.0664-0.95496-0.125-1.4531-0.125-4.1218 0-7.6921 2.3232-9.4688 5.75-4.2144-3.202-6.9375-8.2451-6.9375-13.953 0-9.6963 7.8507-17.547 17.547-17.547zm54.953 10.453c9.6963 0 17.547 7.8038 17.547 17.5-0.00001 9.6964-7.8507 17.547-17.547 17.547-5.1793 0-9.8376-2.2339-13.047-5.7969 4.3686-4.417 7.0625-10.492 7.0625-17.188 0-3.5761-0.75792-6.9842-2.1406-10.047 2.435-1.2747 5.1808-2.0156 8.125-2.0156zm-74.219 2.3125h0.01563c0.15552 0.0017 0.31393 0.02738 0.46875 0.03125-0.38539 1.5224-0.60937 3.1094-0.60937 4.75 0 6.4567 3.1766 12.183 8.0469 15.703-0.31205 1.0019-0.46875 2.0524-0.46875 3.1562 0 2.1267 0.62812 4.1265 1.7031 5.7969-2.6015 1.7904-5.7566 2.8594-9.1562 2.8594-8.9316 0-16.172-7.2555-16.172-16.187 0-8.9267 7.2462-16.102 16.172-16.109zm94.969 13.859c4.8964 0 8.8594 3.9786 8.8594 8.875 0 4.8965-3.963 8.8281-8.8594 8.8281-2.6882 0-5.0703-1.1975-6.6875-3.0781 3.2872-3.4734 5.3281-8.1468 5.3281-13.297 0-0.40912-0.0217-0.80036-0.0469-1.2031 0.45554-0.0724 0.92976-0.125 1.4062-0.125zm-76.844 0.95312c0.6229 0 1.2103 0.0663 1.7969 0.1875 1.0023 4.5568 3.2654 8.6601 6.4219 11.875-1.2936 3.2941-4.4657 5.6406-8.2187 5.6406-4.8962 0-8.8438-3.9788-8.8438-8.875s3.9476-8.8281 8.8438-8.8281z"/></g></svg>
diff --git a/core/img/favicon.ico b/core/img/favicon.ico
new file mode 100644
index 00000000000..96bee5656a9
--- /dev/null
+++ b/core/img/favicon.ico
Binary files differ
diff --git a/core/js/js.js b/core/js/js.js
index a3efb64e4bd..07320a1d225 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1236,6 +1236,14 @@ function initCore() {
*/
moment.locale(OC.getLocale());
+ if ($.browser.msie || !!navigator.userAgent.match(/Trident\/7\./)) {
+ // for IE10+ that don't have conditional comments
+ // and IE11 doesn't identify as MSIE any more...
+ $('html').addClass('ie');
+ } else if (!!navigator.userAgent.match(/Edge\/12/)) {
+ // for edge
+ $('html').addClass('edge');
+ }
/**
* Calls the server periodically to ensure that session doesn't
@@ -1295,7 +1303,7 @@ function initCore() {
*/
function setupMainMenu() {
// toggle the navigation
- var $toggle = $('#header .menutoggle');
+ var $toggle = $('#header .header-appname-container');
var $navigation = $('#navigation');
// init the menu
diff --git a/core/js/mimetype.js b/core/js/mimetype.js
index b0de8eb8411..3cc33ce2830 100644
--- a/core/js/mimetype.js
+++ b/core/js/mimetype.js
@@ -46,6 +46,8 @@ OC.MimeType = {
return 'folder';
} else if (mimeType === 'dir-shared' && $.inArray('folder-shared', files) !== -1) {
return 'folder-shared';
+ } else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) {
+ return 'folder-public';
} else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) {
return 'folder-external';
} else if ($.inArray(icon, files) !== -1) {
diff --git a/core/js/share.js b/core/js/share.js
index 1131ae8f112..e14e19a2543 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -253,14 +253,25 @@ OC.Share = _.extend(OC.Share || {}, {
// update folder icon
if (type === 'dir' && (hasShares || hasLink || owner)) {
if (hasLink) {
- shareFolderIcon = OC.imagePath('core', 'filetypes/folder-public');
+ shareFolderIcon = OC.MimeType.getIconUrl('dir-public');
}
else {
- shareFolderIcon = OC.imagePath('core', 'filetypes/folder-shared');
+ shareFolderIcon = OC.MimeType.getIconUrl('dir-shared');
}
$tr.find('.filename .thumbnail').css('background-image', 'url(' + shareFolderIcon + ')');
+ $tr.attr('data-icon', shareFolderIcon);
} else if (type === 'dir') {
- shareFolderIcon = OC.imagePath('core', 'filetypes/folder');
+ var mountType = $tr.attr('data-mounttype');
+ // FIXME: duplicate of FileList._createRow logic for external folder,
+ // need to refactor the icon logic into a single code path eventually
+ if (mountType && mountType.indexOf('external') === 0) {
+ shareFolderIcon = OC.MimeType.getIconUrl('dir-external');
+ $tr.attr('data-icon', shareFolderIcon);
+ } else {
+ shareFolderIcon = OC.MimeType.getIconUrl('dir');
+ // back to default
+ $tr.removeAttr('data-icon');
+ }
$tr.find('.filename .thumbnail').css('background-image', 'url(' + shareFolderIcon + ')');
}
// update share action text / icon
diff --git a/core/js/tags.js b/core/js/tags.js
index dd9ea005302..b4c2c220df2 100644
--- a/core/js/tags.js
+++ b/core/js/tags.js
@@ -87,7 +87,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl('/tags/{type}/ids', {type: type});
$.getJSON(url, {tag: tag}, function(response) {
if(response.status === 'success') {
@@ -108,7 +107,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl('/tags/{type}/favorites', {type: type});
$.getJSON(url, function(response) {
if(response.status === 'success') {
@@ -129,7 +127,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl('/tags/{type}', {type: type});
$.getJSON(url, function(response) {
if(response.status === 'success') {
@@ -152,7 +149,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl('/tags/{type}/tag/{id}/', {type: type, id: id});
$.post(url, {tag: tag}, function(response) {
if(response.status === 'success') {
@@ -201,7 +197,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl(
'/tags/{type}/favorite/{id}/',
{type: type, id: id}
@@ -228,7 +223,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl(
'/tags/{type}/unfavorite/{id}/',
{type: type, id: id}
@@ -255,7 +249,6 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl('/tags/{type}/add', {type: type});
$.post(url,{tag:tag}, function(response) {
if(typeof cb == 'function') {
@@ -282,12 +275,10 @@ OC.Tags= {
}
type = type ? type : this.type;
var defer = $.Deferred(),
- self = this,
url = OC.generateUrl('/tags/{type}/delete', {type: type});
if(!tags || !tags.length) {
throw new Error(t('core', 'No tags selected for deletion.'));
}
- var self = this;
$.post(url, {tags:tags}, function(response) {
if(response.status === 'success') {
defer.resolve(response.tags);
diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js
index 3ebe55305f7..f653fc88637 100644
--- a/core/js/tests/specs/coreSpec.js
+++ b/core/js/tests/specs/coreSpec.js
@@ -458,12 +458,11 @@ describe('Core base tests', function() {
var clock;
var $toggle;
var $navigation;
- var clock;
beforeEach(function() {
clock = sinon.useFakeTimers();
$('#testArea').append('<div id="header">' +
- '<a class="menutoggle" href="#">' +
+ '<a class="menutoggle header-appname-container" href="#">' +
'<h1 class="header-appname"></h1>' +
'<div class="icon-caret"></div>' +
'</a>' +
diff --git a/core/js/tests/specs/shareSpec.js b/core/js/tests/specs/shareSpec.js
index 9e80f4fe19d..5c76ea600b8 100644
--- a/core/js/tests/specs/shareSpec.js
+++ b/core/js/tests/specs/shareSpec.js
@@ -142,6 +142,13 @@ describe('OC.Share tests', function() {
checkIcon('filetypes/folder-public');
});
+ it('shows external storage icon if external mount point', function() {
+ $file.attr('data-type', 'dir');
+ $file.attr('data-mountType', 'external');
+ OC.Share.markFileAsShared($file, false, false);
+
+ checkIcon('filetypes/folder-external');
+ });
});
describe('displaying the recipoients', function() {
diff --git a/core/l10n/ast.js b/core/l10n/ast.js
index a2b2e2dc7eb..603e684d7e2 100644
--- a/core/l10n/ast.js
+++ b/core/l10n/ast.js
@@ -97,22 +97,30 @@ OC.L10N.register(
"Email sent" : "Corréu unviáu",
"Resharing is not allowed" : "Recompartir nun ta permitíu",
"Share link" : "Compartir enllaz",
+ "Link" : "Enllaz",
"Password protect" : "Protexer con contraseña",
"Password" : "Contraseña",
+ "Allow editing" : "Permitir edición",
"Email link to person" : "Enllaz de corréu-e a la persona",
"Send" : "Unviar",
"Shared with you and the group {group} by {owner}" : "Compartíu contigo y col grupu {group} por {owner}",
"Shared with you by {owner}" : "Compartíu contigo por {owner}",
"Shared in {item} with {user}" : "Compartíu en {item} con {user}",
"group" : "grupu",
+ "remote" : "remotu",
"notify by email" : "notificar per corréu",
"Unshare" : "Dexar de compartir",
"can share" : "pue compartir",
"can edit" : "pue editar",
"create" : "crear",
+ "change" : "camudar",
"delete" : "desaniciar",
"access control" : "control d'accesu",
+ "An error occured. Please try again" : "Hebo un fallu. Por favor, inténtalo dempués. ",
"Share" : "Compartir",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Compartir con xente d'otros ownClouds usando la sintaxis usuariu@exemplu.com/owncloud",
+ "Share with users or groups …" : "Compartir con usuarios o grupos",
+ "Share with users, groups or remote users …" : "Compartir con usuarios, grupos o usuarios remotos",
"Warning" : "Avisu",
"The object type is not specified." : "El tipu d'oxetu nun ta especificáu.",
"Enter new" : "Introducir nueva",
@@ -163,13 +171,13 @@ OC.L10N.register(
"Database host" : "Agospiador de la base de datos",
"Finish setup" : "Finar la configuración ",
"Finishing …" : "Finando ...",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola, ¿qué hai?,<br><br>namái déxamos dicite que %s compartió <strong>%s</strong> contigo.\n<br><a href=\"%s\">¡Velu!</a><br><br>",
"Log out" : "Zarrar sesión",
"Search" : "Guetar",
"Server side authentication failed!" : "Falló l'autenticación nel sirvidor!",
"Please contact your administrator." : "Por favor, contauta col to alministrador",
"Log in" : "Aniciar sesión",
"Alternative Logins" : "Anicios de sesión alternativos",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola, ¿qué hai?,<br><br>namái déxamos dicite que %s compartió <strong>%s</strong> contigo.\n<br><a href=\"%s\">¡Velu!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Esta instalación d'ownCloud ta en mou d'usuariu únicu.",
"This means only administrators can use the instance." : "Esto quier dicir que namái pue usala un alministrador.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contauta col alministrador si esti problema sigui apaeciendo.",
diff --git a/core/l10n/ast.json b/core/l10n/ast.json
index e621c9d680c..02df7fc7b18 100644
--- a/core/l10n/ast.json
+++ b/core/l10n/ast.json
@@ -95,22 +95,30 @@
"Email sent" : "Corréu unviáu",
"Resharing is not allowed" : "Recompartir nun ta permitíu",
"Share link" : "Compartir enllaz",
+ "Link" : "Enllaz",
"Password protect" : "Protexer con contraseña",
"Password" : "Contraseña",
+ "Allow editing" : "Permitir edición",
"Email link to person" : "Enllaz de corréu-e a la persona",
"Send" : "Unviar",
"Shared with you and the group {group} by {owner}" : "Compartíu contigo y col grupu {group} por {owner}",
"Shared with you by {owner}" : "Compartíu contigo por {owner}",
"Shared in {item} with {user}" : "Compartíu en {item} con {user}",
"group" : "grupu",
+ "remote" : "remotu",
"notify by email" : "notificar per corréu",
"Unshare" : "Dexar de compartir",
"can share" : "pue compartir",
"can edit" : "pue editar",
"create" : "crear",
+ "change" : "camudar",
"delete" : "desaniciar",
"access control" : "control d'accesu",
+ "An error occured. Please try again" : "Hebo un fallu. Por favor, inténtalo dempués. ",
"Share" : "Compartir",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Compartir con xente d'otros ownClouds usando la sintaxis usuariu@exemplu.com/owncloud",
+ "Share with users or groups …" : "Compartir con usuarios o grupos",
+ "Share with users, groups or remote users …" : "Compartir con usuarios, grupos o usuarios remotos",
"Warning" : "Avisu",
"The object type is not specified." : "El tipu d'oxetu nun ta especificáu.",
"Enter new" : "Introducir nueva",
@@ -161,13 +169,13 @@
"Database host" : "Agospiador de la base de datos",
"Finish setup" : "Finar la configuración ",
"Finishing …" : "Finando ...",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola, ¿qué hai?,<br><br>namái déxamos dicite que %s compartió <strong>%s</strong> contigo.\n<br><a href=\"%s\">¡Velu!</a><br><br>",
"Log out" : "Zarrar sesión",
"Search" : "Guetar",
"Server side authentication failed!" : "Falló l'autenticación nel sirvidor!",
"Please contact your administrator." : "Por favor, contauta col to alministrador",
"Log in" : "Aniciar sesión",
"Alternative Logins" : "Anicios de sesión alternativos",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola, ¿qué hai?,<br><br>namái déxamos dicite que %s compartió <strong>%s</strong> contigo.\n<br><a href=\"%s\">¡Velu!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Esta instalación d'ownCloud ta en mou d'usuariu únicu.",
"This means only administrators can use the instance." : "Esto quier dicir que namái pue usala un alministrador.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contauta col alministrador si esti problema sigui apaeciendo.",
diff --git a/core/l10n/cs_CZ.js b/core/l10n/cs_CZ.js
index f6a0c9d43b1..ff173b8e06e 100644
--- a/core/l10n/cs_CZ.js
+++ b/core/l10n/cs_CZ.js
@@ -114,6 +114,8 @@ OC.L10N.register(
"No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Nebyla nakonfigurována paměťová cache. Pro zlepšení výkonu a dostupnosti ji prosím nakonfigurujte. Další informace lze nalézt v naší <a href=\"{docLink}\">dokumentaci</a>.",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "PHP nemá práva pro čtení v /dev/urandom, to je ale z bezpečnostních důvodů velmi doporučováno. Více informací lze nalézt v <a href=\"{docLink}\">dokumentaci</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Vaše verze PHP ({version}) již není <a href=\"{phpLink}\">podporována</a>. Doporučujeme aktualizovat na poslední verzi PHP pro využití vylepšení výkonu a bezpečnosti.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Konfigurace hlaviček zpětné proxy není správná nebo přistupujete na ownCloud přes důvěryhodnou proxy. Pokud přistupujete na ownCloud přes nedůvěryhodnou proxy je toto považováno za bezpečnostní problém který může útočníkovi umožnit záměnu IP adresy viděné ownCloudem. Více informací lze nalézt v naší <a href=\"{docLink}\">dokumentaci</a>.",
+ "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached je nakonfigurován jako distribuovaná cache, ale je nainstalován nesprávný PHP modul \"memcache\". \\OC\\Memcache\\Memcached podporuje pouze \"memcached\" a ne \"memcache\". Projděte si <a href=\"{wikiLink}\">memcached wiki popisující oba moduly</a>.",
"Error occurred while checking server setup" : "Při ověřování nastavení serveru došlo k chybě",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "HTTP hlavička \"{header}\" není nakonfigurována ve shodě s \"{expected}\". To značí možné ohrožení bezpečnosti a soukromí a je doporučeno toto nastavení upravit.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "HTTP hlavička \"Strict-Transport-Security\" není nakonfigurována na minimum \"{seconds}\" sekund. Pro vylepšení bezpečnosti doporučujeme povolit HSTS dle popisu v našich <a href=\"{docUrl}\">bezpečnostních tipech</a>.",
@@ -250,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Dokončuji...",
"Need help?" : "Potřebujete pomoc?",
"See the documentation" : "Shlédnout dokumentaci",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Tato aplikace potřebuje pro správnou funkčnost JavaScript. Prosím {linkstart}povolte JavaScript{linkend} a znovu načtěte stránku.",
"Log out" : "Odhlásit se",
"Search" : "Hledat",
@@ -259,8 +262,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Prosím zkuste to znovu nebo kontaktujte vašeho správce.",
"Log in" : "Přihlásit",
"Wrong password. Reset it?" : "Nesprávné heslo. Resetovat?",
+ "Stay logged in" : "Neodhlašovat",
"Alternative Logins" : "Alternativní přihlášení",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Tato instalace ownCloudu je momentálně v jednouživatelském módu.",
"This means only administrators can use the instance." : "To znamená, že pouze správci systému mohou aplikaci používat.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontaktujte prosím správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně.",
diff --git a/core/l10n/cs_CZ.json b/core/l10n/cs_CZ.json
index 30776da294a..a13624e2c18 100644
--- a/core/l10n/cs_CZ.json
+++ b/core/l10n/cs_CZ.json
@@ -112,6 +112,8 @@
"No memory cache has been configured. To enhance your performance please configure a memcache if available. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Nebyla nakonfigurována paměťová cache. Pro zlepšení výkonu a dostupnosti ji prosím nakonfigurujte. Další informace lze nalézt v naší <a href=\"{docLink}\">dokumentaci</a>.",
"/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "PHP nemá práva pro čtení v /dev/urandom, to je ale z bezpečnostních důvodů velmi doporučováno. Více informací lze nalézt v <a href=\"{docLink}\">dokumentaci</a>.",
"Your PHP version ({version}) is no longer <a href=\"{phpLink}\">supported by PHP</a>. We encourage you to upgrade your PHP version to take advantage of performance and security updates provided by PHP." : "Vaše verze PHP ({version}) již není <a href=\"{phpLink}\">podporována</a>. Doporučujeme aktualizovat na poslední verzi PHP pro využití vylepšení výkonu a bezpečnosti.",
+ "The reverse proxy headers configuration is incorrect, or you are accessing ownCloud from a trusted proxy. If you are not accessing ownCloud from a trusted proxy, this is a security issue and can allow an attacker to spoof their IP address as visible to ownCloud. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "Konfigurace hlaviček zpětné proxy není správná nebo přistupujete na ownCloud přes důvěryhodnou proxy. Pokud přistupujete na ownCloud přes nedůvěryhodnou proxy je toto považováno za bezpečnostní problém který může útočníkovi umožnit záměnu IP adresy viděné ownCloudem. Více informací lze nalézt v naší <a href=\"{docLink}\">dokumentaci</a>.",
+ "Memcached is configured as distributed cache, but the wrong PHP module \"memcache\" is installed. \\OC\\Memcache\\Memcached only supports \"memcached\" and not \"memcache\". See the <a href=\"{wikiLink}\">memcached wiki about both modules</a>." : "Memcached je nakonfigurován jako distribuovaná cache, ale je nainstalován nesprávný PHP modul \"memcache\". \\OC\\Memcache\\Memcached podporuje pouze \"memcached\" a ne \"memcache\". Projděte si <a href=\"{wikiLink}\">memcached wiki popisující oba moduly</a>.",
"Error occurred while checking server setup" : "Při ověřování nastavení serveru došlo k chybě",
"The \"{header}\" HTTP header is not configured to equal to \"{expected}\". This is a potential security or privacy risk and we recommend adjusting this setting." : "HTTP hlavička \"{header}\" není nakonfigurována ve shodě s \"{expected}\". To značí možné ohrožení bezpečnosti a soukromí a je doporučeno toto nastavení upravit.",
"The \"Strict-Transport-Security\" HTTP header is not configured to least \"{seconds}\" seconds. For enhanced security we recommend enabling HSTS as described in our <a href=\"{docUrl}\">security tips</a>." : "HTTP hlavička \"Strict-Transport-Security\" není nakonfigurována na minimum \"{seconds}\" sekund. Pro vylepšení bezpečnosti doporučujeme povolit HSTS dle popisu v našich <a href=\"{docUrl}\">bezpečnostních tipech</a>.",
@@ -248,6 +250,7 @@
"Finishing …" : "Dokončuji...",
"Need help?" : "Potřebujete pomoc?",
"See the documentation" : "Shlédnout dokumentaci",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Tato aplikace potřebuje pro správnou funkčnost JavaScript. Prosím {linkstart}povolte JavaScript{linkend} a znovu načtěte stránku.",
"Log out" : "Odhlásit se",
"Search" : "Hledat",
@@ -257,8 +260,8 @@
"Please try again or contact your administrator." : "Prosím zkuste to znovu nebo kontaktujte vašeho správce.",
"Log in" : "Přihlásit",
"Wrong password. Reset it?" : "Nesprávné heslo. Resetovat?",
+ "Stay logged in" : "Neodhlašovat",
"Alternative Logins" : "Alternativní přihlášení",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ahoj,<br><br>jen ti dávám vědět, že s tebou %s sdílí <strong>%s</strong>.<br><a href=\"%s\">Zkontroluj to!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Tato instalace ownCloudu je momentálně v jednouživatelském módu.",
"This means only administrators can use the instance." : "To znamená, že pouze správci systému mohou aplikaci používat.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontaktujte prosím správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně.",
diff --git a/core/l10n/da.js b/core/l10n/da.js
index cce52f15b05..795dc5cb7b9 100644
--- a/core/l10n/da.js
+++ b/core/l10n/da.js
@@ -6,14 +6,20 @@ OC.L10N.register(
"Turned on maintenance mode" : "Startede vedligeholdelsestilstand",
"Turned off maintenance mode" : "standsede vedligeholdelsestilstand",
"Maintenance mode is kept active" : "Vedligeholdelsestilstanden holdes kørende",
+ "Updating database schema" : "Opdaterer database schema",
"Updated database" : "Opdaterede database",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Tjekker om database schema'et kan opdateres (dette kan tage lang tid afhængig af databasens størrelse)",
"Checked database schema update" : "Tjekket database schema opdatering",
+ "Checking updates of apps" : "Tjekker opdatering af apps",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Tjekker om database schema'et for %s kan opdateres (dette kan tage lang tid afhængig af databasens størrelse)",
"Checked database schema update for apps" : "Tjekkede databaseskemaets opdatering for apps",
"Updated \"%s\" to %s" : "Opdaterede \"%s\" til %s",
"Repair warning: " : "Reparationsadvarsel:",
"Repair error: " : "Reparationsfejl:",
"Set log level to debug - current level: \"%s\"" : "Sæt log niveau til fejlfinding - nuværende niveau: \"%s\"",
"Reset log level to \"%s\"" : "Nulstil log niveau til \"%s\"",
+ "%s (3rdparty)" : "%s (3rdparty)",
+ "%s (incompatible)" : "%s (inkombatible)",
"Following apps have been disabled: %s" : "Følgende apps er blevet deaktiveret: %s",
"Already up to date" : "Allerede opdateret",
"File is too big" : "Filen er for stor",
@@ -21,6 +27,7 @@ OC.L10N.register(
"No image or file provided" : "Ingen fil eller billede givet",
"Unknown filetype" : "Ukendt filtype",
"Invalid image" : "Ugyldigt billede",
+ "An error occurred. Please contact your admin." : "Der opstod et problem. Kontakt venligst administratoren.",
"No temporary profile picture available, try again" : "Intet midlertidigt profilbillede tilgængeligt, prøv igen",
"No crop data provided" : "Ingen beskæringsdata give",
"No valid crop data provided" : "Der er ikke angivet gyldige data om beskæring",
@@ -169,7 +176,9 @@ OC.L10N.register(
"Hello {name}" : "Hej {name}",
"_download %n file_::_download %n files_" : ["hent %n fil","hent %n filer"],
"{version} is available. Get more information on how to update." : "{version} er tilgængelig. Få mere information om hvordan du opdaterer.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Opgraderingen er i gang, forlader du denne side kan det afbryde processen.",
"Updating {productName} to version {version}, this may take a while." : "Opdaterer {productName} til version {version}, det kan tage et stykke tid.",
+ "An error occurred." : "Der opstod en fejl.",
"Please reload the page." : "Genindlæs venligst siden",
"The update was unsuccessful. " : "Opdateringen blev ikke gennemført.",
"The update was successful. There were warnings." : "Opdateringen blev gennemført. Der fremkom advarsler.",
@@ -242,6 +251,7 @@ OC.L10N.register(
"Finishing …" : "Færdigbehandler ...",
"Need help?" : "Brug for hjælp?",
"See the documentation" : "Se dokumentationen",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej med dig,<br><br>Dette er blot for at informere dig om, at %s har delt <strong>%s</strong> med dig.<br><a href=\"%s\">Se det her!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Denne applikation kræver JavaScript for at fungere korrekt. {linkstart}Slå venligst JavaScript til{linkend} og genindlæs siden. ",
"Log out" : "Log ud",
"Search" : "Søg",
@@ -251,8 +261,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Kontakt venligst din administrator.",
"Log in" : "Log ind",
"Wrong password. Reset it?" : "Forkert kodeord. Skal det nulstilles?",
+ "Stay logged in" : "Forbliv logget ind",
"Alternative Logins" : "Alternative logins",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej med dig,<br><br>Dette er blot for at informere dig om, at %s har delt <strong>%s</strong> med dig.<br><a href=\"%s\">Se det her!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Denne ownCloud instans er lige nu i enkeltbruger tilstand.",
"This means only administrators can use the instance." : "Det betyder at det kun er administrator, som kan benytte ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.",
diff --git a/core/l10n/da.json b/core/l10n/da.json
index 962743e0abf..f4f156a69be 100644
--- a/core/l10n/da.json
+++ b/core/l10n/da.json
@@ -4,14 +4,20 @@
"Turned on maintenance mode" : "Startede vedligeholdelsestilstand",
"Turned off maintenance mode" : "standsede vedligeholdelsestilstand",
"Maintenance mode is kept active" : "Vedligeholdelsestilstanden holdes kørende",
+ "Updating database schema" : "Opdaterer database schema",
"Updated database" : "Opdaterede database",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Tjekker om database schema'et kan opdateres (dette kan tage lang tid afhængig af databasens størrelse)",
"Checked database schema update" : "Tjekket database schema opdatering",
+ "Checking updates of apps" : "Tjekker opdatering af apps",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Tjekker om database schema'et for %s kan opdateres (dette kan tage lang tid afhængig af databasens størrelse)",
"Checked database schema update for apps" : "Tjekkede databaseskemaets opdatering for apps",
"Updated \"%s\" to %s" : "Opdaterede \"%s\" til %s",
"Repair warning: " : "Reparationsadvarsel:",
"Repair error: " : "Reparationsfejl:",
"Set log level to debug - current level: \"%s\"" : "Sæt log niveau til fejlfinding - nuværende niveau: \"%s\"",
"Reset log level to \"%s\"" : "Nulstil log niveau til \"%s\"",
+ "%s (3rdparty)" : "%s (3rdparty)",
+ "%s (incompatible)" : "%s (inkombatible)",
"Following apps have been disabled: %s" : "Følgende apps er blevet deaktiveret: %s",
"Already up to date" : "Allerede opdateret",
"File is too big" : "Filen er for stor",
@@ -19,6 +25,7 @@
"No image or file provided" : "Ingen fil eller billede givet",
"Unknown filetype" : "Ukendt filtype",
"Invalid image" : "Ugyldigt billede",
+ "An error occurred. Please contact your admin." : "Der opstod et problem. Kontakt venligst administratoren.",
"No temporary profile picture available, try again" : "Intet midlertidigt profilbillede tilgængeligt, prøv igen",
"No crop data provided" : "Ingen beskæringsdata give",
"No valid crop data provided" : "Der er ikke angivet gyldige data om beskæring",
@@ -167,7 +174,9 @@
"Hello {name}" : "Hej {name}",
"_download %n file_::_download %n files_" : ["hent %n fil","hent %n filer"],
"{version} is available. Get more information on how to update." : "{version} er tilgængelig. Få mere information om hvordan du opdaterer.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Opgraderingen er i gang, forlader du denne side kan det afbryde processen.",
"Updating {productName} to version {version}, this may take a while." : "Opdaterer {productName} til version {version}, det kan tage et stykke tid.",
+ "An error occurred." : "Der opstod en fejl.",
"Please reload the page." : "Genindlæs venligst siden",
"The update was unsuccessful. " : "Opdateringen blev ikke gennemført.",
"The update was successful. There were warnings." : "Opdateringen blev gennemført. Der fremkom advarsler.",
@@ -240,6 +249,7 @@
"Finishing …" : "Færdigbehandler ...",
"Need help?" : "Brug for hjælp?",
"See the documentation" : "Se dokumentationen",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej med dig,<br><br>Dette er blot for at informere dig om, at %s har delt <strong>%s</strong> med dig.<br><a href=\"%s\">Se det her!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Denne applikation kræver JavaScript for at fungere korrekt. {linkstart}Slå venligst JavaScript til{linkend} og genindlæs siden. ",
"Log out" : "Log ud",
"Search" : "Søg",
@@ -249,8 +259,8 @@
"Please try again or contact your administrator." : "Kontakt venligst din administrator.",
"Log in" : "Log ind",
"Wrong password. Reset it?" : "Forkert kodeord. Skal det nulstilles?",
+ "Stay logged in" : "Forbliv logget ind",
"Alternative Logins" : "Alternative logins",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hej med dig,<br><br>Dette er blot for at informere dig om, at %s har delt <strong>%s</strong> med dig.<br><a href=\"%s\">Se det her!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Denne ownCloud instans er lige nu i enkeltbruger tilstand.",
"This means only administrators can use the instance." : "Det betyder at det kun er administrator, som kan benytte ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.",
diff --git a/core/l10n/el.js b/core/l10n/el.js
index d6454f29708..b0a8230e650 100644
--- a/core/l10n/el.js
+++ b/core/l10n/el.js
@@ -6,14 +6,20 @@ OC.L10N.register(
"Turned on maintenance mode" : "Η κατάσταση συντήρησης ενεργοποιήθηκε",
"Turned off maintenance mode" : "Η κατάσταση συντήρησης απενεργοποιήθηκε",
"Maintenance mode is kept active" : "Η λειτουργία συντήρησης διατηρήθηκε ενεργή",
+ "Updating database schema" : "Ένημέρωση σχήματος βάσης δεδομένων",
"Updated database" : "Ενημερωμένη βάση δεδομένων",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν το σχήμα της βάσης δεδομένων μπορεί να ενημερωθεί (αυτό μπορεί να πάρει πολλή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update" : "Έλεγχος ενημέρωσης σχήματος βάσης δεδομένων",
+ "Checking updates of apps" : "Έλεγχος ενημερώσεων εφαρμογών",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν το σχήμα της βάσης δεδομένων για %s μπορεί να ενημερωθεί (αυτό μπορεί να πάρει πολλή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update for apps" : "Έλεγχος ενημέρωσης σχήματος βάσης δεδομένων για εφαρμογές",
"Updated \"%s\" to %s" : "Αναβαθμίστηκε \"%s\" σε %s",
"Repair warning: " : "Προειδοποίηση διόρθωσης:",
"Repair error: " : "Σφάλμα διόρθωσης:",
"Set log level to debug - current level: \"%s\"" : "Καθορισμός του επιπέδου καταγραφής σε αποσφαλμάτωση - τρέχον επίπεδο: \"%s\"",
"Reset log level to \"%s\"" : "Επαναφορά επιπέδου καταγραφής σε \"%s\"",
+ "%s (3rdparty)" : "%s (3ου μέρους)",
+ "%s (incompatible)" : "%s (ασύμβατη)",
"Following apps have been disabled: %s" : "Οι ακόλουθες εφαρμογές έχουν απενεργοποιηθεί: %s",
"Already up to date" : "Ήδη ενημερωμένο",
"File is too big" : "Το αρχείο είναι πολύ μεγάλο",
@@ -171,7 +177,9 @@ OC.L10N.register(
"Hello {name}" : "Γεια σου {name}",
"_download %n file_::_download %n files_" : ["λήψη %n αρχείου","λήψη %n αρχείων"],
"{version} is available. Get more information on how to update." : "Η έκδοση {version} είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες για το πως να κάνετε την ενημέρωση.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Η αναβάθμιση είναι σε εξέλιξη, αν φύγετε από αυτή τη σελίδα μπορεί να διακοπεί η διαδικασία σε ορισμένα περιβάλλοντα χρήσης.",
"Updating {productName} to version {version}, this may take a while." : "Ενημέρωση του {productName} στην έκδοση {version}, αυτό μπορεί να διαρκέσει λίγη ώρα.",
+ "An error occurred." : "Παρουσιάστηκε σφάλμα",
"Please reload the page." : "Παρακαλώ επαναφορτώστε τη σελίδα.",
"The update was unsuccessful. " : "Η ενημέρωση ήταν ανεπιτυχής.",
"The update was successful. There were warnings." : "Η ενημέρωση ήταν επιτυχής. Υπήρχαν προειδοποιήσεις.",
@@ -244,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Ολοκλήρωση...",
"Need help?" : "Θέλετε βοήθεια;",
"See the documentation" : "Δείτε την τεκμηρίωση",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γειά χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Αυτή η εφαρμογή απαιτεί JavaScript για σωστή λειτουργία. Παρακαλώ {linkstart} ενεργοποιήστε τη JavaScrip {linkend} και επαναφορτώστε τη σελίδα.",
"Log out" : "Αποσύνδεση",
"Search" : "Αναζήτηση",
@@ -253,8 +262,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Παρακαλώ δοκιμάστε ξανά ή επικοινωνήστε με τον διαχειριστή σας.",
"Log in" : "Είσοδος",
"Wrong password. Reset it?" : "Λάθος Κωδικός. Επαναφορά;",
+ "Stay logged in" : "Μείνετε συνδεδεμένος",
"Alternative Logins" : "Εναλλακτικές Συνδέσεις",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γειά χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη.",
"This means only administrators can use the instance." : "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.",
diff --git a/core/l10n/el.json b/core/l10n/el.json
index f17445c6715..f2e4430f2db 100644
--- a/core/l10n/el.json
+++ b/core/l10n/el.json
@@ -4,14 +4,20 @@
"Turned on maintenance mode" : "Η κατάσταση συντήρησης ενεργοποιήθηκε",
"Turned off maintenance mode" : "Η κατάσταση συντήρησης απενεργοποιήθηκε",
"Maintenance mode is kept active" : "Η λειτουργία συντήρησης διατηρήθηκε ενεργή",
+ "Updating database schema" : "Ένημέρωση σχήματος βάσης δεδομένων",
"Updated database" : "Ενημερωμένη βάση δεδομένων",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν το σχήμα της βάσης δεδομένων μπορεί να ενημερωθεί (αυτό μπορεί να πάρει πολλή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update" : "Έλεγχος ενημέρωσης σχήματος βάσης δεδομένων",
+ "Checking updates of apps" : "Έλεγχος ενημερώσεων εφαρμογών",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Έλεγχος αν το σχήμα της βάσης δεδομένων για %s μπορεί να ενημερωθεί (αυτό μπορεί να πάρει πολλή ώρα ανάλογα με το μέγεθος της βάσης δεδομένων)",
"Checked database schema update for apps" : "Έλεγχος ενημέρωσης σχήματος βάσης δεδομένων για εφαρμογές",
"Updated \"%s\" to %s" : "Αναβαθμίστηκε \"%s\" σε %s",
"Repair warning: " : "Προειδοποίηση διόρθωσης:",
"Repair error: " : "Σφάλμα διόρθωσης:",
"Set log level to debug - current level: \"%s\"" : "Καθορισμός του επιπέδου καταγραφής σε αποσφαλμάτωση - τρέχον επίπεδο: \"%s\"",
"Reset log level to \"%s\"" : "Επαναφορά επιπέδου καταγραφής σε \"%s\"",
+ "%s (3rdparty)" : "%s (3ου μέρους)",
+ "%s (incompatible)" : "%s (ασύμβατη)",
"Following apps have been disabled: %s" : "Οι ακόλουθες εφαρμογές έχουν απενεργοποιηθεί: %s",
"Already up to date" : "Ήδη ενημερωμένο",
"File is too big" : "Το αρχείο είναι πολύ μεγάλο",
@@ -169,7 +175,9 @@
"Hello {name}" : "Γεια σου {name}",
"_download %n file_::_download %n files_" : ["λήψη %n αρχείου","λήψη %n αρχείων"],
"{version} is available. Get more information on how to update." : "Η έκδοση {version} είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες για το πως να κάνετε την ενημέρωση.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Η αναβάθμιση είναι σε εξέλιξη, αν φύγετε από αυτή τη σελίδα μπορεί να διακοπεί η διαδικασία σε ορισμένα περιβάλλοντα χρήσης.",
"Updating {productName} to version {version}, this may take a while." : "Ενημέρωση του {productName} στην έκδοση {version}, αυτό μπορεί να διαρκέσει λίγη ώρα.",
+ "An error occurred." : "Παρουσιάστηκε σφάλμα",
"Please reload the page." : "Παρακαλώ επαναφορτώστε τη σελίδα.",
"The update was unsuccessful. " : "Η ενημέρωση ήταν ανεπιτυχής.",
"The update was successful. There were warnings." : "Η ενημέρωση ήταν επιτυχής. Υπήρχαν προειδοποιήσεις.",
@@ -242,6 +250,7 @@
"Finishing …" : "Ολοκλήρωση...",
"Need help?" : "Θέλετε βοήθεια;",
"See the documentation" : "Δείτε την τεκμηρίωση",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γειά χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Αυτή η εφαρμογή απαιτεί JavaScript για σωστή λειτουργία. Παρακαλώ {linkstart} ενεργοποιήστε τη JavaScrip {linkend} και επαναφορτώστε τη σελίδα.",
"Log out" : "Αποσύνδεση",
"Search" : "Αναζήτηση",
@@ -251,8 +260,8 @@
"Please try again or contact your administrator." : "Παρακαλώ δοκιμάστε ξανά ή επικοινωνήστε με τον διαχειριστή σας.",
"Log in" : "Είσοδος",
"Wrong password. Reset it?" : "Λάθος Κωδικός. Επαναφορά;",
+ "Stay logged in" : "Μείνετε συνδεδεμένος",
"Alternative Logins" : "Εναλλακτικές Συνδέσεις",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Γειά χαρά,<br><br>απλά σας ενημερώνω πως ο %s μοιράστηκε το<strong>%s</strong> με εσάς.<br><a href=\"%s\">Δείτε το!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη.",
"This means only administrators can use the instance." : "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.",
diff --git a/core/l10n/es.js b/core/l10n/es.js
index 0015ec03030..774ff7ef9d2 100644
--- a/core/l10n/es.js
+++ b/core/l10n/es.js
@@ -246,6 +246,7 @@ OC.L10N.register(
"Finishing …" : "Finalizando...",
"Need help?" : "¿Necesita ayuda?",
"See the documentation" : "Vea la documentación",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Esta aplicación requiere JavaScript para operar correctamente. Por favor, {linkstart}habilite JavaScript{linkend} y recargue la página.",
"Log out" : "Salir",
"Search" : "Buscar",
@@ -255,9 +256,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Por favor reintente nuevamente o contáctese con su administrador.",
"Log in" : "Ingresar",
"Wrong password. Reset it?" : "Contraseña incorrecta. ¿Restablecerla?",
- "Stay logged in" : "Permanecer autentificado",
+ "Stay logged in" : "Permanecer autenticado",
"Alternative Logins" : "Inicios de sesión alternativos",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Esta instalación de ownCloud se encuentra en modo de usuario único.",
"This means only administrators can use the instance." : "Esto quiere decir que solo un administrador puede usarla.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.",
diff --git a/core/l10n/es.json b/core/l10n/es.json
index dc3084a4c8a..850e82d4195 100644
--- a/core/l10n/es.json
+++ b/core/l10n/es.json
@@ -244,6 +244,7 @@
"Finishing …" : "Finalizando...",
"Need help?" : "¿Necesita ayuda?",
"See the documentation" : "Vea la documentación",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Esta aplicación requiere JavaScript para operar correctamente. Por favor, {linkstart}habilite JavaScript{linkend} y recargue la página.",
"Log out" : "Salir",
"Search" : "Buscar",
@@ -253,9 +254,8 @@
"Please try again or contact your administrator." : "Por favor reintente nuevamente o contáctese con su administrador.",
"Log in" : "Ingresar",
"Wrong password. Reset it?" : "Contraseña incorrecta. ¿Restablecerla?",
- "Stay logged in" : "Permanecer autentificado",
+ "Stay logged in" : "Permanecer autenticado",
"Alternative Logins" : "Inicios de sesión alternativos",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hola:<br><br>Te comentamos que %s compartió <strong>%s</strong> contigo.<br><a href=\"%s\">¡Échale un vistazo!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Esta instalación de ownCloud se encuentra en modo de usuario único.",
"This means only administrators can use the instance." : "Esto quiere decir que solo un administrador puede usarla.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.",
diff --git a/core/l10n/fr.js b/core/l10n/fr.js
index ca23b9dd5f7..98a0128775b 100644
--- a/core/l10n/fr.js
+++ b/core/l10n/fr.js
@@ -252,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Finalisation …",
"Need help?" : "Besoin d'aide ?",
"See the documentation" : "Lire la documentation",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Cette application requiert JavaScript pour fonctionner correctement. Veuillez {linkstart}activer JavaScript{linkend} et recharger la page.",
"Log out" : "Se déconnecter",
"Search" : "Rechercher",
@@ -263,7 +264,6 @@ OC.L10N.register(
"Wrong password. Reset it?" : "Mot de passe incorrect. Réinitialiser ?",
"Stay logged in" : "Rester connecté",
"Alternative Logins" : "Identifiants alternatifs",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Cette instance de ownCloud est actuellement en mode utilisateur unique.",
"This means only administrators can use the instance." : "Cela signifie que seuls les administrateurs peuvent utiliser l'instance.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Veuillez contacter votre administrateur système si ce message persiste ou apparaît de façon inattendue.",
diff --git a/core/l10n/fr.json b/core/l10n/fr.json
index c7917b6d2e5..b1672b90a2d 100644
--- a/core/l10n/fr.json
+++ b/core/l10n/fr.json
@@ -250,6 +250,7 @@
"Finishing …" : "Finalisation …",
"Need help?" : "Besoin d'aide ?",
"See the documentation" : "Lire la documentation",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Cette application requiert JavaScript pour fonctionner correctement. Veuillez {linkstart}activer JavaScript{linkend} et recharger la page.",
"Log out" : "Se déconnecter",
"Search" : "Rechercher",
@@ -261,7 +262,6 @@
"Wrong password. Reset it?" : "Mot de passe incorrect. Réinitialiser ?",
"Stay logged in" : "Rester connecté",
"Alternative Logins" : "Identifiants alternatifs",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Bonjour,<br><br>Nous vous informons que %s a partagé <strong>%s</strong> avec vous.<br><a href=\"%s\">Cliquez ici pour y accéder !</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Cette instance de ownCloud est actuellement en mode utilisateur unique.",
"This means only administrators can use the instance." : "Cela signifie que seuls les administrateurs peuvent utiliser l'instance.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Veuillez contacter votre administrateur système si ce message persiste ou apparaît de façon inattendue.",
diff --git a/core/l10n/hu_HU.js b/core/l10n/hu_HU.js
index 6e10778b821..52c13fd96cd 100644
--- a/core/l10n/hu_HU.js
+++ b/core/l10n/hu_HU.js
@@ -6,14 +6,20 @@ OC.L10N.register(
"Turned on maintenance mode" : "A karbantartási mód bekapcsolva",
"Turned off maintenance mode" : "A karbantartási mód kikapcsolva",
"Maintenance mode is kept active" : "Karbantartási mód aktiválva marad",
+ "Updating database schema" : "Adatbázis séma frissítése",
"Updated database" : "Az adatbázis frissítése megtörtént",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Annak ellenőrzése, hogy az adatbázis sémát lehet-e frissíteni (ez hosszabb ideig is eltarthat az adatbázis méretétől függően)",
"Checked database schema update" : "Az adatbázis séma frissítését ellenőriztük",
+ "Checking updates of apps" : "Alkalmazások frissítésének ellenőrzése",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Annak ellenőrzése, hogy a(z) %s adatbázis sémáját lehet-e frissíteni (ez hosszabb ideig is eltarthat az adatbázis méretétől függően)",
"Checked database schema update for apps" : "Az adatbázis séma frissítését ellenőriztük az alkalmazásokra vontakozóan",
"Updated \"%s\" to %s" : "Frissítettük \"%s\"-t erre: %s",
"Repair warning: " : "Javítás figyelmeztetés:",
"Repair error: " : "Javítás hiba:",
"Set log level to debug - current level: \"%s\"" : "Hibakeresési naplózási szint beállítása - jelenlegi szint: \"%s\"",
"Reset log level to \"%s\"" : "Naplózási szint visszaállítása \"%s\"-re",
+ "%s (3rdparty)" : "%s (harmadik fél által)",
+ "%s (incompatible)" : "%s (nem kompatibilis)",
"Following apps have been disabled: %s" : "A következő applikációk lettek tiltva: %s",
"Already up to date" : "Már a legfrissebb változat",
"File is too big" : "A fájl túl nagy",
@@ -121,7 +127,7 @@ OC.L10N.register(
"Error while unsharing" : "Nem sikerült visszavonni a megosztást",
"Error while changing permissions" : "Nem sikerült módosítani a jogosultságokat",
"Error setting expiration date" : "Nem sikerült a lejárati időt beállítani",
- "The public link will expire no later than {days} days after it is created" : "A nyilvános link érvényessége legkorábban {days} nappal a létrehozása után jár csak le",
+ "The public link will expire no later than {days} days after it is created" : "A nyilvános hivatkozás érvényessége legkorábban {days} nappal a létrehozása után jár csak le",
"Set expiration date" : "Legyen lejárati idő",
"Expiration" : "Lejárat",
"Expiration date" : "A lejárati idő",
@@ -171,6 +177,7 @@ OC.L10N.register(
"Hello {name}" : "Hello {name}",
"_download %n file_::_download %n files_" : ["%n fájl letöltése","%n fájl letöltése"],
"{version} is available. Get more information on how to update." : "{version} rendelkezésre áll. További információ a frissítéshez.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "A frissítés folyamatban van, az oldal elhagyása néhány környezetben lehet, hogy megszakítja a folyamatot.",
"Updating {productName} to version {version}, this may take a while." : " {productName} frissítése zajlik erre a verzióra: {version}. Ez eltarthat egy darabig.",
"An error occurred." : "Hiba történt.",
"Please reload the page." : "Kérjük frissítse az oldalt!",
@@ -245,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Befejezés ...",
"Need help?" : "Segítségre van szüksége?",
"See the documentation" : "Nézze meg a dokumentációt",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdvözöljük!<br><br>\n\nÉrtesítjük, hogy %s megosztotta Önnel ezt az állományt: <strong>%s</strong><br>\n<a href=\"%s\">Itt lehet megnézni!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Az alkalmazás megfelelő működéséhez JavaScript szükséges. Kérem {linkstart}engedélyezze a JavaScript-et{linkend} és frissítse a lapot.",
"Log out" : "Kilépés",
"Search" : "Keresés",
@@ -254,8 +262,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Kérem próbálja újra, vagy vegye fel a kapcsolatot a rendszergazdával.",
"Log in" : "Bejelentkezés",
"Wrong password. Reset it?" : "Hibás jelszó. Visszaállítja?",
+ "Stay logged in" : "Maradjon bejelentkezve",
"Alternative Logins" : "Alternatív bejelentkezés",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdvözöljük!<br><br>\n\nÉrtesítjük, hogy %s megosztotta Önnel ezt az állományt: <strong>%s</strong><br>\n<a href=\"%s\">Itt lehet megnézni!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Ez az ownCloud szolgáltatás jelenleg egyfelhasználós üzemmódban működik.",
"This means only administrators can use the instance." : "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Ha ez az üzenet ismételten vagy indokolatlanul megjelenik, akkor keresse a rendszergazda segítségét!",
diff --git a/core/l10n/hu_HU.json b/core/l10n/hu_HU.json
index 2629c04d507..6c48c51b6d3 100644
--- a/core/l10n/hu_HU.json
+++ b/core/l10n/hu_HU.json
@@ -4,14 +4,20 @@
"Turned on maintenance mode" : "A karbantartási mód bekapcsolva",
"Turned off maintenance mode" : "A karbantartási mód kikapcsolva",
"Maintenance mode is kept active" : "Karbantartási mód aktiválva marad",
+ "Updating database schema" : "Adatbázis séma frissítése",
"Updated database" : "Az adatbázis frissítése megtörtént",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Annak ellenőrzése, hogy az adatbázis sémát lehet-e frissíteni (ez hosszabb ideig is eltarthat az adatbázis méretétől függően)",
"Checked database schema update" : "Az adatbázis séma frissítését ellenőriztük",
+ "Checking updates of apps" : "Alkalmazások frissítésének ellenőrzése",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Annak ellenőrzése, hogy a(z) %s adatbázis sémáját lehet-e frissíteni (ez hosszabb ideig is eltarthat az adatbázis méretétől függően)",
"Checked database schema update for apps" : "Az adatbázis séma frissítését ellenőriztük az alkalmazásokra vontakozóan",
"Updated \"%s\" to %s" : "Frissítettük \"%s\"-t erre: %s",
"Repair warning: " : "Javítás figyelmeztetés:",
"Repair error: " : "Javítás hiba:",
"Set log level to debug - current level: \"%s\"" : "Hibakeresési naplózási szint beállítása - jelenlegi szint: \"%s\"",
"Reset log level to \"%s\"" : "Naplózási szint visszaállítása \"%s\"-re",
+ "%s (3rdparty)" : "%s (harmadik fél által)",
+ "%s (incompatible)" : "%s (nem kompatibilis)",
"Following apps have been disabled: %s" : "A következő applikációk lettek tiltva: %s",
"Already up to date" : "Már a legfrissebb változat",
"File is too big" : "A fájl túl nagy",
@@ -119,7 +125,7 @@
"Error while unsharing" : "Nem sikerült visszavonni a megosztást",
"Error while changing permissions" : "Nem sikerült módosítani a jogosultságokat",
"Error setting expiration date" : "Nem sikerült a lejárati időt beállítani",
- "The public link will expire no later than {days} days after it is created" : "A nyilvános link érvényessége legkorábban {days} nappal a létrehozása után jár csak le",
+ "The public link will expire no later than {days} days after it is created" : "A nyilvános hivatkozás érvényessége legkorábban {days} nappal a létrehozása után jár csak le",
"Set expiration date" : "Legyen lejárati idő",
"Expiration" : "Lejárat",
"Expiration date" : "A lejárati idő",
@@ -169,6 +175,7 @@
"Hello {name}" : "Hello {name}",
"_download %n file_::_download %n files_" : ["%n fájl letöltése","%n fájl letöltése"],
"{version} is available. Get more information on how to update." : "{version} rendelkezésre áll. További információ a frissítéshez.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "A frissítés folyamatban van, az oldal elhagyása néhány környezetben lehet, hogy megszakítja a folyamatot.",
"Updating {productName} to version {version}, this may take a while." : " {productName} frissítése zajlik erre a verzióra: {version}. Ez eltarthat egy darabig.",
"An error occurred." : "Hiba történt.",
"Please reload the page." : "Kérjük frissítse az oldalt!",
@@ -243,6 +250,7 @@
"Finishing …" : "Befejezés ...",
"Need help?" : "Segítségre van szüksége?",
"See the documentation" : "Nézze meg a dokumentációt",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdvözöljük!<br><br>\n\nÉrtesítjük, hogy %s megosztotta Önnel ezt az állományt: <strong>%s</strong><br>\n<a href=\"%s\">Itt lehet megnézni!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Az alkalmazás megfelelő működéséhez JavaScript szükséges. Kérem {linkstart}engedélyezze a JavaScript-et{linkend} és frissítse a lapot.",
"Log out" : "Kilépés",
"Search" : "Keresés",
@@ -252,8 +260,8 @@
"Please try again or contact your administrator." : "Kérem próbálja újra, vagy vegye fel a kapcsolatot a rendszergazdával.",
"Log in" : "Bejelentkezés",
"Wrong password. Reset it?" : "Hibás jelszó. Visszaállítja?",
+ "Stay logged in" : "Maradjon bejelentkezve",
"Alternative Logins" : "Alternatív bejelentkezés",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Üdvözöljük!<br><br>\n\nÉrtesítjük, hogy %s megosztotta Önnel ezt az állományt: <strong>%s</strong><br>\n<a href=\"%s\">Itt lehet megnézni!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Ez az ownCloud szolgáltatás jelenleg egyfelhasználós üzemmódban működik.",
"This means only administrators can use the instance." : "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Ha ez az üzenet ismételten vagy indokolatlanul megjelenik, akkor keresse a rendszergazda segítségét!",
diff --git a/core/l10n/hy.js b/core/l10n/hy.js
index 4225d7efc7c..841c9a0d4e7 100644
--- a/core/l10n/hy.js
+++ b/core/l10n/hy.js
@@ -27,6 +27,21 @@ OC.L10N.register(
"October" : "Հոկտեմբեր",
"November" : "Նոյեմբեր",
"December" : "Դեկտեմբեր",
+ "Jan." : "Հնվ.",
+ "Feb." : "Փտվ.",
+ "Mar." : "Մրտ.",
+ "Apr." : "Ապր.",
+ "May." : "Մյս.",
+ "Jun." : "Հնս.",
+ "Jul." : "Հլս.",
+ "Aug." : "Օգս.",
+ "Sep." : "Սեպ.",
+ "Oct." : "Հոկ.",
+ "Nov." : "Նոյ.",
+ "Dec." : "Դեկ.",
+ "seconds ago" : "վրկ. առաջ",
+ "No" : "Ոչ",
+ "Yes" : "Այո",
"Cancel" : "Չեղարկել",
"Very weak password" : "Շատ թույլ գաղտնաբառ",
"Weak password" : "Թույլ գաղտնաբառ",
@@ -38,6 +53,7 @@ OC.L10N.register(
"group" : "խումբ",
"delete" : "ջնջել",
"Share" : "Կիսվել",
+ "Warning" : "Զգուշացում",
"Delete" : "Ջնջել",
"Add" : "Ավելացնել",
"New password" : "Նոր գաղտնաբառ",
diff --git a/core/l10n/hy.json b/core/l10n/hy.json
index a051b79bafd..722975e72e3 100644
--- a/core/l10n/hy.json
+++ b/core/l10n/hy.json
@@ -25,6 +25,21 @@
"October" : "Հոկտեմբեր",
"November" : "Նոյեմբեր",
"December" : "Դեկտեմբեր",
+ "Jan." : "Հնվ.",
+ "Feb." : "Փտվ.",
+ "Mar." : "Մրտ.",
+ "Apr." : "Ապր.",
+ "May." : "Մյս.",
+ "Jun." : "Հնս.",
+ "Jul." : "Հլս.",
+ "Aug." : "Օգս.",
+ "Sep." : "Սեպ.",
+ "Oct." : "Հոկ.",
+ "Nov." : "Նոյ.",
+ "Dec." : "Դեկ.",
+ "seconds ago" : "վրկ. առաջ",
+ "No" : "Ոչ",
+ "Yes" : "Այո",
"Cancel" : "Չեղարկել",
"Very weak password" : "Շատ թույլ գաղտնաբառ",
"Weak password" : "Թույլ գաղտնաբառ",
@@ -36,6 +51,7 @@
"group" : "խումբ",
"delete" : "ջնջել",
"Share" : "Կիսվել",
+ "Warning" : "Զգուշացում",
"Delete" : "Ջնջել",
"Add" : "Ավելացնել",
"New password" : "Նոր գաղտնաբառ",
diff --git a/core/l10n/id.js b/core/l10n/id.js
index 3e6b7a2b7ab..012f762d173 100644
--- a/core/l10n/id.js
+++ b/core/l10n/id.js
@@ -6,14 +6,20 @@ OC.L10N.register(
"Turned on maintenance mode" : "Hidupkan mode perawatan",
"Turned off maintenance mode" : "Matikan mode perawatan",
"Maintenance mode is kept active" : "Mode Pemeliharaan masih aktif",
+ "Updating database schema" : "Memperbarui skema basis data",
"Updated database" : "Basis data terbaru",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Memeriksa apakah skema basis data dapat diperbarui (dapat memerlukan waktu yang lama tergantung pada ukuran basis data)",
"Checked database schema update" : "Pembaruan skema basis data terperiksa",
+ "Checking updates of apps" : "Memeriksa pembaruan aplikasi",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Memeriksa apakah skema untuk %s dapat diperbarui (dapat memerlukan waktu yang lama tergantung pada ukuran basis data)",
"Checked database schema update for apps" : "Pembaruan skema basis data terperiksa untuk aplikasi",
"Updated \"%s\" to %s" : "Terbaru \"%s\" sampai %s",
"Repair warning: " : "Peringatan perbaikan:",
"Repair error: " : "Kesalahan perbaikan:",
"Set log level to debug - current level: \"%s\"" : "Atur level log untuk debug - level saat ini: \"%s\"",
"Reset log level to \"%s\"" : "Atur ulang level log menjadi \"%s\"",
+ "%s (3rdparty)" : "%s (pihak ke-3)",
+ "%s (incompatible)" : "%s (tidak kompatibel)",
"Following apps have been disabled: %s" : "Aplikasi berikut telah dinonaktifkan: %s",
"Already up to date" : "Sudah yang terbaru",
"File is too big" : "Berkas terlalu besar",
@@ -21,6 +27,7 @@ OC.L10N.register(
"No image or file provided" : "Tidak ada gambar atau berkas yang disediakan",
"Unknown filetype" : "Tipe berkas tidak dikenal",
"Invalid image" : "Gambar tidak sah",
+ "An error occurred. Please contact your admin." : "Terjadi kesalahan. Silakan hubungi admin Anda.",
"No temporary profile picture available, try again" : "Tidak ada gambar profil sementara yang tersedia, coba lagi",
"No crop data provided" : "Tidak ada data krop tersedia",
"No valid crop data provided" : "Tidak ada data valid untuk dipangkas",
@@ -170,7 +177,9 @@ OC.L10N.register(
"Hello {name}" : "Helo {name}",
"_download %n file_::_download %n files_" : ["unduh %n berkas"],
"{version} is available. Get more information on how to update." : "{version} tersedia. Dapatkan informasi lebih lanjut cara memperbaruinya.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Pembaruan sedang dalam proses, meninggalkan halaman ini mungkin dapat mengganggu proses di beberapa lingkungan.",
"Updating {productName} to version {version}, this may take a while." : "Memperbarui {productName} ke versi {version}, ini memerlukan waktu.",
+ "An error occurred." : "Terjadi kesalahan.",
"Please reload the page." : "Silakan muat ulang halaman.",
"The update was unsuccessful. " : "Pembaruan tidak berhasil.",
"The update was successful. There were warnings." : "Pembaruan telah berhasil. Terdapat peringatan.",
@@ -243,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Menyelesaikan ...",
"Need help?" : "Butuh bantuan?",
"See the documentation" : "Lihat dokumentasi",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Aplikasi ini memerlukan JavaScript untuk dapat beroperasi dengan benar. Mohon {linkstart}aktifkan JavaScript{linkend} dan muat ulang halaman ini.",
"Log out" : "Keluar",
"Search" : "Cari",
@@ -252,8 +262,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Mohon coba lagi atau hubungi administrator Anda.",
"Log in" : "Masuk",
"Wrong password. Reset it?" : "Sandi salah. Atur ulang?",
+ "Stay logged in" : "Tetap masuk",
"Alternative Logins" : "Cara Alternatif untuk Masuk",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "ownCloud ini sedang dalam mode pengguna tunggal.",
"This means only administrators can use the instance." : "Ini berarti hanya administrator yang dapat menggunakan ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba.",
diff --git a/core/l10n/id.json b/core/l10n/id.json
index cd9abb0e611..c78e73522a3 100644
--- a/core/l10n/id.json
+++ b/core/l10n/id.json
@@ -4,14 +4,20 @@
"Turned on maintenance mode" : "Hidupkan mode perawatan",
"Turned off maintenance mode" : "Matikan mode perawatan",
"Maintenance mode is kept active" : "Mode Pemeliharaan masih aktif",
+ "Updating database schema" : "Memperbarui skema basis data",
"Updated database" : "Basis data terbaru",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Memeriksa apakah skema basis data dapat diperbarui (dapat memerlukan waktu yang lama tergantung pada ukuran basis data)",
"Checked database schema update" : "Pembaruan skema basis data terperiksa",
+ "Checking updates of apps" : "Memeriksa pembaruan aplikasi",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Memeriksa apakah skema untuk %s dapat diperbarui (dapat memerlukan waktu yang lama tergantung pada ukuran basis data)",
"Checked database schema update for apps" : "Pembaruan skema basis data terperiksa untuk aplikasi",
"Updated \"%s\" to %s" : "Terbaru \"%s\" sampai %s",
"Repair warning: " : "Peringatan perbaikan:",
"Repair error: " : "Kesalahan perbaikan:",
"Set log level to debug - current level: \"%s\"" : "Atur level log untuk debug - level saat ini: \"%s\"",
"Reset log level to \"%s\"" : "Atur ulang level log menjadi \"%s\"",
+ "%s (3rdparty)" : "%s (pihak ke-3)",
+ "%s (incompatible)" : "%s (tidak kompatibel)",
"Following apps have been disabled: %s" : "Aplikasi berikut telah dinonaktifkan: %s",
"Already up to date" : "Sudah yang terbaru",
"File is too big" : "Berkas terlalu besar",
@@ -19,6 +25,7 @@
"No image or file provided" : "Tidak ada gambar atau berkas yang disediakan",
"Unknown filetype" : "Tipe berkas tidak dikenal",
"Invalid image" : "Gambar tidak sah",
+ "An error occurred. Please contact your admin." : "Terjadi kesalahan. Silakan hubungi admin Anda.",
"No temporary profile picture available, try again" : "Tidak ada gambar profil sementara yang tersedia, coba lagi",
"No crop data provided" : "Tidak ada data krop tersedia",
"No valid crop data provided" : "Tidak ada data valid untuk dipangkas",
@@ -168,7 +175,9 @@
"Hello {name}" : "Helo {name}",
"_download %n file_::_download %n files_" : ["unduh %n berkas"],
"{version} is available. Get more information on how to update." : "{version} tersedia. Dapatkan informasi lebih lanjut cara memperbaruinya.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Pembaruan sedang dalam proses, meninggalkan halaman ini mungkin dapat mengganggu proses di beberapa lingkungan.",
"Updating {productName} to version {version}, this may take a while." : "Memperbarui {productName} ke versi {version}, ini memerlukan waktu.",
+ "An error occurred." : "Terjadi kesalahan.",
"Please reload the page." : "Silakan muat ulang halaman.",
"The update was unsuccessful. " : "Pembaruan tidak berhasil.",
"The update was successful. There were warnings." : "Pembaruan telah berhasil. Terdapat peringatan.",
@@ -241,6 +250,7 @@
"Finishing …" : "Menyelesaikan ...",
"Need help?" : "Butuh bantuan?",
"See the documentation" : "Lihat dokumentasi",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Aplikasi ini memerlukan JavaScript untuk dapat beroperasi dengan benar. Mohon {linkstart}aktifkan JavaScript{linkend} dan muat ulang halaman ini.",
"Log out" : "Keluar",
"Search" : "Cari",
@@ -250,8 +260,8 @@
"Please try again or contact your administrator." : "Mohon coba lagi atau hubungi administrator Anda.",
"Log in" : "Masuk",
"Wrong password. Reset it?" : "Sandi salah. Atur ulang?",
+ "Stay logged in" : "Tetap masuk",
"Alternative Logins" : "Cara Alternatif untuk Masuk",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hai,<br><br>hanya memberi tahu jika %s membagikan <strong>%s</strong> dengan Anda.<br><a href=\"%s\">Lihat!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "ownCloud ini sedang dalam mode pengguna tunggal.",
"This means only administrators can use the instance." : "Ini berarti hanya administrator yang dapat menggunakan ownCloud.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba.",
diff --git a/core/l10n/it.js b/core/l10n/it.js
index c2cd5b8bd7c..02a288a5647 100644
--- a/core/l10n/it.js
+++ b/core/l10n/it.js
@@ -252,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Completamento...",
"Need help?" : "Ti serve aiuto?",
"See the documentation" : "Leggi la documentazione",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Questa applicazione richiede JavaScript per un corretto funzionamento. {linkstart}Abilita JavaScript{linkend} e ricarica la pagina.",
"Log out" : "Esci",
"Search" : "Cerca",
@@ -263,7 +264,6 @@ OC.L10N.register(
"Wrong password. Reset it?" : "Password errata. Vuoi reimpostarla?",
"Stay logged in" : "Rimani collegato",
"Alternative Logins" : "Accessi alternativi",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Questa istanza di ownCloud è in modalità utente singolo.",
"This means only administrators can use the instance." : "Ciò significa che solo gli amministratori possono utilizzare l'istanza.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.",
diff --git a/core/l10n/it.json b/core/l10n/it.json
index 06441a653cf..63e6e50886b 100644
--- a/core/l10n/it.json
+++ b/core/l10n/it.json
@@ -250,6 +250,7 @@
"Finishing …" : "Completamento...",
"Need help?" : "Ti serve aiuto?",
"See the documentation" : "Leggi la documentazione",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Questa applicazione richiede JavaScript per un corretto funzionamento. {linkstart}Abilita JavaScript{linkend} e ricarica la pagina.",
"Log out" : "Esci",
"Search" : "Cerca",
@@ -261,7 +262,6 @@
"Wrong password. Reset it?" : "Password errata. Vuoi reimpostarla?",
"Stay logged in" : "Rimani collegato",
"Alternative Logins" : "Accessi alternativi",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Ciao,<br><br>volevo informarti che %s ha condiviso <strong>%s</strong> con te.<br><a href=\"%s\">Guarda!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Questa istanza di ownCloud è in modalità utente singolo.",
"This means only administrators can use the instance." : "Ciò significa che solo gli amministratori possono utilizzare l'istanza.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.",
diff --git a/core/l10n/ja.js b/core/l10n/ja.js
index 51b2094f715..84c4b1bb0df 100644
--- a/core/l10n/ja.js
+++ b/core/l10n/ja.js
@@ -139,7 +139,7 @@ OC.L10N.register(
"Link" : "リンク",
"Password protect" : "パスワード保護を有効化",
"Password" : "パスワード",
- "Allow editing" : "編集許可",
+ "Allow editing" : "編集を許可",
"Email link to person" : "メールリンク",
"Send" : "送信",
"Shared with you and the group {group} by {owner}" : "あなたと {owner} のグループ {group} で共有中",
@@ -252,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "作業を完了しています ...",
"Need help?" : "ヘルプが必要ですか?",
"See the documentation" : "ドキュメントを確認してください",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "このアプリケーションの動作にはJavaScriptが必要です。\n {linkstart}JavaScriptを有効にし{linkend} 、ページを更新してください。 ",
"Log out" : "ログアウト",
"Search" : "検索",
@@ -263,7 +264,6 @@ OC.L10N.register(
"Wrong password. Reset it?" : "パスワードが間違っています。リセットしますか?",
"Stay logged in" : "ログインしたままにする",
"Alternative Logins" : "代替ログイン",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
"This ownCloud instance is currently in single user mode." : "このownCloudインスタンスは、現在シングルユーザーモードです。",
"This means only administrators can use the instance." : "これは、管理者のみがインスタンスを利用できることを意味しています。",
"Contact your system administrator if this message persists or appeared unexpectedly." : "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に問い合わせてください。",
@@ -273,8 +273,8 @@ OC.L10N.register(
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "環境により、下のボタンで信頼するドメインに追加する必要があるかもしれません。",
"Add \"%s\" as trusted domain" : "\"%s\" を信頼するドメイン名に追加",
"App update required" : "アプリの更新が必要",
- "%s will be updated to version %s" : "%s が %s バーションへ更新される",
- "These apps will be updated:" : "次のアプリは更新される:",
+ "%s will be updated to version %s" : "%s は バーション %s にアップデートされます",
+ "These apps will be updated:" : "次のアプリはアップデートされます:",
"These incompatible apps will be disabled:" : "次の非互換のないアプリは無効になる:",
"The theme %s has been disabled." : "テーマ %s が無効になっています。",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "データベースを確認してください。実行前にconfigフォルダーとdataフォルダーをバックアップします。",
diff --git a/core/l10n/ja.json b/core/l10n/ja.json
index 84c2efa55ef..f8e5ccd4328 100644
--- a/core/l10n/ja.json
+++ b/core/l10n/ja.json
@@ -137,7 +137,7 @@
"Link" : "リンク",
"Password protect" : "パスワード保護を有効化",
"Password" : "パスワード",
- "Allow editing" : "編集許可",
+ "Allow editing" : "編集を許可",
"Email link to person" : "メールリンク",
"Send" : "送信",
"Shared with you and the group {group} by {owner}" : "あなたと {owner} のグループ {group} で共有中",
@@ -250,6 +250,7 @@
"Finishing …" : "作業を完了しています ...",
"Need help?" : "ヘルプが必要ですか?",
"See the documentation" : "ドキュメントを確認してください",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "このアプリケーションの動作にはJavaScriptが必要です。\n {linkstart}JavaScriptを有効にし{linkend} 、ページを更新してください。 ",
"Log out" : "ログアウト",
"Search" : "検索",
@@ -261,7 +262,6 @@
"Wrong password. Reset it?" : "パスワードが間違っています。リセットしますか?",
"Stay logged in" : "ログインしたままにする",
"Alternative Logins" : "代替ログイン",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "こんにちは、<br><br>%sがあなたと »%s« を共有したことをお知らせします。<br><a href=\"%s\">それを表示</a><br><br>",
"This ownCloud instance is currently in single user mode." : "このownCloudインスタンスは、現在シングルユーザーモードです。",
"This means only administrators can use the instance." : "これは、管理者のみがインスタンスを利用できることを意味しています。",
"Contact your system administrator if this message persists or appeared unexpectedly." : "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に問い合わせてください。",
@@ -271,8 +271,8 @@
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "環境により、下のボタンで信頼するドメインに追加する必要があるかもしれません。",
"Add \"%s\" as trusted domain" : "\"%s\" を信頼するドメイン名に追加",
"App update required" : "アプリの更新が必要",
- "%s will be updated to version %s" : "%s が %s バーションへ更新される",
- "These apps will be updated:" : "次のアプリは更新される:",
+ "%s will be updated to version %s" : "%s は バーション %s にアップデートされます",
+ "These apps will be updated:" : "次のアプリはアップデートされます:",
"These incompatible apps will be disabled:" : "次の非互換のないアプリは無効になる:",
"The theme %s has been disabled." : "テーマ %s が無効になっています。",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "データベースを確認してください。実行前にconfigフォルダーとdataフォルダーをバックアップします。",
diff --git a/core/l10n/ko.js b/core/l10n/ko.js
index f03fc4131b3..f2259373023 100644
--- a/core/l10n/ko.js
+++ b/core/l10n/ko.js
@@ -6,14 +6,20 @@ OC.L10N.register(
"Turned on maintenance mode" : "유지 보수 모드 켜짐",
"Turned off maintenance mode" : "유지 보수 모드 꺼짐",
"Maintenance mode is kept active" : "유지 보수 모드가 켜져 있음",
+ "Updating database schema" : "데이터베이스 스키마 업데이트 중",
"Updated database" : "데이터베이스 업데이트 됨",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "데이터베이스 스키마 업데이트 가능 여부 확인 중(데이터베이스 크기에 따라서 오래 걸릴 수도 있습니다)",
"Checked database schema update" : "데이터베이스 스키마 업데이트 확인됨",
+ "Checking updates of apps" : "앱 업데이트 확인 중",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s의 데이터베이스 스키마 업데이트 가능 여부 확인 중(데이터베이스 크기에 따라서 오래 걸릴 수도 있습니다)",
"Checked database schema update for apps" : "앱용 데이터베이스 스키마 업데이트 확인됨",
"Updated \"%s\" to %s" : "\"%s\"을(를) %s(으)로 업데이트함",
"Repair warning: " : "수리 경고:",
"Repair error: " : "수리 오류:",
"Set log level to debug - current level: \"%s\"" : "로그 단계를 디버그로 설정함 - 현재 단계: \"%s\"",
"Reset log level to \"%s\"" : "로그 단계를 \"%s\"(으)로 초기화",
+ "%s (3rdparty)" : "%s(제 3사)",
+ "%s (incompatible)" : "%s(호환 불가)",
"Following apps have been disabled: %s" : "다음 앱이 비활성화되었습니다: %s",
"Already up to date" : "최신 상태임",
"File is too big" : "파일이 너무 큼",
@@ -171,6 +177,7 @@ OC.L10N.register(
"Hello {name}" : "{name} 님 안녕하세요",
"_download %n file_::_download %n files_" : ["파일 %n개 다운로드"],
"{version} is available. Get more information on how to update." : "{version}을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 알아보십시오.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "업그레이드 중입니다. 이 페이지를 열어 두면 일부 환경에서 진행 과정을 중단시킬 수 있습니다.",
"Updating {productName} to version {version}, this may take a while." : "{productName}을(를) 버전 {version}으로 업데이트하고 있습니다. 시간이 걸릴 수 있습니다.",
"An error occurred." : "오류가 발생했습니다.",
"Please reload the page." : "페이지를 새로 고치십시오.",
@@ -245,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "완료 중 ...",
"Need help?" : "도움이 필요한가요?",
"See the documentation" : "문서 보기",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "이 프로그램이 올바르게 작동하려면 JavaScript가 필요합니다. {linkstart}JavaScript를 활성화{linkend}한 다음 페이지를 새로 고치십시오.",
"Log out" : "로그아웃",
"Search" : "검색",
@@ -254,8 +262,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "다시 시도하거나 관리자에게 연락하십시오.",
"Log in" : "로그인",
"Wrong password. Reset it?" : "암호가 잘못되었습니다. 다시 설정하시겠습니까?",
+ "Stay logged in" : "로그인 유지",
"Alternative Logins" : "대체 로그인",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다.",
"This means only administrators can use the instance." : "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오",
diff --git a/core/l10n/ko.json b/core/l10n/ko.json
index 64cd2cbd951..43b09d13f1c 100644
--- a/core/l10n/ko.json
+++ b/core/l10n/ko.json
@@ -4,14 +4,20 @@
"Turned on maintenance mode" : "유지 보수 모드 켜짐",
"Turned off maintenance mode" : "유지 보수 모드 꺼짐",
"Maintenance mode is kept active" : "유지 보수 모드가 켜져 있음",
+ "Updating database schema" : "데이터베이스 스키마 업데이트 중",
"Updated database" : "데이터베이스 업데이트 됨",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "데이터베이스 스키마 업데이트 가능 여부 확인 중(데이터베이스 크기에 따라서 오래 걸릴 수도 있습니다)",
"Checked database schema update" : "데이터베이스 스키마 업데이트 확인됨",
+ "Checking updates of apps" : "앱 업데이트 확인 중",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "%s의 데이터베이스 스키마 업데이트 가능 여부 확인 중(데이터베이스 크기에 따라서 오래 걸릴 수도 있습니다)",
"Checked database schema update for apps" : "앱용 데이터베이스 스키마 업데이트 확인됨",
"Updated \"%s\" to %s" : "\"%s\"을(를) %s(으)로 업데이트함",
"Repair warning: " : "수리 경고:",
"Repair error: " : "수리 오류:",
"Set log level to debug - current level: \"%s\"" : "로그 단계를 디버그로 설정함 - 현재 단계: \"%s\"",
"Reset log level to \"%s\"" : "로그 단계를 \"%s\"(으)로 초기화",
+ "%s (3rdparty)" : "%s(제 3사)",
+ "%s (incompatible)" : "%s(호환 불가)",
"Following apps have been disabled: %s" : "다음 앱이 비활성화되었습니다: %s",
"Already up to date" : "최신 상태임",
"File is too big" : "파일이 너무 큼",
@@ -169,6 +175,7 @@
"Hello {name}" : "{name} 님 안녕하세요",
"_download %n file_::_download %n files_" : ["파일 %n개 다운로드"],
"{version} is available. Get more information on how to update." : "{version}을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 알아보십시오.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "업그레이드 중입니다. 이 페이지를 열어 두면 일부 환경에서 진행 과정을 중단시킬 수 있습니다.",
"Updating {productName} to version {version}, this may take a while." : "{productName}을(를) 버전 {version}으로 업데이트하고 있습니다. 시간이 걸릴 수 있습니다.",
"An error occurred." : "오류가 발생했습니다.",
"Please reload the page." : "페이지를 새로 고치십시오.",
@@ -243,6 +250,7 @@
"Finishing …" : "완료 중 ...",
"Need help?" : "도움이 필요한가요?",
"See the documentation" : "문서 보기",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "이 프로그램이 올바르게 작동하려면 JavaScript가 필요합니다. {linkstart}JavaScript를 활성화{linkend}한 다음 페이지를 새로 고치십시오.",
"Log out" : "로그아웃",
"Search" : "검색",
@@ -252,8 +260,8 @@
"Please try again or contact your administrator." : "다시 시도하거나 관리자에게 연락하십시오.",
"Log in" : "로그인",
"Wrong password. Reset it?" : "암호가 잘못되었습니다. 다시 설정하시겠습니까?",
+ "Stay logged in" : "로그인 유지",
"Alternative Logins" : "대체 로그인",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "안녕하세요,<br><br>%s 님이 <strong>%s</strong>을(를) 공유하였음을 알려 드립니다.<br><a href=\"%s\">보러 가기!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다.",
"This means only administrators can use the instance." : "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오",
diff --git a/core/l10n/nl.js b/core/l10n/nl.js
index 5391e2b9966..90dfb6c66a7 100644
--- a/core/l10n/nl.js
+++ b/core/l10n/nl.js
@@ -252,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "Afronden ...",
"Need help?" : "Hulp nodig?",
"See the documentation" : "Zie de documentatie",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>%s deelt <strong>%s</strong> met u.<br><a href=\"%s\">Bekijk hier!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Deze applicatie heeft JavaScript nodig. {linkstart}Activeer JavaScript{linkend} en ververs deze pagina.",
"Log out" : "Afmelden",
"Search" : "Zoeken",
@@ -263,7 +264,6 @@ OC.L10N.register(
"Wrong password. Reset it?" : "Onjuist wachtwoord. Resetten?",
"Stay logged in" : "Ingelogd blijven",
"Alternative Logins" : "Alternatieve inlogs",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>%s deelt <strong>%s</strong> met u.<br><a href=\"%s\">Bekijk hier!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Deze ownCloud werkt momenteel in enkele gebruiker modus.",
"This means only administrators can use the instance." : "Dat betekent dat alleen beheerders deze installatie kunnen gebruiken.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Neem contact op met uw systeembeheerder als deze melding aanhoudt of onverwacht verscheen.",
diff --git a/core/l10n/nl.json b/core/l10n/nl.json
index f0fa15c88af..a65c6f7c001 100644
--- a/core/l10n/nl.json
+++ b/core/l10n/nl.json
@@ -250,6 +250,7 @@
"Finishing …" : "Afronden ...",
"Need help?" : "Hulp nodig?",
"See the documentation" : "Zie de documentatie",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>%s deelt <strong>%s</strong> met u.<br><a href=\"%s\">Bekijk hier!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Deze applicatie heeft JavaScript nodig. {linkstart}Activeer JavaScript{linkend} en ververs deze pagina.",
"Log out" : "Afmelden",
"Search" : "Zoeken",
@@ -261,7 +262,6 @@
"Wrong password. Reset it?" : "Onjuist wachtwoord. Resetten?",
"Stay logged in" : "Ingelogd blijven",
"Alternative Logins" : "Alternatieve inlogs",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Hallo,<br><br>%s deelt <strong>%s</strong> met u.<br><a href=\"%s\">Bekijk hier!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Deze ownCloud werkt momenteel in enkele gebruiker modus.",
"This means only administrators can use the instance." : "Dat betekent dat alleen beheerders deze installatie kunnen gebruiken.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Neem contact op met uw systeembeheerder als deze melding aanhoudt of onverwacht verscheen.",
diff --git a/core/l10n/pt_PT.js b/core/l10n/pt_PT.js
index c4377bfe369..e00f09e7eff 100644
--- a/core/l10n/pt_PT.js
+++ b/core/l10n/pt_PT.js
@@ -8,10 +8,14 @@ OC.L10N.register(
"Maintenance mode is kept active" : "O modo de manutenção é mantido ativo",
"Updated database" : "Base de dados atualizada",
"Checked database schema update" : "Atualização do esquema da base de dados verificada.",
+ "Checking updates of apps" : "A procurar por atualizações das apps",
"Checked database schema update for apps" : "Atualização do esquema da base de dados verificada.",
"Updated \"%s\" to %s" : "Atualizado \"%s\" para %s",
"Repair warning: " : "Aviso de reparação:",
"Repair error: " : "Corrija o erro:",
+ "Reset log level to \"%s\"" : "Reiniciar o nível de registo para \"%s\"",
+ "%s (3rdparty)" : "%s (terceiros)",
+ "%s (incompatible)" : "%s (incompatível)",
"Following apps have been disabled: %s" : "As seguintes apps foram desativadas: %s",
"Already up to date" : "Já está atualizado",
"File is too big" : "O ficheiro é muito grande",
@@ -19,6 +23,7 @@ OC.L10N.register(
"No image or file provided" : "Não foi fornecido nenhum ficheiro ou imagem",
"Unknown filetype" : "Tipo de ficheiro desconhecido",
"Invalid image" : "Imagem inválida",
+ "An error occurred. Please contact your admin." : "Ocorreu um erro. Por favor, contacte o seu administrador.",
"No temporary profile picture available, try again" : "Fotografia temporária do perfil indisponível, tente novamente",
"No crop data provided" : "Não foram fornecidos dados de recorte",
"No valid crop data provided" : "Não foram indicados dados de recorte válidos",
@@ -143,6 +148,7 @@ OC.L10N.register(
"change" : "alterar",
"delete" : "apagar",
"access control" : "controlo de acesso",
+ "Share details could not be loaded for this item." : "Não foi possível carregar os detalhes de partilha para este item.",
"An error occured. Please try again" : "Ocorreu um erro. Por favor, tente de novo",
"Share" : "Compartilhar",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Compartilhe com as pessoas nas outras ownClouds utilizando a sintaxe username@example.com/owncloud",
@@ -165,6 +171,7 @@ OC.L10N.register(
"_download %n file_::_download %n files_" : ["transferir %n ficheiro","transferir %n ficheiros"],
"{version} is available. Get more information on how to update." : "{version} está disponível. Obtenha mais informação sobre como atualizar.",
"Updating {productName} to version {version}, this may take a while." : "A atualizar {productName} para a versão {version}, isto poderá demorar algum tempo.",
+ "An error occurred." : "Ocorreu um erro.",
"Please reload the page." : "Por favor, recarregue a página.",
"The update was unsuccessful. " : "Não foi possível atualizar.",
"The update was successful. There were warnings." : "A atualização foi bem sucedida. Tem alguns avisos.",
@@ -179,6 +186,7 @@ OC.L10N.register(
"New Password" : "Nova palavra-passe",
"Reset password" : "Repor palavra-passe",
"Searching other places" : "A pesquisar noutros lugares",
+ "No search results in other folders" : "Sem resultados de procura nas outras pastas",
"Personal" : "Pessoal",
"Users" : "Utilizadores",
"Apps" : "Apps",
@@ -235,6 +243,7 @@ OC.L10N.register(
"Finishing …" : "A terminar...",
"Need help?" : "Precisa de ajuda?",
"See the documentation" : "Veja a documentação",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Esta aplicação requer JavaScript para funcionar correctamente. Por favor, {linkstart}active o JavaScript{linkend} e recarregue a página.",
"Log out" : "Terminar sessão",
"Search" : "Procurar",
@@ -244,8 +253,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Por favor tente de novo ou contacte o administrador.",
"Log in" : "Iniciar Sessão",
"Wrong password. Reset it?" : "Senha errada. Repô-la?",
+ "Stay logged in" : "Manter sessão iniciada",
"Alternative Logins" : "Contas de acesso alternativas",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Esta instância do ownCloud está actualmente configurada no modo de utilizador único.",
"This means only administrators can use the instance." : "Isto significa que apenas os administradores podem usar a instância.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contacte o seu administrador de sistema se esta mensagem continuar a aparecer ou apareceu inesperadamente.",
diff --git a/core/l10n/pt_PT.json b/core/l10n/pt_PT.json
index db98705fb2c..b0bf92a78c8 100644
--- a/core/l10n/pt_PT.json
+++ b/core/l10n/pt_PT.json
@@ -6,10 +6,14 @@
"Maintenance mode is kept active" : "O modo de manutenção é mantido ativo",
"Updated database" : "Base de dados atualizada",
"Checked database schema update" : "Atualização do esquema da base de dados verificada.",
+ "Checking updates of apps" : "A procurar por atualizações das apps",
"Checked database schema update for apps" : "Atualização do esquema da base de dados verificada.",
"Updated \"%s\" to %s" : "Atualizado \"%s\" para %s",
"Repair warning: " : "Aviso de reparação:",
"Repair error: " : "Corrija o erro:",
+ "Reset log level to \"%s\"" : "Reiniciar o nível de registo para \"%s\"",
+ "%s (3rdparty)" : "%s (terceiros)",
+ "%s (incompatible)" : "%s (incompatível)",
"Following apps have been disabled: %s" : "As seguintes apps foram desativadas: %s",
"Already up to date" : "Já está atualizado",
"File is too big" : "O ficheiro é muito grande",
@@ -17,6 +21,7 @@
"No image or file provided" : "Não foi fornecido nenhum ficheiro ou imagem",
"Unknown filetype" : "Tipo de ficheiro desconhecido",
"Invalid image" : "Imagem inválida",
+ "An error occurred. Please contact your admin." : "Ocorreu um erro. Por favor, contacte o seu administrador.",
"No temporary profile picture available, try again" : "Fotografia temporária do perfil indisponível, tente novamente",
"No crop data provided" : "Não foram fornecidos dados de recorte",
"No valid crop data provided" : "Não foram indicados dados de recorte válidos",
@@ -141,6 +146,7 @@
"change" : "alterar",
"delete" : "apagar",
"access control" : "controlo de acesso",
+ "Share details could not be loaded for this item." : "Não foi possível carregar os detalhes de partilha para este item.",
"An error occured. Please try again" : "Ocorreu um erro. Por favor, tente de novo",
"Share" : "Compartilhar",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Compartilhe com as pessoas nas outras ownClouds utilizando a sintaxe username@example.com/owncloud",
@@ -163,6 +169,7 @@
"_download %n file_::_download %n files_" : ["transferir %n ficheiro","transferir %n ficheiros"],
"{version} is available. Get more information on how to update." : "{version} está disponível. Obtenha mais informação sobre como atualizar.",
"Updating {productName} to version {version}, this may take a while." : "A atualizar {productName} para a versão {version}, isto poderá demorar algum tempo.",
+ "An error occurred." : "Ocorreu um erro.",
"Please reload the page." : "Por favor, recarregue a página.",
"The update was unsuccessful. " : "Não foi possível atualizar.",
"The update was successful. There were warnings." : "A atualização foi bem sucedida. Tem alguns avisos.",
@@ -177,6 +184,7 @@
"New Password" : "Nova palavra-passe",
"Reset password" : "Repor palavra-passe",
"Searching other places" : "A pesquisar noutros lugares",
+ "No search results in other folders" : "Sem resultados de procura nas outras pastas",
"Personal" : "Pessoal",
"Users" : "Utilizadores",
"Apps" : "Apps",
@@ -233,6 +241,7 @@
"Finishing …" : "A terminar...",
"Need help?" : "Precisa de ajuda?",
"See the documentation" : "Veja a documentação",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Esta aplicação requer JavaScript para funcionar correctamente. Por favor, {linkstart}active o JavaScript{linkend} e recarregue a página.",
"Log out" : "Terminar sessão",
"Search" : "Procurar",
@@ -242,8 +251,8 @@
"Please try again or contact your administrator." : "Por favor tente de novo ou contacte o administrador.",
"Log in" : "Iniciar Sessão",
"Wrong password. Reset it?" : "Senha errada. Repô-la?",
+ "Stay logged in" : "Manter sessão iniciada",
"Alternative Logins" : "Contas de acesso alternativas",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Olá,<br><br>apenas para informar que %s partilhou <strong>%s</strong> consigo.<br><a href=\"%s\">Consulte aqui!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Esta instância do ownCloud está actualmente configurada no modo de utilizador único.",
"This means only administrators can use the instance." : "Isto significa que apenas os administradores podem usar a instância.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Contacte o seu administrador de sistema se esta mensagem continuar a aparecer ou apareceu inesperadamente.",
diff --git a/core/l10n/sk_SK.js b/core/l10n/sk_SK.js
index ce4695fe4e4..97114cd1ceb 100644
--- a/core/l10n/sk_SK.js
+++ b/core/l10n/sk_SK.js
@@ -2,19 +2,32 @@ OC.L10N.register(
"core",
{
"Couldn't send mail to following users: %s " : "Nebolo možné odoslať email týmto používateľom: %s ",
+ "Preparing update" : "Pripravuje sa aktualizácia",
"Turned on maintenance mode" : "Mód údržby je zapnutý",
"Turned off maintenance mode" : "Mód údržby je vypnutý",
"Maintenance mode is kept active" : "Režim údržby je stále aktívny",
+ "Updating database schema" : "Aktualizuje sa schéma databázy",
"Updated database" : "Databáza je aktualizovaná",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Kontroluje sa, či je možné aktualizovať schému databázy (to môže trvať dlhší čas v závislosti na veľkosti databázy)",
"Checked database schema update" : "Skontrolovať aktualizáciu schémy databázy",
+ "Checking updates of apps" : "Kontrolujú sa aktualizácie aplikácií",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Kontroluje sa, či je možné aktualizovať schému databázy pre %s (to môže trvať dlhší čas v závislosti na veľkosti databázy)",
"Checked database schema update for apps" : "Aktualizácia schémy databázy aplikácií bola overená",
"Updated \"%s\" to %s" : "Aktualizované \"%s\" na %s",
"Repair warning: " : "Oznámenie opravy:",
"Repair error: " : "Chyba opravy:",
+ "Set log level to debug - current level: \"%s\"" : "Nastaviť úroveň záznamu na debug - aktuálna úroveň: \"%s\"",
+ "Reset log level to \"%s\"" : "Vrátiť úroveň záznamu na „%s“",
+ "%s (3rdparty)" : "%s (od tretej strany)",
+ "%s (incompatible)" : "%s (nekompatibilná)",
+ "Following apps have been disabled: %s" : "Nasledovné aplikácie boli zakázané: %s",
+ "Already up to date" : "Už aktuálne",
+ "File is too big" : "Súbor je príliš veľký",
"Invalid file provided" : "Zadaný neplatný súbor",
"No image or file provided" : "Obrázok alebo súbor nebol zadaný",
"Unknown filetype" : "Neznámy typ súboru",
"Invalid image" : "Chybný obrázok",
+ "An error occurred. Please contact your admin." : "Vyskytla sa chyba.\nProsím, kontaktujte svojho správcu.\n\t",
"No temporary profile picture available, try again" : "Dočasný profilový obrázok nie je k dispozícii, skúste to znovu",
"No crop data provided" : "Dáta pre orezanie neboli zadané",
"No valid crop data provided" : "Neplatné dáta pre orezanie neboli zadané",
@@ -98,6 +111,7 @@ OC.L10N.register(
"Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Váš webový server nie je zatiaľ správne nastavený, aby umožnil synchronizáciu súborov, pretože rozhranie WebDAV sa zdá byť nefunkčné.",
"This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Vzdialený prístup k súborom a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky funkcie, odporúčame povoliť tomuto serveru pripojenie k internetu.",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Dôrazne odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný alebo presunúť priečinok s dátami mimo priestoru, ktorý webový server sprístupňuje.",
+ "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "PHP nedokáže čítať z /dev/urandom, čo sa z bezpečnostných dôvodov dôrazne neodporúča. Ďalšie informácie nájdete v našej <a href=\"{docLink}\">dokumentácii</a>.",
"Error occurred while checking server setup" : "Počas kontroly nastavenia serveru sa stala chyba",
"Shared" : "Zdieľané",
"Shared with {recipients}" : "Zdieľa s {recipients}",
@@ -134,11 +148,14 @@ OC.L10N.register(
"change" : "zmeniť",
"delete" : "vymazať",
"access control" : "prístupové práva",
+ "Share details could not be loaded for this item." : "Nebolo možné načítať údaje o zdieľaní tejto položky.",
"An error occured. Please try again" : "Nastala chyba. Skúste to znovu",
"Share" : "Zdieľať",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Zdieľať s ľuďmi na iných serveroch ownClouds pomocou syntaxe používateľ@doména.com/owncloud",
"Share with users or groups …" : "Zdieľať s používateľmi alebo skupinami ...",
"Share with users, groups or remote users …" : "Zdieľať s používateľmi, skupinami alebo vzdialenými používateľmi ...",
"Warning" : "Varovanie",
+ "Error while sending notification" : "Chyba pri posielaní oznámenia",
"The object type is not specified." : "Nešpecifikovaný typ objektu.",
"Enter new" : "Zadať nový",
"Delete" : "Zmazať",
@@ -153,11 +170,15 @@ OC.L10N.register(
"Hello {name}" : "Vitaj {name}",
"_download %n file_::_download %n files_" : ["stiahnuť %n súbor","stiahnuť %n súbory","stiahnuť %n súborov"],
"{version} is available. Get more information on how to update." : "{version} je dostupná. Získajte viac informácií o postupe aktualizácie.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Aktualizácie prebieha. V niektorých prostrediach môže opustenie tejto stránky spôsobiť prerušenie aktualizácie.",
"Updating {productName} to version {version}, this may take a while." : "Aktualizujem {productName} na verziu {version}, chvíľu to môže trvať.",
+ "An error occurred." : "Vyskytla sa chyba.",
"Please reload the page." : "Obnovte prosím stránku.",
"The update was unsuccessful. " : "Aktualizácia bola neúspešná.",
+ "The update was successful. There were warnings." : "Aktualizácia bola úspešná. Vyskytli sa upozornenia.",
"The update was successful. Redirecting you to ownCloud now." : "Aktualizácia bola úspešná. Presmerovávam vás na prihlasovaciu stránku.",
"Couldn't reset password because the token is invalid" : "Nemožno zmeniť heslo pre neplatnosť tokenu.",
+ "Couldn't reset password because the token is expired" : "Nepodarilo sa obnoviť heslo, pretože platnosť tokenu uplynula.",
"Couldn't send reset email. Please make sure your username is correct." : "Nemožno poslať email pre obnovu. Uistite sa, či vkladáte správne používateľské meno.",
"Couldn't send reset email because there is no email address for this username. Please contact your administrator." : "Nemožno poslať email pre obnovu hesla, pretože pre tohoto používateľa nie je uvedená žiadna emailová adresa. Prosím, obráťte sa na administrátora.",
"%s password reset" : "reset hesla %s",
@@ -166,6 +187,8 @@ OC.L10N.register(
"New Password" : "Nové heslo",
"Reset password" : "Obnovenie hesla",
"Searching other places" : "Prehľadanie ostatných umiestnení",
+ "No search results in other folders" : "Žiadne výsledky vyhľadávania v ostatných priečinkoch",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} výsledok vyhľadávania v ostatných priečinkoch","{count} výsledky vyhľadávania v ostatných priečinkoch","{count} výsledkov vyhľadávania v ostatných priečinkoch"],
"Personal" : "Osobné",
"Users" : "Používatelia",
"Apps" : "Aplikácie",
@@ -222,6 +245,7 @@ OC.L10N.register(
"Finishing …" : "Dokončujem...",
"Need help?" : "Potrebujete pomoc?",
"See the documentation" : "Pozri dokumentáciu",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>Používateľ %s zdieľa s vami súbor, alebo priečinok s názvom »%s«.<br><a href=\"%s\">Pre zobrazenie kliknite na túto linku!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Táto aplikácia vyžaduje JavaScript, aby správne fungovala. Prosím, {linkstart}zapnite si JavaScript{linkend} a obnovte stránku",
"Log out" : "Odhlásiť",
"Search" : "Hľadať",
@@ -231,8 +255,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Skúste to znovu, alebo sa obráťte na vášho administrátora.",
"Log in" : "Prihlásiť sa",
"Wrong password. Reset it?" : "Chybné heslo. Chcete ho obnoviť?",
+ "Stay logged in" : "Zostať prihlásený",
"Alternative Logins" : "Alternatívne prihlásenie",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>Používateľ %s zdieľa s vami súbor, alebo priečinok s názvom »%s«.<br><a href=\"%s\">Pre zobrazenie kliknite na túto linku!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Táto inštancia ownCloudu je teraz v jednopoužívateľskom móde.",
"This means only administrators can use the instance." : "Len správca systému môže používať túto inštanciu.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontaktujte prosím správcu systému, ak sa táto správa objavuje opakovane alebo neočakávane.",
@@ -241,7 +265,10 @@ OC.L10N.register(
"Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Kontaktujte správcu. Ak ste správcom tejto inštancie, nakonfigurujte správne nastavenie \"trusted_domain\" v config/config.php. Vzorová konfigurácia je uvedená v config/config.sample.php.",
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "V závislosti na konfigurácii, vám môže byť ako správcovi umožnené použitie tlačidla nižšie pre označenie tejto domény ako dôveryhodnej.",
"Add \"%s\" as trusted domain" : "Pridať \"%s\" ako dôveryhodnú doménu",
+ "App update required" : "Je nutná aktualizácia aplikácie",
"%s will be updated to version %s" : "%s bude zaktualizovaný na verziu %s.",
+ "These apps will be updated:" : "Tieto aplikácie budú aktualizované:",
+ "These incompatible apps will be disabled:" : "Tieto nekompatibilné aplikácie budú vypnuté:",
"The theme %s has been disabled." : "Téma %s bola zakázaná.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Pred vykonaním ďalšieho kroku sa presvedčte, že databáza, konfiguračný a dátový priečinok sú zazálohované.",
"Start update" : "Spustiť aktualizáciu",
diff --git a/core/l10n/sk_SK.json b/core/l10n/sk_SK.json
index 3b26768f928..9aac003a3ba 100644
--- a/core/l10n/sk_SK.json
+++ b/core/l10n/sk_SK.json
@@ -1,18 +1,31 @@
{ "translations": {
"Couldn't send mail to following users: %s " : "Nebolo možné odoslať email týmto používateľom: %s ",
+ "Preparing update" : "Pripravuje sa aktualizácia",
"Turned on maintenance mode" : "Mód údržby je zapnutý",
"Turned off maintenance mode" : "Mód údržby je vypnutý",
"Maintenance mode is kept active" : "Režim údržby je stále aktívny",
+ "Updating database schema" : "Aktualizuje sa schéma databázy",
"Updated database" : "Databáza je aktualizovaná",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "Kontroluje sa, či je možné aktualizovať schému databázy (to môže trvať dlhší čas v závislosti na veľkosti databázy)",
"Checked database schema update" : "Skontrolovať aktualizáciu schémy databázy",
+ "Checking updates of apps" : "Kontrolujú sa aktualizácie aplikácií",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "Kontroluje sa, či je možné aktualizovať schému databázy pre %s (to môže trvať dlhší čas v závislosti na veľkosti databázy)",
"Checked database schema update for apps" : "Aktualizácia schémy databázy aplikácií bola overená",
"Updated \"%s\" to %s" : "Aktualizované \"%s\" na %s",
"Repair warning: " : "Oznámenie opravy:",
"Repair error: " : "Chyba opravy:",
+ "Set log level to debug - current level: \"%s\"" : "Nastaviť úroveň záznamu na debug - aktuálna úroveň: \"%s\"",
+ "Reset log level to \"%s\"" : "Vrátiť úroveň záznamu na „%s“",
+ "%s (3rdparty)" : "%s (od tretej strany)",
+ "%s (incompatible)" : "%s (nekompatibilná)",
+ "Following apps have been disabled: %s" : "Nasledovné aplikácie boli zakázané: %s",
+ "Already up to date" : "Už aktuálne",
+ "File is too big" : "Súbor je príliš veľký",
"Invalid file provided" : "Zadaný neplatný súbor",
"No image or file provided" : "Obrázok alebo súbor nebol zadaný",
"Unknown filetype" : "Neznámy typ súboru",
"Invalid image" : "Chybný obrázok",
+ "An error occurred. Please contact your admin." : "Vyskytla sa chyba.\nProsím, kontaktujte svojho správcu.\n\t",
"No temporary profile picture available, try again" : "Dočasný profilový obrázok nie je k dispozícii, skúste to znovu",
"No crop data provided" : "Dáta pre orezanie neboli zadané",
"No valid crop data provided" : "Neplatné dáta pre orezanie neboli zadané",
@@ -96,6 +109,7 @@
"Your web server is not yet set up properly to allow file synchronization because the WebDAV interface seems to be broken." : "Váš webový server nie je zatiaľ správne nastavený, aby umožnil synchronizáciu súborov, pretože rozhranie WebDAV sa zdá byť nefunkčné.",
"This server has no working Internet connection. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. We suggest to enable Internet connection for this server if you want to have all features." : "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Vzdialený prístup k súborom a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky funkcie, odporúčame povoliť tomuto serveru pripojenie k internetu.",
"Your data directory and your files are probably accessible from the Internet. The .htaccess file is not working. We strongly suggest that you configure your web server in a way that the data directory is no longer accessible or you move the data directory outside the web server document root." : "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Dôrazne odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný alebo presunúť priečinok s dátami mimo priestoru, ktorý webový server sprístupňuje.",
+ "/dev/urandom is not readable by PHP which is highly discouraged for security reasons. Further information can be found in our <a href=\"{docLink}\">documentation</a>." : "PHP nedokáže čítať z /dev/urandom, čo sa z bezpečnostných dôvodov dôrazne neodporúča. Ďalšie informácie nájdete v našej <a href=\"{docLink}\">dokumentácii</a>.",
"Error occurred while checking server setup" : "Počas kontroly nastavenia serveru sa stala chyba",
"Shared" : "Zdieľané",
"Shared with {recipients}" : "Zdieľa s {recipients}",
@@ -132,11 +146,14 @@
"change" : "zmeniť",
"delete" : "vymazať",
"access control" : "prístupové práva",
+ "Share details could not be loaded for this item." : "Nebolo možné načítať údaje o zdieľaní tejto položky.",
"An error occured. Please try again" : "Nastala chyba. Skúste to znovu",
"Share" : "Zdieľať",
+ "Share with people on other ownClouds using the syntax username@example.com/owncloud" : "Zdieľať s ľuďmi na iných serveroch ownClouds pomocou syntaxe používateľ@doména.com/owncloud",
"Share with users or groups …" : "Zdieľať s používateľmi alebo skupinami ...",
"Share with users, groups or remote users …" : "Zdieľať s používateľmi, skupinami alebo vzdialenými používateľmi ...",
"Warning" : "Varovanie",
+ "Error while sending notification" : "Chyba pri posielaní oznámenia",
"The object type is not specified." : "Nešpecifikovaný typ objektu.",
"Enter new" : "Zadať nový",
"Delete" : "Zmazať",
@@ -151,11 +168,15 @@
"Hello {name}" : "Vitaj {name}",
"_download %n file_::_download %n files_" : ["stiahnuť %n súbor","stiahnuť %n súbory","stiahnuť %n súborov"],
"{version} is available. Get more information on how to update." : "{version} je dostupná. Získajte viac informácií o postupe aktualizácie.",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "Aktualizácie prebieha. V niektorých prostrediach môže opustenie tejto stránky spôsobiť prerušenie aktualizácie.",
"Updating {productName} to version {version}, this may take a while." : "Aktualizujem {productName} na verziu {version}, chvíľu to môže trvať.",
+ "An error occurred." : "Vyskytla sa chyba.",
"Please reload the page." : "Obnovte prosím stránku.",
"The update was unsuccessful. " : "Aktualizácia bola neúspešná.",
+ "The update was successful. There were warnings." : "Aktualizácia bola úspešná. Vyskytli sa upozornenia.",
"The update was successful. Redirecting you to ownCloud now." : "Aktualizácia bola úspešná. Presmerovávam vás na prihlasovaciu stránku.",
"Couldn't reset password because the token is invalid" : "Nemožno zmeniť heslo pre neplatnosť tokenu.",
+ "Couldn't reset password because the token is expired" : "Nepodarilo sa obnoviť heslo, pretože platnosť tokenu uplynula.",
"Couldn't send reset email. Please make sure your username is correct." : "Nemožno poslať email pre obnovu. Uistite sa, či vkladáte správne používateľské meno.",
"Couldn't send reset email because there is no email address for this username. Please contact your administrator." : "Nemožno poslať email pre obnovu hesla, pretože pre tohoto používateľa nie je uvedená žiadna emailová adresa. Prosím, obráťte sa na administrátora.",
"%s password reset" : "reset hesla %s",
@@ -164,6 +185,8 @@
"New Password" : "Nové heslo",
"Reset password" : "Obnovenie hesla",
"Searching other places" : "Prehľadanie ostatných umiestnení",
+ "No search results in other folders" : "Žiadne výsledky vyhľadávania v ostatných priečinkoch",
+ "_{count} search result in another folder_::_{count} search results in other folders_" : ["{count} výsledok vyhľadávania v ostatných priečinkoch","{count} výsledky vyhľadávania v ostatných priečinkoch","{count} výsledkov vyhľadávania v ostatných priečinkoch"],
"Personal" : "Osobné",
"Users" : "Používatelia",
"Apps" : "Aplikácie",
@@ -220,6 +243,7 @@
"Finishing …" : "Dokončujem...",
"Need help?" : "Potrebujete pomoc?",
"See the documentation" : "Pozri dokumentáciu",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>Používateľ %s zdieľa s vami súbor, alebo priečinok s názvom »%s«.<br><a href=\"%s\">Pre zobrazenie kliknite na túto linku!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Táto aplikácia vyžaduje JavaScript, aby správne fungovala. Prosím, {linkstart}zapnite si JavaScript{linkend} a obnovte stránku",
"Log out" : "Odhlásiť",
"Search" : "Hľadať",
@@ -229,8 +253,8 @@
"Please try again or contact your administrator." : "Skúste to znovu, alebo sa obráťte na vášho administrátora.",
"Log in" : "Prihlásiť sa",
"Wrong password. Reset it?" : "Chybné heslo. Chcete ho obnoviť?",
+ "Stay logged in" : "Zostať prihlásený",
"Alternative Logins" : "Alternatívne prihlásenie",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Dobrý deň,<br><br>Používateľ %s zdieľa s vami súbor, alebo priečinok s názvom »%s«.<br><a href=\"%s\">Pre zobrazenie kliknite na túto linku!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Táto inštancia ownCloudu je teraz v jednopoužívateľskom móde.",
"This means only administrators can use the instance." : "Len správca systému môže používať túto inštanciu.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Kontaktujte prosím správcu systému, ak sa táto správa objavuje opakovane alebo neočakávane.",
@@ -239,7 +263,10 @@
"Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." : "Kontaktujte správcu. Ak ste správcom tejto inštancie, nakonfigurujte správne nastavenie \"trusted_domain\" v config/config.php. Vzorová konfigurácia je uvedená v config/config.sample.php.",
"Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain." : "V závislosti na konfigurácii, vám môže byť ako správcovi umožnené použitie tlačidla nižšie pre označenie tejto domény ako dôveryhodnej.",
"Add \"%s\" as trusted domain" : "Pridať \"%s\" ako dôveryhodnú doménu",
+ "App update required" : "Je nutná aktualizácia aplikácie",
"%s will be updated to version %s" : "%s bude zaktualizovaný na verziu %s.",
+ "These apps will be updated:" : "Tieto aplikácie budú aktualizované:",
+ "These incompatible apps will be disabled:" : "Tieto nekompatibilné aplikácie budú vypnuté:",
"The theme %s has been disabled." : "Téma %s bola zakázaná.",
"Please make sure that the database, the config folder and the data folder have been backed up before proceeding." : "Pred vykonaním ďalšieho kroku sa presvedčte, že databáza, konfiguračný a dátový priečinok sú zazálohované.",
"Start update" : "Spustiť aktualizáciu",
diff --git a/core/l10n/th_TH.js b/core/l10n/th_TH.js
index deda5350e60..90e774b15bd 100644
--- a/core/l10n/th_TH.js
+++ b/core/l10n/th_TH.js
@@ -6,14 +6,20 @@ OC.L10N.register(
"Turned on maintenance mode" : "เปิดโหมดการบำรุงรักษา",
"Turned off maintenance mode" : "ปิดโหมดการบำรุงรักษา",
"Maintenance mode is kept active" : "โหมดการบำรุงรักษาจะถูกเก็บไว้ใช้งาน",
+ "Updating database schema" : "กำลังอัพเดทฐานข้อมูล schema",
"Updated database" : "ปรับปรุงฐานข้อมูล",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "กำลังตรวจสอบว่าฐานข้อมูล schema สามารถอัพเดทได้หรือไม่ (นี้อาจใช้เวลานานขึ้นอยู่กับขนาดของฐานข้อมูล)",
"Checked database schema update" : "Schema อัพเดตของฐานข้อมูลถูกตรวจสอบ",
+ "Checking updates of apps" : "กำลังตรวจสอบการอัพเดทแอพพลิเคชัน",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "กำลังตรวจสอบว่าฐานข้อมูลสำหรับ schema สำหรับ %s ว่าสามารถอัพเดทได้หรือไม่ (นี้จะใช้เวลานานขึ้นอยู่กับขนาดของฐานข้อมูล)",
"Checked database schema update for apps" : "Schema อัพเดตของฐานข้อมูลสำหรับแอพฯ",
"Updated \"%s\" to %s" : "อัพเดท \"%s\" ไปยัง %s",
"Repair warning: " : "เตือนการซ่อมแซม:",
"Repair error: " : "เกิดข้อผิดพลาดในการซ่อมแซม:",
"Set log level to debug - current level: \"%s\"" : "การตั้งค่าระดับของการบันทึกเพื่อแก้ปัญหา - ระดับปัจจุบันคือ: \"%s\"",
"Reset log level to \"%s\"" : "รีเซ็ทระดับการบันทึกเป็น \"%s\"",
+ "%s (3rdparty)" : "%s (บุคคลที่ 3)",
+ "%s (incompatible)" : "%s (เข้ากันไม่ได้)",
"Following apps have been disabled: %s" : "แอพฯดังต่อไปนี้ถูกปิดการใช้งาน: %s",
"Already up to date" : "มีอยู่แล้วถึงวันที่",
"File is too big" : "ไฟล์มีขนาดใหญ่เกินไป",
@@ -171,6 +177,7 @@ OC.L10N.register(
"Hello {name}" : "สวัสดี {name}",
"_download %n file_::_download %n files_" : ["ดาวน์โหลด %n ไฟล์"],
"{version} is available. Get more information on how to update." : "{version} สามารถใช้ได้ รับข้อมูลเพิ่มเติมเกี่ยวกับวิธีการอัพเดท",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "กำลังดำเนินการอัพเกรด หากออกจากหน้านี้ ณ เวลานี้อาจเกิดปัญหาในภายหลัง",
"Updating {productName} to version {version}, this may take a while." : "กำลังอัพเดท {productName} ไปยังรุ่น {version} อาจใช้เวลาสักครู่",
"An error occurred." : "เกิดข้อผิดพลาด",
"Please reload the page." : "โปรดโหลดหน้าเว็บใหม่",
@@ -245,6 +252,7 @@ OC.L10N.register(
"Finishing …" : "เสร็จสิ้น ...",
"Need help?" : "ต้องการความช่วยเหลือ?",
"See the documentation" : "ดูที่เอกสาร",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "นี่คุณ,<br><br>อยากให้คุณทราบว่า %s ได้แชร์ <strong>%s</strong> กับคุณ <br><a href=\"%s\">คลิกดูที่นี่</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "โปรแกรมนี้ต้องการ JavaScript สำหรับการดำเนินงานที่ถูกต้อง กรุณา {linkstart}เปิดใช้งาน JavaScript{linkend} และโหลดหน้าเว็บ",
"Log out" : "ออกจากระบบ",
"Search" : "ค้นหา",
@@ -254,8 +262,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "โปรดลองอีกครั้งหรือติดต่อผู้ดูแลระบบ",
"Log in" : "เข้าสู่ระบบ",
"Wrong password. Reset it?" : "รหัสผ่านผิด ตั้งค่าใหม่?",
+ "Stay logged in" : "กำลังอยู่ในระบบ",
"Alternative Logins" : "ทางเลือกการเข้าสู่ระบบ",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "นี่คุณ,<br><br>อยากให้คุณทราบว่า %s ได้แชร์ <strong>%s</strong> กับคุณ <br><a href=\"%s\">คลิกดูที่นี่</a><br><br>",
"This ownCloud instance is currently in single user mode." : "ขณะนี้ ownCloud อยู่ในโหมดผู้ใช้คนเดียว",
"This means only administrators can use the instance." : "ซึ่งหมายความว่าผู้ดูแลระบบสามารถใช้อินสแตนซ์",
"Contact your system administrator if this message persists or appeared unexpectedly." : "ติดต่อผู้ดูแลระบบของคุณหากข้อความนี้ยังคงมีอยู่หรือปรากฏโดยไม่คาดคิด",
diff --git a/core/l10n/th_TH.json b/core/l10n/th_TH.json
index 8e3fb3f6517..80c6b44078c 100644
--- a/core/l10n/th_TH.json
+++ b/core/l10n/th_TH.json
@@ -4,14 +4,20 @@
"Turned on maintenance mode" : "เปิดโหมดการบำรุงรักษา",
"Turned off maintenance mode" : "ปิดโหมดการบำรุงรักษา",
"Maintenance mode is kept active" : "โหมดการบำรุงรักษาจะถูกเก็บไว้ใช้งาน",
+ "Updating database schema" : "กำลังอัพเดทฐานข้อมูล schema",
"Updated database" : "ปรับปรุงฐานข้อมูล",
+ "Checking whether the database schema can be updated (this can take a long time depending on the database size)" : "กำลังตรวจสอบว่าฐานข้อมูล schema สามารถอัพเดทได้หรือไม่ (นี้อาจใช้เวลานานขึ้นอยู่กับขนาดของฐานข้อมูล)",
"Checked database schema update" : "Schema อัพเดตของฐานข้อมูลถูกตรวจสอบ",
+ "Checking updates of apps" : "กำลังตรวจสอบการอัพเดทแอพพลิเคชัน",
+ "Checking whether the database schema for %s can be updated (this can take a long time depending on the database size)" : "กำลังตรวจสอบว่าฐานข้อมูลสำหรับ schema สำหรับ %s ว่าสามารถอัพเดทได้หรือไม่ (นี้จะใช้เวลานานขึ้นอยู่กับขนาดของฐานข้อมูล)",
"Checked database schema update for apps" : "Schema อัพเดตของฐานข้อมูลสำหรับแอพฯ",
"Updated \"%s\" to %s" : "อัพเดท \"%s\" ไปยัง %s",
"Repair warning: " : "เตือนการซ่อมแซม:",
"Repair error: " : "เกิดข้อผิดพลาดในการซ่อมแซม:",
"Set log level to debug - current level: \"%s\"" : "การตั้งค่าระดับของการบันทึกเพื่อแก้ปัญหา - ระดับปัจจุบันคือ: \"%s\"",
"Reset log level to \"%s\"" : "รีเซ็ทระดับการบันทึกเป็น \"%s\"",
+ "%s (3rdparty)" : "%s (บุคคลที่ 3)",
+ "%s (incompatible)" : "%s (เข้ากันไม่ได้)",
"Following apps have been disabled: %s" : "แอพฯดังต่อไปนี้ถูกปิดการใช้งาน: %s",
"Already up to date" : "มีอยู่แล้วถึงวันที่",
"File is too big" : "ไฟล์มีขนาดใหญ่เกินไป",
@@ -169,6 +175,7 @@
"Hello {name}" : "สวัสดี {name}",
"_download %n file_::_download %n files_" : ["ดาวน์โหลด %n ไฟล์"],
"{version} is available. Get more information on how to update." : "{version} สามารถใช้ได้ รับข้อมูลเพิ่มเติมเกี่ยวกับวิธีการอัพเดท",
+ "The upgrade is in progress, leaving this page might interrupt the process in some environments." : "กำลังดำเนินการอัพเกรด หากออกจากหน้านี้ ณ เวลานี้อาจเกิดปัญหาในภายหลัง",
"Updating {productName} to version {version}, this may take a while." : "กำลังอัพเดท {productName} ไปยังรุ่น {version} อาจใช้เวลาสักครู่",
"An error occurred." : "เกิดข้อผิดพลาด",
"Please reload the page." : "โปรดโหลดหน้าเว็บใหม่",
@@ -243,6 +250,7 @@
"Finishing …" : "เสร็จสิ้น ...",
"Need help?" : "ต้องการความช่วยเหลือ?",
"See the documentation" : "ดูที่เอกสาร",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "นี่คุณ,<br><br>อยากให้คุณทราบว่า %s ได้แชร์ <strong>%s</strong> กับคุณ <br><a href=\"%s\">คลิกดูที่นี่</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "โปรแกรมนี้ต้องการ JavaScript สำหรับการดำเนินงานที่ถูกต้อง กรุณา {linkstart}เปิดใช้งาน JavaScript{linkend} และโหลดหน้าเว็บ",
"Log out" : "ออกจากระบบ",
"Search" : "ค้นหา",
@@ -252,8 +260,8 @@
"Please try again or contact your administrator." : "โปรดลองอีกครั้งหรือติดต่อผู้ดูแลระบบ",
"Log in" : "เข้าสู่ระบบ",
"Wrong password. Reset it?" : "รหัสผ่านผิด ตั้งค่าใหม่?",
+ "Stay logged in" : "กำลังอยู่ในระบบ",
"Alternative Logins" : "ทางเลือกการเข้าสู่ระบบ",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "นี่คุณ,<br><br>อยากให้คุณทราบว่า %s ได้แชร์ <strong>%s</strong> กับคุณ <br><a href=\"%s\">คลิกดูที่นี่</a><br><br>",
"This ownCloud instance is currently in single user mode." : "ขณะนี้ ownCloud อยู่ในโหมดผู้ใช้คนเดียว",
"This means only administrators can use the instance." : "ซึ่งหมายความว่าผู้ดูแลระบบสามารถใช้อินสแตนซ์",
"Contact your system administrator if this message persists or appeared unexpectedly." : "ติดต่อผู้ดูแลระบบของคุณหากข้อความนี้ยังคงมีอยู่หรือปรากฏโดยไม่คาดคิด",
diff --git a/core/l10n/tr.js b/core/l10n/tr.js
index 24ae9340245..deb40f27cb5 100644
--- a/core/l10n/tr.js
+++ b/core/l10n/tr.js
@@ -8,12 +8,15 @@ OC.L10N.register(
"Maintenance mode is kept active" : "Bakım kipi etkin tutuldu",
"Updated database" : "Veritabanı güncellendi",
"Checked database schema update" : "Veritabanı şema güncellemesi denetlendi",
+ "Checking updates of apps" : "Uygulamaların güncellemelerini kontrol et",
"Checked database schema update for apps" : "Uygulamalar için veritabanı şema güncellemesi denetlendi",
"Updated \"%s\" to %s" : "\"%s\", %s sürümüne güncellendi",
"Repair warning: " : "Onarım uyarısı:",
"Repair error: " : "Onarım hatası:",
"Set log level to debug - current level: \"%s\"" : "Günlük seviyesini hata ayıklamaya ayarla - geçerli seviye: \"%s\"",
"Reset log level to \"%s\"" : "Günlük seviyesini \"%s\" olarak sıfırla",
+ "%s (3rdparty)" : "%s (3.parti)",
+ "%s (incompatible)" : "%s (uyumsuz)",
"Following apps have been disabled: %s" : "Aşağıdaki uygulamalar devre dışı bırakıldı: %s",
"Already up to date" : "Zaten güncel",
"File is too big" : "Dosya çok büyük",
@@ -242,6 +245,7 @@ OC.L10N.register(
"Finishing …" : "Tamamlanıyor ...",
"Need help?" : "Yardım mı lazım?",
"See the documentation" : "Belgelendirmeye bak",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Bu uygulama düzgün çalışabilmesi için JavaScript gerektirir. Lütfen {linkstart}JavaScript'i etkinleştirin{linkend} ve sayfayı yeniden yükleyin.",
"Log out" : "Çıkış yap",
"Search" : "Ara",
@@ -251,8 +255,8 @@ OC.L10N.register(
"Please try again or contact your administrator." : "Lütfen yeniden deneyin veya yöneticinizle iletişim kurun.",
"Log in" : "Giriş yap",
"Wrong password. Reset it?" : "Hatalı parola. Sıfırlansın mı?",
+ "Stay logged in" : "Bağlı kal",
"Alternative Logins" : "Alternatif Girişler",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Bu ownCloud örneği şu anda tek kullanıcı kipinde.",
"This means only administrators can use the instance." : "Bu, örneği sadece yöneticiler kullanabilir demektir.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.",
diff --git a/core/l10n/tr.json b/core/l10n/tr.json
index 2f927857d52..601772dfd38 100644
--- a/core/l10n/tr.json
+++ b/core/l10n/tr.json
@@ -6,12 +6,15 @@
"Maintenance mode is kept active" : "Bakım kipi etkin tutuldu",
"Updated database" : "Veritabanı güncellendi",
"Checked database schema update" : "Veritabanı şema güncellemesi denetlendi",
+ "Checking updates of apps" : "Uygulamaların güncellemelerini kontrol et",
"Checked database schema update for apps" : "Uygulamalar için veritabanı şema güncellemesi denetlendi",
"Updated \"%s\" to %s" : "\"%s\", %s sürümüne güncellendi",
"Repair warning: " : "Onarım uyarısı:",
"Repair error: " : "Onarım hatası:",
"Set log level to debug - current level: \"%s\"" : "Günlük seviyesini hata ayıklamaya ayarla - geçerli seviye: \"%s\"",
"Reset log level to \"%s\"" : "Günlük seviyesini \"%s\" olarak sıfırla",
+ "%s (3rdparty)" : "%s (3.parti)",
+ "%s (incompatible)" : "%s (uyumsuz)",
"Following apps have been disabled: %s" : "Aşağıdaki uygulamalar devre dışı bırakıldı: %s",
"Already up to date" : "Zaten güncel",
"File is too big" : "Dosya çok büyük",
@@ -240,6 +243,7 @@
"Finishing …" : "Tamamlanıyor ...",
"Need help?" : "Yardım mı lazım?",
"See the documentation" : "Belgelendirmeye bak",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "Bu uygulama düzgün çalışabilmesi için JavaScript gerektirir. Lütfen {linkstart}JavaScript'i etkinleştirin{linkend} ve sayfayı yeniden yükleyin.",
"Log out" : "Çıkış yap",
"Search" : "Ara",
@@ -249,8 +253,8 @@
"Please try again or contact your administrator." : "Lütfen yeniden deneyin veya yöneticinizle iletişim kurun.",
"Log in" : "Giriş yap",
"Wrong password. Reset it?" : "Hatalı parola. Sıfırlansın mı?",
+ "Stay logged in" : "Bağlı kal",
"Alternative Logins" : "Alternatif Girişler",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>",
"This ownCloud instance is currently in single user mode." : "Bu ownCloud örneği şu anda tek kullanıcı kipinde.",
"This means only administrators can use the instance." : "Bu, örneği sadece yöneticiler kullanabilir demektir.",
"Contact your system administrator if this message persists or appeared unexpectedly." : "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.",
diff --git a/core/l10n/zh_TW.js b/core/l10n/zh_TW.js
index 86d949e1fd9..93138a93e92 100644
--- a/core/l10n/zh_TW.js
+++ b/core/l10n/zh_TW.js
@@ -154,6 +154,7 @@ OC.L10N.register(
"change" : "更動",
"delete" : "刪除",
"access control" : "存取控制",
+ "Share details could not be loaded for this item." : "無法載入分享細節",
"An error occured. Please try again" : "發生錯誤,請重試",
"Share" : "分享",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "與其他在ownCloud上的人們分享,請使用此格式 username@example.com/owncloud",
@@ -250,6 +251,7 @@ OC.L10N.register(
"Finishing …" : "即將完成…",
"Need help?" : "需要幫助?",
"See the documentation" : "閱讀說明文件",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨,<br><br>%s 與你分享了<strong>%s</strong>。<br><a href=\"%s\">檢視</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "這個應用程式需要啟用 Javascript 才能正常運作,請{linkstart}啟用Javascript{linkend}然後重新整理頁面。",
"Log out" : "登出",
"Search" : "搜尋",
@@ -261,7 +263,6 @@ OC.L10N.register(
"Wrong password. Reset it?" : "密碼錯誤,重設密碼?",
"Stay logged in" : "保持登入狀態",
"Alternative Logins" : "其他登入方法",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨,<br><br>%s 與你分享了<strong>%s</strong>。<br><a href=\"%s\">檢視</a><br><br>",
"This ownCloud instance is currently in single user mode." : "這個 ownCloud 伺服器目前運作於單一使用者模式",
"This means only administrators can use the instance." : "這表示只有系統管理員能夠使用",
"Contact your system administrator if this message persists or appeared unexpectedly." : "若這個訊息持續出現,請聯絡系統管理員",
diff --git a/core/l10n/zh_TW.json b/core/l10n/zh_TW.json
index 5012626b765..ea5fdbda2d0 100644
--- a/core/l10n/zh_TW.json
+++ b/core/l10n/zh_TW.json
@@ -152,6 +152,7 @@
"change" : "更動",
"delete" : "刪除",
"access control" : "存取控制",
+ "Share details could not be loaded for this item." : "無法載入分享細節",
"An error occured. Please try again" : "發生錯誤,請重試",
"Share" : "分享",
"Share with people on other ownClouds using the syntax username@example.com/owncloud" : "與其他在ownCloud上的人們分享,請使用此格式 username@example.com/owncloud",
@@ -248,6 +249,7 @@
"Finishing …" : "即將完成…",
"Need help?" : "需要幫助?",
"See the documentation" : "閱讀說明文件",
+ "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨,<br><br>%s 與你分享了<strong>%s</strong>。<br><a href=\"%s\">檢視</a><br><br>",
"This application requires JavaScript for correct operation. Please {linkstart}enable JavaScript{linkend} and reload the page." : "這個應用程式需要啟用 Javascript 才能正常運作,請{linkstart}啟用Javascript{linkend}然後重新整理頁面。",
"Log out" : "登出",
"Search" : "搜尋",
@@ -259,7 +261,6 @@
"Wrong password. Reset it?" : "密碼錯誤,重設密碼?",
"Stay logged in" : "保持登入狀態",
"Alternative Logins" : "其他登入方法",
- "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" : "嗨,<br><br>%s 與你分享了<strong>%s</strong>。<br><a href=\"%s\">檢視</a><br><br>",
"This ownCloud instance is currently in single user mode." : "這個 ownCloud 伺服器目前運作於單一使用者模式",
"This means only administrators can use the instance." : "這表示只有系統管理員能夠使用",
"Contact your system administrator if this message persists or appeared unexpectedly." : "若這個訊息持續出現,請聯絡系統管理員",
diff --git a/core/lostpassword/css/resetpassword.css b/core/lostpassword/css/resetpassword.css
index 29a7e875537..0b3c251e8d7 100644
--- a/core/lostpassword/css/resetpassword.css
+++ b/core/lostpassword/css/resetpassword.css
@@ -5,7 +5,3 @@
.text-center {
text-align: center;
}
-
-#password-icon {
- top: 20px;
-}
diff --git a/core/lostpassword/templates/resetpassword.php b/core/lostpassword/templates/resetpassword.php
index 9152ae3d75f..c17ec652473 100644
--- a/core/lostpassword/templates/resetpassword.php
+++ b/core/lostpassword/templates/resetpassword.php
@@ -31,7 +31,6 @@ script('core', 'lostpassword');
<p>
<label for="password" class="infield"><?php p($l->t('New password')); ?></label>
<input type="password" name="password" id="password" value="" placeholder="<?php p($l->t('New Password')); ?>" required />
- <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/>
</p>
<input type="submit" id="submit" value="<?php p($l->t('Reset password')); ?>" />
<p class="text-center">
diff --git a/core/shipped.json b/core/shipped.json
index b6f08a8b96d..49a649f3c9e 100644
--- a/core/shipped.json
+++ b/core/shipped.json
@@ -8,6 +8,7 @@
"external",
"files",
"files_antivirus",
+ "files_drop",
"files_external",
"files_ldap_home",
"files_locking",
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 716cb1af6af..191acf0b85d 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -43,7 +43,6 @@ script('core', [
value="<?php p($_['adminlogin']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" autofocus required>
<label for="adminlogin" class="infield"><?php p($l->t( 'Username' )); ?></label>
- <img class="svg" src="<?php p(image_path('', 'actions/user.svg')); ?>" alt="">
</p>
<p class="groupbottom">
<input type="password" name="adminpass" data-typetoggle="#show" id="adminpass"
@@ -51,7 +50,6 @@ script('core', [
value="<?php p($_['adminpass']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" required>
<label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label>
- <img class="svg" id="adminpass-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt="">
<input type="checkbox" id="show" name="show">
<label for="show" class="svg"></label>
<div class="strengthify-wrapper"></div>
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php
index b01820a05bb..b12121b6088 100644
--- a/core/templates/layout.base.php
+++ b/core/templates/layout.base.php
@@ -11,8 +11,9 @@
<meta name="referrer" content="never">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
- <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>">
+ <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>">
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>">
+ <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="#1d2d44">
<?php foreach ($_['cssfiles'] as $cssfile): ?>
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen">
<?php endforeach; ?>
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php
index 56b762d3266..d5e9680eda2 100644
--- a/core/templates/layout.guest.php
+++ b/core/templates/layout.guest.php
@@ -12,8 +12,9 @@
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
- <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>">
+ <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>">
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>">
+ <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="#1d2d44">
<?php foreach($_['cssfiles'] as $cssfile): ?>
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen">
<?php endforeach; ?>
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 4d9e3ae93d5..5e13d9329f3 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -23,8 +23,9 @@
<meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid']!='files')? $_['application']:'ownCloud'); ?>">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="<?php p($theme->getMailHeaderColor()); ?>">
- <link rel="shortcut icon" type="image/png" href="<?php print_unescaped(image_path($_['appid'], 'favicon.png')); ?>">
+ <link rel="shortcut icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>">
<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
+ <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path($_['appid'], 'favicon-mask.svg')); ?>" color="#1d2d44">
<?php foreach($_['cssfiles'] as $cssfile): ?>
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" media="screen">
<?php endforeach; ?>
@@ -63,7 +64,7 @@
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
<div id="settings" class="svg">
- <div id="expand" tabindex="6" role="link">
+ <div id="expand" tabindex="6" role="link" class="menutoggle">
<?php if ($_['enableAvatars']): ?>
<div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown'); } else { print_unescaped('" style="display: none'); } ?>">
<?php if ($_['userAvatarSet']): ?>
@@ -98,12 +99,12 @@
</div>
</div>
- <form class="searchbox" action="#" method="post" role="search">
+ <form class="searchbox" action="#" method="post" role="search" novalidate>
<label for="searchbox" class="hidden-visually">
<?php p($l->t('Search'));?>
</label>
<input id="searchbox" class="svg" type="search" name="query"
- value=""
+ value="" required
autocomplete="off" tabindex="5">
</form>
</div></header>
diff --git a/core/templates/login.php b/core/templates/login.php
index b21b6e3d493..03be6258fdf 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -45,7 +45,6 @@ script('core', [
<?php p($_['user_autofocus'] ? 'autofocus' : ''); ?>
autocomplete="on" autocapitalize="off" autocorrect="off" required>
<label for="user" class="infield"><?php p($l->t('Username')); ?></label>
- <img class="svg" src="<?php print_unescaped(image_path('', 'actions/user.svg')); ?>" alt=""/>
</p>
<p class="groupbottom">
@@ -54,7 +53,6 @@ script('core', [
<?php p($_['user_autofocus'] ? '' : 'autofocus'); ?>
autocomplete="on" autocapitalize="off" autocorrect="off" required>
<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
- <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/>
<input type="submit" id="submit" class="login primary icon-confirm svg" title="<?php p($l->t('Log in')); ?>" value="" disabled="disabled"/>
</p>
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php
index fbd3025f2e0..ae88350bdc5 100644
--- a/core/templates/update.admin.php
+++ b/core/templates/update.admin.php
@@ -1,9 +1,9 @@
<div class="update" data-productname="<?php p($_['productName']) ?>" data-version="<?php p($_['version']) ?>">
<div class="updateOverview">
<?php if ($_['isAppsOnlyUpgrade']) { ?>
- <h2 class="title bold"><?php p($l->t('App update required')); ?></h2>
+ <h2 class="title"><?php p($l->t('App update required')); ?></h2>
<?php } else { ?>
- <h2 class="title bold"><?php p($l->t('%s will be updated to version %s',
+ <h2 class="title"><?php p($l->t('%s will be updated to version %s',
array($_['productName'], $_['version']))); ?></h2>
<?php } ?>
<?php if (!empty($_['appsToUpgrade'])) { ?>