summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rwxr-xr-xsettings/admin.php3
-rw-r--r--settings/ajax/changedisplayname.php4
-rw-r--r--settings/ajax/createuser.php7
-rw-r--r--settings/ajax/decryptall.php3
-rw-r--r--settings/apps.php17
-rw-r--r--settings/css/settings.css45
-rw-r--r--settings/js/admin.js2
-rw-r--r--settings/js/personal.js29
-rw-r--r--settings/js/users.js36
-rw-r--r--settings/l10n/ar.php4
-rw-r--r--settings/l10n/be.php5
-rw-r--r--settings/l10n/bg_BG.php1
-rw-r--r--settings/l10n/ca.php31
-rw-r--r--settings/l10n/cs_CZ.php35
-rw-r--r--settings/l10n/da.php33
-rw-r--r--settings/l10n/de.php35
-rw-r--r--settings/l10n/de_CH.php9
-rw-r--r--settings/l10n/de_DE.php33
-rw-r--r--settings/l10n/el.php54
-rw-r--r--settings/l10n/en_GB.php33
-rw-r--r--settings/l10n/es.php89
-rw-r--r--settings/l10n/es_AR.php9
-rw-r--r--settings/l10n/es_CL.php6
-rw-r--r--settings/l10n/es_MX.php153
-rw-r--r--settings/l10n/et_EE.php49
-rw-r--r--settings/l10n/eu.php42
-rw-r--r--settings/l10n/fa.php5
-rw-r--r--settings/l10n/fi_FI.php29
-rw-r--r--settings/l10n/fr.php33
-rw-r--r--settings/l10n/gl.php33
-rw-r--r--settings/l10n/he.php4
-rw-r--r--settings/l10n/hu_HU.php33
-rw-r--r--settings/l10n/id.php55
-rw-r--r--settings/l10n/is.php1
-rw-r--r--settings/l10n/it.php33
-rw-r--r--settings/l10n/ja_JP.php33
-rw-r--r--settings/l10n/ka_GE.php4
-rw-r--r--settings/l10n/km.php5
-rw-r--r--settings/l10n/ko.php57
-rw-r--r--settings/l10n/lb.php4
-rw-r--r--settings/l10n/lt_LT.php15
-rw-r--r--settings/l10n/lv.php9
-rw-r--r--settings/l10n/mk.php49
-rw-r--r--settings/l10n/nb_NO.php5
-rw-r--r--settings/l10n/nl.php39
-rw-r--r--settings/l10n/nn_NO.php9
-rw-r--r--settings/l10n/pl.php33
-rw-r--r--settings/l10n/pt_BR.php33
-rw-r--r--settings/l10n/pt_PT.php45
-rw-r--r--settings/l10n/ro.php3
-rw-r--r--settings/l10n/ru.php49
-rw-r--r--settings/l10n/sk.php6
-rw-r--r--settings/l10n/sk_SK.php50
-rw-r--r--settings/l10n/sl.php57
-rw-r--r--settings/l10n/sq.php111
-rw-r--r--settings/l10n/sr.php3
-rw-r--r--settings/l10n/sv.php18
-rw-r--r--settings/l10n/th_TH.php2
-rw-r--r--settings/l10n/tr.php94
-rw-r--r--settings/l10n/ug.php4
-rw-r--r--settings/l10n/uk.php3
-rw-r--r--settings/l10n/vi.php3
-rw-r--r--settings/l10n/zh_CN.php9
-rw-r--r--settings/l10n/zh_TW.php28
-rw-r--r--settings/personal.php5
-rw-r--r--settings/templates/admin.php80
-rw-r--r--settings/templates/personal.php42
-rw-r--r--settings/templates/users.php10
68 files changed, 1414 insertions, 496 deletions
diff --git a/settings/admin.php b/settings/admin.php
index 120f15bec19..c0e4570658a 100755
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -25,9 +25,10 @@ $tmpl->assign('entries', $entries);
$tmpl->assign('entriesremain', $entriesremain);
$tmpl->assign('htaccessworking', $htaccessworking);
$tmpl->assign('internetconnectionworking', OC_Util::isInternetConnectionEnabled() ? OC_Util::isInternetConnectionWorking() : false);
-$tmpl->assign('islocaleworking', OC_Util::isSetLocaleWorking());
+$tmpl->assign('isLocaleWorking', OC_Util::isSetLocaleWorking());
$tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking());
$tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded());
+$tmpl->assign('old_php', OC_Util::isPHPoutdated());
$tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax'));
$tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes'));
diff --git a/settings/ajax/changedisplayname.php b/settings/ajax/changedisplayname.php
index 4bb41fa3d3b..ef23826e50b 100644
--- a/settings/ajax/changedisplayname.php
+++ b/settings/ajax/changedisplayname.php
@@ -28,8 +28,8 @@ if(is_null($userstatus)) {
// Return Success story
if( OC_User::setDisplayName( $username, $displayName )) {
- OC_JSON::success(array("data" => array( "message" => $l->t('Your display name has been changed.'), "username" => $username, 'displayName' => $displayName )));
+ OC_JSON::success(array("data" => array( "message" => $l->t('Your full name has been changed.'), "username" => $username, 'displayName' => $displayName )));
}
else{
- OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change display name"), 'displayName' => OC_User::getDisplayName($username) )));
+ OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change full name"), 'displayName' => OC_User::getDisplayName($username) )));
}
diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php
index ccc2a5d402e..94b56fa0349 100644
--- a/settings/ajax/createuser.php
+++ b/settings/ajax/createuser.php
@@ -28,6 +28,10 @@ $password = $_POST["password"];
// Return Success story
try {
+ // check whether the user's files home exists
+ $userDirectory = OC_User::getHome($username) . '/files/';
+ $homeExists = file_exists($userDirectory);
+
if (!OC_User::createUser($username, $password)) {
OC_JSON::error(array('data' => array( 'message' => 'User creation failed for '.$username )));
exit();
@@ -38,8 +42,11 @@ try {
}
OC_Group::addToGroup( $username, $i );
}
+
OC_JSON::success(array("data" =>
array(
+ // returns whether the home already existed
+ "homeExists" => $homeExists,
"username" => $username,
"groups" => OC_Group::getUserGroups( $username ))));
} catch (Exception $exception) {
diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php
index e53067931e8..ebc17aacfaa 100644
--- a/settings/ajax/decryptall.php
+++ b/settings/ajax/decryptall.php
@@ -1,5 +1,8 @@
<?php
+OCP\JSON::checkLoggedIn();
+OCP\JSON::callCheck();
+
//encryption app needs to be loaded
OC_App::loadApp('files_encryption');
diff --git a/settings/apps.php b/settings/apps.php
index 20b12887554..96b6d21b502 100644
--- a/settings/apps.php
+++ b/settings/apps.php
@@ -28,24 +28,7 @@ OC_App::loadApps();
OC_Util::addStyle( "settings", "settings" );
OC_App::setActiveNavigationEntry( "core_apps" );
-function app_sort( $a, $b ) {
-
- if ($a['active'] !== $b['active']) {
-
- return $b['active'] - $a['active'];
-
- }
-
- if ($a['internal'] !== $b['internal']) {
- return $b['internal'] - $a['internal'];
- }
-
- return strcmp($a['name'], $b['name']);
-
-}
-
$combinedApps = OC_App::listAllApps();
-usort( $combinedApps, 'app_sort' );
$tmpl = new OC_Template( "settings", "apps", "user" );
diff --git a/settings/css/settings.css b/settings/css/settings.css
index 40106072f89..a93c675d466 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -7,6 +7,15 @@ input#openid, input#webdav { width:20em; }
/* PERSONAL */
+#rootcert_import {
+ margin: 0 0 10px 0;
+ display: block;
+}
+
+.personalblock input[type="checkbox"] {
+ position: relative;
+ top: 2px;
+}
/* Sync clients */
.clientsbox { margin:12px; }
@@ -41,8 +50,8 @@ table.nostyle td { padding: 0.2em 0; }
/* USERS */
form { display:inline; }
-table:not(.nostyle) th { height:2em; color:#999; }
-table:not(.nostyle) th, table:not(.nostyle) td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; }
+table.grid th { height:2em; color:#999; }
+table.grid th, table.grid td { border-bottom:1px solid #ddd; padding:0 .5em; padding-left:.8em; text-align:left; font-weight:normal; }
td.name, td.password { padding-left:.8em; }
td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; }
td.password, td.quota, td.displayName { width:12em; cursor:pointer; }
@@ -53,25 +62,23 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point
tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; }
tr:hover>td.remove>a { float:right; }
li.selected { background-color:#ddd; }
-table:not(.nostyle) { width:100%; }
-#rightcontent { padding-left: 1em; }
+table.grid { width:100%; }
+#rightcontent { padding-left: 10px; }
div.quota {
float: right;
display: block;
- position: absolute;
- right: 216px;
- top: 0;
}
div.quota-select-wrapper { position: relative; }
div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; }
input#recoveryPassword {width:15em;}
-select.quota { position:absolute; left:0; top:0; width:10em; }
+#controls select.quota {
+ margin: 3px;
+ margin-right: 10px;
+ height: 37px;
+}
select.quota-user { position:relative; left:0; top:0; width:10em; }
div.quota>span {
- position: absolute;
- right: 0;
white-space: nowrap;
- top: 12px;
color: #888;
text-shadow: 0 1px 0 #fff;
}
@@ -127,6 +134,9 @@ span.version { margin-left:1em; margin-right:1em; color:#555; }
/* LOG */
#log { white-space:normal; }
#lessLog { display:none; }
+table.grid td.date{
+ white-space: nowrap;
+}
/* ADMIN */
span.securitywarning {color:#C33; font-weight:bold; }
@@ -137,3 +147,16 @@ table.shareAPI td { padding-bottom: 0.8em; }
/* HELP */
.pressed {background-color:#DDD;}
+/* PASSWORD */
+.strengthify-wrapper {
+ position: absolute;
+ left: 189px;
+ width: 131px;
+ margin-top: -7px;
+}
+
+/* OPERA hack for strengthify*/
+doesnotexist:-o-prefocus, .strengthify-wrapper {
+ left: 185px;
+ width: 129px;
+}
diff --git a/settings/js/admin.js b/settings/js/admin.js
index f2d6f37a51a..e957bd68f1f 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -32,6 +32,6 @@ $(document).ready(function(){
});
$('#security').change(function(){
- $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#enforceHTTPSEnabled').val() },function(){} );
+ $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );
});
});
diff --git a/settings/js/personal.js b/settings/js/personal.js
index 3fdc2907c46..591eb8abe2e 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -1,5 +1,6 @@
/**
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
+ * 2013, Morris Jobke <morris.jobke@gmail.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
@@ -31,7 +32,7 @@ function changeDisplayName(){
// Ajax foo
$.post( 'ajax/changedisplayname.php', post, function(data){
if( data.status === "success" ){
- $('#oldDisplayName').text($('#displayName').val());
+ $('#oldDisplayName').val($('#displayName').val());
// update displayName on the top right expand button
$('#expandDisplayName').text($('#displayName').val());
updateAvatar();
@@ -171,11 +172,6 @@ $(document).ready(function(){
}
});
- $("#languageinput").chosen();
- // Show only the not selectable optgroup
- // Choosen only shows optgroup-labels if there are options in the optgroup
- $(".languagedivider").hide();
-
$("#languageinput").change( function(){
// Serialize the data
var post = $( "#languageinput" ).serialize();
@@ -195,7 +191,7 @@ $(document).ready(function(){
var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val();
OC.Encryption.decryptAll(privateKeyPassword);
});
-
+
$('#decryptAll input:password[name="privateKeyPassword"]').keyup(function(event) {
var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val();
if (privateKeyPassword !== '' ) {
@@ -207,7 +203,7 @@ $(document).ready(function(){
$('#decryptAll button:button[name="submitDecryptAll"]').attr("disabled", "true");
}
});
-
+
var uploadparms = {
done: function(e, data) {
avatarResponseHandler(data.result);
@@ -248,6 +244,17 @@ $(document).ready(function(){
$('#sendcropperbutton').click(function(){
sendCropData();
});
+
+ $('#pass2').strengthify({
+ zxcvbn: OC.linkTo('3rdparty','zxcvbn/js/zxcvbn.js'),
+ titles: [
+ t('core', 'Very weak password'),
+ t('core', 'Weak password'),
+ t('core', 'So-so password'),
+ t('core', 'Good password'),
+ t('core', 'Strong password')
+ ]
+ });
} );
OC.Encryption = {
@@ -266,8 +273,9 @@ OC.Encryption = {
OC.Encryption.msg={
startDecrypting:function(selector){
+ var spinner = '<img src="'+ OC.imagePath('core', 'loading-small.gif') +'">';
$(selector)
- .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') )
+ .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner )
.removeClass('success')
.removeClass('error')
.stop(true, true)
@@ -278,8 +286,7 @@ OC.Encryption.msg={
$(selector).html( data.data.message )
.addClass('success')
.stop(true, true)
- .delay(3000)
- .fadeOut(900);
+ .delay(3000);
}else{
$(selector).html( data.data.message ).addClass('error');
}
diff --git a/settings/js/users.js b/settings/js/users.js
index 48c4529527b..5ae157b07c6 100644
--- a/settings/js/users.js
+++ b/settings/js/users.js
@@ -85,6 +85,9 @@ var UserList = {
add: function (username, displayname, groups, subadmin, quota, sort) {
var tr = $('tbody tr').first().clone();
+ if (tr.find('div.avatardiv')){
+ $('div.avatardiv', tr).avatar(username, 32);
+ }
tr.attr('data-uid', username);
tr.attr('data-displayName', displayname);
tr.find('td.name').text(username);
@@ -144,7 +147,11 @@ var UserList = {
quotaSelect.on('change', function () {
var uid = $(this).parent().parent().attr('data-uid');
var quota = $(this).val();
- setQuota(uid, quota);
+ setQuota(uid, quota, function(returnedQuota){
+ if (quota !== returnedQuota) {
+ $(quotaSelect).find(':selected').text(returnedQuota);
+ }
+ });
});
},
// From http://my.opera.com/GreyWyvern/blog/show.dml/1671288
@@ -404,6 +411,9 @@ $(document).ready(function () {
OC.filePath('settings', 'ajax', 'changedisplayname.php'),
{username: uid, displayName: $(this).val()},
function (result) {
+ if (result && result.status==='success'){
+ img.parent().parent().find('div.avatardiv').avatar(result.data.username, 32);
+ }
}
);
input.blur();
@@ -413,7 +423,10 @@ $(document).ready(function () {
}
});
input.blur(function () {
- $(this).replaceWith(escapeHTML($(this).val()));
+ var input = $(this),
+ displayName = input.val();
+ input.closest('tr').attr('data-displayName', displayName);
+ input.replaceWith('<span>' + escapeHTML(displayName) + '</span>');
img.css('display', '');
});
});
@@ -422,9 +435,14 @@ $(document).ready(function () {
});
$('select.quota, select.quota-user').singleSelect().on('change', function () {
+ var select = $(this);
var uid = $(this).parent().parent().attr('data-uid');
var quota = $(this).val();
- setQuota(uid, quota);
+ setQuota(uid, quota, function(returnedQuota){
+ if (quota !== returnedQuota) {
+ select.find(':selected').text(returnedQuota);
+ }
+ });
});
$('#newuser').submit(function (event) {
@@ -461,6 +479,18 @@ $(document).ready(function () {
var addedGroups = result.data.groups;
UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups));
}
+ if (result.data.homeExists){
+ OC.Notification.hide();
+ OC.Notification.show(t('settings', 'Warning: Home directory for user "{user}" already exists', {user: result.data.username}));
+ if (UserList.notificationTimeout){
+ window.clearTimeout(UserList.notificationTimeout);
+ }
+ UserList.notificationTimeout = window.setTimeout(
+ function(){
+ OC.Notification.hide();
+ UserList.notificationTimeout = null;
+ }, 10000);
+ }
if($('tr[data-uid="' + username + '"]').length === 0) {
UserList.add(username, username, result.data.groups, null, 'default', true);
}
diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php
index 378bd8dd91f..67cbc6655dd 100644
--- a/settings/l10n/ar.php
+++ b/settings/l10n/ar.php
@@ -2,7 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "فشل تحميل القائمة من الآب ستور",
"Authentication error" => "لم يتم التأكد من الشخصية بنجاح",
-"Unable to change display name" => "تعذر تغيير اسم الحساب",
"Group already exists" => "المجموعة موجودة مسبقاً",
"Unable to add group" => "فشل إضافة المجموعة",
"Email saved" => "تم حفظ البريد الإلكتروني",
@@ -82,10 +81,10 @@ $TRANSLATIONS = array(
"Current password" => "كلمات السر الحالية",
"New password" => "كلمات سر جديدة",
"Change password" => "عدل كلمة السر",
-"Display Name" => "اسم الحساب",
"Email" => "البريد الإلكترونى",
"Your email address" => "عنوانك البريدي",
"Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور",
+"Abort" => "إلغاء.",
"Language" => "اللغة",
"Help translate" => "ساعد في الترجمه",
"WebDAV" => "WebDAV",
@@ -97,7 +96,6 @@ $TRANSLATIONS = array(
"Other" => "شيء آخر",
"Username" => "إسم المستخدم",
"Storage" => "وحدة التخزين",
-"change display name" => "تغيير اسم الحساب",
"set new password" => "اعداد كلمة مرور جديدة",
"Default" => "افتراضي"
);
diff --git a/settings/l10n/be.php b/settings/l10n/be.php
new file mode 100644
index 00000000000..6a34f1fe246
--- /dev/null
+++ b/settings/l10n/be.php
@@ -0,0 +1,5 @@
+<?php
+$TRANSLATIONS = array(
+"Error" => "Памылка"
+);
+$PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";
diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php
index a15dfa19e46..17163027d49 100644
--- a/settings/l10n/bg_BG.php
+++ b/settings/l10n/bg_BG.php
@@ -45,7 +45,6 @@ $TRANSLATIONS = array(
"Current password" => "Текуща парола",
"New password" => "Нова парола",
"Change password" => "Промяна на паролата",
-"Display Name" => "Екранно име",
"Email" => "E-mail",
"Your email address" => "Вашия email адрес",
"Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата",
diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php
index c4c61c0354a..316eadc19a1 100644
--- a/settings/l10n/ca.php
+++ b/settings/l10n/ca.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "No s'ha pogut carregar la llista des de l'App Store",
"Authentication error" => "Error d'autenticació",
-"Your display name has been changed." => "El nom a mostrar ha canviat.",
-"Unable to change display name" => "No s'ha pogut canviar el nom a mostrar",
+"Your full name has been changed." => "El vostre nom complet ha canviat.",
+"Unable to change full name" => "No s'ha pogut canviar el nom complet",
"Group already exists" => "El grup ja existeix",
"Unable to add group" => "No es pot afegir el grup",
"Email saved" => "S'ha desat el correu electrònic",
@@ -46,8 +46,15 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Heu de facilitar un nom d'usuari vàlid",
"Error creating user" => "Error en crear l'usuari",
"A valid password must be provided" => "Heu de facilitar una contrasenya vàlida",
+"Warning: Home directory for user \"{user}\" already exists" => "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix",
"__language_name__" => "Català",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Tot (problemes fatals, errors, avisos, informació, depuració)",
+"Info, warnings, errors and fatal issues" => "Informació, avisos, errors i problemes fatals",
+"Warnings, errors and fatal issues" => "Avisos, errors i problemes fatals",
+"Errors and fatal issues" => "Errors i problemes fatals",
+"Fatal issues only" => "Només problemes fatals",
"Security Warning" => "Avís de seguretat",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Esteu accedint %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.",
"Setup Warning" => "Avís de configuració",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.",
@@ -55,13 +62,15 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "No s'ha trobat el mòdul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.",
"Locale not working" => "Locale no funciona",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s.",
+"System locale can not be set to a one which supports UTF-8." => "No s'ha pogut establir cap localització del sistema amb suport per UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Us recomanem que instal·leu els paquets necessaris en el sistema per donar suport a alguna de les localitzacions següents: %s",
"Internet connection not working" => "La connexió a internet no funciona",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Executa una tasca per cada paquet carregat",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php està registrat en un servei webcron que fa una crida cada minut a la pàgina cron.php a través de http.",
-"Use systems cron service to call the cron.php file once a minute." => "Utilitzeu el sistema de servei cron per cridar el fitxer cron.php cada minut.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts.",
"Sharing" => "Compartir",
"Enable Share API" => "Habilita l'API de compartir",
"Allow apps to use the Share API" => "Permet que les aplicacions utilitzin l'API de compartir",
@@ -73,6 +82,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Permet als usuaris compartir de nou elements ja compartits amb ells",
"Allow users to share with anyone" => "Permet compartir amb qualsevol",
"Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup",
+"Allow mail notification" => "Permet notificacions per correu electrónic",
+"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ",
"Security" => "Seguretat",
"Enforce HTTPS" => "Força HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.",
@@ -103,7 +114,7 @@ $TRANSLATIONS = array(
"Current password" => "Contrasenya actual",
"New password" => "Contrasenya nova",
"Change password" => "Canvia la contrasenya",
-"Display Name" => "Nom a mostrar",
+"Full Name" => "Nom complet",
"Email" => "Correu electrònic",
"Your email address" => "Correu electrònic",
"Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya",
@@ -112,14 +123,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Selecciona'n una de nova dels fitxers",
"Remove image" => "Elimina imatge",
"Either png or jpg. Ideally square but you will be able to crop it." => "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la.",
+"Your avatar is provided by your original account." => "El vostre compte original proporciona l'avatar.",
"Abort" => "Cancel·la",
"Choose as profile image" => "Selecciona com a imatge de perfil",
"Language" => "Idioma",
"Help translate" => "Ajudeu-nos amb la traducció",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Useu aquesta adreça per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedir als fitxers via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Useu aquesta adreça per <a href=\"%s\" target=\"_blank\">accedir als fitxers via WebDAV</a>",
"Encryption" => "Xifrat",
-"The encryption app is no longer enabled, decrypt all your file" => "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers.",
+"The encryption app is no longer enabled, please decrypt all your files" => "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers",
"Log-in password" => "Contrasenya d'accés",
"Decrypt all Files" => "Desencripta tots els fitxers",
"Login Name" => "Nom d'accés",
@@ -127,11 +139,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Recuperació de contrasenya d'administrador",
"Enter the recovery password in order to recover the users files during password change" => "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya",
"Default Storage" => "Emmagatzemament per defecte",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")",
"Unlimited" => "Il·limitat",
"Other" => "Un altre",
"Username" => "Nom d'usuari",
"Storage" => "Emmagatzemament",
-"change display name" => "canvia el nom a mostrar",
+"change full name" => "canvia el nom complet",
"set new password" => "estableix nova contrasenya",
"Default" => "Per defecte"
);
diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php
index 9873d4d20ac..c89b3b6a5de 100644
--- a/settings/l10n/cs_CZ.php
+++ b/settings/l10n/cs_CZ.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Nelze načíst seznam z App Store",
"Authentication error" => "Chyba přihlášení",
-"Your display name has been changed." => "Vaše zobrazované jméno bylo změněno.",
-"Unable to change display name" => "Nelze změnit zobrazované jméno",
+"Your full name has been changed." => "Vaše celé jméno bylo změněno.",
+"Unable to change full name" => "Nelze změnit celé jméno",
"Group already exists" => "Skupina již existuje",
"Unable to add group" => "Nelze přidat skupinu",
"Email saved" => "E-mail uložen",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Musíte zadat platné uživatelské jméno",
"Error creating user" => "Chyba při vytváření užiatele",
"A valid password must be provided" => "Musíte zadat platné heslo",
+"Warning: Home directory for user \"{user}\" already exists" => "Varování: Osobní složka uživatele \"{user}\" již existuje.",
"__language_name__" => "Česky",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Vše (fatální problémy, chyby, varování, informační, ladící)",
+"Info, warnings, errors and fatal issues" => "Informace, varování, chyby a fatální problémy",
+"Warnings, errors and fatal issues" => "Varování, chyby a fatální problémy",
+"Errors and fatal issues" => "Chyby a fatální problémy",
+"Fatal issues only" => "Pouze fatální problémy",
"Security Warning" => "Bezpečnostní upozornění",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.",
"Setup Warning" => "Upozornění nastavení",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Zkontrolujte prosím znovu <a href=\"%s\">instalační příručku</a>.",
"Module 'fileinfo' missing" => "Schází modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.",
+"Your PHP version is outdated" => "Tato verze PHP je zastaralá.",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Tato verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze jsou chybné. Je možné, že tato instalace nebude fungovat správně.",
"Locale not working" => "Lokalizace nefunguje",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s.",
+"System locale can not be set to a one which supports UTF-8." => "Není možné nastavit znakovou sadu, která podporuje UTF-8.",
+"This means that there might be problems with certain characters in file names." => "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Důrazně doporučujeme nainstalovat do vašeho systém balíčky nutné pro podporu některé z následujících znakových sad: %s.",
"Internet connection not working" => "Připojení k internetu nefunguje",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP.",
-"Use systems cron service to call the cron.php file once a minute." => "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.",
"Sharing" => "Sdílení",
"Enable Share API" => "Povolit API sdílení",
"Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny",
"Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv",
"Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách",
+"Allow mail notification" => "Povolit e-mailová upozornění",
+"Allow user to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory",
"Security" => "Zabezpečení",
"Enforce HTTPS" => "Vynutit HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.",
@@ -103,23 +116,24 @@ $TRANSLATIONS = array(
"Current password" => "Současné heslo",
"New password" => "Nové heslo",
"Change password" => "Změnit heslo",
-"Display Name" => "Zobrazované jméno",
+"Full Name" => "Celé jméno",
"Email" => "E-mail",
"Your email address" => "Vaše e-mailová adresa",
"Fill in an email address to enable password recovery" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu",
-"Profile picture" => "Profilová fotka",
+"Profile picture" => "Profilový obrázek",
"Upload new" => "Nahrát nový",
"Select new from Files" => "Vyberte nový ze souborů",
"Remove image" => "Odebrat obrázek",
"Either png or jpg. Ideally square but you will be able to crop it." => "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout.",
+"Your avatar is provided by your original account." => "Váš avatar je poskytován Vaším původním účtem.",
"Abort" => "Přerušit",
"Choose as profile image" => "Vybrat jako profilový obrázek",
"Language" => "Jazyk",
"Help translate" => "Pomoci s překladem",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Použijte <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tuto adresu pro přístup k vašim souborům přes WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Použijte <a href=\"%s\" target=\"_blank\">tuto adresu pro přístup k vašim souborům přes WebDAV</a>",
"Encryption" => "Šifrování",
-"The encryption app is no longer enabled, decrypt all your file" => "Šifrovací aplikace již není zapnuta, odšifrujte všechny své soubory",
+"The encryption app is no longer enabled, please decrypt all your files" => "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory",
"Log-in password" => "Přihlašovací heslo",
"Decrypt all Files" => "Odšifrovat všechny soubory",
"Login Name" => "Přihlašovací jméno",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Heslo obnovy správce",
"Enter the recovery password in order to recover the users files during password change" => "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla",
"Default Storage" => "Výchozí úložiště",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")",
"Unlimited" => "Neomezeně",
"Other" => "Jiný",
"Username" => "Uživatelské jméno",
"Storage" => "Úložiště",
-"change display name" => "změnit zobrazované jméno",
+"change full name" => "změnit celé jméno",
"set new password" => "nastavit nové heslo",
"Default" => "Výchozí"
);
diff --git a/settings/l10n/da.php b/settings/l10n/da.php
index f86559d6752..6fe3cf6c396 100644
--- a/settings/l10n/da.php
+++ b/settings/l10n/da.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store",
"Authentication error" => "Adgangsfejl",
-"Your display name has been changed." => "Dit skærmnavn blev ændret.",
-"Unable to change display name" => "Kunne ikke skifte skærmnavn",
+"Your full name has been changed." => "Dit fulde navn er blevet ændret.",
+"Unable to change full name" => "Ikke i stand til at ændre dit fulde navn",
"Group already exists" => "Gruppen findes allerede",
"Unable to add group" => "Gruppen kan ikke oprettes",
"Email saved" => "Email adresse gemt",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Et gyldigt brugernavn skal angives",
"Error creating user" => "Fejl ved oprettelse af bruger",
"A valid password must be provided" => "En gyldig adgangskode skal angives",
+"Warning: Home directory for user \"{user}\" already exists" => "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede",
"__language_name__" => "Dansk",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Alt (alvorlige fejl, fejl, advarsler, info, debug)",
+"Info, warnings, errors and fatal issues" => "Info, advarsler, fejl og alvorlige fejl",
+"Warnings, errors and fatal issues" => "Advarsler, fejl og alvorlige fejl",
+"Errors and fatal issues" => "Fejl og alvorlige fejl",
+"Fatal issues only" => "Kun alvorlige fejl",
"Security Warning" => "Sikkerhedsadvarsel",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ",
"Setup Warning" => "Opsætnings Advarsel",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.",
"Module 'fileinfo' missing" => "Module 'fileinfo' mangler",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.",
+"Your PHP version is outdated" => "Din PHP-version er forældet",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt.",
"Locale not working" => "Landestandard fungerer ikke",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s.",
+"System locale can not be set to a one which supports UTF-8." => "Systemets locale kan ikke sættes til et der bruger UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Det betyder at der kan være problemer med visse tegn i filnavne.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s.",
"Internet connection not working" => "Internetforbindelse fungerer ikke",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php er registeret hos en webcron-tjeneste til at kalde cron.php en gang i minuttet over http.",
-"Use systems cron service to call the cron.php file once a minute." => "Brug systemets cron service til at kalde cron.php filen en gang i minuttet",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Brug systemets cron service til at kalde cron.php hvert 15. minut.",
"Sharing" => "Deling",
"Enable Share API" => "Aktiver Share API",
"Allow apps to use the Share API" => "Tillad apps til at bruge Share API",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Tillad brugere at dele elementer delt med dem igen",
"Allow users to share with anyone" => "Tillad brugere at dele med alle",
"Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper",
+"Allow mail notification" => "Tillad mail underretninger",
+"Allow user to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer",
"Security" => "Sikkerhed",
"Enforce HTTPS" => "Gennemtving HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Nuværende adgangskode",
"New password" => "Nyt kodeord",
"Change password" => "Skift kodeord",
-"Display Name" => "Skærmnavn",
+"Full Name" => "Fulde navn",
"Email" => "E-mail",
"Your email address" => "Din emailadresse",
"Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Vælg nyt fra Filer",
"Remove image" => "Fjern billede",
"Either png or jpg. Ideally square but you will be able to crop it." => "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ",
+"Your avatar is provided by your original account." => "Din avatar kommer fra din oprindelige konto.",
"Abort" => "Afbryd",
"Choose as profile image" => "Vælg som profilbillede",
"Language" => "Sprog",
"Help translate" => "Hjælp med oversættelsen",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Anvend denne adresse til at <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tilgå dine filer via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>",
"Encryption" => "Kryptering",
-"The encryption app is no longer enabled, decrypt all your file" => "Krypterings app'en er ikke længere aktiv. Dekrypter alle dine filer. ",
+"The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer",
"Log-in password" => "Log-in kodeord",
"Decrypt all Files" => "Dekrypter alle Filer ",
"Login Name" => "Loginnavn",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Administrator gendannelse kodeord",
"Enter the recovery password in order to recover the users files during password change" => "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord",
"Default Storage" => "Standard opbevaring",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")",
"Unlimited" => "Ubegrænset",
"Other" => "Andet",
"Username" => "Brugernavn",
"Storage" => "Opbevaring",
-"change display name" => "skift skærmnavn",
+"change full name" => "ændre fulde navn",
"set new password" => "skift kodeord",
"Default" => "Standard"
);
diff --git a/settings/l10n/de.php b/settings/l10n/de.php
index ae2165873ea..b9432f187e9 100644
--- a/settings/l10n/de.php
+++ b/settings/l10n/de.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.",
"Authentication error" => "Fehler bei der Anmeldung",
-"Your display name has been changed." => "Dein Anzeigename ist geändert worden.",
-"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich",
+"Your full name has been changed." => "Dein vollständiger Name ist geändert worden.",
+"Unable to change full name" => "Der vollständige Name konnte nicht geändert werden",
"Group already exists" => "Gruppe existiert bereits",
"Unable to add group" => "Gruppe konnte nicht angelegt werden",
"Email saved" => "E-Mail Adresse gespeichert",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden",
"Error creating user" => "Beim Anlegen des Benutzers ist ein Fehler aufgetreten",
"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden",
+"Warning: Home directory for user \"{user}\" already exists" => "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits",
"__language_name__" => "Deutsch (Persönlich)",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)",
+"Info, warnings, errors and fatal issues" => "Infos, Warnungen, Fehler und fatale Probleme",
+"Warnings, errors and fatal issues" => "Warnungen, Fehler und fatale Probleme",
+"Errors and fatal issues" => "Fehler und fatale Probleme",
+"Fatal issues only" => "Nur fatale Probleme",
"Security Warning" => "Sicherheitswarnung",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.",
"Setup Warning" => "Einrichtungswarnung",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.",
-"Please double check the <a href=\"%s\">installation guides</a>." => "Bitte überprüfe die <a href=\"%s\">Instalationsanleitungen</a>.",
+"Please double check the <a href=\"%s\">installation guides</a>." => "Bitte überprüfe die <a href=\"%s\">Installationsanleitungen</a>.",
"Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.",
+"Your PHP version is outdated" => "Deine PHP-Version ist veraltet",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert.",
"Locale not working" => "Ländereinstellung funktioniert nicht",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.",
+"System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.",
+"This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.",
"Internet connection not working" => "Keine Netzwerkverbindung",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Führe eine Aufgabe mit jeder geladenen Seite aus",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.",
-"Use systems cron service to call the cron.php file once a minute." => "Benutze den System-Crondienst um die cron.php minütlich aufzurufen.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen.",
"Sharing" => "Teilen",
"Enable Share API" => "Aktiviere Sharing-API",
"Allow apps to use the Share API" => "Erlaubt Apps die Nutzung der Share-API",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen",
"Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen",
"Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen",
+"Allow mail notification" => "Mail-Benachrichtigung erlauben",
+"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden",
"Security" => "Sicherheit",
"Enforce HTTPS" => "Erzwinge HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Aktuelles Passwort",
"New password" => "Neues Passwort",
"Change password" => "Passwort ändern",
-"Display Name" => "Anzeigename",
+"Full Name" => "Vollständiger Name",
"Email" => "E-Mail",
"Your email address" => "Deine E-Mail-Adresse",
"Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Neues aus den Dateien wählen",
"Remove image" => "Bild entfernen",
"Either png or jpg. Ideally square but you will be able to crop it." => "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden.",
+"Your avatar is provided by your original account." => "Dein Avatar wird von Deinem ursprünglichenKonto verwendet.",
"Abort" => "Abbrechen",
"Choose as profile image" => "Als Profilbild wählen",
"Language" => "Sprache",
"Help translate" => "Hilf bei der Übersetzung",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>",
"Encryption" => "Verschlüsselung",
-"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt.",
+"The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten.",
"Log-in password" => "Login-Passwort",
"Decrypt all Files" => "Alle Dateien entschlüsseln",
"Login Name" => "Loginname",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Admin-Wiederherstellungspasswort",
"Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen",
"Default Storage" => "Standard-Speicher",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")",
"Unlimited" => "Unbegrenzt",
"Other" => "Andere",
"Username" => "Benutzername",
"Storage" => "Speicher",
-"change display name" => "Anzeigenamen ändern",
+"change full name" => "Vollständigen Namen ändern",
"set new password" => "Neues Passwort setzen",
"Default" => "Standard"
);
diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php
index 558071b3cbf..c313cd18b46 100644
--- a/settings/l10n/de_CH.php
+++ b/settings/l10n/de_CH.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.",
"Authentication error" => "Authentifizierungs-Fehler",
-"Your display name has been changed." => "Dein Anzeigename ist geändert worden.",
-"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich",
"Group already exists" => "Die Gruppe existiert bereits",
"Unable to add group" => "Die Gruppe konnte nicht angelegt werden",
"Email saved" => "E-Mail-Adresse gespeichert",
@@ -48,13 +46,10 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.",
"Locale not working" => "Die Lokalisierung funktioniert nicht",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.",
"Internet connection not working" => "Keine Internetverbindung",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.",
-"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen.",
"Sharing" => "Teilen",
"Enable Share API" => "Share-API aktivieren",
"Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen",
@@ -96,16 +91,13 @@ $TRANSLATIONS = array(
"Current password" => "Aktuelles Passwort",
"New password" => "Neues Passwort",
"Change password" => "Passwort ändern",
-"Display Name" => "Anzeigename",
"Email" => "E-Mail",
"Your email address" => "Ihre E-Mail-Adresse",
"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.",
"Language" => "Sprache",
"Help translate" => "Helfen Sie bei der Übersetzung",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>.",
"Encryption" => "Verschlüsselung",
-"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. ",
"Log-in password" => "Login-Passwort",
"Decrypt all Files" => "Alle Dateien entschlüsseln",
"Login Name" => "Loginname",
@@ -117,7 +109,6 @@ $TRANSLATIONS = array(
"Other" => "Andere",
"Username" => "Benutzername",
"Storage" => "Speicher",
-"change display name" => "Anzeigenamen ändern",
"set new password" => "Neues Passwort setzen",
"Default" => "Standard"
);
diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php
index 924792aa62b..ce349b5fcb7 100644
--- a/settings/l10n/de_DE.php
+++ b/settings/l10n/de_DE.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.",
"Authentication error" => "Authentifizierungs-Fehler",
-"Your display name has been changed." => "Dein Anzeigename ist geändert worden.",
-"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich",
+"Your full name has been changed." => "Ihr vollständiger Name ist geändert worden.",
+"Unable to change full name" => "Der vollständige Name konnte nicht geändert werden",
"Group already exists" => "Die Gruppe existiert bereits",
"Unable to add group" => "Die Gruppe konnte nicht angelegt werden",
"Email saved" => "E-Mail-Adresse gespeichert",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden",
"Error creating user" => "Beim Erstellen des Benutzers ist ein Fehler aufgetreten",
"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden",
+"Warning: Home directory for user \"{user}\" already exists" => "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits",
"__language_name__" => "Deutsch (Förmlich: Sie)",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Alles (fatale Probleme, Fehler, Warnungen, Infos, Debug-Meldungen)",
+"Info, warnings, errors and fatal issues" => "Infos, Warnungen, Fehler und fatale Probleme",
+"Warnings, errors and fatal issues" => "Warnungen, Fehler und fatale Probleme",
+"Errors and fatal issues" => "Fehler und fatale Probleme",
+"Fatal issues only" => "Nur fatale Probleme",
"Security Warning" => "Sicherheitshinweis",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.",
"Setup Warning" => "Einrichtungswarnung",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Bitte überprüfen Sie die <a href=\"%s\">Instalationsanleitungen</a>.",
"Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.",
+"Your PHP version is outdated" => "Ihre PHP-Version ist veraltet",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert.",
"Locale not working" => "Die Lokalisierung funktioniert nicht",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.",
+"System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.",
+"This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.",
"Internet connection not working" => "Keine Internetverbindung",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.",
-"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst, um die cron.php minütlich aufzurufen.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen.",
"Sharing" => "Teilen",
"Enable Share API" => "Share-API aktivieren",
"Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen",
"Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen",
"Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen",
+"Allow mail notification" => "Mail-Benachrichtigung erlauben",
+"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden",
"Security" => "Sicherheit",
"Enforce HTTPS" => "HTTPS erzwingen",
"Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Aktuelles Passwort",
"New password" => "Neues Passwort",
"Change password" => "Passwort ändern",
-"Display Name" => "Anzeigename",
+"Full Name" => "Vollständiger Name",
"Email" => "E-Mail",
"Your email address" => "Ihre E-Mail-Adresse",
"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Neues aus den Dateien wählen",
"Remove image" => "Bild entfernen",
"Either png or jpg. Ideally square but you will be able to crop it." => "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden.",
+"Your avatar is provided by your original account." => "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet.",
"Abort" => "Abbrechen",
"Choose as profile image" => "Als Profilbild wählen",
"Language" => "Sprache",
"Help translate" => "Helfen Sie bei der Übersetzung",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>.",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>",
"Encryption" => "Verschlüsselung",
-"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. ",
+"The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten",
"Log-in password" => "Login-Passwort",
"Decrypt all Files" => "Alle Dateien entschlüsseln",
"Login Name" => "Loginname",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Admin-Passwort-Wiederherstellung",
"Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen",
"Default Storage" => "Standard-Speicher",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")",
"Unlimited" => "Unbegrenzt",
"Other" => "Andere",
"Username" => "Benutzername",
"Storage" => "Speicher",
-"change display name" => "Anzeigenamen ändern",
+"change full name" => "Vollständigen Namen ändern",
"set new password" => "Neues Passwort setzen",
"Default" => "Standard"
);
diff --git a/settings/l10n/el.php b/settings/l10n/el.php
index a4876d854df..ab285389a5c 100644
--- a/settings/l10n/el.php
+++ b/settings/l10n/el.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store",
"Authentication error" => "Σφάλμα πιστοποίησης",
-"Your display name has been changed." => "Το όνομα σας στην οθόνη άλλαξε. ",
-"Unable to change display name" => "Δεν είναι δυνατή η αλλαγή του ονόματος εμφάνισης",
+"Your full name has been changed." => "Το πλήρες όνομά σας άλλαξε.",
+"Unable to change full name" => "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας",
"Group already exists" => "Η ομάδα υπάρχει ήδη",
"Unable to add group" => "Αδυναμία προσθήκης ομάδας",
"Email saved" => "Το email αποθηκεύτηκε ",
@@ -16,15 +16,25 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s",
"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s",
"Couldn't update app." => "Αδυναμία ενημέρωσης εφαρμογής",
+"Wrong password" => "Εσφαλμένο συνθηματικό",
+"No user supplied" => "Δεν εισήχθη χρήστης",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Παρακαλώ παρέχετε έναν κωδικό ανάκτησης διαχειριστή, διαφορετικά όλα τα δεδομένα χρήστη θα χαθούν",
+"Wrong admin recovery password. Please check the password and try again." => "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς.",
+"Unable to change password" => "Αδυναμία αλλαγής συνθηματικού",
"Update to {appversion}" => "Ενημέρωση σε {appversion}",
"Disable" => "Απενεργοποίηση",
"Enable" => "Ενεργοποίηση",
"Please wait...." => "Παρακαλώ περιμένετε...",
+"Error while disabling app" => "Σφάλμα κατά την απενεργοποίηση εισόδου",
+"Error while enabling app" => "Σφάλμα κατά την ενεργοποίηση της εφαρμογής",
"Updating...." => "Ενημέρωση...",
"Error while updating app" => "Σφάλμα κατά την ενημέρωση της εφαρμογής",
"Error" => "Σφάλμα",
"Update" => "Ενημέρωση",
"Updated" => "Ενημερώθηκε",
+"Select a profile picture" => "Επιλογή εικόνας προφίλ",
+"Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.",
"Saving..." => "Γίνεται αποθήκευση...",
"deleted" => "διαγράφηκε",
"undo" => "αναίρεση",
@@ -36,27 +46,50 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Πρέπει να δοθεί έγκυρο όνομα χρήστη",
"Error creating user" => "Σφάλμα δημιουργίας χρήστη",
"A valid password must be provided" => "Πρέπει να δοθεί έγκυρο συνθηματικό",
+"Warning: Home directory for user \"{user}\" already exists" => "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη",
"__language_name__" => "__όνομα_γλώσσας__",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Όλα (καίρια ζητήματα, σφάλματα, προειδοποιήσεις, πληροφορίες, αποσφαλμάτωση)",
+"Info, warnings, errors and fatal issues" => "Πληροφορίες, προειδοποιήσεις, σφάλματα και καίρια ζητήματα",
+"Warnings, errors and fatal issues" => "Προειδοποιήσεις, σφάλματα και καίρια ζητήματα",
+"Errors and fatal issues" => "Σφάλματα και καίρια ζητήματα",
+"Fatal issues only" => "Καίρια ζητήματα μόνο",
"Security Warning" => "Προειδοποίηση Ασφαλείας",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.",
"Setup Warning" => "Ρύθμιση Προειδοποίησης",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.",
+"Please double check the <a href=\"%s\">installation guides</a>." => "Ελέγξτε ξανά τις <a href=\"%s\">οδηγίες εγκατάστασης</a>.",
"Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ",
+"Your PHP version is outdated" => "Η έκδοση PHP είναι απαρχαιωμένη",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά.",
"Locale not working" => "Η μετάφραση δεν δουλεύει",
+"System locale can not be set to a one which supports UTF-8." => "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s.",
"Internet connection not working" => "Η σύνδεση στο διαδίκτυο δεν δουλεύει",
+"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά.",
"Sharing" => "Διαμοιρασμός",
"Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού",
"Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού",
"Allow links" => "Να επιτρέπονται σύνδεσμοι",
"Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους",
+"Allow public uploads" => "Επιτρέψτε κοινόχρηστο ανέβασμα",
+"Allow users to enable others to upload into their publicly shared folders" => "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους",
"Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός",
"Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί",
"Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε",
"Allow users to only share with users in their groups" => "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας",
+"Allow mail notification" => "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου",
+"Allow user to send mail notification for shared files" => "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία",
"Security" => "Ασφάλεια",
"Enforce HTTPS" => "Επιβολή χρήσης HTTPS",
+"Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL.",
"Log" => "Καταγραφές",
"Log level" => "Επίπεδο καταγραφής",
"More" => "Περισσότερα",
@@ -83,26 +116,37 @@ $TRANSLATIONS = array(
"Current password" => "Τρέχων συνθηματικό",
"New password" => "Νέο συνθηματικό",
"Change password" => "Αλλαγή συνθηματικού",
-"Display Name" => "Όνομα εμφάνισης",
+"Full Name" => "Πλήρες όνομα",
"Email" => "Ηλ. ταχυδρομείο",
"Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας",
"Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού",
"Profile picture" => "Φωτογραφία προφίλ",
+"Upload new" => "Μεταφόρτωση νέου",
+"Select new from Files" => "Επιλογή νέου από τα Αρχεία",
+"Remove image" => "Αφαίρεση εικόνας",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε.",
+"Your avatar is provided by your original account." => "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό.",
+"Abort" => "Ματαίωση",
+"Choose as profile image" => "Επιλογή εικόνας προφίλ",
"Language" => "Γλώσσα",
"Help translate" => "Βοηθήστε στη μετάφραση",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Χρήση αυτής της διεύθυνσης για <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">πρόσβαση των αρχείων σας μέσω WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Χρήση αυτής της διεύθυνσης <a href=\"%s\" target=\"_blank\">πρόσβαση των Αρχείων σας μέσω WebDAV</a>",
"Encryption" => "Κρυπτογράφηση",
+"The encryption app is no longer enabled, please decrypt all your files" => "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας",
+"Log-in password" => "Συνθηματικό εισόδου",
+"Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων",
"Login Name" => "Όνομα Σύνδεσης",
"Create" => "Δημιουργία",
"Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ",
"Enter the recovery password in order to recover the users files during password change" => "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού",
"Default Storage" => "Προκαθορισμένη Αποθήκευση ",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")",
"Unlimited" => "Απεριόριστο",
"Other" => "Άλλο",
"Username" => "Όνομα χρήστη",
"Storage" => "Αποθήκευση",
-"change display name" => "αλλαγή ονόματος εμφάνισης",
+"change full name" => "αλλαγή πλήρους ονόματος",
"set new password" => "επιλογή νέου κωδικού",
"Default" => "Προκαθορισμένο"
);
diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php
index abbc92709e5..5f7b6e1fe0d 100644
--- a/settings/l10n/en_GB.php
+++ b/settings/l10n/en_GB.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Unable to load list from App Store",
"Authentication error" => "Authentication error",
-"Your display name has been changed." => "Your display name has been changed.",
-"Unable to change display name" => "Unable to change display name",
+"Your full name has been changed." => "Your full name has been changed.",
+"Unable to change full name" => "Unable to change full name",
"Group already exists" => "Group already exists",
"Unable to add group" => "Unable to add group",
"Email saved" => "Email saved",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "A valid username must be provided",
"Error creating user" => "Error creating user",
"A valid password must be provided" => "A valid password must be provided",
+"Warning: Home directory for user \"{user}\" already exists" => "Warning: Home directory for user \"{user}\" already exists",
"__language_name__" => "__language_name__",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Everything (fatal issues, errors, warnings, info, debug)",
+"Info, warnings, errors and fatal issues" => "Info, warnings, errors and fatal issues",
+"Warnings, errors and fatal issues" => "Warnings, errors and fatal issues",
+"Errors and fatal issues" => "Errors and fatal issues",
+"Fatal issues only" => "Fatal issues only",
"Security Warning" => "Security Warning",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.",
"Setup Warning" => "Setup Warning",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Please double check the <a href=\"%s\">installation guides</a>.",
"Module 'fileinfo' missing" => "Module 'fileinfo' missing",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.",
+"Your PHP version is outdated" => "Your PHP version is outdated",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly.",
"Locale not working" => "Locale not working",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s.",
+"System locale can not be set to a one which supports UTF-8." => "System locale can not be set to a one which supports UTF-8.",
+"This means that there might be problems with certain characters in file names." => "This means that there might be problems with certain characters in file names.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "We strongly suggest installing the required packages on your system to support one of the following locales: %s.",
"Internet connection not working" => "Internet connection not working",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Execute one task with each page loaded",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php is registered at a webcron service to call cron.php once a minute over http.",
-"Use systems cron service to call the cron.php file once a minute." => "Use systems cron service to call the cron.php file once a minute.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Use system's cron service to call the cron.php file every 15 minutes.",
"Sharing" => "Sharing",
"Enable Share API" => "Enable Share API",
"Allow apps to use the Share API" => "Allow apps to use the Share API",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Allow users to share items shared with them again",
"Allow users to share with anyone" => "Allow users to share with anyone",
"Allow users to only share with users in their groups" => "Allow users to only share with users in their groups",
+"Allow mail notification" => "Allow mail notification",
+"Allow user to send mail notification for shared files" => "Allow user to send mail notification for shared files",
"Security" => "Security",
"Enforce HTTPS" => "Enforce HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Current password",
"New password" => "New password",
"Change password" => "Change password",
-"Display Name" => "Display Name",
+"Full Name" => "Full Name",
"Email" => "Email",
"Your email address" => "Your email address",
"Fill in an email address to enable password recovery" => "Fill in an email address to enable password recovery",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Select new from Files",
"Remove image" => "Remove image",
"Either png or jpg. Ideally square but you will be able to crop it." => "Either png or jpg. Ideally square but you will be able to crop it.",
+"Your avatar is provided by your original account." => "Your avatar is provided by your original account.",
"Abort" => "Abort",
"Choose as profile image" => "Choose as profile image",
"Language" => "Language",
"Help translate" => "Help translate",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>",
"Encryption" => "Encryption",
-"The encryption app is no longer enabled, decrypt all your file" => "The encryption app is no longer enabled, decrypt all your files",
+"The encryption app is no longer enabled, please decrypt all your files" => "The encryption app is no longer enabled, please decrypt all your files",
"Log-in password" => "Log-in password",
"Decrypt all Files" => "Decrypt all Files",
"Login Name" => "Login Name",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Admin Recovery Password",
"Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the user's files during password change",
"Default Storage" => "Default Storage",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")",
"Unlimited" => "Unlimited",
"Other" => "Other",
"Username" => "Username",
"Storage" => "Storage",
-"change display name" => "change display name",
+"change full name" => "change full name",
"set new password" => "set new password",
"Default" => "Default"
);
diff --git a/settings/l10n/es.php b/settings/l10n/es.php
index b20a4acb299..fbd98409821 100644
--- a/settings/l10n/es.php
+++ b/settings/l10n/es.php
@@ -1,13 +1,13 @@
<?php
$TRANSLATIONS = array(
-"Unable to load list from App Store" => "Imposible cargar la lista desde el App Store",
+"Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store",
"Authentication error" => "Error de autenticación",
-"Your display name has been changed." => "Su nombre de usuario ha sido cambiado.",
-"Unable to change display name" => "No se pudo cambiar el nombre de usuario",
+"Your full name has been changed." => "Se ha cambiado su nombre completo.",
+"Unable to change full name" => "No se puede cambiar el nombre completo",
"Group already exists" => "El grupo ya existe",
"Unable to add group" => "No se pudo añadir el grupo",
-"Email saved" => "E-mail guardado",
-"Invalid email" => "Correo no válido",
+"Email saved" => "Correo electrónico guardado",
+"Invalid email" => "Correo electrónico no válido",
"Unable to delete group" => "No se pudo eliminar el grupo",
"Unable to delete user" => "No se pudo eliminar el usuario",
"Language changed" => "Idioma cambiado",
@@ -15,9 +15,12 @@ $TRANSLATIONS = array(
"Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador",
"Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s",
"Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s",
-"Couldn't update app." => "No se pudo actualizar la aplicacion.",
-"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino se perderán todos los datos de usuario",
+"Couldn't update app." => "No se pudo actualizar la aplicación.",
+"Wrong password" => "Contraseña incorrecta",
+"No user supplied" => "No se especificó un usuario",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario",
"Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.",
"Unable to change password" => "No se ha podido cambiar la contraseña",
"Update to {appversion}" => "Actualizado a {appversion}",
"Disable" => "Desactivar",
@@ -33,32 +36,43 @@ $TRANSLATIONS = array(
"Select a profile picture" => "Seleccionar una imagen de perfil",
"Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.",
"Saving..." => "Guardando...",
-"deleted" => "Eliminado",
+"deleted" => "eliminado",
"undo" => "deshacer",
-"Unable to remove user" => "No se puede eliminar el usuario",
+"Unable to remove user" => "Imposible eliminar al usuario",
"Groups" => "Grupos",
"Group Admin" => "Administrador del Grupo",
"Delete" => "Eliminar",
"add group" => "añadir Grupo",
-"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido",
+"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido",
"Error creating user" => "Error al crear usuario",
-"A valid password must be provided" => "Se debe proporcionar una contraseña valida",
+"A valid password must be provided" => "Se debe proporcionar una contraseña válida",
+"Warning: Home directory for user \"{user}\" already exists" => "Atención: el directorio de inicio para el usuario \"{user}\" ya existe.",
"__language_name__" => "Castellano",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (Información, Avisos, Errores, debug y problemas fatales)",
+"Info, warnings, errors and fatal issues" => "Información, Avisos, Errores y problemas fatales",
+"Warnings, errors and fatal issues" => "Advertencias, errores y problemas fatales",
+"Errors and fatal issues" => "Errores y problemas fatales",
+"Fatal issues only" => "Problemas fatales solamente",
"Security Warning" => "Advertencia de seguridad",
-"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Probablemente se puede acceder a su directorio de datos y sus archivos desde Internet. El archivo .htaccess no está funcionando. Nosotros le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web.",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.",
"Setup Warning" => "Advertencia de configuración",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.",
"Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"",
-"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type",
+"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.",
+"Your PHP version is outdated" => "Su versión de PHP ha caducado",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello.",
"Locale not working" => "La configuración regional no está funcionando",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar % s.",
-"Internet connection not working" => "La conexion a internet no esta funcionando",
-"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene una conexión a Internet. Esto significa que algunas de las características como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o instalación de aplicaciones de terceros no funcionan. Podría no funcionar el acceso a los archivos de forma remota y el envío de correos electrónicos de notificación. Sugerimos habilitar la conexión a Internet de este servidor, si quiere tener todas las funciones.",
+"System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ",
+"Internet connection not working" => "La conexión a Internet no está funcionando",
+"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registrado en un servicio WebCron para llamar cron.php una vez por minuto a través de HTTP.",
-"Use systems cron service to call the cron.php file once a minute." => "Usar el servicio cron del sistema para llamar al archivo cron.php una vez por minuto.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.",
"Sharing" => "Compartiendo",
"Enable Share API" => "Activar API de Compartición",
"Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición",
@@ -68,12 +82,14 @@ $TRANSLATIONS = array(
"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente",
"Allow resharing" => "Permitir re-compartición",
"Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos",
-"Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo",
+"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona",
"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos",
+"Allow mail notification" => "Permitir notificaciones por correo electrónico",
+"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos",
"Security" => "Seguridad",
"Enforce HTTPS" => "Forzar HTTPS",
-"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada.",
-"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación SSL.",
+"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL.",
"Log" => "Registro",
"Log level" => "Nivel de registro",
"More" => "Más",
@@ -86,13 +102,13 @@ $TRANSLATIONS = array(
"See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com",
"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencia otorgada por <span class=\"author\"></span>",
"User Documentation" => "Documentación de usuario",
-"Administrator Documentation" => "Documentación de adminstrador",
-"Online Documentation" => "Documentación en linea",
+"Administrator Documentation" => "Documentación de administrador",
+"Online Documentation" => "Documentación en línea",
"Forum" => "Foro",
"Bugtracker" => "Rastreador de fallos",
"Commercial Support" => "Soporte comercial",
"Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos",
-"Show First Run Wizard again" => "Mostrar asistente para iniciar de nuevo",
+"Show First Run Wizard again" => "Mostrar nuevamente el Asistente de ejecución inicial",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Ha usado <strong>%s</strong> de los <strong>%s</strong> disponibles",
"Password" => "Contraseña",
"Your password was changed" => "Su contraseña ha sido cambiada",
@@ -100,35 +116,38 @@ $TRANSLATIONS = array(
"Current password" => "Contraseña actual",
"New password" => "Nueva contraseña",
"Change password" => "Cambiar contraseña",
-"Display Name" => "Nombre a mostrar",
-"Email" => "E-mail",
+"Full Name" => "Nombre completo",
+"Email" => "Correo electrónico",
"Your email address" => "Su dirección de correo",
"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña",
-"Profile picture" => "Foto del perfil",
-"Upload new" => "Subir nuevo",
-"Select new from Files" => "Seleccionar nuevo desde Ficheros",
+"Profile picture" => "Foto de perfil",
+"Upload new" => "Subir otra",
+"Select new from Files" => "Seleccionar otra desde Archivos",
"Remove image" => "Borrar imagen",
-"Abort" => "Abortar",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.",
+"Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.",
+"Abort" => "Cancelar",
"Choose as profile image" => "Seleccionar como imagen de perfil",
"Language" => "Idioma",
"Help translate" => "Ayúdanos a traducir",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a sus archivos a través de WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para <a href=\"%s\" target=\"_blank\">acceder a sus archivos vía WebDAV</a>",
"Encryption" => "Cifrado",
-"The encryption app is no longer enabled, decrypt all your file" => "La aplicación de cifrado no está activada, descifre sus archivos",
+"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos",
"Log-in password" => "Contraseña de acceso",
"Decrypt all Files" => "Descifrar archivos",
"Login Name" => "Nombre de usuario",
"Create" => "Crear",
"Admin Recovery Password" => "Recuperación de la contraseña de administración",
-"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación para recuperar los archivos de usuarios durante el cambio de contraseña.",
+"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.",
"Default Storage" => "Almacenamiento predeterminado",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")",
"Unlimited" => "Ilimitado",
"Other" => "Otro",
"Username" => "Nombre de usuario",
"Storage" => "Almacenamiento",
-"change display name" => "Cambiar nombre a mostrar",
-"set new password" => "Configurar nueva contraseña",
+"change full name" => "cambiar el nombre completo",
+"set new password" => "establecer nueva contraseña",
"Default" => "Predeterminado"
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php
index aba4b604a2d..44c9964778c 100644
--- a/settings/l10n/es_AR.php
+++ b/settings/l10n/es_AR.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Imposible cargar la lista desde el App Store",
"Authentication error" => "Error al autenticar",
-"Your display name has been changed." => "El nombre mostrado que usás fue cambiado.",
-"Unable to change display name" => "No fue posible cambiar el nombre mostrado",
"Group already exists" => "El grupo ya existe",
"Unable to add group" => "No fue posible añadir el grupo",
"Email saved" => "e-mail guardado",
@@ -48,13 +46,10 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type",
"Locale not working" => "\"Locale\" no está funcionando",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "No se pudo asignar la localización del sistema a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos. Recomendamos fuertemente instalar los paquetes de sistema requeridos para poder dar soporte a %s.",
"Internet connection not working" => "La conexión a Internet no esta funcionando. ",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registrado al servicio webcron para que sea llamado una vez por cada minuto sobre http.",
-"Use systems cron service to call the cron.php file once a minute." => "Usa el servicio cron del sistema para ejecutar al archivo cron.php por cada minuto.",
"Sharing" => "Compartiendo",
"Enable Share API" => "Habilitar Share API",
"Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API",
@@ -96,7 +91,6 @@ $TRANSLATIONS = array(
"Current password" => "Contraseña actual",
"New password" => "Nueva contraseña:",
"Change password" => "Cambiar contraseña",
-"Display Name" => "Nombre a mostrar",
"Email" => "e-mail",
"Your email address" => "Tu dirección de e-mail",
"Fill in an email address to enable password recovery" => "Escribí una dirección de e-mail para restablecer la contraseña",
@@ -104,9 +98,7 @@ $TRANSLATIONS = array(
"Language" => "Idioma",
"Help translate" => "Ayudanos a traducir",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Usá esta dirección para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a tus archivos a través de WebDAV</a>",
"Encryption" => "Encriptación",
-"The encryption app is no longer enabled, decrypt all your file" => "La aplicación de encriptación ya no está habilitada, desencriptando todos los archivos",
"Log-in password" => "Clave de acceso",
"Decrypt all Files" => "Desencriptar todos los archivos",
"Login Name" => "Nombre de Usuario",
@@ -118,7 +110,6 @@ $TRANSLATIONS = array(
"Other" => "Otros",
"Username" => "Nombre de usuario",
"Storage" => "Almacenamiento",
-"change display name" => "Cambiar el nombre mostrado",
"set new password" => "Configurar nueva contraseña",
"Default" => "Predeterminado"
);
diff --git a/settings/l10n/es_CL.php b/settings/l10n/es_CL.php
new file mode 100644
index 00000000000..86e66bd4825
--- /dev/null
+++ b/settings/l10n/es_CL.php
@@ -0,0 +1,6 @@
+<?php
+$TRANSLATIONS = array(
+"Password" => "Clave",
+"Username" => "Usuario"
+);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php
new file mode 100644
index 00000000000..520ab637ffc
--- /dev/null
+++ b/settings/l10n/es_MX.php
@@ -0,0 +1,153 @@
+<?php
+$TRANSLATIONS = array(
+"Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store",
+"Authentication error" => "Error de autenticación",
+"Your full name has been changed." => "Se ha cambiado su nombre completo.",
+"Unable to change full name" => "No se puede cambiar el nombre completo",
+"Group already exists" => "El grupo ya existe",
+"Unable to add group" => "No se pudo añadir el grupo",
+"Email saved" => "Correo electrónico guardado",
+"Invalid email" => "Correo electrónico no válido",
+"Unable to delete group" => "No se pudo eliminar el grupo",
+"Unable to delete user" => "No se pudo eliminar el usuario",
+"Language changed" => "Idioma cambiado",
+"Invalid request" => "Petición no válida",
+"Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador",
+"Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s",
+"Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s",
+"Couldn't update app." => "No se pudo actualizar la aplicación.",
+"Wrong password" => "Contraseña incorrecta",
+"No user supplied" => "No se especificó un usuario",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor facilite una contraseña de recuperación de administrador, sino podrían perderse todos los datos de usuario",
+"Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.",
+"Unable to change password" => "No se ha podido cambiar la contraseña",
+"Update to {appversion}" => "Actualizado a {appversion}",
+"Disable" => "Desactivar",
+"Enable" => "Activar",
+"Please wait...." => "Espere, por favor....",
+"Error while disabling app" => "Error mientras se desactivaba la aplicación",
+"Error while enabling app" => "Error mientras se activaba la aplicación",
+"Updating...." => "Actualizando....",
+"Error while updating app" => "Error mientras se actualizaba la aplicación",
+"Error" => "Error",
+"Update" => "Actualizar",
+"Updated" => "Actualizado",
+"Select a profile picture" => "Seleccionar una imagen de perfil",
+"Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.",
+"Saving..." => "Guardando...",
+"deleted" => "eliminado",
+"undo" => "deshacer",
+"Unable to remove user" => "Imposible eliminar al usuario",
+"Groups" => "Grupos",
+"Group Admin" => "Administrador del Grupo",
+"Delete" => "Eliminar",
+"add group" => "añadir Grupo",
+"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido",
+"Error creating user" => "Error al crear usuario",
+"A valid password must be provided" => "Se debe proporcionar una contraseña válida",
+"Warning: Home directory for user \"{user}\" already exists" => "Atención: el directorio de inicio para el usuario \"{user}\" ya existe.",
+"__language_name__" => "Español (México)",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (Información, Avisos, Errores, debug y problemas fatales)",
+"Info, warnings, errors and fatal issues" => "Información, Avisos, Errores y problemas fatales",
+"Warnings, errors and fatal issues" => "Advertencias, errores y problemas fatales",
+"Errors and fatal issues" => "Errores y problemas fatales",
+"Fatal issues only" => "Problemas fatales solamente",
+"Security Warning" => "Advertencia de seguridad",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web.",
+"Setup Warning" => "Advertencia de configuración",
+"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.",
+"Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.",
+"Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"",
+"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.",
+"Your PHP version is outdated" => "Su versión de PHP ha caducado",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello.",
+"Locale not working" => "La configuración regional no está funcionando",
+"System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. ",
+"Internet connection not working" => "La conexión a Internet no está funcionando",
+"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.",
+"Cron" => "Cron",
+"Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.",
+"Sharing" => "Compartiendo",
+"Enable Share API" => "Activar API de Compartición",
+"Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición",
+"Allow links" => "Permitir enlaces",
+"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces",
+"Allow public uploads" => "Permitir subidas públicas",
+"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente",
+"Allow resharing" => "Permitir re-compartición",
+"Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos",
+"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona",
+"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos",
+"Allow mail notification" => "Permitir notificaciones por correo electrónico",
+"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos",
+"Security" => "Seguridad",
+"Enforce HTTPS" => "Forzar HTTPS",
+"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL.",
+"Log" => "Registro",
+"Log level" => "Nivel de registro",
+"More" => "Más",
+"Less" => "Menos",
+"Version" => "Versión",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
+"Add your App" => "Añade tu aplicación",
+"More Apps" => "Más aplicaciones",
+"Select an App" => "Seleccionar una aplicación",
+"See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com",
+"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencia otorgada por <span class=\"author\"></span>",
+"User Documentation" => "Documentación de usuario",
+"Administrator Documentation" => "Documentación de administrador",
+"Online Documentation" => "Documentación en línea",
+"Forum" => "Foro",
+"Bugtracker" => "Rastreador de fallos",
+"Commercial Support" => "Soporte comercial",
+"Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos",
+"Show First Run Wizard again" => "Mostrar nuevamente el Asistente de ejecución inicial",
+"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Ha usado <strong>%s</strong> de los <strong>%s</strong> disponibles",
+"Password" => "Contraseña",
+"Your password was changed" => "Su contraseña ha sido cambiada",
+"Unable to change your password" => "No se ha podido cambiar su contraseña",
+"Current password" => "Contraseña actual",
+"New password" => "Nueva contraseña",
+"Change password" => "Cambiar contraseña",
+"Full Name" => "Nombre completo",
+"Email" => "Correo electrónico",
+"Your email address" => "Su dirección de correo",
+"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña",
+"Profile picture" => "Foto de perfil",
+"Upload new" => "Subir otra",
+"Select new from Files" => "Seleccionar otra desde Archivos",
+"Remove image" => "Borrar imagen",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.",
+"Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.",
+"Abort" => "Cancelar",
+"Choose as profile image" => "Seleccionar como imagen de perfil",
+"Language" => "Idioma",
+"Help translate" => "Ayúdanos a traducir",
+"WebDAV" => "WebDAV",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para <a href=\"%s\" target=\"_blank\">acceder a sus archivos vía WebDAV</a>",
+"Encryption" => "Cifrado",
+"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos",
+"Log-in password" => "Contraseña de acceso",
+"Decrypt all Files" => "Descifrar archivos",
+"Login Name" => "Nombre de usuario",
+"Create" => "Crear",
+"Admin Recovery Password" => "Recuperación de la contraseña de administración",
+"Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.",
+"Default Storage" => "Almacenamiento predeterminado",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")",
+"Unlimited" => "Ilimitado",
+"Other" => "Otro",
+"Username" => "Nombre de usuario",
+"Storage" => "Almacenamiento",
+"change full name" => "cambiar el nombre completo",
+"set new password" => "establecer nueva contraseña",
+"Default" => "Predeterminado"
+);
+$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php
index a93ea817422..f5436525828 100644
--- a/settings/l10n/et_EE.php
+++ b/settings/l10n/et_EE.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "App Store'i nimekirja laadimine ebaõnnestus",
"Authentication error" => "Autentimise viga",
-"Your display name has been changed." => "Sinu näidatav nimi on muudetud.",
-"Unable to change display name" => "Ei saa muuta näidatavat nime",
+"Your full name has been changed." => "Sinu täispikk nimi on muudetud.",
+"Unable to change full name" => "Täispika nime muutmine ebaõnnestus",
"Group already exists" => "Grupp on juba olemas",
"Unable to add group" => "Keela grupi lisamine",
"Email saved" => "Kiri on salvestatud",
@@ -12,7 +12,7 @@ $TRANSLATIONS = array(
"Unable to delete user" => "Kasutaja kustutamine ebaõnnestus",
"Language changed" => "Keel on muudetud",
"Invalid request" => "Vigane päring",
-"Admins can't remove themself from the admin group" => "Administraatorid ei saa ise end eemaldada admin grupist",
+"Admins can't remove themself from the admin group" => "Administraatorid ei saa ise end admin grupist eemaldada",
"Unable to add user to group %s" => "Kasutajat ei saa lisada gruppi %s",
"Unable to remove user from group %s" => "Kasutajat ei saa eemaldada grupist %s",
"Couldn't update app." => "Rakenduse uuendamine ebaõnnestus.",
@@ -26,8 +26,8 @@ $TRANSLATIONS = array(
"Disable" => "Lülita välja",
"Enable" => "Lülita sisse",
"Please wait...." => "Palun oota...",
-"Error while disabling app" => "Viga rakendi keelamisel",
-"Error while enabling app" => "Viga rakendi lubamisel",
+"Error while disabling app" => "Viga rakenduse keelamisel",
+"Error while enabling app" => "Viga rakenduse lubamisel",
"Updating...." => "Uuendamine...",
"Error while updating app" => "Viga rakenduse uuendamisel",
"Error" => "Viga",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus",
"Error creating user" => "Viga kasutaja loomisel",
"A valid password must be provided" => "Sisesta nõuetele vastav parool",
+"Warning: Home directory for user \"{user}\" already exists" => "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas",
"__language_name__" => "Eesti",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Kõik (tõsised probleemid, veateated, hoiatused, info, veatuvastus)",
+"Info, warnings, errors and fatal issues" => "Info, hoiatused, veateted ja tõsised probleemid",
+"Warnings, errors and fatal issues" => "Hoiatused, veateated ja tõsised probleemid",
+"Errors and fatal issues" => "Veateated ja tõsised probleemid",
+"Fatal issues only" => "Ainult tõsised probleemid",
"Security Warning" => "Turvahoiatus",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale.",
"Setup Warning" => "Paigalduse hoiatus",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Palun kontrolli uuesti <a href=\"%s\">paigaldusjuhendeid</a>.",
"Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.",
+"Your PHP version is outdated" => "PHP versioon on aegunud",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt.",
"Locale not working" => "Lokalisatsioon ei toimi",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s.",
+"System locale can not be set to a one which supports UTF-8." => "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.",
+"This means that there might be problems with certain characters in file names." => "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s.",
"Internet connection not working" => "Internetiühendus ei toimi",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.",
"Cron" => "Cron",
-"Execute one task with each page loaded" => "Käivita toiming lehe laadimisel",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php on registreeritud webcron teenusena laadimaks cron.php iga minut üle http.",
-"Use systems cron service to call the cron.php file once a minute." => "Kasuta süsteemi cron teenust käivitamaks faili cron.php kord minutis.",
+"Execute one task with each page loaded" => "Käivita toiming igal lehe laadimisel",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant.",
"Sharing" => "Jagamine",
"Enable Share API" => "Luba Share API",
"Allow apps to use the Share API" => "Luba rakendustel kasutada Share API-t",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud",
"Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada",
"Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad",
+"Allow mail notification" => "Luba teavitused e-postiga",
+"Allow user to send mail notification for shared files" => "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi",
"Security" => "Turvalisus",
"Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine",
"Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.",
@@ -103,35 +116,37 @@ $TRANSLATIONS = array(
"Current password" => "Praegune parool",
"New password" => "Uus parool",
"Change password" => "Muuda parooli",
-"Display Name" => "Näidatav nimi",
+"Full Name" => "Täispikk nimi",
"Email" => "E-post",
"Your email address" => "Sinu e-posti aadress",
"Fill in an email address to enable password recovery" => "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress",
"Profile picture" => "Profiili pilt",
-"Upload new" => "Laadi uus",
+"Upload new" => "Laadi uus üles",
"Select new from Files" => "Vali failidest uus",
"Remove image" => "Eemalda pilt",
-"Either png or jpg. Ideally square but you will be able to crop it." => "Kas png või jpg. Võimalikult ruudukujuline, kuid Sul on võimalus veel lõigata.",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata.",
+"Your avatar is provided by your original account." => "Sinu avatari pakub sinu algne konto.",
"Abort" => "Katkesta",
-"Choose as profile image" => "Vali kui profiili pilt",
+"Choose as profile image" => "Vali profiilipildiks",
"Language" => "Keel",
"Help translate" => "Aita tõlkida",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Kasuta seda aadressi <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">oma failidele ligipääsuks WebDAV kaudu</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Kasuta seda aadressi <a href=\"%s\" target=\"_blank\">oma failidele ligipääsuks WebDAV kaudu</a>",
"Encryption" => "Krüpteerimine",
-"The encryption app is no longer enabled, decrypt all your file" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid",
+"The encryption app is no longer enabled, please decrypt all your files" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid",
"Log-in password" => "Sisselogimise parool",
"Decrypt all Files" => "Dekrüpteeri kõik failid",
"Login Name" => "Kasutajanimi",
"Create" => "Lisa",
-"Admin Recovery Password" => "Admin taasteparool",
+"Admin Recovery Password" => "Admini parooli taastamine",
"Enter the recovery password in order to recover the users files during password change" => "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus",
"Default Storage" => "Vaikimisi maht",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")",
"Unlimited" => "Piiramatult",
"Other" => "Muu",
"Username" => "Kasutajanimi",
"Storage" => "Maht",
-"change display name" => "muuda näidatavat nime",
+"change full name" => "Muuda täispikka nime",
"set new password" => "määra uus parool",
"Default" => "Vaikeväärtus"
);
diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php
index 63a3bf3f62b..0542deee3d1 100644
--- a/settings/l10n/eu.php
+++ b/settings/l10n/eu.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Ezin izan da App Dendatik zerrenda kargatu",
"Authentication error" => "Autentifikazio errorea",
-"Your display name has been changed." => "Zure bistaratze izena aldatu egin da.",
-"Unable to change display name" => "Ezin izan da bistaratze izena aldatu",
+"Your full name has been changed." => "Zure izena aldatu egin da.",
+"Unable to change full name" => "Ezin izan da izena aldatu",
"Group already exists" => "Taldea dagoeneko existitzenda",
"Unable to add group" => "Ezin izan da taldea gehitu",
"Email saved" => "Eposta gorde da",
@@ -16,15 +16,23 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Ezin izan da erabiltzailea %s taldera gehitu",
"Unable to remove user from group %s" => "Ezin izan da erabiltzailea %s taldetik ezabatu",
"Couldn't update app." => "Ezin izan da aplikazioa eguneratu.",
+"Wrong password" => "Pasahitz okerra",
+"No user supplied" => "Ez da erabiltzailerik zehaztu",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira",
+"Wrong admin recovery password. Please check the password and try again." => "Berreskuratze administradore pasahitz ez egokia. Medesez egiaztatu pasahitza eta saiatu berriz.",
+"Unable to change password" => "Ezin izan da pasahitza aldatu",
"Update to {appversion}" => "Eguneratu {appversion}-ra",
"Disable" => "Ez-gaitu",
"Enable" => "Gaitu",
"Please wait...." => "Itxoin mesedez...",
+"Error while disabling app" => "Erroea izan da aplikazioa desgaitzerakoan",
+"Error while enabling app" => "Erroea izan da aplikazioa gaitzerakoan",
"Updating...." => "Eguneratzen...",
"Error while updating app" => "Errorea aplikazioa eguneratzen zen bitartean",
"Error" => "Errorea",
"Update" => "Eguneratu",
"Updated" => "Eguneratuta",
+"Select a profile picture" => "Profil argazkia aukeratu",
"Saving..." => "Gordetzen...",
"deleted" => "ezabatuta",
"undo" => "desegin",
@@ -36,19 +44,27 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Baliozko erabiltzaile izena eman behar da",
"Error creating user" => "Errore bat egon da erabiltzailea sortzean",
"A valid password must be provided" => "Baliozko pasahitza eman behar da",
+"Warning: Home directory for user \"{user}\" already exists" => "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da",
"__language_name__" => "Euskera",
"Security Warning" => "Segurtasun abisua",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.",
"Setup Warning" => "Konfiguratu Abisuak",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Mesedez birpasatu <a href=\"%s\">instalazio gidak</a>.",
"Module 'fileinfo' missing" => "'fileinfo' Modulua falta da",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.",
+"Your PHP version is outdated" => "Zure PHP bertsioa zaharkituta dago",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Zure PHP bertsioa zaharkituta dago. Gure aholkua 5.3.8 edo bertsio berriago batera eguneratzea da, bertsio zaharragoak arazoak ematen baitituzte. Posible da instalazio honek ez funtzionatzea ongi.",
"Locale not working" => "Lokala ez dabil",
+"System locale can not be set to a one which supports UTF-8." => "Sistemaren lokala ezin da UTF-8 onartzen duen batera ezarri.",
+"This means that there might be problems with certain characters in file names." => "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.",
"Internet connection not working" => "Interneteko konexioak ez du funtzionatzen",
+"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Exekutatu zeregin bat orri karga bakoitzean",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago cron.php minuturo http bidez deitzeko.",
-"Use systems cron service to call the cron.php file once a minute." => "Erabili sistemaren cron zerbitzua cron.php fitxategia minuturo deitzeko.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Erabili sistemaren cron zerbitzua cron.php fitxategia 15 minuturo deitzeko.",
"Sharing" => "Partekatzea",
"Enable Share API" => "Gaitu Elkarbanatze APIa",
"Allow apps to use the Share API" => "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko",
@@ -60,6 +76,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen",
"Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen",
"Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen",
+"Allow mail notification" => "Baimendu posta bidezko jakinarazpenak",
+"Allow user to send mail notification for shared files" => "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako",
"Security" => "Segurtasuna",
"Enforce HTTPS" => "Behartu HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.",
@@ -90,26 +108,36 @@ $TRANSLATIONS = array(
"Current password" => "Uneko pasahitza",
"New password" => "Pasahitz berria",
"Change password" => "Aldatu pasahitza",
-"Display Name" => "Bistaratze Izena",
+"Full Name" => "Izena",
"Email" => "E-posta",
"Your email address" => "Zure e-posta",
"Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko",
"Profile picture" => "Profilaren irudia",
+"Upload new" => "Igo berria",
+"Select new from Files" => "Hautatu berria Fitxategietatik",
+"Remove image" => "Irudia ezabatu",
+"Either png or jpg. Ideally square but you will be able to crop it." => "png edo jpg. Hobe karratua baina mozteko aukera izango duzu.",
+"Abort" => "Bertan-behera utzi",
+"Choose as profile image" => "Profil irudi bezala aukeratu",
"Language" => "Hizkuntza",
"Help translate" => "Lagundu itzultzen",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s\" target=\"_blank\">helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko</a>",
"Encryption" => "Enkriptazioa",
+"The encryption app is no longer enabled, please decrypt all your files" => "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak.",
+"Log-in password" => "Saioa hasteko pasahitza",
+"Decrypt all Files" => "Desenkripattu fitxategi guztiak",
"Login Name" => "Sarrera Izena",
"Create" => "Sortu",
"Admin Recovery Password" => "Kudeatzaile pasahitz berreskuratzea",
"Enter the recovery password in order to recover the users files during password change" => "berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko",
"Default Storage" => "Lehenetsitako Biltegiratzea",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")",
"Unlimited" => "Mugarik gabe",
"Other" => "Bestelakoa",
"Username" => "Erabiltzaile izena",
"Storage" => "Biltegiratzea",
-"change display name" => "aldatu bistaratze izena",
+"change full name" => "aldatu izena",
"set new password" => "ezarri pasahitz berria",
"Default" => "Lehenetsia"
);
diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php
index b4ae186e300..e8582868f3b 100644
--- a/settings/l10n/fa.php
+++ b/settings/l10n/fa.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "قادر به بارگذاری لیست از فروشگاه اپ نیستم",
"Authentication error" => "خطا در اعتبار سنجی",
-"Your display name has been changed." => "نام نمایش شما تغییر یافته است.",
-"Unable to change display name" => "امکان تغییر نام نمایشی شما وجود ندارد",
"Group already exists" => "این گروه در حال حاضر موجود است",
"Unable to add group" => "افزودن گروه امکان پذیر نیست",
"Email saved" => "ایمیل ذخیره شد",
@@ -83,7 +81,6 @@ $TRANSLATIONS = array(
"Current password" => "گذرواژه کنونی",
"New password" => "گذرواژه جدید",
"Change password" => "تغییر گذر واژه",
-"Display Name" => "نام نمایشی",
"Email" => "ایمیل",
"Your email address" => "پست الکترونیکی شما",
"Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود",
@@ -91,7 +88,6 @@ $TRANSLATIONS = array(
"Language" => "زبان",
"Help translate" => "به ترجمه آن کمک کنید",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "استفاده ابن آدرس <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\"> برای دسترسی فایل های شما از طریق WebDAV </a>",
"Encryption" => "رمزگذاری",
"Login Name" => "نام کاربری",
"Create" => "ایجاد کردن",
@@ -102,7 +98,6 @@ $TRANSLATIONS = array(
"Other" => "دیگر",
"Username" => "نام کاربری",
"Storage" => "حافظه",
-"change display name" => "تغییر نام نمایشی",
"set new password" => "تنظیم کلمه عبور جدید",
"Default" => "پیش فرض"
);
diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php
index d50dc87e014..0451703cc75 100644
--- a/settings/l10n/fi_FI.php
+++ b/settings/l10n/fi_FI.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)",
"Authentication error" => "Tunnistautumisvirhe",
-"Your display name has been changed." => "Näyttönimesi on muutettu.",
-"Unable to change display name" => "Näyttönimen muuttaminen epäonnistui",
+"Your full name has been changed." => "Koko nimesi on muutettu.",
+"Unable to change full name" => "Koko nimen muuttaminen epäonnistui",
"Group already exists" => "Ryhmä on jo olemassa",
"Unable to add group" => "Ryhmän lisäys epäonnistui",
"Email saved" => "Sähköposti tallennettu",
@@ -42,21 +42,38 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Anna kelvollinen käyttäjätunnus",
"Error creating user" => "Virhe käyttäjää luotaessa",
"A valid password must be provided" => "Anna kelvollinen salasana",
+"Warning: Home directory for user \"{user}\" already exists" => "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio",
"__language_name__" => "_kielen_nimi_",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Kaikki (vakavat ongelmat, virheet, varoitukset, tiedot, vianjäljitys)",
+"Info, warnings, errors and fatal issues" => "Tiedot, varoitukset, virheet ja vakavat ongelmat",
+"Warnings, errors and fatal issues" => "Varoitukset, virheet ja vakavat ongelmat",
+"Errors and fatal issues" => "Virheet ja vakavat ongelmat",
+"Fatal issues only" => "Vain vakavat ongelmat",
"Security Warning" => "Turvallisuusvaroitus",
+"Setup Warning" => "Asetusvaroitus",
"Please double check the <a href=\"%s\">installation guides</a>." => "Lue <a href=\"%s\">asennusohjeet</a> tarkasti.",
"Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu",
+"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.",
+"Your PHP version is outdated" => "Käytössä oleva PHP-versio on vanhentunut",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla.",
+"Locale not working" => "Maa-asetus ei toimi",
+"System locale can not be set to a one which supports UTF-8." => "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi.",
+"This means that there might be problems with certain characters in file names." => "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia.",
"Internet connection not working" => "Internet-yhteys ei toimi",
"Cron" => "Cron",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein",
"Sharing" => "Jakaminen",
"Enable Share API" => "Käytä jakamisen ohjelmointirajapintaa",
"Allow apps to use the Share API" => "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa",
"Allow links" => "Salli linkit",
"Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita käyttäen linkkejä",
+"Allow public uploads" => "Salli julkiset lähetykset",
"Allow resharing" => "Salli uudelleenjakaminen",
"Allow users to share items shared with them again" => "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita",
"Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa",
"Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken",
+"Allow mail notification" => "Salli sähköposti-ilmoitukset",
+"Allow user to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista",
"Security" => "Tietoturva",
"Enforce HTTPS" => "Pakota HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.",
@@ -86,7 +103,7 @@ $TRANSLATIONS = array(
"Current password" => "Nykyinen salasana",
"New password" => "Uusi salasana",
"Change password" => "Vaihda salasana",
-"Display Name" => "Näyttönimi",
+"Full Name" => "Koko nimi",
"Email" => "Sähköpostiosoite",
"Your email address" => "Sähköpostiosoitteesi",
"Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa",
@@ -100,9 +117,9 @@ $TRANSLATIONS = array(
"Language" => "Kieli",
"Help translate" => "Auta kääntämisessä",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Käytä tätä osoitetta <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">päästäksesi käsiksi tiedostoihisi WebDAVin kautta</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Käytä tätä osoitetta <a href=\"%s\" target=\"_blank\">käyttääksesi tiedostojasi WebDAVin kautta</a>",
"Encryption" => "Salaus",
-"The encryption app is no longer enabled, decrypt all your file" => "Salaussovellus ei ole enää käytössä, pura kaikkien tiedostojesi salaus",
+"The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus",
"Decrypt all Files" => "Pura kaikkien tiedostojen salaus",
"Login Name" => "Kirjautumisnimi",
"Create" => "Luo",
@@ -111,7 +128,7 @@ $TRANSLATIONS = array(
"Other" => "Muu",
"Username" => "Käyttäjätunnus",
"Storage" => "Tallennustila",
-"change display name" => "vaihda näyttönimi",
+"change full name" => "muuta koko nimi",
"set new password" => "aseta uusi salasana",
"Default" => "Oletus"
);
diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php
index 10a7d764bc8..156533f6fa0 100644
--- a/settings/l10n/fr.php
+++ b/settings/l10n/fr.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store",
"Authentication error" => "Erreur d'authentification",
-"Your display name has been changed." => "Votre nom d'affichage a bien été modifié.",
-"Unable to change display name" => "Impossible de modifier le nom d'affichage",
+"Your full name has been changed." => "Votre nom complet a été modifié.",
+"Unable to change full name" => "Impossible de changer le nom complet",
"Group already exists" => "Ce groupe existe déjà",
"Unable to add group" => "Impossible d'ajouter le groupe",
"Email saved" => "E-mail sauvegardé",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Un nom d'utilisateur valide doit être saisi",
"Error creating user" => "Erreur lors de la création de l'utilisateur",
"A valid password must be provided" => "Un mot de passe valide doit être saisi",
+"Warning: Home directory for user \"{user}\" already exists" => "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà",
"__language_name__" => "Français",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Tout (erreurs fatales, erreurs, avertissements, informations, debogage)",
+"Info, warnings, errors and fatal issues" => "Informations, avertissements, erreurs et erreurs fatales",
+"Warnings, errors and fatal issues" => "Avertissements, erreurs et erreurs fatales",
+"Errors and fatal issues" => "Erreurs et erreurs fatales",
+"Fatal issues only" => "Erreurs fatales uniquement",
"Security Warning" => "Avertissement de sécurité",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web.",
"Setup Warning" => "Avertissement, problème de configuration",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Veuillez consulter à nouveau les <a href=\"%s\">guides d'installation</a>.",
"Module 'fileinfo' missing" => "Module 'fileinfo' manquant",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.",
+"Your PHP version is outdated" => "Votre version de PHP est trop ancienne",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Votre version de PHP est trop ancienne. Nous vous recommandons fortement de migrer vers une version 5.3.8 ou plus récente encore, car les versions antérieures sont réputées problématiques. Il est possible que cette installation ne fonctionne pas correctement.",
"Locale not working" => "Localisation non fonctionnelle",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Le localisation du système n'a pu être configurée à %s. Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est fortement recommandé d'installer les paquets requis pour le support de %s.",
+"System locale can not be set to a one which supports UTF-8." => "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Nous conseillons vivement d'installer les paquets requis sur votre système pour supporter l'un des paramètres régionaux suivants : %s.",
"Internet connection not working" => "La connexion internet ne fonctionne pas",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Exécute une tâche à chaque chargement de page",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php est enregistré en tant que service webcron pour appeler cron.php une fois par minute via http.",
-"Use systems cron service to call the cron.php file once a minute." => "Utilise le service cron du système pour appeler cron.php une fois par minute.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.",
"Sharing" => "Partage",
"Enable Share API" => "Activer l'API de partage",
"Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux",
"Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde",
"Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement",
+"Allow mail notification" => "Autoriser les notifications par couriel",
+"Allow user to send mail notification for shared files" => "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés",
"Security" => "Sécurité",
"Enforce HTTPS" => "Forcer HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Mot de passe actuel",
"New password" => "Nouveau mot de passe",
"Change password" => "Changer de mot de passe",
-"Display Name" => "Nom affiché",
+"Full Name" => "Nom complet",
"Email" => "Adresse mail",
"Your email address" => "Votre adresse e-mail",
"Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Sélectionner un nouveau depuis les documents",
"Remove image" => "Supprimer l'image",
"Either png or jpg. Ideally square but you will be able to crop it." => "Soit png ou jpg. idéalement carée mais vous pourrez la recadrer .",
+"Your avatar is provided by your original account." => "Votre avatar est fourni par votre compte original.",
"Abort" => "Abandonner",
"Choose as profile image" => "Choisir en temps que photo de profil ",
"Language" => "Langue",
"Help translate" => "Aidez à traduire",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilisez cette adresse pour <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accéder à vos fichiers via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utiliser cette adresse pour <a href=\"%s\" target=\"_blank\"> accéder à vos fichiers par WebDAV</a>",
"Encryption" => "Chiffrement",
-"The encryption app is no longer enabled, decrypt all your file" => "L'application de chiffrement n'est plus activée, déchiffrez tous vos fichiers",
+"The encryption app is no longer enabled, please decrypt all your files" => "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers",
"Log-in password" => "Mot de passe de connexion",
"Decrypt all Files" => "Déchiffrer tous les fichiers",
"Login Name" => "Nom de la connexion",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Récupération du mot de passe administrateur",
"Enter the recovery password in order to recover the users files during password change" => "Entrer le mot de passe de récupération dans le but de récupérer les fichiers utilisateurs pendant le changement de mot de passe",
"Default Storage" => "Support de stockage par défaut",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")",
"Unlimited" => "Illimité",
"Other" => "Autre",
"Username" => "Nom d'utilisateur",
"Storage" => "Support de stockage",
-"change display name" => "Changer le nom affiché",
+"change full name" => "Modifier le nom complet",
"set new password" => "Changer le mot de passe",
"Default" => "Défaut"
);
diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php
index 62a2f7b8739..e345280bddf 100644
--- a/settings/l10n/gl.php
+++ b/settings/l10n/gl.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Non foi posíbel cargar a lista desde a App Store",
"Authentication error" => "Produciuse un erro de autenticación",
-"Your display name has been changed." => "O seu nome visíbel foi cambiado",
-"Unable to change display name" => "Non é posíbel cambiar o nome visíbel",
+"Your full name has been changed." => "O seu nome completo foi cambiado",
+"Unable to change full name" => "Non é posíbel cambiar o nome completo",
"Group already exists" => "O grupo xa existe",
"Unable to add group" => "Non é posíbel engadir o grupo",
"Email saved" => "Correo gardado",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Debe fornecer un nome de usuario",
"Error creating user" => "Produciuse un erro ao crear o usuario",
"A valid password must be provided" => "Debe fornecer un contrasinal",
+"Warning: Home directory for user \"{user}\" already exists" => "Aviso: O directorio persoal para o usuario «{user}» xa existe",
"__language_name__" => "Galego",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (problemas críticos, erros, avisos, información, depuración)",
+"Info, warnings, errors and fatal issues" => "Información, avisos, erros e problemas críticos",
+"Warnings, errors and fatal issues" => "Avisos, erros e problemas críticos",
+"Errors and fatal issues" => "Erros e problemas críticos",
+"Fatal issues only" => "Só problemas críticos",
"Security Warning" => "Aviso de seguranza",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está accedendo a %s a través de HTTP. Suxerímoslle que configure o seu servidor para requirir, no seu canto, o uso de HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web.",
"Setup Warning" => "Configurar os avisos",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Volva comprobar as <a href=\"%s\">guías de instalación</a>",
"Module 'fileinfo' missing" => "Non se atopou o módulo «fileinfo»",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.",
+"Your PHP version is outdated" => "A versión de PHP está desactualizada",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A versión de PHP está desactualizada. Recomendámoslle que a actualice á versión 5.3.8 ou posterior xa que as versións anteriores son coñecidas por estragarse. É probábel que esta instalación no estea a funcionar correctamente.",
"Locale not working" => "A configuración rexional non funciona",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s.",
+"System locale can not be set to a one which supports UTF-8." => "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.",
"Internet connection not working" => "A conexión á Internet non funciona",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Executar unha tarefa con cada páxina cargada",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php unha vez por minuto a través de HTTP.",
-"Use systems cron service to call the cron.php file once a minute." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php unha vez por minuto.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos.",
"Sharing" => "Compartindo",
"Enable Share API" => "Activar o API para compartir",
"Allow apps to use the Share API" => "Permitir que os aplicativos empreguen o API para compartir",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Permitir que os usuarios compartan de novo os elementos compartidos con eles",
"Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera",
"Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos",
+"Allow mail notification" => "Permitir o envío de notificacións por correo",
+"Allow user to send mail notification for shared files" => "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos",
"Security" => "Seguranza",
"Enforce HTTPS" => "Forzar HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Contrasinal actual",
"New password" => "Novo contrasinal",
"Change password" => "Cambiar o contrasinal",
-"Display Name" => "Amosar o nome",
+"Full Name" => "Nome completo",
"Email" => "Correo",
"Your email address" => "O seu enderezo de correo",
"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar o contrasinal de recuperación",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Seleccione unha nova de ficheiros",
"Remove image" => "Retirar a imaxe",
"Either png or jpg. Ideally square but you will be able to crop it." => "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala.",
+"Your avatar is provided by your original account." => "O seu avatar é fornecido pola súa conta orixinal.",
"Abort" => "Cancelar",
"Choose as profile image" => "Escolla unha imaxe para o perfil",
"Language" => "Idioma",
"Help translate" => "Axude na tradución",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Empregue esta ligazón <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">para acceder aos sus ficheiros mediante WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Empregue esta ligazón <a href=\"%s\" target=\"_blank\">para acceder aos sus ficheiros mediante WebDAV</a>",
"Encryption" => "Cifrado",
-"The encryption app is no longer enabled, decrypt all your file" => "o aplicativo de cifrado non está activado, descifrar todos os ficheiros",
+"The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de cifrado non está activado, descifre todos os ficheiros",
"Log-in password" => "Contrasinal de acceso",
"Decrypt all Files" => "Descifrar todos os ficheiros",
"Login Name" => "Nome de acceso",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Contrasinal de recuperación do administrador",
"Enter the recovery password in order to recover the users files during password change" => "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal",
"Default Storage" => "Almacenamento predeterminado",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)",
"Unlimited" => "Sen límites",
"Other" => "Outro",
"Username" => "Nome de usuario",
"Storage" => "Almacenamento",
-"change display name" => "cambiar o nome visíbel",
+"change full name" => "Cambiar o nome completo",
"set new password" => "estabelecer un novo contrasinal",
"Default" => "Predeterminado"
);
diff --git a/settings/l10n/he.php b/settings/l10n/he.php
index bdfa7f5699b..21c32d0f8e0 100644
--- a/settings/l10n/he.php
+++ b/settings/l10n/he.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "לא ניתן לטעון רשימה מה־App Store",
"Authentication error" => "שגיאת הזדהות",
-"Your display name has been changed." => "שם התצוגה שלך הוחלף.",
-"Unable to change display name" => "לא ניתן לשנות את שם התצוגה",
"Group already exists" => "הקבוצה כבר קיימת",
"Unable to add group" => "לא ניתן להוסיף קבוצה",
"Email saved" => "הדוא״ל נשמר",
@@ -81,7 +79,6 @@ $TRANSLATIONS = array(
"Current password" => "ססמה נוכחית",
"New password" => "ססמה חדשה",
"Change password" => "שינוי ססמה",
-"Display Name" => "שם תצוגה",
"Email" => "דואר אלקטרוני",
"Your email address" => "כתובת הדוא״ל שלך",
"Fill in an email address to enable password recovery" => "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה",
@@ -98,7 +95,6 @@ $TRANSLATIONS = array(
"Other" => "אחר",
"Username" => "שם משתמש",
"Storage" => "אחסון",
-"change display name" => "החלפת שם התצוגה",
"set new password" => "הגדרת ססמה חדשה",
"Default" => "בררת מחדל"
);
diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php
index cba844e7818..6b2dc3e0172 100644
--- a/settings/l10n/hu_HU.php
+++ b/settings/l10n/hu_HU.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Nem tölthető le a lista az App Store-ból",
"Authentication error" => "Azonosítási hiba",
-"Your display name has been changed." => "Az Ön megjelenítési neve megváltozott.",
-"Unable to change display name" => "Nem sikerült megváltoztatni a megjelenítési nevet",
+"Your full name has been changed." => "Az Ön teljes nevét módosítottuk.",
+"Unable to change full name" => "Nem sikerült megváltoztatni a teljes nevét",
"Group already exists" => "A csoport már létezik",
"Unable to add group" => "A csoport nem hozható létre",
"Email saved" => "Email mentve",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Érvényes felhasználónevet kell megadnia",
"Error creating user" => "A felhasználó nem hozható létre",
"A valid password must be provided" => "Érvényes jelszót kell megadnia",
+"Warning: Home directory for user \"{user}\" already exists" => "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett",
"__language_name__" => "__language_name__",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Minden (végzetes hibák, hibák, figyelmeztetések, információk, hibakeresési üzenetek)",
+"Info, warnings, errors and fatal issues" => "Információk, figyelmeztetések, hibák és végzetes hibák",
+"Warnings, errors and fatal issues" => "Figyelmeztetések, hibák és végzetes hibák",
+"Errors and fatal issues" => "Hibák és végzetes hibák",
+"Fatal issues only" => "Csak a végzetes hibák",
"Security Warning" => "Biztonsági figyelmeztetés",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.",
"Setup Warning" => "A beállítással kapcsolatos figyelmeztetés",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>.",
"Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.",
+"Your PHP version is outdated" => "A PHP verzió túl régi",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően.",
"Locale not working" => "A nyelvi lokalizáció nem működik",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást.",
+"System locale can not be set to a one which supports UTF-8." => "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at.",
+"This means that there might be problems with certain characters in file names." => "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s",
"Internet connection not working" => "Az internet kapcsolat nem működik",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.",
"Cron" => "Ütemezett feladatok",
"Execute one task with each page loaded" => "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg a cron.php állományt http-n keresztül percenként egyszer.",
-"Use systems cron service to call the cron.php file once a minute." => "A rendszer cron szolgáltatásának használata. Hívja meg a cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t.",
"Sharing" => "Megosztás",
"Enable Share API" => "A megosztás API-jának engedélyezése",
"Allow apps to use the Share API" => "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel",
"Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat",
"Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak",
+"Allow mail notification" => "E-mail értesítések engedélyezése",
+"Allow user to send mail notification for shared files" => "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról.",
"Security" => "Biztonság",
"Enforce HTTPS" => "Kötelező HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "A jelenlegi jelszó",
"New password" => "Az új jelszó",
"Change password" => "A jelszó megváltoztatása",
-"Display Name" => "A megjelenített név",
+"Full Name" => "Teljes név",
"Email" => "Email",
"Your email address" => "Az Ön email címe",
"Fill in an email address to enable password recovery" => "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Új kiválasztása Fileokból",
"Remove image" => "Kép eltávolítása",
"Either png or jpg. Ideally square but you will be able to crop it." => "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható",
+"Your avatar is provided by your original account." => "Az avatarod az eredeti fiókod alapján van beállítva.",
"Abort" => "Megszakítás",
"Choose as profile image" => "Válassz profil képet",
"Language" => "Nyelv",
"Help translate" => "Segítsen a fordításban!",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Ezt a címet használja, ha <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV-on keresztül szeretné elérni az állományait</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Ezt a címet használd, hogy <a href=\"%s\" target=\"_blank\">hozzáférj a fileokhoz WebDAV-on keresztül</a>",
"Encryption" => "Titkosítás",
-"The encryption app is no longer enabled, decrypt all your file" => "A titkosító alkalmzás a továbbiakban nincs engedélyezve, kititkosítja az összes fileodat",
+"The encryption app is no longer enabled, please decrypt all your files" => "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak.",
"Log-in password" => "Bejelentkezési jelszó",
"Decrypt all Files" => "Kititkosítja az összes file-t",
"Login Name" => "Bejelentkezési név",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "A jelszóvisszaállítás adminisztrációja",
"Enter the recovery password in order to recover the users files during password change" => "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat",
"Default Storage" => "Alapértelmezett tárhely",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")",
"Unlimited" => "Korlátlan",
"Other" => "Más",
"Username" => "Felhasználónév",
"Storage" => "Tárhely",
-"change display name" => "a megjelenített név módosítása",
+"change full name" => "a teljes név megváltoztatása",
"set new password" => "új jelszó beállítása",
"Default" => "Alapértelmezett"
);
diff --git a/settings/l10n/id.php b/settings/l10n/id.php
index d64f5be3acf..2ff3f572966 100644
--- a/settings/l10n/id.php
+++ b/settings/l10n/id.php
@@ -2,7 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Tidak dapat memuat daftar dari App Store",
"Authentication error" => "Galat saat autentikasi",
-"Unable to change display name" => "Tidak dapat mengubah nama tampilan",
+"Your full name has been changed." => "Nama lengkap Anda telah diubah",
+"Unable to change full name" => "Tidak dapat mengubah nama lengkap",
"Group already exists" => "Grup sudah ada",
"Unable to add group" => "Tidak dapat menambah grup",
"Email saved" => "Email disimpan",
@@ -15,15 +16,24 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Tidak dapat menambahkan pengguna ke grup %s",
"Unable to remove user from group %s" => "Tidak dapat menghapus pengguna dari grup %s",
"Couldn't update app." => "Tidak dapat memperbarui aplikasi.",
+"Wrong password" => "Sandi salah",
+"No user supplied" => "Tidak ada pengguna yang diberikan",
+"Wrong admin recovery password. Please check the password and try again." => "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end tidak mendukung perubahan password, tetapi kunci enkripsi pengguna berhasil diperbarui.",
+"Unable to change password" => "Tidak dapat mengubah sandi",
"Update to {appversion}" => "Perbarui ke {appversion}",
"Disable" => "Nonaktifkan",
-"Enable" => "aktifkan",
+"Enable" => "Aktifkan",
"Please wait...." => "Mohon tunggu....",
+"Error while disabling app" => "Galat saat menonaktifkan aplikasi",
+"Error while enabling app" => "Galat saat mengakifkan aplikasi",
"Updating...." => "Memperbarui....",
"Error while updating app" => "Gagal ketika memperbarui aplikasi",
"Error" => "Galat",
"Update" => "Perbarui",
"Updated" => "Diperbarui",
+"Select a profile picture" => "Pilih foto profil",
+"Decrypting files... Please wait, this can take some time." => "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat.",
"Saving..." => "Menyimpan...",
"deleted" => "dihapus",
"undo" => "urungkan",
@@ -35,27 +45,49 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Tuliskan nama pengguna yang valid",
"Error creating user" => "Gagal membuat pengguna",
"A valid password must be provided" => "Tuliskan sandi yang valid",
+"Warning: Home directory for user \"{user}\" already exists" => "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada",
"__language_name__" => "__language_name__",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Semuanya (Masalah fatal, galat, peringatan, info, debug)",
+"Info, warnings, errors and fatal issues" => "Info, peringatan, galat dan masalah fatal",
+"Warnings, errors and fatal issues" => "Peringatan, galat dan masalah fatal",
+"Errors and fatal issues" => "Galat dan masalah fatal",
+"Fatal issues only" => "Hanya masalah fatal",
"Security Warning" => "Peringatan Keamanan",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Anda mengakses %s melalui HTTP. Kami sangat menyarankan Anda untuk mengkonfigurasi server dengan menggunakan HTTPS sebagai gantinya.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Direktori data dan berkas Anda mungkin dapat diakses dari internet. Berkas .htaccess tidak bekerja. Kami sangat menyarankan untuk mengkonfigurasi server web Anda agar direktori data tidak lagi dapat diakses atau Anda dapat memindahkan direktori data di luar dokumen root webserver.",
"Setup Warning" => "Peringatan Persiapan",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.",
+"Please double check the <a href=\"%s\">installation guides</a>." => "Silakan periksa kembali <a href=\"%s\">petunjuk instalasi</a>.",
"Module 'fileinfo' missing" => "Module 'fileinfo' tidak ada",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.",
+"Your PHP version is outdated" => "Versi PHP telah usang",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Versi PHP telah usang. Kami sangat menyarankan untuk diperbarui ke versi 5.3.8 atau yang lebih baru karena versi lama diketahui rusak. Ada kemungkinan bahwa instalasi ini tidak bekerja dengan benar.",
"Locale not working" => "Kode pelokalan tidak berfungsi",
+"System locale can not be set to a one which supports UTF-8." => "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Kami sangat menyarankan untuk menginstal paket yang dibutuhkan pada sistem agar mendukung salah satu bahasa berikut: %s.",
"Internet connection not working" => "Koneksi internet tidak berfungsi",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Jalankan tugas setiap kali halaman dimuat",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Menggunakan sistem layanan cron untuk memanggil berkas cron.php setiap 15 menit.",
"Sharing" => "Berbagi",
"Enable Share API" => "Aktifkan API Pembagian",
"Allow apps to use the Share API" => "Izinkan aplikasi untuk menggunakan API Pembagian",
"Allow links" => "Izinkan tautan",
"Allow users to share items to the public with links" => "Izinkan pengguna untuk berbagi item kepada publik lewat tautan",
+"Allow public uploads" => "Izinkan unggahan publik",
+"Allow users to enable others to upload into their publicly shared folders" => "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka",
"Allow resharing" => "Izinkan pembagian ulang",
"Allow users to share items shared with them again" => "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka.",
"Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja",
"Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri",
+"Allow mail notification" => "Izinkan pemberitahuan email",
+"Allow user to send mail notification for shared files" => "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan",
"Security" => "Keamanan",
"Enforce HTTPS" => "Selalu Gunakan HTTPS",
+"Forces the clients to connect to %s via an encrypted connection." => "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL.",
"Log" => "Catat",
"Log level" => "Level pencatatan",
"More" => "Lainnya",
@@ -82,22 +114,37 @@ $TRANSLATIONS = array(
"Current password" => "Sandi saat ini",
"New password" => "Sandi baru",
"Change password" => "Ubah sandi",
-"Display Name" => "Nama Tampilan",
+"Full Name" => "Nama Lengkap",
"Email" => "Email",
"Your email address" => "Alamat email Anda",
"Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan sandi",
+"Profile picture" => "Foto profil",
+"Upload new" => "Unggah baru",
+"Select new from Files" => "Pilih baru dari Berkas",
+"Remove image" => "Hapus gambar",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti.",
+"Your avatar is provided by your original account." => "Avatar disediakan oleh akun asli Anda.",
+"Abort" => "Batal",
+"Choose as profile image" => "Pilih sebagai gambar profil",
"Language" => "Bahasa",
"Help translate" => "Bantu menerjemahkan",
"WebDAV" => "WebDAV",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Gunakan alamat ini untuk <a href=\"%s\" target=\"_blank\">mengakses Berkas via WebDAV</a>",
"Encryption" => "Enkripsi",
+"The encryption app is no longer enabled, please decrypt all your files" => "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda",
+"Log-in password" => "Sandi masuk",
+"Decrypt all Files" => "Deskripsi semua Berkas",
"Login Name" => "Nama Masuk",
"Create" => "Buat",
+"Admin Recovery Password" => "Sandi pemulihan Admin",
+"Enter the recovery password in order to recover the users files during password change" => "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi",
"Default Storage" => "Penyimpanan Baku",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")",
"Unlimited" => "Tak terbatas",
"Other" => "Lainnya",
"Username" => "Nama pengguna",
"Storage" => "Penyimpanan",
-"change display name" => "ubah nama tampilan",
+"change full name" => "ubah nama lengkap",
"set new password" => "setel sandi baru",
"Default" => "Baku"
);
diff --git a/settings/l10n/is.php b/settings/l10n/is.php
index ce95903df9a..6798783f83b 100644
--- a/settings/l10n/is.php
+++ b/settings/l10n/is.php
@@ -50,7 +50,6 @@ $TRANSLATIONS = array(
"Current password" => "Núverandi lykilorð",
"New password" => "Nýtt lykilorð",
"Change password" => "Breyta lykilorði",
-"Display Name" => "Vísa nafn",
"Email" => "Netfang",
"Your email address" => "Netfangið þitt",
"Fill in an email address to enable password recovery" => "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði",
diff --git a/settings/l10n/it.php b/settings/l10n/it.php
index fc91bc5f170..08bab35244c 100644
--- a/settings/l10n/it.php
+++ b/settings/l10n/it.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Impossibile caricare l'elenco dall'App Store",
"Authentication error" => "Errore di autenticazione",
-"Your display name has been changed." => "Il tuo nome visualizzato è stato cambiato.",
-"Unable to change display name" => "Impossibile cambiare il nome visualizzato",
+"Your full name has been changed." => "Il tuo nome completo è stato cambiato.",
+"Unable to change full name" => "Impossibile cambiare il nome completo",
"Group already exists" => "Il gruppo esiste già",
"Unable to add group" => "Impossibile aggiungere il gruppo",
"Email saved" => "Email salvata",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Deve essere fornito un nome utente valido",
"Error creating user" => "Errore durante la creazione dell'utente",
"A valid password must be provided" => "Deve essere fornita una password valida",
+"Warning: Home directory for user \"{user}\" already exists" => "Avviso: la cartella home dell'utente \"{user}\" esiste già",
"__language_name__" => "Italiano",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Tutto (problemi gravi, errori, avvisi, informazioni, debug)",
+"Info, warnings, errors and fatal issues" => "Informazioni, avvisi, errori e problemi gravi",
+"Warnings, errors and fatal issues" => "Avvisi, errori e problemi gravi",
+"Errors and fatal issues" => "Errori e problemi gravi",
+"Fatal issues only" => "Solo problemi gravi",
"Security Warning" => "Avviso di sicurezza",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.",
"Setup Warning" => "Avviso di configurazione",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Leggi attentamente le <a href='%s'>guide d'installazione</a>.",
"Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.",
+"Your PHP version is outdated" => "La tua versione di PHP è obsoleta",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente.",
"Locale not working" => "Locale non funzionante",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s.",
+"System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s.",
"Internet connection not working" => "Concessione Internet non funzionante",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Esegui un'operazione con ogni pagina caricata",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php è registrato su un servizio webcron per invocare la pagina cron.php ogni minuto su http.",
-"Use systems cron service to call the cron.php file once a minute." => "Usa il servizio cron di sistema per invocare il file cron.php ogni minuto.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.",
"Sharing" => "Condivisione",
"Enable Share API" => "Abilita API di condivisione",
"Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Consenti agli utenti di condividere a loro volta elementi condivisi da altri",
"Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque",
"Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi",
+"Allow mail notification" => "Consenti le notifiche tramite posta elettronica",
+"Allow user to send mail notification for shared files" => "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi",
"Security" => "Protezione",
"Enforce HTTPS" => "Forza HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Password attuale",
"New password" => "Nuova password",
"Change password" => "Modifica password",
-"Display Name" => "Nome visualizzato",
+"Full Name" => "Nome completo",
"Email" => "Posta elettronica",
"Your email address" => "Il tuo indirizzo email",
"Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Seleziona nuova da file",
"Remove image" => "Rimuovi immagine",
"Either png or jpg. Ideally square but you will be able to crop it." => "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla.",
+"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto dal tuo account originale.",
"Abort" => "Interrompi",
"Choose as profile image" => "Scegli come immagine del profilo",
"Language" => "Lingua",
"Help translate" => "Migliora la traduzione",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilizza questo indirizzo per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedere ai tuoi file via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilizza questo indirizzo per <a href=\"%s\" target=\"_blank\">accedere ai tuoi file con WebDAV</a>",
"Encryption" => "Cifratura",
-"The encryption app is no longer enabled, decrypt all your file" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file",
+"The encryption app is no longer enabled, please decrypt all your files" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file",
"Log-in password" => "Password di accesso",
"Decrypt all Files" => "Decifra tutti i file",
"Login Name" => "Nome utente",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Password di ripristino amministrativa",
"Enter the recovery password in order to recover the users files during password change" => "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password.",
"Default Storage" => "Archiviazione predefinita",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")",
"Unlimited" => "Illimitata",
"Other" => "Altro",
"Username" => "Nome utente",
"Storage" => "Archiviazione",
-"change display name" => "cambia il nome visualizzato",
+"change full name" => "modica nome completo",
"set new password" => "imposta una nuova password",
"Default" => "Predefinito"
);
diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php
index bfaa9827b21..b151564a18c 100644
--- a/settings/l10n/ja_JP.php
+++ b/settings/l10n/ja_JP.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "アプリストアからリストをロードできません",
"Authentication error" => "認証エラー",
-"Your display name has been changed." => "表示名を変更しました。",
-"Unable to change display name" => "表示名を変更できません",
+"Your full name has been changed." => "姓名が変更されました",
+"Unable to change full name" => "姓名を変更できません",
"Group already exists" => "グループは既に存在しています",
"Unable to add group" => "グループを追加できません",
"Email saved" => "メールアドレスを保存しました",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "有効なユーザ名を指定する必要があります",
"Error creating user" => "ユーザ作成エラー",
"A valid password must be provided" => "有効なパスワードを指定する必要があります",
+"Warning: Home directory for user \"{user}\" already exists" => "警告: ユーザ \"{user}\" のホームディレクトリはすでに存在します",
"__language_name__" => "Japanese (日本語)",
+"Everything (fatal issues, errors, warnings, info, debug)" => "すべて (致命的な問題、エラー、警告、情報、デバッグ)",
+"Info, warnings, errors and fatal issues" => "情報と警告、エラー、致命的な問題",
+"Warnings, errors and fatal issues" => "警告とエラー、致命的な問題",
+"Errors and fatal issues" => "エラーと致命的な問題",
+"Fatal issues only" => "致命的な問題のみ",
"Security Warning" => "セキュリティ警告",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "HTTP 経由で %s にアクセスしています。HTTPS を使用するようにサーバの設定を行うことを強くおすすめします。",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。",
"Setup Warning" => "セットアップ警告",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。",
"Please double check the <a href=\"%s\">installation guides</a>." => "<a href=\"%s\">installation guides</a>をもう一度チェックするようにお願いいたします。",
"Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。",
+"Your PHP version is outdated" => "PHPバーションが古くなっております。",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHPバーションが古くなっております。このプログラムが不正な行為を発生する可能性はある為、PHPバーション5.3.8以降にアップグレードをください。",
"Locale not working" => "ロケールが動作していません",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。",
+"System locale can not be set to a one which supports UTF-8." => "システムロケールを UTF-8 をサポートするロケールに設定できません。",
+"This means that there might be problems with certain characters in file names." => "これは、ファイル名の特定の文字に問題があることを意味しています。",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。",
"Internet connection not working" => "インターネット接続が動作していません",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。",
"Cron" => "Cron",
"Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。",
-"Use systems cron service to call the cron.php file once a minute." => "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。",
+"Use systems cron service to call the cron.php file every 15 minutes." => "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する",
"Sharing" => "共有",
"Enable Share API" => "共有APIを有効にする",
"Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "ユーザが共有しているアイテムの再共有を許可する",
"Allow users to share with anyone" => "ユーザが誰とでも共有することを許可する",
"Allow users to only share with users in their groups" => "ユーザにグループ内のユーザとのみ共有を許可する",
+"Allow mail notification" => "メール通知を許可",
+"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザに許可する",
"Security" => "セキュリティ",
"Enforce HTTPS" => "常にHTTPSを使用する",
"Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化する。",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Current password",
"New password" => "新しいパスワードを入力",
"Change password" => "パスワードを変更",
-"Display Name" => "表示名",
+"Full Name" => "姓名",
"Email" => "メール",
"Your email address" => "あなたのメールアドレス",
"Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "ファイルから新規に選択",
"Remove image" => "画像を削除",
"Either png or jpg. Ideally square but you will be able to crop it." => "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。",
+"Your avatar is provided by your original account." => "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。",
"Abort" => "中止",
"Choose as profile image" => "プロファイル画像として選択",
"Language" => "言語",
"Help translate" => "翻訳に協力する",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV経由でファイルにアクセス</a>するにはこのアドレスを利用してください",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s\" target=\"_blank\">WebDAV 経由でファイルにアクセス</a> するにはこのアドレスを利用してください",
"Encryption" => "暗号化",
-"The encryption app is no longer enabled, decrypt all your file" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください",
+"The encryption app is no longer enabled, please decrypt all your files" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください",
"Log-in password" => "ログインパスワード",
"Decrypt all Files" => "すべてのファイルを複合する",
"Login Name" => "ログイン名",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "管理者復旧パスワード",
"Enter the recovery password in order to recover the users files during password change" => "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください",
"Default Storage" => "デフォルトストレージ",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")",
"Unlimited" => "無制限",
"Other" => "その他",
"Username" => "ユーザー名",
"Storage" => "ストレージ",
-"change display name" => "表示名を変更",
+"change full name" => "姓名を変更",
"set new password" => "新しいパスワードを設定",
"Default" => "デフォルト"
);
diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php
index 7a0157746be..ba844736a5b 100644
--- a/settings/l10n/ka_GE.php
+++ b/settings/l10n/ka_GE.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "აპლიკაციების სია ვერ ჩამოიტვირთა App Store",
"Authentication error" => "ავთენტიფიკაციის შეცდომა",
-"Your display name has been changed." => "თქვენი დისფლეის სახელი უკვე შეიცვალა",
-"Unable to change display name" => "დისფლეის სახელის შეცვლა ვერ მოხერხდა",
"Group already exists" => "ჯგუფი უკვე არსებობს",
"Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა",
"Email saved" => "იმეილი შენახულია",
@@ -83,7 +81,6 @@ $TRANSLATIONS = array(
"Current password" => "მიმდინარე პაროლი",
"New password" => "ახალი პაროლი",
"Change password" => "პაროლის შეცვლა",
-"Display Name" => "დისპლეის სახელი",
"Email" => "იმეილი",
"Your email address" => "თქვენი იმეილ მისამართი",
"Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად",
@@ -98,7 +95,6 @@ $TRANSLATIONS = array(
"Other" => "სხვა",
"Username" => "მომხმარებლის სახელი",
"Storage" => "საცავი",
-"change display name" => "შეცვალე დისფლეის სახელი",
"set new password" => "დააყენეთ ახალი პაროლი",
"Default" => "საწყისი პარამეტრები"
);
diff --git a/settings/l10n/km.php b/settings/l10n/km.php
new file mode 100644
index 00000000000..f7d9faa38c5
--- /dev/null
+++ b/settings/l10n/km.php
@@ -0,0 +1,5 @@
+<?php
+$TRANSLATIONS = array(
+"Delete" => "លុប"
+);
+$PLURAL_FORMS = "nplurals=1; plural=0;";
diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php
index cbf693d7126..83c92bba0f1 100644
--- a/settings/l10n/ko.php
+++ b/settings/l10n/ko.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "앱 스토어에서 목록을 가져올 수 없습니다",
"Authentication error" => "인증 오류",
-"Your display name has been changed." => "표시 이름이 변경되었습니다.",
-"Unable to change display name" => "표시 이름을 변경할 수 없음",
+"Your full name has been changed." => "전체 이름이 변경되었습니다.",
+"Unable to change full name" => "전체 이름을 변경할 수 없음",
"Group already exists" => "그룹이 이미 존재함",
"Unable to add group" => "그룹을 추가할 수 없음",
"Email saved" => "이메일 저장됨",
@@ -16,15 +16,25 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없음",
"Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없음",
"Couldn't update app." => "앱을 업데이트할 수 없습니다.",
+"Wrong password" => "잘못된 암호",
+"No user supplied" => "사용자가 지정되지 않음",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "관리자 복구 암호를 입력하지 않으면 모든 사용자 데이터가 삭제됩니다",
+"Wrong admin recovery password. Please check the password and try again." => "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다.",
+"Unable to change password" => "암호를 변경할 수 없음",
"Update to {appversion}" => "버전 {appversion}(으)로 업데이트",
-"Disable" => "비활성화",
+"Disable" => "사용 안함",
"Enable" => "사용함",
"Please wait...." => "기다려 주십시오....",
+"Error while disabling app" => "앱을 비활성화하는 중 오류 발생",
+"Error while enabling app" => "앱을 활성화하는 중 오류 발생",
"Updating...." => "업데이트 중....",
"Error while updating app" => "앱을 업데이트하는 중 오류 발생",
"Error" => "오류",
"Update" => "업데이트",
"Updated" => "업데이트됨",
+"Select a profile picture" => "프로필 사진 선택",
+"Decrypting files... Please wait, this can take some time." => "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오.",
"Saving..." => "저장 중...",
"deleted" => "삭제됨",
"undo" => "실행 취소",
@@ -36,27 +46,50 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "올바른 사용자 이름을 입력해야 함",
"Error creating user" => "사용자 생성 오류",
"A valid password must be provided" => "올바른 암호를 입력해야 함",
+"Warning: Home directory for user \"{user}\" already exists" => "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다",
"__language_name__" => "한국어",
+"Everything (fatal issues, errors, warnings, info, debug)" => "모두 (치명적 문제, 오류, 경고, 정보, 디버그)",
+"Info, warnings, errors and fatal issues" => "정보, 경고, 오류, 치명적 문제",
+"Warnings, errors and fatal issues" => "경고, 오류, 치명적 문제",
+"Errors and fatal issues" => "오류, 치명적 문제",
+"Fatal issues only" => "치명적 문제만",
"Security Warning" => "보안 경고",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s에 HTTP로 접근하고 있습니다. 서버에서 HTTPS를 사용하도록 설정하는 것을 추천합니다.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오.",
"Setup Warning" => "설정 경고",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.",
+"Please double check the <a href=\"%s\">installation guides</a>." => "<a href=\"%s\">설치 가이드</a>를 다시 한 번 확인하십시오.",
"Module 'fileinfo' missing" => "모듈 'fileinfo'가 없음",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.",
+"Your PHP version is outdated" => "PHP 버전이 오래됨",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHP 버전이 오래되었습니다. 오래된 버전은 작동하지 않을 수도 있기 때문에 PHP 5.3.8 이상을 사용하는 것을 추천합니다.",
"Locale not working" => "로캘이 작동하지 않음",
+"System locale can not be set to a one which supports UTF-8." => "UTF-8을 지원하는 시스템 로캘을 사용할 수 없습니다.",
+"This means that there might be problems with certain characters in file names." => "파일 이름의 일부 문자에 문제가 생길 수도 있습니다.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "다음 로캘을 지원하도록 시스템 설정을 변경하는 것을 추천합니다: %s",
"Internet connection not working" => "인터넷에 연결할 수 없음",
+"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 제 3자 앱 설치 등 일부 기능을 사용할 수 없습니다. 외부에서 파일에 접근하거나 알림 이메일을 보내지 못할 수도 있습니다. 모든 기능을 사용하려면 인터넷에 연결하는 것을 추천합니다.",
"Cron" => "크론",
"Execute one task with each page loaded" => "개별 페이지를 불러올 때마다 실행",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다.",
"Sharing" => "공유",
"Enable Share API" => "공유 API 사용하기",
"Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용",
"Allow links" => "링크 허용",
"Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용",
+"Allow public uploads" => "공개 업로드 허용",
+"Allow users to enable others to upload into their publicly shared folders" => "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용",
"Allow resharing" => "재공유 허용",
"Allow users to share items shared with them again" => "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용",
"Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용",
-"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용",
+"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용",
+"Allow mail notification" => "메일 알림 허용",
+"Allow user to send mail notification for shared files" => "사용자에게 공유 파일에 대한 메일 알림을 허용합니다",
"Security" => "보안",
"Enforce HTTPS" => "HTTPS 강제 사용",
+"Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다.",
"Log" => "로그",
"Log level" => "로그 단계",
"More" => "더 중요함",
@@ -83,25 +116,37 @@ $TRANSLATIONS = array(
"Current password" => "현재 암호",
"New password" => "새 암호",
"Change password" => "암호 변경",
-"Display Name" => "표시 이름",
+"Full Name" => "전체 이름",
"Email" => "이메일",
"Your email address" => "이메일 주소",
"Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오",
"Profile picture" => "프로필 사진",
+"Upload new" => "새로 업로드",
+"Select new from Files" => "파일에서 선택",
+"Remove image" => "그림 삭제",
+"Either png or jpg. Ideally square but you will be able to crop it." => "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다.",
+"Your avatar is provided by your original account." => "원본 계정의 아바타를 사용합니다.",
+"Abort" => "중지",
+"Choose as profile image" => "프로필 이미지로 사용",
"Language" => "언어",
"Help translate" => "번역 돕기",
"WebDAV" => "WebDAV",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "WebDAV로 파일에 접근하려면 <a href=\"%s\" target=\"_blank\">이 주소를 사용하십시오</a>",
"Encryption" => "암호화",
+"The encryption app is no longer enabled, please decrypt all your files" => "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다.",
+"Log-in password" => "로그인 암호",
+"Decrypt all Files" => "모든 파일 복호화",
"Login Name" => "로그인 이름",
"Create" => "만들기",
"Admin Recovery Password" => "관리자 복구 암호",
"Enter the recovery password in order to recover the users files during password change" => "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오",
"Default Storage" => "기본 저장소",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")",
"Unlimited" => "무제한",
"Other" => "기타",
"Username" => "사용자 이름",
"Storage" => "저장소",
-"change display name" => "표시 이름 변경",
+"change full name" => "전체 이름 변경",
"set new password" => "새 암호 설정",
"Default" => "기본값"
);
diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php
index b80d834db97..ac8c1b6a16f 100644
--- a/settings/l10n/lb.php
+++ b/settings/l10n/lb.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Konnt Lescht net vum App Store lueden",
"Authentication error" => "Authentifikatioun's Fehler",
-"Your display name has been changed." => "Aren Nickname ass geännert ginn.",
-"Unable to change display name" => "Unmeiglech den Nickname ze änneren.",
"Group already exists" => "Group existeiert schon.",
"Unable to add group" => "Onmeiglech Grupp beizefügen.",
"Email saved" => "E-mail gespäichert",
@@ -17,6 +15,7 @@ $TRANSLATIONS = array(
"Disable" => "Ofschalten",
"Enable" => "Aschalten",
"Error" => "Fehler",
+"Update" => "Update",
"Saving..." => "Speicheren...",
"deleted" => "geläscht",
"undo" => "réckgängeg man",
@@ -34,6 +33,7 @@ $TRANSLATIONS = array(
"Allow users to only share with users in their groups" => "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen",
"Log" => "Log",
"More" => "Méi",
+"Less" => "Manner",
"Add your App" => "Setz deng App bei",
"Select an App" => "Wiel eng Applikatioun aus",
"See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un",
diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php
index df0247fc27e..f2cb6a30265 100644
--- a/settings/l10n/lt_LT.php
+++ b/settings/l10n/lt_LT.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Neįmanoma įkelti sąrašo iš Programų Katalogo",
"Authentication error" => "Autentikacijos klaida",
-"Your display name has been changed." => "Jūsų rodomas vardas buvo pakeistas.",
-"Unable to change display name" => "Nepavyksta pakeisti rodomą vardą",
"Group already exists" => "Grupė jau egzistuoja",
"Unable to add group" => "Nepavyko pridėti grupės",
"Email saved" => "El. paštas išsaugotas",
@@ -46,6 +44,7 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Vartotojo vardas turi būti tinkamas",
"Error creating user" => "Klaida kuriant vartotoją",
"A valid password must be provided" => "Slaptažodis turi būti tinkamas",
+"Warning: Home directory for user \"{user}\" already exists" => "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja",
"__language_name__" => "Kalba",
"Security Warning" => "Saugumo pranešimas",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Jūsų duomenų katalogas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess neveikia. Mes labai rekomenduojame sukonfigūruoti serverį taip, kad katalogas nebūtų daugiau pasiekiamas, arba iškelkite duomenis kitur iš webserverio šakninio aplanko.",
@@ -55,13 +54,12 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "Trūksta 'fileinfo' modulio",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.",
"Locale not working" => "Lokalė neveikia",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Negalima nustatyti sistemos lokalės į %s. Tai reiškia, kad gali būti problemų su tam tikrais simboliais failų pavadinimuose. Labai rekomenduojame įdiegti reikalingus paketus Jūsų sistemoje, kad palaikyti %s.",
"Internet connection not working" => "Nėra interneto ryšio",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kartą per minutę per http.",
-"Use systems cron service to call the cron.php file once a minute." => "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kartą per minutę.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių.",
"Sharing" => "Dalijimasis",
"Enable Share API" => "Įjungti Share API",
"Allow apps to use the Share API" => "Leidžia programoms naudoti Share API",
@@ -73,6 +71,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Leisti naudotojams toliau dalintis elementais pasidalintais su jais",
"Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo",
"Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje",
+"Allow mail notification" => "Leisti el. pašto perspėjimą",
+"Allow user to send mail notification for shared files" => "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų",
"Security" => "Saugumas",
"Enforce HTTPS" => "Reikalauti HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.",
@@ -103,7 +103,6 @@ $TRANSLATIONS = array(
"Current password" => "Dabartinis slaptažodis",
"New password" => "Naujas slaptažodis",
"Change password" => "Pakeisti slaptažodį",
-"Display Name" => "Rodyti vardą",
"Email" => "El. Paštas",
"Your email address" => "Jūsų el. pašto adresas",
"Fill in an email address to enable password recovery" => "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą",
@@ -117,9 +116,8 @@ $TRANSLATIONS = array(
"Language" => "Kalba",
"Help translate" => "Padėkite išversti",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Naudokite šį adresą, kad <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">pasiekti savo failus per WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Naudokite šį adresą, kad <a href=\"%s\" target=\"_blank\">pasiektumėte savo failus per WebDAV</a>",
"Encryption" => "Šifravimas",
-"The encryption app is no longer enabled, decrypt all your file" => "Šifravimo programa nebėra įjungta, iššifruokite visus savo failus",
"Log-in password" => "Prisijungimo slaptažodis",
"Decrypt all Files" => "Iššifruoti visus failus",
"Login Name" => "Vartotojo vardas",
@@ -131,7 +129,6 @@ $TRANSLATIONS = array(
"Other" => "Kita",
"Username" => "Prisijungimo vardas",
"Storage" => "Saugojimas",
-"change display name" => "keisti rodomą vardą",
"set new password" => "nustatyti naują slaptažodį",
"Default" => "Numatytasis"
);
diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php
index 66e34f11e6c..de5d6460d6f 100644
--- a/settings/l10n/lv.php
+++ b/settings/l10n/lv.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Nevar lejupielādēt sarakstu no lietotņu veikala",
"Authentication error" => "Autentifikācijas kļūda",
-"Your display name has been changed." => "Jūsu redzamais vārds ir mainīts.",
-"Unable to change display name" => "Nevarēja mainīt redzamo vārdu",
"Group already exists" => "Grupa jau eksistē",
"Unable to add group" => "Nevar pievienot grupu",
"Email saved" => "E-pasts tika saglabāts",
@@ -46,13 +44,10 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "Trūkst modulis “fileinfo”",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.",
"Locale not working" => "Lokāle nestrādā",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Sistēmas lokalizāciju nevar nomainīt uz %s. Tas nozīmē ka var rasties sarežģījumi ar dažu burtu attēlošanu failu nosaukumos. Ir rekomendēts uzstādīt nepieciešamās pakotnes lai atbalstītu %s lokalizāciju.",
"Internet connection not working" => "Interneta savienojums nedarbojas",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Izpildīt vienu uzdevumu ar katru ielādēto lapu",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ir reģistrēts webcron servisā lai izsauktu cron.php vienreiz minūtē caur http.",
-"Use systems cron service to call the cron.php file once a minute." => "Izmantojiet sistēmas cron servisu lai izsauktu cron.php reizi minūtē.",
"Sharing" => "Dalīšanās",
"Enable Share API" => "Aktivēt koplietošanas API",
"Allow apps to use the Share API" => "Ļauj lietotnēm izmantot koplietošanas API",
@@ -94,16 +89,13 @@ $TRANSLATIONS = array(
"Current password" => "Pašreizējā parole",
"New password" => "Jauna parole",
"Change password" => "Mainīt paroli",
-"Display Name" => "Redzamais vārds",
"Email" => "E-pasts",
"Your email address" => "Jūsu e-pasta adrese",
"Fill in an email address to enable password recovery" => "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība",
"Language" => "Valoda",
"Help translate" => "Palīdzi tulkot",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Lietojiet šo adresi <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">lai piekļūtu saviem failiem ar WebDAV</a>",
"Encryption" => "Šifrēšana",
-"The encryption app is no longer enabled, decrypt all your file" => "Šifrēšanas lietotne ir atslēgta, atšifrējiet visus jūsu failus",
"Log-in password" => "Pieslēgšanās parole",
"Decrypt all Files" => "Atšifrēt visus failus",
"Login Name" => "Ierakstīšanās vārds",
@@ -115,7 +107,6 @@ $TRANSLATIONS = array(
"Other" => "Cits",
"Username" => "Lietotājvārds",
"Storage" => "Krātuve",
-"change display name" => "mainīt redzamo vārdu",
"set new password" => "iestatīt jaunu paroli",
"Default" => "Noklusējuma"
);
diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php
index 901ef9106e2..f9b4bbc9427 100644
--- a/settings/l10n/mk.php
+++ b/settings/l10n/mk.php
@@ -13,17 +13,49 @@ $TRANSLATIONS = array(
"Admins can't remove themself from the admin group" => "Администраторите неможе да се избришат себеси од админ групата",
"Unable to add user to group %s" => "Неможе да додадам корисник во група %s",
"Unable to remove user from group %s" => "Неможе да избришам корисник од група %s",
+"Couldn't update app." => "Не можам да ја надградам апликацијата.",
+"Wrong password" => "Погрешна лозинка",
+"No user supplied" => "Нема корисничко име",
+"Unable to change password" => "Вашата лозинка неможе да се смени",
+"Update to {appversion}" => "Надгради на {appversion}",
"Disable" => "Оневозможи",
"Enable" => "Овозможи",
+"Please wait...." => "Ве молам почекајте ...",
+"Error while disabling app" => "Грешка при исклучувањето на апликацијата",
+"Error while enabling app" => "Грешка при вклучувањето на апликацијата",
+"Updating...." => "Надградувам ...",
+"Error while updating app" => "Грешка додека ја надградувам апликацијата",
"Error" => "Грешка",
"Update" => "Ажурирај",
+"Updated" => "Надграден",
+"Select a profile picture" => "Одбери фотографија за профилот",
"Saving..." => "Снимам...",
+"deleted" => "избришан",
"undo" => "врати",
+"Unable to remove user" => "Не можам да го одстранам корисникот",
"Groups" => "Групи",
"Group Admin" => "Администратор на група",
"Delete" => "Избриши",
+"add group" => "додади група",
+"A valid username must be provided" => "Мора да се обезбеди валидно корисничко име ",
+"Error creating user" => "Грешка при креирање на корисникот",
+"A valid password must be provided" => "Мора да се обезбеди валидна лозинка",
"__language_name__" => "__language_name__",
"Security Warning" => "Безбедносно предупредување",
+"Setup Warning" => "Предупредување при подесување",
+"Locale not working" => "Локалето не функционира",
+"Sharing" => "Споделување",
+"Enable Share API" => "Овозможи го API-то за споделување",
+"Allow apps to use the Share API" => "Дозволете апликациите да го користат API-то за споделување",
+"Allow links" => "Дозволи врски",
+"Allow public uploads" => "Дозволи јавен аплоуд",
+"Allow resharing" => "Овозможи повторно споделување",
+"Allow users to share with anyone" => "Овозможи корисниците да споделуваат со секого",
+"Allow users to only share with users in their groups" => "Овозможи корисниците да споделуваат со корисници од своите групи",
+"Allow mail notification" => "Овозможи известување по електронска пошта",
+"Allow user to send mail notification for shared files" => "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки",
+"Security" => "Безбедност",
+"Enforce HTTPS" => "Наметни HTTPS",
"Log" => "Записник",
"Log level" => "Ниво на логирање",
"More" => "Повеќе",
@@ -40,6 +72,7 @@ $TRANSLATIONS = array(
"Online Documentation" => "Документација на интернет",
"Forum" => "Форум",
"Commercial Support" => "Комерцијална подршка",
+"Get the apps to sync your files" => "Преземете апликации за синхронизирање на вашите датотеки",
"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Имате искористено <strong>%s</strong> од достапните <strong>%s</strong>",
"Password" => "Лозинка",
"Your password was changed" => "Вашата лозинка беше променета.",
@@ -51,12 +84,26 @@ $TRANSLATIONS = array(
"Your email address" => "Вашата адреса за е-пошта",
"Fill in an email address to enable password recovery" => "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката",
"Profile picture" => "Фотографија за профил",
+"Upload new" => "Префрли нова",
+"Select new from Files" => "Одбери нова од датотеките",
+"Remove image" => "Отстрани ја фотографијата",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете.",
+"Abort" => "Прекини",
+"Choose as profile image" => "Одбери фотографија за профилот",
"Language" => "Јазик",
"Help translate" => "Помогни во преводот",
"WebDAV" => "WebDAV",
"Encryption" => "Енкрипција",
+"Log-in password" => "Лозинка за најавување",
+"Decrypt all Files" => "Дешифрирај ги сите датотеки",
+"Login Name" => "Име за најава",
"Create" => "Создај",
+"Default Storage" => "Предефинирано складиште ",
+"Unlimited" => "Неограничено",
"Other" => "Останато",
-"Username" => "Корисничко име"
+"Username" => "Корисничко име",
+"Storage" => "Складиште",
+"set new password" => "постави нова лозинка",
+"Default" => "Предефиниран"
);
$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;";
diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php
index ba46cd654e8..cb3e7c670c5 100644
--- a/settings/l10n/nb_NO.php
+++ b/settings/l10n/nb_NO.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Lasting av liste fra App Store feilet.",
"Authentication error" => "Autentiseringsfeil",
-"Your display name has been changed." => "Ditt visningsnavn er blitt endret.",
-"Unable to change display name" => "Kunne ikke endre visningsnavn",
"Group already exists" => "Gruppen finnes allerede",
"Unable to add group" => "Kan ikke legge til gruppe",
"Email saved" => "Epost lagret",
@@ -83,7 +81,6 @@ $TRANSLATIONS = array(
"Current password" => "Nåværende passord",
"New password" => "Nytt passord",
"Change password" => "Endre passord",
-"Display Name" => "Visningsnavn",
"Email" => "Epost",
"Your email address" => "Din e-postadresse",
"Fill in an email address to enable password recovery" => "Oppi epostadressen du vil tilbakestille passordet for",
@@ -91,7 +88,6 @@ $TRANSLATIONS = array(
"Language" => "Språk",
"Help translate" => "Bidra til oversettelsen",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Bruk denne adressen for å <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">få tilgang til filene dine via WebDAV</a>",
"Encryption" => "Kryptering",
"Login Name" => "Logginn navn",
"Create" => "Opprett",
@@ -100,7 +96,6 @@ $TRANSLATIONS = array(
"Other" => "Annet",
"Username" => "Brukernavn",
"Storage" => "Lager",
-"change display name" => "endre visningsnavn",
"set new password" => "sett nytt passord",
"Default" => "Standard"
);
diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php
index 7b486768b06..9931063ac9a 100644
--- a/settings/l10n/nl.php
+++ b/settings/l10n/nl.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Kan de lijst niet van de App store laden",
"Authentication error" => "Authenticatie fout",
-"Your display name has been changed." => "Uw weergavenaam is gewijzigd.",
-"Unable to change display name" => "Kon de weergavenaam niet wijzigen",
+"Your full name has been changed." => "Uw volledige naam is gewijzigd.",
+"Unable to change full name" => "Kan de volledige naam niet wijzigen",
"Group already exists" => "Groep bestaat al",
"Unable to add group" => "Niet in staat om groep toe te voegen",
"Email saved" => "E-mail bewaard",
@@ -16,6 +16,12 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Niet in staat om gebruiker toe te voegen aan groep %s",
"Unable to remove user from group %s" => "Niet in staat om gebruiker te verwijderen uit groep %s",
"Couldn't update app." => "Kon de app niet bijwerken.",
+"Wrong password" => "Onjuist wachtwoord",
+"No user supplied" => "Geen gebruiker opgegeven",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Voer een beheerdersherstelwachtwoord in, anders zullen alle gebruikersgegevens verloren gaan",
+"Wrong admin recovery password. Please check the password and try again." => "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt.",
+"Unable to change password" => "Kan wachtwoord niet wijzigen",
"Update to {appversion}" => "Bijwerken naar {appversion}",
"Disable" => "Uitschakelen",
"Enable" => "Activeer",
@@ -40,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Er moet een geldige gebruikersnaam worden opgegeven",
"Error creating user" => "Fout bij aanmaken gebruiker",
"A valid password must be provided" => "Er moet een geldig wachtwoord worden opgegeven",
+"Warning: Home directory for user \"{user}\" already exists" => "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al",
"__language_name__" => "Nederlands",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Alles (fatale problemen, fouten, waarschuwingen, info, debug)",
+"Info, warnings, errors and fatal issues" => "Info, waarschuwingen, fouten en fatale problemen",
+"Warnings, errors and fatal issues" => "Waarschuwingen, fouten en fatale problemen",
+"Errors and fatal issues" => "Fouten en fatale problemen",
+"Fatal issues only" => "Alleen fatale problemen",
"Security Warning" => "Beveiligingswaarschuwing",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat allen HTTPS kan worden gebruikt.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver.",
"Setup Warning" => "Instellingswaarschuwing",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Conntroleer de <a href='%s'>installatie handleiding</a> goed.",
"Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.",
+"Your PHP version is outdated" => "Uw PHP versie is verouderd",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Uw PHP versie is verouderd. We adviseren met klem om bij te werken naar versie 5.3.8 of later, omdat oudere versies corrupt kunnen zijn. Het is mogelijk dat deze installatie niet goed werkt.",
"Locale not working" => "Taalbestand werkt niet",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "De systeemtaal kan niet worden ingesteld op %s. Hierdoor kunnen er problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren, zodat %s ondersteund wordt.",
+"System locale can not be set to a one which supports UTF-8." => "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt.",
+"This means that there might be problems with certain characters in file names." => "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s.",
"Internet connection not working" => "Internet verbinding werkt niet",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http.",
-"Use systems cron service to call the cron.php file once a minute." => "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.",
"Sharing" => "Delen",
"Enable Share API" => "Activeren Share API",
"Allow apps to use the Share API" => "Apps toestaan de Share API te gebruiken",
@@ -67,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen",
"Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen",
"Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen",
+"Allow mail notification" => "Toestaan e-mailnotificaties",
+"Allow user to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden",
"Security" => "Beveiliging",
"Enforce HTTPS" => "Afdwingen HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s",
@@ -97,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Huidig wachtwoord",
"New password" => "Nieuw",
"Change password" => "Wijzig wachtwoord",
-"Display Name" => "Weergavenaam",
+"Full Name" => "Volledige naam",
"Email" => "E-mailadres",
"Your email address" => "Uw e-mailadres",
"Fill in an email address to enable password recovery" => "Vul een mailadres in om je wachtwoord te kunnen herstellen",
@@ -106,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Selecteer een nieuwe vanuit bestanden",
"Remove image" => "Verwijder afbeelding",
"Either png or jpg. Ideally square but you will be able to crop it." => "Of png, of jpg. Bij voorkeur vierkant, maar u kunt bijsnijden.",
+"Your avatar is provided by your original account." => "Uw avatar is verstrekt door uw originele account.",
"Abort" => "Afbreken",
"Choose as profile image" => "Kies als profielafbeelding",
"Language" => "Taal",
"Help translate" => "Help met vertalen",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Gebruik dit adres <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">toegang tot uw bestanden via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Gebruik deze link <a href=\"%s\" target=\"_blank\">om uw bestanden via WebDAV te benaderen</a>",
"Encryption" => "Versleuteling",
-"The encryption app is no longer enabled, decrypt all your file" => "De encryptie-appplicatie is niet meer aanwezig, decodeer al uw bestanden",
+"The encryption app is no longer enabled, please decrypt all your files" => "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten.",
"Log-in password" => "Inlog-wachtwoord",
"Decrypt all Files" => "Decodeer alle bestanden",
"Login Name" => "Inlognaam",
@@ -121,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Beheer herstel wachtwoord",
"Enter the recovery password in order to recover the users files during password change" => "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging",
"Default Storage" => "Standaard Opslaglimiet",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")",
"Unlimited" => "Ongelimiteerd",
"Other" => "Anders",
"Username" => "Gebruikersnaam",
"Storage" => "Opslaglimiet",
-"change display name" => "wijzig weergavenaam",
+"change full name" => "wijzigen volledige naam",
"set new password" => "Instellen nieuw wachtwoord",
"Default" => "Standaard"
);
diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php
index 9eb31a887bd..5fd2f57b5a8 100644
--- a/settings/l10n/nn_NO.php
+++ b/settings/l10n/nn_NO.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Klarer ikkje å lasta inn liste fra app-butikken",
"Authentication error" => "Autentiseringsfeil",
-"Your display name has been changed." => "Visingsnamnet ditt er endra.",
-"Unable to change display name" => "Klarte ikkje endra visingsnamnet",
"Group already exists" => "Gruppa finst allereie",
"Unable to add group" => "Klarte ikkje leggja til gruppa",
"Email saved" => "E-postadresse lagra",
@@ -55,13 +53,10 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "Modulen «fileinfo» manglar",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.",
"Locale not working" => "Regionaldata fungerer ikkje",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Klarte ikkje endra regionaldata for systemet til %s. Dette vil seia at det kan verta problem med visse teikn i filnamn. Me rår deg sterkt til å installera dei kravde pakkene på systemet ditt så du får støtte for %s.",
"Internet connection not working" => "Nettilkoplinga fungerer ikkje",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Utfør éi oppgåve for kvar sidelasting",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "Ei webcron-teneste er stilt inn til å kalla cron.php ein gong i minuttet over http.",
-"Use systems cron service to call the cron.php file once a minute." => "Bruk cron-tenesta til systemet for å kalla cron.php-fila ein gong i minuttet.",
"Sharing" => "Deling",
"Enable Share API" => "Slå på API-et for deling",
"Allow apps to use the Share API" => "La app-ar bruka API-et til deling",
@@ -103,7 +98,6 @@ $TRANSLATIONS = array(
"Current password" => "Passord",
"New password" => "Nytt passord",
"Change password" => "Endra passord",
-"Display Name" => "Visingsnamn",
"Email" => "E-post",
"Your email address" => "Di epost-adresse",
"Fill in an email address to enable password recovery" => "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg",
@@ -117,9 +111,7 @@ $TRANSLATIONS = array(
"Language" => "Språk",
"Help translate" => "Hjelp oss å omsetja",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Bruk denne adressa for å <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">henta filene dine over WebDAV</a>",
"Encryption" => "Kryptering",
-"The encryption app is no longer enabled, decrypt all your file" => "Krypteringsprogrammet er ikkje lenger slått på, dekrypter alle filene dine",
"Log-in password" => "Innloggingspassord",
"Decrypt all Files" => "Dekrypter alle filene",
"Login Name" => "Innloggingsnamn",
@@ -131,7 +123,6 @@ $TRANSLATIONS = array(
"Other" => "Anna",
"Username" => "Brukarnamn",
"Storage" => "Lagring",
-"change display name" => "endra visingsnamn",
"set new password" => "lag nytt passord",
"Default" => "Standard"
);
diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php
index 6cce72df4b6..bd6d3dbf1cd 100644
--- a/settings/l10n/pl.php
+++ b/settings/l10n/pl.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Nie można wczytać listy aplikacji",
"Authentication error" => "Błąd uwierzytelniania",
-"Your display name has been changed." => "Twoje wyświetlana nazwa została zmieniona.",
-"Unable to change display name" => "Nie można zmienić wyświetlanej nazwy",
+"Your full name has been changed." => "Twoja pełna nazwa została zmieniona.",
+"Unable to change full name" => "Nie można zmienić pełnej nazwy",
"Group already exists" => "Grupa już istnieje",
"Unable to add group" => "Nie można dodać grupy",
"Email saved" => "E-mail zapisany",
@@ -17,6 +17,10 @@ $TRANSLATIONS = array(
"Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s",
"Couldn't update app." => "Nie można uaktualnić aplikacji.",
"Wrong password" => "Złe hasło",
+"No user supplied" => "Niedostarczony użytkownik",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone",
+"Wrong admin recovery password. Please check the password and try again." => "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany.",
"Unable to change password" => "Nie można zmienić hasła",
"Update to {appversion}" => "Aktualizacja do {appversion}",
"Disable" => "Wyłącz",
@@ -42,7 +46,13 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Należy podać prawidłową nazwę użytkownika",
"Error creating user" => "Błąd podczas tworzenia użytkownika",
"A valid password must be provided" => "Należy podać prawidłowe hasło",
+"Warning: Home directory for user \"{user}\" already exists" => "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje",
"__language_name__" => "polski",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)",
+"Info, warnings, errors and fatal issues" => "Informacje, ostrzeżenia, błędy i poważne problemy",
+"Warnings, errors and fatal issues" => "Ostrzeżenia, błędy i poważne problemy",
+"Errors and fatal issues" => "Błędy i poważne problemy",
+"Fatal issues only" => "Tylko poważne problemy",
"Security Warning" => "Ostrzeżenie o zabezpieczeniach",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.",
"Setup Warning" => "Ostrzeżenia konfiguracji",
@@ -50,14 +60,16 @@ $TRANSLATIONS = array(
"Please double check the <a href=\"%s\">installation guides</a>." => "Proszę sprawdź ponownie <a href=\"%s\">przewodnik instalacji</a>.",
"Module 'fileinfo' missing" => "Brak modułu „fileinfo”",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.",
+"Your PHP version is outdated" => "Twoja wersja PHP jest za stara",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie.",
"Locale not working" => "Lokalizacja nie działa",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "System lokalny nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s.",
+"System locale can not be set to a one which supports UTF-8." => "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.",
"Internet connection not working" => "Połączenie internetowe nie działa",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Wykonuj jedno zadanie wraz z każdą wczytaną stroną",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na minutę przez http.",
-"Use systems cron service to call the cron.php file once a minute." => "Użyj systemowego cron-a do uruchamiania cron.php raz na minutę.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut.",
"Sharing" => "Udostępnianie",
"Enable Share API" => "Włącz API udostępniania",
"Allow apps to use the Share API" => "Zezwalaj aplikacjom na korzystanie z API udostępniania",
@@ -69,6 +81,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych",
"Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek",
"Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup",
+"Allow mail notification" => "Pozwól na mailowe powiadomienia",
+"Allow user to send mail notification for shared files" => "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach",
"Security" => "Bezpieczeństwo",
"Enforce HTTPS" => "Wymuś HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.",
@@ -99,7 +113,7 @@ $TRANSLATIONS = array(
"Current password" => "Bieżące hasło",
"New password" => "Nowe hasło",
"Change password" => "Zmień hasło",
-"Display Name" => "Wyświetlana nazwa",
+"Full Name" => "Pełna nazwa",
"Email" => "Email",
"Your email address" => "Twój adres e-mail",
"Fill in an email address to enable password recovery" => "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła",
@@ -107,14 +121,14 @@ $TRANSLATIONS = array(
"Upload new" => "Wczytaj nowe",
"Select new from Files" => "Wybierz nowe z plików",
"Remove image" => "Usuń zdjęcie",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć.",
"Abort" => "Anuluj",
"Choose as profile image" => "Wybierz zdjęcie profilu",
"Language" => "Język",
"Help translate" => "Pomóż w tłumaczeniu",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Użyj tego adresu do <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">dostępu do twoich plików przez WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Użyj tego adresu do <a href=\"%s\" target=\"_blank\">dostępu do twoich plików przez WebDAV</a>",
"Encryption" => "Szyfrowanie",
-"The encryption app is no longer enabled, decrypt all your file" => "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik",
"Log-in password" => "Hasło logowania",
"Decrypt all Files" => "Odszyfruj wszystkie pliki",
"Login Name" => "Login",
@@ -122,11 +136,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Odzyskiwanie hasła administratora",
"Enter the recovery password in order to recover the users files during password change" => "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła",
"Default Storage" => "Magazyn domyślny",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)",
"Unlimited" => "Bez limitu",
"Other" => "Inne",
"Username" => "Nazwa użytkownika",
"Storage" => "Magazyn",
-"change display name" => "zmień wyświetlaną nazwę",
+"change full name" => "Zmień pełna nazwę",
"set new password" => "ustaw nowe hasło",
"Default" => "Domyślny"
);
diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php
index 6f3312fa78b..7577ea1d5f7 100644
--- a/settings/l10n/pt_BR.php
+++ b/settings/l10n/pt_BR.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Não foi possível carregar lista da App Store",
"Authentication error" => "Erro de autenticação",
-"Your display name has been changed." => "A exibição de seu nome foi alterada.",
-"Unable to change display name" => "Impossível alterar nome de exibição",
+"Your full name has been changed." => "Seu nome completo foi alterado.",
+"Unable to change full name" => "Não é possível alterar o nome completo",
"Group already exists" => "Grupo já existe",
"Unable to add group" => "Não foi possível adicionar grupo",
"Email saved" => "E-mail salvo",
@@ -46,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Forneça um nome de usuário válido",
"Error creating user" => "Erro ao criar usuário",
"A valid password must be provided" => "Forneça uma senha válida",
+"Warning: Home directory for user \"{user}\" already exists" => "Aviso: O diretório home para o usuário \"{user}\" já existe",
"__language_name__" => "Português (Brasil)",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Tudo (questões fatais, erros, avisos, informações, depuração)",
+"Info, warnings, errors and fatal issues" => "Informações, avisos, erros e problemas fatais",
+"Warnings, errors and fatal issues" => "Avisos, erros e problemas fatais",
+"Errors and fatal issues" => "Erros e problemas fatais",
+"Fatal issues only" => "Somente questões fatais",
"Security Warning" => "Aviso de Segurança",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor.",
"Setup Warning" => "Aviso de Configuração",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, verifique os <a href='%s'>guias de instalação</a>.",
"Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).",
+"Your PHP version is outdated" => "Sua versão de PHP está desatualizada",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente.",
"Locale not working" => "Localização não funcionando",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s.",
+"System locale can not be set to a one which supports UTF-8." => "Localidade do sistema não pode ser definido como um que suporta UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s.",
"Internet connection not working" => "Sem conexão com a internet",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Execute uma tarefa com cada página carregada",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registrado em um serviço webcron chamar cron.php uma vez por minuto usando http.",
-"Use systems cron service to call the cron.php file once a minute." => "Utilizar sistema de serviços cron para chamar o arquivo cron.php uma vez por minuto.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos.",
"Sharing" => "Compartilhamento",
"Enable Share API" => "Habilitar API de Compartilhamento",
"Allow apps to use the Share API" => "Permitir que aplicativos usem a API de Compartilhamento",
@@ -73,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Permitir que usuários compartilhem novamente itens compartilhados com eles",
"Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um",
"Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos",
+"Allow mail notification" => "Permitir notificação por email",
+"Allow user to send mail notification for shared files" => "Permitir usuários enviar notificação por email de arquivos compartilhados",
"Security" => "Segurança",
"Enforce HTTPS" => "Forçar HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.",
@@ -103,7 +116,7 @@ $TRANSLATIONS = array(
"Current password" => "Senha atual",
"New password" => "Nova senha",
"Change password" => "Alterar senha",
-"Display Name" => "Nome de Exibição",
+"Full Name" => "Nome Completo",
"Email" => "E-mail",
"Your email address" => "Seu endereço de e-mail",
"Fill in an email address to enable password recovery" => "Preencha um endereço de e-mail para habilitar a recuperação de senha",
@@ -112,14 +125,15 @@ $TRANSLATIONS = array(
"Select new from Files" => "Selecinar uma nova dos Arquivos",
"Remove image" => "Remover imagem",
"Either png or jpg. Ideally square but you will be able to crop it." => "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la.",
+"Your avatar is provided by your original account." => "Seu avatar é fornecido por sua conta original.",
"Abort" => "Abortar",
"Choose as profile image" => "Escolha como imagem para o perfil",
"Language" => "Idioma",
"Help translate" => "Ajude a traduzir",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Use esse endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acessar seus arquivos via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Use este endereço <a href=\"%s\" target=\"_blank\">para ter acesso a seus Arquivos via WebDAV</a>",
"Encryption" => "Criptografia",
-"The encryption app is no longer enabled, decrypt all your file" => "O aplicativo de encriptação não está mais ativo, decripti todos os seus arquivos",
+"The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos",
"Log-in password" => "Senha de login",
"Decrypt all Files" => "Decripti todos os Arquivos",
"Login Name" => "Nome de Login",
@@ -127,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Recuperação da Senha do Administrador",
"Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.",
"Default Storage" => "Armazenamento Padrão",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")",
"Unlimited" => "Ilimitado",
"Other" => "Outro",
"Username" => "Nome de Usuário",
"Storage" => "Armazenamento",
-"change display name" => "alterar nome de exibição",
+"change full name" => "alterar nome completo",
"set new password" => "definir nova senha",
"Default" => "Padrão"
);
diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php
index b664d2be3db..89bed085972 100644
--- a/settings/l10n/pt_PT.php
+++ b/settings/l10n/pt_PT.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Incapaz de carregar a lista da App Store",
"Authentication error" => "Erro na autenticação",
-"Your display name has been changed." => "O seu nome foi alterado",
-"Unable to change display name" => "Não foi possível alterar o nome",
+"Your full name has been changed." => "O seu nome completo foi alterado.",
+"Unable to change full name" => "Não foi possível alterar o seu nome completo",
"Group already exists" => "O grupo já existe",
"Unable to add group" => "Impossível acrescentar o grupo",
"Email saved" => "Email guardado",
@@ -16,6 +16,12 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Impossível acrescentar utilizador ao grupo %s",
"Unable to remove user from group %s" => "Impossível apagar utilizador do grupo %s",
"Couldn't update app." => "Não foi possível actualizar a aplicação.",
+"Wrong password" => "Password errada",
+"No user supplied" => "Nenhum utilizador especificado.",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos",
+"Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada.",
+"Unable to change password" => "Não foi possível alterar a sua password",
"Update to {appversion}" => "Actualizar para a versão {appversion}",
"Disable" => "Desactivar",
"Enable" => "Activar",
@@ -27,6 +33,7 @@ $TRANSLATIONS = array(
"Error" => "Erro",
"Update" => "Actualizar",
"Updated" => "Actualizado",
+"Select a profile picture" => "Seleccione uma fotografia de perfil",
"Decrypting files... Please wait, this can take some time." => "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo.",
"Saving..." => "A guardar...",
"deleted" => "apagado",
@@ -39,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Um nome de utilizador válido deve ser fornecido",
"Error creating user" => "Erro a criar utilizador",
"A valid password must be provided" => "Uma password válida deve ser fornecida",
+"Warning: Home directory for user \"{user}\" already exists" => "Atenção: a pasta pessoal do utilizador \"{user}\" já existe",
"__language_name__" => "__language_name__",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Tudo (problemas fatais, erros, avisos, informação, depuração)",
+"Info, warnings, errors and fatal issues" => "Informação, avisos, erros e problemas fatais",
+"Warnings, errors and fatal issues" => "Avisos, erros e problemas fatais",
+"Errors and fatal issues" => "Erros e problemas fatais",
+"Fatal issues only" => "Apenas problemas fatais",
"Security Warning" => "Aviso de Segurança",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está a aceder %s via HTTP. Recomendamos vivamente que configure o servidor para forçar o uso de HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.",
"Setup Warning" => "Aviso de setup",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Por favor verifique o<a href='%s'>Guia de instalação</a>.",
"Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.",
+"Your PHP version is outdated" => "A sua versão do PHP está ultrapassada",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente.",
"Locale not working" => "Internacionalização não está a funcionar",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s.",
+"System locale can not be set to a one which supports UTF-8." => "Não é possível pôr as definições de sistema compatíveis com UTF-8.",
+"This means that there might be problems with certain characters in file names." => "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s.",
"Internet connection not working" => "A ligação à internet não está a funcionar",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Executar uma tarefa com cada página carregada",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registado num serviço webcron para chamar a página cron.php por http uma vez por minuto.",
-"Use systems cron service to call the cron.php file once a minute." => "Use o serviço cron do sistema para chamar o ficheiro cron.php uma vez por minuto.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos.",
"Sharing" => "Partilha",
"Enable Share API" => "Activar a API de partilha",
"Allow apps to use the Share API" => "Permitir que os utilizadores usem a API de partilha",
@@ -66,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens partilhados com eles",
"Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos",
"Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo",
+"Allow mail notification" => "Permitir notificação por email",
+"Allow user to send mail notification for shared files" => "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados",
"Security" => "Segurança",
"Enforce HTTPS" => "Forçar HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada",
@@ -96,18 +116,24 @@ $TRANSLATIONS = array(
"Current password" => "Palavra-chave actual",
"New password" => "Nova palavra-chave",
"Change password" => "Alterar palavra-chave",
-"Display Name" => "Nome público",
+"Full Name" => "Nome completo",
"Email" => "Email",
"Your email address" => "O seu endereço de email",
"Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave",
"Profile picture" => "Foto do perfil",
+"Upload new" => "Carregar novo",
+"Select new from Files" => "Seleccionar novo a partir dos ficheiros",
+"Remove image" => "Remover imagem",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois.",
+"Your avatar is provided by your original account." => "O seu avatar é fornecido pela sua conta original.",
"Abort" => "Abortar",
+"Choose as profile image" => "Escolha uma fotografia de perfil",
"Language" => "Idioma",
"Help translate" => "Ajude a traduzir",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Use este endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">aceder aos seus ficheiros via WebDav</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilize esta ligação para <a href=\"%s\" target=\"_blank\">aceder aos seus ficheiros via WebDAV</a>",
"Encryption" => "Encriptação",
-"The encryption app is no longer enabled, decrypt all your file" => "A aplicação de encriptação não se encontra mais disponível, desencripte o seu ficheiro",
+"The encryption app is no longer enabled, please decrypt all your files" => "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros",
"Log-in password" => "Password de entrada",
"Decrypt all Files" => "Desencriptar todos os ficheiros",
"Login Name" => "Nome de utilizador",
@@ -115,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Recuperar password de administrador",
"Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação, a fim de recuperar os arquivos de usuários durante a mudança de senha",
"Default Storage" => "Armazenamento Padrão",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")",
"Unlimited" => "Ilimitado",
"Other" => "Outro",
"Username" => "Nome de utilizador",
"Storage" => "Armazenamento",
-"change display name" => "modificar nome exibido",
+"change full name" => "alterar nome completo",
"set new password" => "definir nova palavra-passe",
"Default" => "Padrão"
);
diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php
index c3483f83deb..14331854305 100644
--- a/settings/l10n/ro.php
+++ b/settings/l10n/ro.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.",
"Authentication error" => "Eroare la autentificare",
-"Your display name has been changed." => "Numele afişat a fost schimbat.",
-"Unable to change display name" => "Imposibil de schimbat numele afişat.",
"Group already exists" => "Grupul există deja",
"Unable to add group" => "Nu s-a putut adăuga grupul",
"Email saved" => "E-mail salvat",
@@ -100,7 +98,6 @@ $TRANSLATIONS = array(
"Other" => "Altele",
"Username" => "Nume utilizator",
"Storage" => "Stocare",
-"change display name" => "schimbă numele afișat",
"set new password" => "setează parolă nouă",
"Default" => "Implicită"
);
diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php
index 1bce6332c76..8a9ae156f1a 100644
--- a/settings/l10n/ru.php
+++ b/settings/l10n/ru.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Не удалось загрузить список из App Store",
"Authentication error" => "Ошибка аутентификации",
-"Your display name has been changed." => "Ваше отображаемое имя было изменено.",
-"Unable to change display name" => "Невозможно изменить отображаемое имя",
+"Your full name has been changed." => "Ваше полное имя было изменено.",
+"Unable to change full name" => "Невозможно изменить полное имя",
"Group already exists" => "Группа уже существует",
"Unable to add group" => "Невозможно добавить группу",
"Email saved" => "Email сохранен",
@@ -40,28 +40,39 @@ $TRANSLATIONS = array(
"undo" => "отмена",
"Unable to remove user" => "Невозможно удалить пользователя",
"Groups" => "Группы",
-"Group Admin" => "Группа Администраторы",
+"Group Admin" => "Администратор группы",
"Delete" => "Удалить",
"add group" => "добавить группу",
"A valid username must be provided" => "Укажите правильное имя пользователя",
"Error creating user" => "Ошибка создания пользователя",
"A valid password must be provided" => "Укажите валидный пароль",
+"Warning: Home directory for user \"{user}\" already exists" => "Предупреждение: домашняя папка пользователя \"{user}\" уже существует",
"__language_name__" => "Русский ",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Все (критические проблемы, ошибки, предупреждения, информационные, отладочные)",
+"Info, warnings, errors and fatal issues" => "Информационные, предупреждения, ошибки и критические проблемы",
+"Warnings, errors and fatal issues" => "Предупреждения, ошибки и критические проблемы",
+"Errors and fatal issues" => "Ошибки и критические проблемы",
+"Fatal issues only" => "Только критические проблемы",
"Security Warning" => "Предупреждение безопасности",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.",
"Setup Warning" => "Предупреждение установки",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>.",
"Module 'fileinfo' missing" => "Модуль 'fileinfo' отсутствует",
-"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.",
+"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.",
+"Your PHP version is outdated" => "Ваша версия PHP устарела",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом.",
"Locale not working" => "Локализация не работает",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s.",
+"System locale can not be set to a one which supports UTF-8." => "Невозможно установить системную локаль, поддерживающую UTF-8",
+"This means that there might be problems with certain characters in file names." => "Это значит, что могут быть проблемы с некоторыми символами в именах файлов.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s.",
"Internet connection not working" => "Интернет-соединение не работает",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности.",
"Cron" => "Планировщик задач по расписанию",
"Execute one task with each page loaded" => "Выполнять одно задание с каждой загруженной страницей",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php зарегистрирован в сервисе webcron, чтобы cron.php вызывался раз в минуту используя http.",
-"Use systems cron service to call the cron.php file once a minute." => "Использовать системный сервис cron для вызова cron.php раз в минуту.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Использовать системный cron для вызова cron.php каждые 15 минут.",
"Sharing" => "Общий доступ",
"Enable Share API" => "Включить API общего доступа",
"Allow apps to use the Share API" => "Позволить приложениям использовать API общего доступа",
@@ -73,12 +84,14 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ",
"Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому",
"Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп",
+"Allow mail notification" => "Разрешить уведомление по почте",
+"Allow user to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах",
"Security" => "Безопасность",
"Enforce HTTPS" => "Принудить к HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.",
"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL.",
-"Log" => "Лог",
-"Log level" => "Уровень лога",
+"Log" => "Журнал",
+"Log level" => "Уровень детализации журнала",
"More" => "Больше",
"Less" => "Меньше",
"Version" => "Версия",
@@ -103,35 +116,37 @@ $TRANSLATIONS = array(
"Current password" => "Текущий пароль",
"New password" => "Новый пароль",
"Change password" => "Сменить пароль",
-"Display Name" => "Отображаемое имя",
+"Full Name" => "Полное имя",
"Email" => "E-mail",
"Your email address" => "Ваш адрес электронной почты",
-"Fill in an email address to enable password recovery" => "Введите адрес электронной почты чтобы появилась возможность восстановления пароля",
+"Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля",
"Profile picture" => "Фото профиля",
-"Upload new" => "Закачать новую",
+"Upload new" => "Загрузить новую",
"Select new from Files" => "Выберите новый из файлов",
"Remove image" => "Удалить изображение",
"Either png or jpg. Ideally square but you will be able to crop it." => "Либо png, либо jpg. Изображение должно быть квадратным, но вы сможете обрезать его позже.",
+"Your avatar is provided by your original account." => "Будет использован аватар вашей оригинальной учетной записи.",
"Abort" => "Отмена",
"Choose as profile image" => "Выберите изображение профиля",
"Language" => "Язык",
"Help translate" => "Помочь с переводом",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адрес чтобы получить доступ к вашим файлам через WebDav - <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адресс для <a href=\"%s\" target=\"_blank\">доступа к вашим файлам через WebDAV</a>",
"Encryption" => "Шифрование",
-"The encryption app is no longer enabled, decrypt all your file" => "Приложение шифрования не активно, отмените шифрование всех ваших файлов.",
+"The encryption app is no longer enabled, please decrypt all your files" => "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы",
"Log-in password" => "Пароль входа",
"Decrypt all Files" => "Снять шифрование со всех файлов",
"Login Name" => "Имя пользователя",
"Create" => "Создать",
-"Admin Recovery Password" => "Восстановление Пароля Администратора",
+"Admin Recovery Password" => "Восстановление пароля администратора",
"Enter the recovery password in order to recover the users files during password change" => "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля",
-"Default Storage" => "Хранилище по-умолчанию",
+"Default Storage" => "Хранилище по умолчанию",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")",
"Unlimited" => "Неограниченно",
"Other" => "Другое",
"Username" => "Имя пользователя",
"Storage" => "Хранилище",
-"change display name" => "изменить отображаемое имя",
+"change full name" => "изменить полное имя",
"set new password" => "установить новый пароль",
"Default" => "По умолчанию"
);
diff --git a/settings/l10n/sk.php b/settings/l10n/sk.php
new file mode 100644
index 00000000000..6bde1c438e4
--- /dev/null
+++ b/settings/l10n/sk.php
@@ -0,0 +1,6 @@
+<?php
+$TRANSLATIONS = array(
+"Delete" => "Odstrániť",
+"Other" => "Ostatné"
+);
+$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";
diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php
index cd44e5f94c5..fc3fe540751 100644
--- a/settings/l10n/sk_SK.php
+++ b/settings/l10n/sk_SK.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store",
"Authentication error" => "Chyba autentifikácie",
-"Your display name has been changed." => "Vaše zobrazované meno bolo zmenené.",
-"Unable to change display name" => "Nemožno zmeniť zobrazované meno",
+"Your full name has been changed." => "Vaše meno a priezvisko bolo zmenené.",
+"Unable to change full name" => "Nemožno zmeniť meno a priezvisko",
"Group already exists" => "Skupina už existuje",
"Unable to add group" => "Nie je možné pridať skupinu",
"Email saved" => "Email uložený",
@@ -16,6 +16,12 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Nie je možné pridať používateľa do skupiny %s",
"Unable to remove user from group %s" => "Nie je možné odstrániť používateľa zo skupiny %s",
"Couldn't update app." => "Nemožno aktualizovať aplikáciu.",
+"Wrong password" => "Nesprávne heslo",
+"No user supplied" => "Nebol uvedený používateľ",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Zadajte administrátorské heslo pre obnovu, inak budú všetky dáta stratené",
+"Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používateľov bol úspešne zmenený.",
+"Unable to change password" => "Zmena hesla sa nepodarila",
"Update to {appversion}" => "Aktualizovať na {appversion}",
"Disable" => "Zakázať",
"Enable" => "Zapnúť",
@@ -27,6 +33,7 @@ $TRANSLATIONS = array(
"Error" => "Chyba",
"Update" => "Aktualizovať",
"Updated" => "Aktualizované",
+"Select a profile picture" => "Vybrať avatara",
"Decrypting files... Please wait, this can take some time." => "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať.",
"Saving..." => "Ukladám...",
"deleted" => "zmazané",
@@ -39,22 +46,33 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Musíte zadať platné používateľské meno",
"Error creating user" => "Chyba pri vytváraní používateľa",
"A valid password must be provided" => "Musíte zadať platné heslo",
+"Warning: Home directory for user \"{user}\" already exists" => "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje",
"__language_name__" => "Slovensky",
-"Security Warning" => "Bezpečnostné varovanie",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Všetko (fatálne problémy, chyby, upozornenia, info, debug)",
+"Info, warnings, errors and fatal issues" => "Info, upozornenia, chyby a fatálne problémy",
+"Warnings, errors and fatal issues" => "Upozornenia, chyby a fatálne problémy",
+"Errors and fatal issues" => "Chyby a fatálne problémy",
+"Fatal issues only" => "Len fatálne problémy",
+"Security Warning" => "Bezpečnostné upozornenie",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie HTTPS.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. 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 priestor sprístupňovaný webovým serverom.",
"Setup Warning" => "Nastavenia oznámení",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Skontrolujte prosím znovu <a href=\"%s\">inštalačnú príručku</a>.",
"Module 'fileinfo' missing" => "Chýba modul 'fileinfo'",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.",
+"Your PHP version is outdated" => "Vaša PHP verzia je zastaraná",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne.",
"Locale not working" => "Lokalizácia nefunguje",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systémové nastavenie lokalizácie nemohlo byť nastavené na %s. To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov. Odporúčame nainštalovať do vášho systému balíčky potrebné pre podporu %s.",
+"System locale can not be set to a one which supports UTF-8." => "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.",
+"This means that there might be problems with certain characters in file names." => "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.",
"Internet connection not working" => "Pripojenie na internet nefunguje",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. 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ť. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Vykonať jednu úlohu s každým načítaní stránky",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrovaný v službe webcron na zavolanie stránky cron.php raz za minútu cez HTTP.",
-"Use systems cron service to call the cron.php file once a minute." => "Použiť systémovú službu cron na spustenie súboru cron.php raz za minútu.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút.",
"Sharing" => "Zdieľanie",
"Enable Share API" => "Povoliť API zdieľania",
"Allow apps to use the Share API" => "Povoliť aplikáciám používať API na zdieľanie",
@@ -66,6 +84,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Povoliť používateľom ďalej zdieľať zdieľané položky",
"Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek",
"Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách",
+"Allow mail notification" => "Povoliť upozornenia emailom",
+"Allow user to send mail notification for shared files" => "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory",
"Security" => "Zabezpečenie",
"Enforce HTTPS" => "Vynútiť HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.",
@@ -96,17 +116,24 @@ $TRANSLATIONS = array(
"Current password" => "Aktuálne heslo",
"New password" => "Nové heslo",
"Change password" => "Zmeniť heslo",
-"Display Name" => "Zobrazované meno",
+"Full Name" => "Meno a priezvisko",
"Email" => "Email",
"Your email address" => "Vaša emailová adresa",
"Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla",
-"Profile picture" => "Profilová fotka",
+"Profile picture" => "Avatar",
+"Upload new" => "Nahrať nový",
+"Select new from Files" => "Vyberte nový zo súborov",
+"Remove image" => "Zmazať obrázok",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Buď png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať.",
+"Your avatar is provided by your original account." => "Váš avatar je použiý z pôvodného účtu.",
+"Abort" => "Prerušiť",
+"Choose as profile image" => "Vybrať ako avatara",
"Language" => "Jazyk",
"Help translate" => "Pomôcť s prekladom",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Použite túto adresu <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">pre prístup k súborom cez WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Použite túto linku <a href=\"%s\" target=\"_blank\">pre prístup k vašim súborom cez WebDAV</a>",
"Encryption" => "Šifrovanie",
-"The encryption app is no longer enabled, decrypt all your file" => "Šifrovacia aplikácia nie je povolená, dešifrujte všetky vaše súbory",
+"The encryption app is no longer enabled, please decrypt all your files" => "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory.",
"Log-in password" => "Prihlasovacie heslo",
"Decrypt all Files" => "Dešifrovať všetky súbory",
"Login Name" => "Prihlasovacie meno",
@@ -114,11 +141,12 @@ $TRANSLATIONS = array(
"Admin Recovery Password" => "Obnovenie hesla administrátora",
"Enter the recovery password in order to recover the users files during password change" => "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla",
"Default Storage" => "Predvolené úložisko",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")",
"Unlimited" => "Nelimitované",
"Other" => "Iné",
"Username" => "Meno používateľa",
"Storage" => "Úložisko",
-"change display name" => "zmeniť zobrazované meno",
+"change full name" => "zmeniť meno a priezvisko",
"set new password" => "nastaviť nové heslo",
"Default" => "Predvolené"
);
diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php
index 0fbf3248028..0bd4ef50fe6 100644
--- a/settings/l10n/sl.php
+++ b/settings/l10n/sl.php
@@ -2,8 +2,8 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Ni mogoče naložiti seznama iz programskega središča",
"Authentication error" => "Napaka med overjanjem",
-"Your display name has been changed." => "Prikazano ime je bilo spremenjeno.",
-"Unable to change display name" => "Prikazanega imena ni mogoče spremeniti.",
+"Your full name has been changed." => "Vaše polno ime je spremenjeno.",
+"Unable to change full name" => "Ni mogoče spremeniti polnega imena",
"Group already exists" => "Skupina že obstaja",
"Unable to add group" => "Skupine ni mogoče dodati",
"Email saved" => "Elektronski naslov je shranjen",
@@ -16,15 +16,25 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s",
"Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s",
"Couldn't update app." => "Programa ni mogoče posodobiti.",
+"Wrong password" => "Napačno geslo",
+"No user supplied" => "Ni navedenega uporabnika",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni.",
+"Wrong admin recovery password. Please check the password and try again." => "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodobljeno uporabniško šifriranje.",
+"Unable to change password" => "Ni mogoče spremeniti gesla",
"Update to {appversion}" => "Posodobi na {appversion}",
"Disable" => "Onemogoči",
"Enable" => "Omogoči",
"Please wait...." => "Počakajte ...",
+"Error while disabling app" => "Napaka onemogočanja programa",
+"Error while enabling app" => "Napaka omogočanja programa",
"Updating...." => "Poteka posodabljanje ...",
"Error while updating app" => "Prišlo je do napake med posodabljanjem programa.",
"Error" => "Napaka",
"Update" => "Posodobi",
"Updated" => "Posodobljeno",
+"Select a profile picture" => "Izbor slike profila",
+"Decrypting files... Please wait, this can take some time." => "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno.",
"Saving..." => "Poteka shranjevanje ...",
"deleted" => "izbrisano",
"undo" => "razveljavi",
@@ -36,27 +46,50 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Navedeno mora biti veljavno uporabniško ime",
"Error creating user" => "Napaka ustvarjanja uporabnika",
"A valid password must be provided" => "Navedeno mora biti veljavno geslo",
+"Warning: Home directory for user \"{user}\" already exists" => "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja",
"__language_name__" => "Slovenščina",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)",
+"Info, warnings, errors and fatal issues" => "Podrobnosti, opozorila, napake in usodne dogodke",
+"Warnings, errors and fatal issues" => "Opozorila, napake in usodne dogodke",
+"Errors and fatal issues" => "Napake in usodne dogodke",
+"Fatal issues only" => "Le usodne dogodke",
"Security Warning" => "Varnostno opozorilo",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Dostop do %s poteka preko HTTP. Priporočljivo je nastaviti strežnik na privzeto uporabo varne povezave preko protokola HTTPS.",
+"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša podatkovna mapa in datoteke so najverjetneje dosegljive preko interneta. Datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da podatkovna mapa ni prosto dostopna. To je mogoče zagotoviti tudi tako, da je mapa premaknjena iz neustrezne korenske v podrejeno mapo .",
"Setup Warning" => "Opozorilo nastavitve",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.",
+"Please double check the <a href=\"%s\">installation guides</a>." => "Preverite <a href=\"%s\">vodnike namestitve</a>.",
"Module 'fileinfo' missing" => "Manjka modul 'fileinfo'.",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.",
+"Your PHP version is outdated" => "Nameščena različica PHP je zastarela",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Nameščena različica PHP je zastarela. Priporočljivo je posodobiti namestitev na različico 5.3.8 ali novejše, saj starejše različice ne podpirajo vseh zmožnosti. Mogoče je, da namestitev ne deluje pravilno.",
"Locale not working" => "Jezikovne prilagoditve ne delujejo.",
+"System locale can not be set to a one which supports UTF-8." => "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.",
+"This means that there might be problems with certain characters in file names." => "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Priporočljivo je namestiti zahtevane pakete v sistem za podporo ene izmed navedenih jezikovnih možnosti: %s",
"Internet connection not working" => "Internetna povezava ne deluje.",
+"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava.",
"Cron" => "Periodično opravilo",
"Execute one task with each page loaded" => "Izvedi eno nalogo z vsako naloženo stranjo.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.",
"Sharing" => "Souporaba",
"Enable Share API" => "Omogoči API souporabe",
"Allow apps to use the Share API" => "Dovoli programom uporabo vmesnika API souporabe",
"Allow links" => "Dovoli povezave",
"Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo predmetov z javnimi povezavami",
+"Allow public uploads" => "Dovoli javno pošiljanje datotek v oblak",
+"Allow users to enable others to upload into their publicly shared folders" => "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo.",
"Allow resharing" => "Dovoli nadaljnjo souporabo",
"Allow users to share items shared with them again" => "Uporabnikom dovoli nadaljnjo souporabo predmetov",
"Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli",
"Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine",
+"Allow mail notification" => "Dovoli obvestila preko elektronske pošte",
+"Allow user to send mail notification for shared files" => "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi",
"Security" => "Varnost",
"Enforce HTTPS" => "Zahtevaj uporabo HTTPS",
+"Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS.",
"Log" => "Dnevnik",
"Log level" => "Raven beleženja",
"More" => "Več",
@@ -83,25 +116,37 @@ $TRANSLATIONS = array(
"Current password" => "Trenutno geslo",
"New password" => "Novo geslo",
"Change password" => "Spremeni geslo",
-"Display Name" => "Prikazano ime",
+"Full Name" => "Polno ime",
"Email" => "Elektronski naslov",
"Your email address" => "Osebni elektronski naslov",
"Fill in an email address to enable password recovery" => "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla",
"Profile picture" => "Slika profila",
+"Upload new" => "Pošlji novo",
+"Select new from Files" => "Izberi novo iz menija datotek",
+"Remove image" => "Odstrani sliko",
+"Either png or jpg. Ideally square but you will be able to crop it." => "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati.",
+"Your avatar is provided by your original account." => "Podoba je podana v izvornem računu.",
+"Abort" => "Prekini",
+"Choose as profile image" => "Izberi kot sliko profila",
"Language" => "Jezik",
"Help translate" => "Sodelujte pri prevajanju",
"WebDAV" => "WebDAV",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Uporabite naslov <a href=\"%s\" target=\"_blank\"> za dostop do datotek rpeko sistema WebDAV</a>.",
"Encryption" => "Šifriranje",
+"The encryption app is no longer enabled, please decrypt all your files" => "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke.",
+"Log-in password" => "Prijavno geslo",
+"Decrypt all Files" => "Odšifriraj vse datoteke",
"Login Name" => "Prijavno ime",
"Create" => "Ustvari",
-"Admin Recovery Password" => "Obnovitev administratorjevega gesla",
-"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla",
+"Admin Recovery Password" => "Obnovitev skrbniškega gesla",
+"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla",
"Default Storage" => "Privzeta shramba",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")",
"Unlimited" => "Neomejeno",
"Other" => "Drugo",
"Username" => "Uporabniško ime",
"Storage" => "Shramba",
-"change display name" => "spremeni prikazano ime",
+"change full name" => "Spremeni polno ime",
"set new password" => "nastavi novo geslo",
"Default" => "Privzeto"
);
diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php
index d4726a29bb6..4bb2576a88d 100644
--- a/settings/l10n/sq.php
+++ b/settings/l10n/sq.php
@@ -1,18 +1,103 @@
<?php
$TRANSLATIONS = array(
-"Authentication error" => "Veprim i gabuar gjatë vërtetimit të identitetit",
+"Unable to load list from App Store" => "E pamundur të shkarkohet lista nga App Store",
+"Authentication error" => "Gabim autentifikimi",
+"Group already exists" => "Grupi ekziston",
+"Unable to add group" => "E pamundur të shtohet grupi",
+"Email saved" => "Email u ruajt",
+"Invalid email" => "Email jo i vlefshëm",
+"Unable to delete group" => "E pamundur të fshihet grupi",
+"Unable to delete user" => "E pamundur të fshihet përdoruesi",
+"Language changed" => "Gjuha u ndryshua",
"Invalid request" => "Kërkesë e pavlefshme",
-"Error" => "Veprim i gabuar",
-"Update" => "Azhurno",
-"undo" => "anulo",
-"Delete" => "Elimino",
-"Security Warning" => "Paralajmërim sigurie",
-"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.",
-"Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj",
-"Password" => "Kodi",
-"New password" => "Kodi i ri",
-"Email" => "Email-i",
-"Other" => "Të tjera",
-"Username" => "Përdoruesi"
+"Admins can't remove themself from the admin group" => "Administratorët nuk mund të heqin vehten prej grupit admin",
+"Unable to add user to group %s" => "E pamundur t'i shtohet përdoruesi grupit %s",
+"Unable to remove user from group %s" => "E pamundur të hiqet përdoruesi nga grupi %s",
+"Couldn't update app." => "E pamundur të përditësohet app.",
+"Update to {appversion}" => "Përditësim për {appversion}",
+"Disable" => "Çaktivizo",
+"Enable" => "Aktivizo",
+"Please wait...." => "Ju lutem prisni...",
+"Updating...." => "Duke përditësuar...",
+"Error while updating app" => "Gabim gjatë përditësimit të app",
+"Error" => "Gabim",
+"Update" => "Përditësim",
+"Updated" => "I përditësuar",
+"Saving..." => "Duke ruajtur...",
+"deleted" => "fshirë",
+"undo" => "anullo veprimin",
+"Unable to remove user" => "E pamundur të fshiet përdoruesi",
+"Groups" => "Grupet",
+"Group Admin" => "Grupi Admin",
+"Delete" => "Fshi",
+"add group" => "shto grup",
+"A valid username must be provided" => "Duhet të jepni një emër të vlefshëm përdoruesi",
+"Error creating user" => "Gabim gjatë krijimit të përdoruesit",
+"A valid password must be provided" => "Duhet të jepni një fjalëkalim te vlefshëm",
+"__language_name__" => "Shqip",
+"Security Warning" => "Njoftim për sigurinë",
+"Setup Warning" => "Lajmërim konfigurimi",
+"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web Serveri juaj nuk është konfigurar sic duhet në mënyre që të lejojë sinkronizimin e skedare pasi ndërfaqja WevDAV duket të jetë e demtuar.",
+"Module 'fileinfo' missing" => "Mungon moduli 'fileinfo'",
+"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me këmbngulje të aktivizoni këtë modul për të arritur rezultate më të mirame identifikimin e tipeve te ndryshme MIME.",
+"Locale not working" => "Locale nuk është funksional",
+"Internet connection not working" => "Lidhja me internetin nuk është funksionale",
+"Cron" => "Cron",
+"Execute one task with each page loaded" => "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara",
+"Sharing" => "Ndarje",
+"Enable Share API" => "Aktivizo API për ndarjet",
+"Allow apps to use the Share API" => "Lejoni aplikacionet të përdorin share API",
+"Allow links" => "Lejo lidhjet",
+"Allow users to share items to the public with links" => "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve",
+"Allow public uploads" => "Lejo ngarkimin publik",
+"Allow users to enable others to upload into their publicly shared folders" => "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike",
+"Allow resharing" => "Lejo ri-ndarjen",
+"Allow users to share items shared with them again" => "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë",
+"Allow users to share with anyone" => "Lejo përdoruesit të ndajnë me cilindo",
+"Allow users to only share with users in their groups" => "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup",
+"Security" => "Siguria",
+"Enforce HTTPS" => "Detyro HTTPS",
+"Log" => "Historik aktiviteti",
+"Log level" => "Niveli i Historikut",
+"More" => "Më tepër",
+"Version" => "Versioni",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Zhvilluar nga <a href=\"http://ownCloud.org/contact\" target=\"_blank\">Komuniteti OwnCloud</a>, gjithashtu <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> është licensuar me anë të <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
+"Add your App" => "Shtoni apliakcionin tuaj",
+"More Apps" => "Apliakcione të tjera",
+"Select an App" => "Zgjidhni një Aplikacion",
+"See application page at apps.owncloud.com" => "Shihni faqen e aplikacionit tek apps.owncloud.com",
+"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensuar nga <span class=\"author\"></span>",
+"User Documentation" => "Dokumentacion përdoruesi",
+"Administrator Documentation" => "Dokumentacion administratori",
+"Online Documentation" => "Dokumentacion online",
+"Forum" => "Forumi",
+"Bugtracker" => "Bugtracker - ndjekja e problemeve",
+"Commercial Support" => "Suport komercial",
+"Get the apps to sync your files" => "Bëni që aplikacionet të sinkronizojnë skedarët tuaj",
+"Show First Run Wizard again" => "Rishfaq përsëri fazat për hapjen e herës së parë",
+"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Ju keni përdorur <strong>%s</strong> nga <strong>%s</strong> të mundshme ",
+"Password" => "Fjalëkalim",
+"Your password was changed" => "fjalëkalimi juaj u ndryshua",
+"Unable to change your password" => "Nuk është e mundur të ndryshohet fjalëkalimi",
+"Current password" => "Fjalëkalimi aktual",
+"New password" => "Fjalëkalimi i ri",
+"Change password" => "Ndrysho fjalëkalimin",
+"Email" => "Email",
+"Your email address" => "Adresa juaj email",
+"Fill in an email address to enable password recovery" => "Jepni një adresë email për të aktivizuar rigjetjen e fjalëkalimit",
+"Language" => "Gjuha",
+"Help translate" => "Ndihmoni në përkthim",
+"WebDAV" => "WebDAV",
+"Login Name" => "Emri i Përdoruesit",
+"Create" => "Krijo",
+"Admin Recovery Password" => "Rigjetja e fjalëkalimit të Admin",
+"Enter the recovery password in order to recover the users files during password change" => "Jepni fjalëkalimin e rigjetjes për të rigjetur skedarët e përdoruesit gjatë ndryshimit të fjalëkalimit",
+"Default Storage" => "Vendruajtje e paracaktuar/Default Storage",
+"Unlimited" => "E pakufizuar",
+"Other" => "Tjetër",
+"Username" => "Përdoruesi",
+"Storage" => "Vendruajtja/Storage",
+"set new password" => "vendos fjalëkalim të ri",
+"Default" => "Paracaktuar"
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php
index f667a54781f..b521ad7ce54 100644
--- a/settings/l10n/sr.php
+++ b/settings/l10n/sr.php
@@ -2,7 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Грешка приликом учитавања списка из Складишта Програма",
"Authentication error" => "Грешка при провери идентитета",
-"Unable to change display name" => "Не могу да променим име за приказ",
"Group already exists" => "Група већ постоји",
"Unable to add group" => "Не могу да додам групу",
"Email saved" => "Е-порука сачувана",
@@ -81,7 +80,6 @@ $TRANSLATIONS = array(
"Current password" => "Тренутна лозинка",
"New password" => "Нова лозинка",
"Change password" => "Измени лозинку",
-"Display Name" => "Име за приказ",
"Email" => "Е-пошта",
"Your email address" => "Ваша адреса е-поште",
"Fill in an email address to enable password recovery" => "Ун",
@@ -96,7 +94,6 @@ $TRANSLATIONS = array(
"Other" => "Друго",
"Username" => "Корисничко име",
"Storage" => "Складиште",
-"change display name" => "промени име за приказ",
"set new password" => "постави нову лозинку",
"Default" => "Подразумевано"
);
diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php
index 4f8ad376db7..9f83a18373b 100644
--- a/settings/l10n/sv.php
+++ b/settings/l10n/sv.php
@@ -2,8 +2,7 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Kan inte ladda listan från App Store",
"Authentication error" => "Fel vid autentisering",
-"Your display name has been changed." => "Ditt visningsnamn har ändrats.",
-"Unable to change display name" => "Kan inte ändra visningsnamn",
+"Unable to change full name" => "Kunde inte ändra hela namnet",
"Group already exists" => "Gruppen finns redan",
"Unable to add group" => "Kan inte lägga till grupp",
"Email saved" => "E-post sparad",
@@ -46,6 +45,7 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Ett giltigt användarnamn måste anges",
"Error creating user" => "Fel vid skapande av användare",
"A valid password must be provided" => "Ett giltigt lösenord måste anges",
+"Warning: Home directory for user \"{user}\" already exists" => "Varning: Hem katalogen för varje användare \"{användare}\" finns redan",
"__language_name__" => "__language_name__",
"Security Warning" => "Säkerhetsvarning",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.",
@@ -55,13 +55,12 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.",
"Locale not working" => "Locale fungerar inte",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s.",
"Internet connection not working" => "Internetförbindelsen fungerar inte",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http.",
-"Use systems cron service to call the cron.php file once a minute." => "Använd system-tjänsten cron för att anropa cron.php varje minut.",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Använd systemets cron service att ropa på cron.php filen varje 15 minuter.",
"Sharing" => "Dela",
"Enable Share API" => "Aktivera delat API",
"Allow apps to use the Share API" => "Tillåt applikationer att använda delat API",
@@ -73,6 +72,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dem",
"Allow users to share with anyone" => "Tillåt delning med alla",
"Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper",
+"Allow mail notification" => "Tillåt e-post notifikation",
+"Allow user to send mail notification for shared files" => "Tillåt användare att skicka e-port notifikationer för delade filer",
"Security" => "Säkerhet",
"Enforce HTTPS" => "Kräv HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.",
@@ -103,7 +104,7 @@ $TRANSLATIONS = array(
"Current password" => "Nuvarande lösenord",
"New password" => "Nytt lösenord",
"Change password" => "Ändra lösenord",
-"Display Name" => "Visningsnamn",
+"Full Name" => "Hela namnet",
"Email" => "E-post",
"Your email address" => "Din e-postadress",
"Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord",
@@ -117,9 +118,8 @@ $TRANSLATIONS = array(
"Language" => "Språk",
"Help translate" => "Hjälp att översätta",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Använd denna adress för att <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">komma åt dina filer via WebDAV</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Använd denna adress till <a href=\"%s\" target=\"_blank\">nå dina Filer via WebDAV</a>",
"Encryption" => "Kryptering",
-"The encryption app is no longer enabled, decrypt all your file" => "Appen för kryptering är inte längre aktiverad, dekryptera alla dina filer",
"Log-in password" => "Inloggningslösenord",
"Decrypt all Files" => "Dekryptera alla filer",
"Login Name" => "Inloggningsnamn",
@@ -131,7 +131,7 @@ $TRANSLATIONS = array(
"Other" => "Annat",
"Username" => "Användarnamn",
"Storage" => "Lagring",
-"change display name" => "ändra visningsnamn",
+"change full name" => "ändra hela namnet",
"set new password" => "ange nytt lösenord",
"Default" => "Förvald"
);
diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php
index 90042342559..60e53da3231 100644
--- a/settings/l10n/th_TH.php
+++ b/settings/l10n/th_TH.php
@@ -67,7 +67,6 @@ $TRANSLATIONS = array(
"Current password" => "รหัสผ่านปัจจุบัน",
"New password" => "รหัสผ่านใหม่",
"Change password" => "เปลี่ยนรหัสผ่าน",
-"Display Name" => "ชื่อที่ต้องการแสดง",
"Email" => "อีเมล",
"Your email address" => "ที่อยู่อีเมล์ของคุณ",
"Fill in an email address to enable password recovery" => "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้",
@@ -83,7 +82,6 @@ $TRANSLATIONS = array(
"Other" => "อื่นๆ",
"Username" => "ชื่อผู้ใช้งาน",
"Storage" => "พื้นที่จัดเก็บข้อมูล",
-"change display name" => "เปลี่ยนชื่อที่ต้องการให้แสดง",
"set new password" => "ตั้งค่ารหัสผ่านใหม่",
"Default" => "ค่าเริ่มต้น"
);
diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php
index 1f4ce98f555..211b87d79d5 100644
--- a/settings/l10n/tr.php
+++ b/settings/l10n/tr.php
@@ -2,12 +2,12 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "App Store'dan liste yüklenemiyor",
"Authentication error" => "Kimlik doğrulama hatası",
-"Your display name has been changed." => "Görüntülenen isminiz değiştirildi.",
-"Unable to change display name" => "Ekran adı değiştirilemiyor",
+"Your full name has been changed." => "Tam adınız değiştirildi.",
+"Unable to change full name" => "Tam adınız değiştirilirken hata",
"Group already exists" => "Grup zaten mevcut",
"Unable to add group" => "Gruba eklenemiyor",
-"Email saved" => "Eposta kaydedildi",
-"Invalid email" => "Geçersiz eposta",
+"Email saved" => "E-posta kaydedildi",
+"Invalid email" => "Geçersiz e-posta",
"Unable to delete group" => "Grup silinemiyor",
"Unable to delete user" => "Kullanıcı silinemiyor",
"Language changed" => "Dil değiştirildi",
@@ -16,8 +16,14 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor",
"Unable to remove user from group %s" => "%s grubundan kullanıcı kaldırılamıyor",
"Couldn't update app." => "Uygulama güncellenemedi.",
+"Wrong password" => "Hatalı parola",
+"No user supplied" => "Kullanıcı girilmedi",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "Lütfen bir yönetici kurtarma parolası girin, aksi takdirde tüm kullanıcı verisi kaybedilecek",
+"Wrong admin recovery password. Please check the password and try again." => "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.",
+"Unable to change password" => "Parola değiştirilemiyor",
"Update to {appversion}" => "{appversion} Güncelle",
-"Disable" => "Etkin değil",
+"Disable" => "Devre dışı bırak",
"Enable" => "Etkinleştir",
"Please wait...." => "Lütfen bekleyin....",
"Error while disabling app" => "Uygulama devre dışı bırakılırken hata",
@@ -27,6 +33,7 @@ $TRANSLATIONS = array(
"Error" => "Hata",
"Update" => "Güncelleme",
"Updated" => "Güncellendi",
+"Select a profile picture" => "Bir profil fotoğrafı seçin",
"Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.",
"Saving..." => "Kaydediliyor...",
"deleted" => "silindi",
@@ -39,46 +46,59 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı",
"Error creating user" => "Kullanıcı oluşturulurken hata",
"A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı",
+"Warning: Home directory for user \"{user}\" already exists" => "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut",
"__language_name__" => "Türkçe",
-"Security Warning" => "Güvenlik Uyarisi",
+"Everything (fatal issues, errors, warnings, info, debug)" => "Her şey (Ölümcül konular, hatalar, uyarılar, bilgi, hata ayıklama)",
+"Info, warnings, errors and fatal issues" => "Bilgi, uyarılar, hatalar ve ölümcül konular",
+"Warnings, errors and fatal issues" => "Uyarılar, hatalar ve ölümcül konular",
+"Errors and fatal issues" => "Hatalar ve ölümcül konular",
+"Fatal issues only" => "Sadece ölümcül konular",
+"Security Warning" => "Güvenlik Uyarısı",
+"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.",
"Setup Warning" => "Kurulum Uyarısı",
"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.",
"Please double check the <a href=\"%s\">installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> tekrar kontrol edin.",
"Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.",
+"Your PHP version is outdated" => "PHP sürümünüz eski",
+"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır.",
"Locale not working" => "Locale çalışmıyor.",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz.",
+"System locale can not be set to a one which supports UTF-8." => "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı",
+"This means that there might be problems with certain characters in file names." => "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.",
+"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.",
"Internet connection not working" => "İnternet bağlantısı çalışmıyor",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.",
"Cron" => "Cron",
"Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "Http üzerinden dakikada bir çalıştırılmak üzere, cron.php bir webcron hizmetine kaydedildi.",
-"Use systems cron service to call the cron.php file once a minute." => "cron.php dosyasını dakikada bir çağırmak için sistemin cron hizmetini kullan. ",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.",
+"Use systems cron service to call the cron.php file every 15 minutes." => "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.",
"Sharing" => "Paylaşım",
-"Enable Share API" => "Paylaşım API'sini etkinleştir.",
+"Enable Share API" => "Paylaşım API'sini etkinleştir",
"Allow apps to use the Share API" => "Uygulamaların paylaşım API'sini kullanmasına izin ver",
-"Allow links" => "Bağlantıları izin ver.",
-"Allow users to share items to the public with links" => "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver",
+"Allow links" => "Bağlantılara izin ver",
+"Allow users to share items to the public with links" => "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver",
"Allow public uploads" => "Herkes tarafından yüklemeye izin ver",
-"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver.",
+"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver",
"Allow resharing" => "Paylaşıma izin ver",
-"Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver",
-"Allow users to share with anyone" => "Kullanıcıların herşeyi paylaşmalarına izin ver",
+"Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver",
+"Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver",
"Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver",
+"Allow mail notification" => "Posta bilgilendirmesine izin ver",
+"Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver",
"Security" => "Güvenlik",
"Enforce HTTPS" => "HTTPS bağlantısına zorla",
-"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.",
-"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın.",
-"Log" => "Kayıtlar",
+"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.",
+"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın.",
+"Log" => "Günlük",
"Log level" => "Günlük seviyesi",
"More" => "Daha fazla",
"Less" => "Az",
"Version" => "Sürüm",
-"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Geliştirilen Taraf<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is altında lisanslanmıştır <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.",
-"Add your App" => "Uygulamanı Ekle",
-"More Apps" => "Daha fazla uygulama",
-"Select an App" => "Bir uygulama seçin",
+"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud topluluğu</a> tarafından geliştirilmiş olup, <a href=\"https://github.com/owncloud\" target=\"_blank\">kaynak kodu</a>, <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> altında lisanslanmıştır.",
+"Add your App" => "Uygulamanızı Ekleyin",
+"More Apps" => "Daha Fazla Uygulama",
+"Select an App" => "Bir Uygulama Seçin",
"See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ",
"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisanslayan <span class=\"author\"></span>",
"User Documentation" => "Kullanıcı Belgelendirmesi",
@@ -87,38 +107,46 @@ $TRANSLATIONS = array(
"Forum" => "Forum",
"Bugtracker" => "Hata Takip Sistemi",
"Commercial Support" => "Ticari Destek",
-"Get the apps to sync your files" => "Dosyalarınızı senkronize etmek için uygulamayı indirin",
+"Get the apps to sync your files" => "Dosyalarınızı eşitlemek için uygulamayı indirin",
"Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster",
-"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Kullandığınız:<strong>%s</strong> seçilebilecekler: <strong>%s</strong>",
+"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>",
"Password" => "Parola",
"Your password was changed" => "Şifreniz değiştirildi",
"Unable to change your password" => "Parolanız değiştirilemiyor",
"Current password" => "Mevcut parola",
"New password" => "Yeni parola",
"Change password" => "Parola değiştir",
-"Display Name" => "Ekran Adı",
-"Email" => "Eposta",
-"Your email address" => "Eposta adresiniz",
-"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin",
+"Full Name" => "Tam Adı",
+"Email" => "E-posta",
+"Your email address" => "E-posta adresiniz",
+"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin",
"Profile picture" => "Profil resmi",
+"Upload new" => "Yeni yükle",
+"Select new from Files" => "Dosyalardan seç",
+"Remove image" => "Resmi kaldır",
+"Either png or jpg. Ideally square but you will be able to crop it." => "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz.",
+"Your avatar is provided by your original account." => "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor.",
+"Abort" => "İptal Et",
+"Choose as profile image" => "Profil resmi olarak seç",
"Language" => "Dil",
"Help translate" => "Çevirilere yardım edin",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => " <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">Dosyalarınıza WebDAV üzerinen erişme </a> için bu adresi kullanın",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s\" target=\"_blank\">Dosyalarınıza WebDAV aracılığıyla erişmek için</a> bu adresi kullanın",
"Encryption" => "Şifreleme",
-"The encryption app is no longer enabled, decrypt all your file" => "Şifreleme uygulaması artık etkin değil, tüm dosyanın şifresini çöz",
+"The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın",
"Log-in password" => "Oturum açma parolası",
-"Decrypt all Files" => "Tüm dosyaların şifresini çözme",
+"Decrypt all Files" => "Tüm dosyaların şifresini çöz",
"Login Name" => "Giriş Adı",
"Create" => "Oluştur",
-"Admin Recovery Password" => "Yönetici kurtarma parolası",
+"Admin Recovery Password" => "Yönetici Kurtarma Parolası",
"Enter the recovery password in order to recover the users files during password change" => "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için bir kurtarma paroalsı girin",
"Default Storage" => "Varsayılan Depolama",
+"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")",
"Unlimited" => "Limitsiz",
"Other" => "Diğer",
"Username" => "Kullanıcı Adı",
"Storage" => "Depolama",
-"change display name" => "ekran adını değiştir",
+"change full name" => "tam adı değiştir",
"set new password" => "yeni parola belirle",
"Default" => "Varsayılan"
);
diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php
index df9b7e988c1..e0e5e740058 100644
--- a/settings/l10n/ug.php
+++ b/settings/l10n/ug.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى",
"Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى",
-"Your display name has been changed." => "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى.",
-"Unable to change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرتكىلى بولمايدۇ",
"Group already exists" => "گۇرۇپپا مەۋجۇت",
"Unable to add group" => "گۇرۇپپا قوشقىلى بولمايدۇ",
"Email saved" => "تورخەت ساقلاندى",
@@ -61,7 +59,6 @@ $TRANSLATIONS = array(
"Current password" => "نۆۋەتتىكى ئىم",
"New password" => "يېڭى ئىم",
"Change password" => "ئىم ئۆزگەرت",
-"Display Name" => "كۆرسىتىش ئىسمى",
"Email" => "تورخەت",
"Your email address" => "تورخەت ئادرېسىڭىز",
"Fill in an email address to enable password recovery" => "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ",
@@ -76,7 +73,6 @@ $TRANSLATIONS = array(
"Other" => "باشقا",
"Username" => "ئىشلەتكۈچى ئاتى",
"Storage" => "ساقلىغۇچ",
-"change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت",
"set new password" => "يېڭى ئىم تەڭشە",
"Default" => "كۆڭۈلدىكى"
);
diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php
index adb46e3ee84..353e4f19882 100644
--- a/settings/l10n/uk.php
+++ b/settings/l10n/uk.php
@@ -2,7 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Не вдалося завантажити список з App Store",
"Authentication error" => "Помилка автентифікації",
-"Unable to change display name" => "Не вдалося змінити ім'я",
"Group already exists" => "Група вже існує",
"Unable to add group" => "Не вдалося додати групу",
"Email saved" => "Адресу збережено",
@@ -82,7 +81,6 @@ $TRANSLATIONS = array(
"Current password" => "Поточний пароль",
"New password" => "Новий пароль",
"Change password" => "Змінити пароль",
-"Display Name" => "Показати Ім'я",
"Email" => "Ел.пошта",
"Your email address" => "Ваша адреса електронної пошти",
"Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю",
@@ -97,7 +95,6 @@ $TRANSLATIONS = array(
"Other" => "Інше",
"Username" => "Ім'я користувача",
"Storage" => "Сховище",
-"change display name" => "змінити ім'я",
"set new password" => "встановити новий пароль",
"Default" => "За замовчуванням"
);
diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php
index 71dbd198251..e2e1364902c 100644
--- a/settings/l10n/vi.php
+++ b/settings/l10n/vi.php
@@ -2,7 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "Không thể tải danh sách ứng dụng từ App Store",
"Authentication error" => "Lỗi xác thực",
-"Unable to change display name" => "Không thể thay đổi tên hiển thị",
"Group already exists" => "Nhóm đã tồn tại",
"Unable to add group" => "Không thể thêm nhóm",
"Email saved" => "Lưu email",
@@ -68,7 +67,6 @@ $TRANSLATIONS = array(
"Current password" => "Mật khẩu cũ",
"New password" => "Mật khẩu mới",
"Change password" => "Đổi mật khẩu",
-"Display Name" => "Tên hiển thị",
"Email" => "Email",
"Your email address" => "Email của bạn",
"Fill in an email address to enable password recovery" => "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu",
@@ -83,7 +81,6 @@ $TRANSLATIONS = array(
"Other" => "Khác",
"Username" => "Tên đăng nhập",
"Storage" => "Bộ nhớ",
-"change display name" => "Thay đổi tên hiển thị",
"set new password" => "đặt mật khẩu mới",
"Default" => "Mặc định"
);
diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php
index 659c5bea1a6..4733a9e429a 100644
--- a/settings/l10n/zh_CN.php
+++ b/settings/l10n/zh_CN.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "无法从应用商店载入列表",
"Authentication error" => "认证出错",
-"Your display name has been changed." => "您的显示名字已经改变",
-"Unable to change display name" => "无法修改显示名称",
"Group already exists" => "已存在该组",
"Unable to add group" => "无法添加组",
"Email saved" => "电子邮件已保存",
@@ -48,13 +46,10 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "模块'文件信息'丢失",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.",
"Locale not working" => "本地化无法工作",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符会引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s",
"Internet connection not working" => "因特网连接无法工作",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.",
"Cron" => "计划任务",
"Execute one task with each page loaded" => "每个页面加载后执行一个任务",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。",
-"Use systems cron service to call the cron.php file once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件",
"Sharing" => "共享",
"Enable Share API" => "启用共享API",
"Allow apps to use the Share API" => "允许应用软件使用共享API",
@@ -96,7 +91,6 @@ $TRANSLATIONS = array(
"Current password" => "当前密码",
"New password" => "新密码",
"Change password" => "修改密码",
-"Display Name" => "显示名称",
"Email" => "电子邮件",
"Your email address" => "您的电子邮件",
"Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能",
@@ -104,9 +98,7 @@ $TRANSLATIONS = array(
"Language" => "语言",
"Help translate" => "帮助翻译",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "使用该链接 <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">通过WebDAV访问你的文件</a>",
"Encryption" => "加密",
-"The encryption app is no longer enabled, decrypt all your file" => "加密 app 未启用,将解密您所有文件",
"Log-in password" => "登录密码",
"Decrypt all Files" => "解密所有文件",
"Login Name" => "登录名称",
@@ -118,7 +110,6 @@ $TRANSLATIONS = array(
"Other" => "其它",
"Username" => "用户名",
"Storage" => "存储",
-"change display name" => "修改显示名称",
"set new password" => "设置新密码",
"Default" => "默认"
);
diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php
index add2f1fe002..4f7d6ff9cf3 100644
--- a/settings/l10n/zh_TW.php
+++ b/settings/l10n/zh_TW.php
@@ -2,8 +2,6 @@
$TRANSLATIONS = array(
"Unable to load list from App Store" => "無法從 App Store 讀取清單",
"Authentication error" => "認證錯誤",
-"Your display name has been changed." => "已更改顯示名稱",
-"Unable to change display name" => "無法更改顯示名稱",
"Group already exists" => "群組已存在",
"Unable to add group" => "群組增加失敗",
"Email saved" => "Email已儲存",
@@ -16,6 +14,12 @@ $TRANSLATIONS = array(
"Unable to add user to group %s" => "使用者加入群組 %s 錯誤",
"Unable to remove user from group %s" => "使用者移出群組 %s 錯誤",
"Couldn't update app." => "無法更新應用程式",
+"Wrong password" => "密碼錯誤",
+"No user supplied" => "未提供使用者",
+"Please provide an admin recovery password, otherwise all user data will be lost" => "請提供管理者還原密碼,否則會遺失所有使用者資料",
+"Wrong admin recovery password. Please check the password and try again." => "錯誤的管理者還原密碼",
+"Back-end doesn't support password change, but the users encryption key was successfully updated." => "後端不支援變更密碼,但成功更新使用者的加密金鑰",
+"Unable to change password" => "無法修改密碼",
"Update to {appversion}" => "更新至 {appversion}",
"Disable" => "停用",
"Enable" => "啟用",
@@ -27,6 +31,7 @@ $TRANSLATIONS = array(
"Error" => "錯誤",
"Update" => "更新",
"Updated" => "已更新",
+"Select a profile picture" => "選擇大頭貼",
"Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。",
"Saving..." => "儲存中...",
"deleted" => "已刪除",
@@ -39,6 +44,7 @@ $TRANSLATIONS = array(
"A valid username must be provided" => "必須提供一個有效的用戶名",
"Error creating user" => "建立用戶時出現錯誤",
"A valid password must be provided" => "一定要提供一個有效的密碼",
+"Warning: Home directory for user \"{user}\" already exists" => "警告:使用者 {user} 的家目錄已經存在",
"__language_name__" => "__language_name__",
"Security Warning" => "安全性警告",
"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 webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。",
@@ -48,13 +54,12 @@ $TRANSLATIONS = array(
"Module 'fileinfo' missing" => "遺失 'fileinfo' 模組",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。",
"Locale not working" => "語系無法運作",
-"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。",
"Internet connection not working" => "無網際網路存取",
"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。",
"Cron" => "Cron",
"Execute one task with each page loaded" => "當頁面載入時,執行",
-"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。",
-"Use systems cron service to call the cron.php file once a minute." => "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。",
+"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php",
+"Use systems cron service to call the cron.php file every 15 minutes." => "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次",
"Sharing" => "分享",
"Enable Share API" => "啟用分享 API",
"Allow apps to use the Share API" => "允許 apps 使用分享 API",
@@ -66,6 +71,8 @@ $TRANSLATIONS = array(
"Allow users to share items shared with them again" => "允許使用者分享其他使用者分享給他的檔案",
"Allow users to share with anyone" => "允許使用者與任何人分享檔案",
"Allow users to only share with users in their groups" => "僅允許使用者在群組內分享",
+"Allow mail notification" => "允許郵件通知",
+"Allow user to send mail notification for shared files" => "允許使用者分享檔案時寄出通知郵件",
"Security" => "安全性",
"Enforce HTTPS" => "強制啟用 HTTPS",
"Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s",
@@ -96,17 +103,21 @@ $TRANSLATIONS = array(
"Current password" => "目前密碼",
"New password" => "新密碼",
"Change password" => "變更密碼",
-"Display Name" => "顯示名稱",
"Email" => "信箱",
"Your email address" => "您的電子郵件信箱",
"Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼",
"Profile picture" => "個人資料照片",
+"Upload new" => "上傳新的",
+"Select new from Files" => "從已上傳的檔案中選一個",
+"Remove image" => "移除圖片",
+"Either png or jpg. Ideally square but you will be able to crop it." => "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它",
+"Abort" => "中斷",
+"Choose as profile image" => "設定為大頭貼",
"Language" => "語言",
"Help translate" => "幫助翻譯",
"WebDAV" => "WebDAV",
-"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "以上的 WebDAV 位址可以讓您<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">透過 WebDAV 協定存取檔案</a>",
+"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "使用這個地址<a href=\"%s\" target=\"_blank\">來透過 WebDAV 存取檔案</a>",
"Encryption" => "加密",
-"The encryption app is no longer enabled, decrypt all your file" => "加密應用程式已經停用,請您解密您所有的檔案",
"Log-in password" => "登入密碼",
"Decrypt all Files" => "解密所有檔案",
"Login Name" => "登入名稱",
@@ -118,7 +129,6 @@ $TRANSLATIONS = array(
"Other" => "其他",
"Username" => "使用者名稱",
"Storage" => "儲存區",
-"change display name" => "修改顯示名稱",
"set new password" => "設定新密碼",
"Default" => "預設"
);
diff --git a/settings/personal.php b/settings/personal.php
index 670e18e20ef..cf1a496bdf0 100644
--- a/settings/personal.php
+++ b/settings/personal.php
@@ -13,6 +13,8 @@ $defaults = new OC_Defaults(); // initialize themable default strings and urls
// Highlight navigation entry
OC_Util::addScript( 'settings', 'personal' );
OC_Util::addStyle( 'settings', 'settings' );
+OC_Util::addScript( '3rdparty', 'strengthify/jquery.strengthify' );
+OC_Util::addStyle( '3rdparty', 'strengthify/strengthify' );
OC_Util::addScript( '3rdparty', 'chosen/chosen.jquery.min' );
OC_Util::addStyle( '3rdparty', 'chosen' );
\OC_Util::addScript('files', 'jquery.fileupload');
@@ -20,6 +22,8 @@ if (\OC_Config::getValue('enable_avatars', true) === true) {
\OC_Util::addScript('3rdparty/Jcrop', 'jquery.Jcrop.min');
\OC_Util::addStyle('3rdparty/Jcrop', 'jquery.Jcrop.min');
}
+
+// Highlight navigation entry
OC_App::setActiveNavigationEntry( 'personal' );
$storageInfo=OC_Helper::getStorageInfo('/');
@@ -90,6 +94,7 @@ $tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC
$tmpl->assign('displayName', OC_User::getDisplayName());
$tmpl->assign('enableDecryptAll' , $enableDecryptAll);
$tmpl->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true));
+$tmpl->assign('avatarChangeSupported', OC_User::canUserChangeAvatar(OC_User::getUser()));
$forms=OC_App::getForms('personal');
$tmpl->assign('forms', array());
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 6450cd62d95..0eabffb9316 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -4,10 +4,31 @@
* See the COPYING-README file.
*/
$levels = array('Debug', 'Info', 'Warning', 'Error', 'Fatal');
+$levelLabels = array(
+ $l->t( 'Everything (fatal issues, errors, warnings, info, debug)' ),
+ $l->t( 'Info, warnings, errors and fatal issues' ),
+ $l->t( 'Warnings, errors and fatal issues' ),
+ $l->t( 'Errors and fatal issues' ),
+ $l->t( 'Fatal issues only' ),
+);
?>
<?php
+// is ssl working ?
+if (!$_['isConnectedViaHTTPS']) {
+ ?>
+<fieldset class="personalblock">
+ <h2><?php p($l->t('Security Warning'));?></h2>
+
+ <span class="securitywarning">
+ <?php p($l->t('You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead.', $theme->getTitle())); ?>
+ </span>
+
+</fieldset>
+<?php
+}
+
// is htaccess working ?
if (!$_['htaccessworking']) {
?>
@@ -30,7 +51,7 @@ if (!$_['isWebDavWorking']) {
<span class="securitywarning">
<?php p($l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.')); ?>
- <?php print_unescaped($l->t('Please double check the <a href="%s">installation guides</a>.', $theme->getDocBaseUrl().'/server/5.0/admin_manual/installation.html')); ?>
+ <?php print_unescaped($l->t('Please double check the <a href="%s">installation guides</a>.', link_to_docs('admin-install'))); ?>
</span>
</fieldset>
@@ -51,16 +72,38 @@ if (!$_['has_fileinfo']) {
<?php
}
+// is PHP at least at 5.3.8?
+if ($_['old_php']) {
+ ?>
+<fieldset class="personalblock">
+ <h2><?php p($l->t('Your PHP version is outdated'));?></h2>
+
+ <span class="connectionwarning">
+ <?php p($l->t('Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly.')); ?>
+ </span>
+
+</fieldset>
+<?php
+}
+
// is locale working ?
-if (!$_['islocaleworking']) {
+if (!$_['isLocaleWorking']) {
?>
<fieldset class="personalblock">
<h2><?php p($l->t('Locale not working'));?></h2>
<span class="connectionwarning">
<?php
- $locales = 'en_US.UTF-8/en_US.UTF8';
- p($l->t('System locale can\'t be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s.', array($locales, $locales)));
+ $locales = 'en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8';
+ p($l->t('System locale can not be set to a one which supports UTF-8.'));
+ ?>
+ <br>
+ <?php
+ p($l->t('This means that there might be problems with certain characters in file names.'));
+ ?>
+ <br>
+ <?php
+ p($l->t('We strongly suggest to install the required packages on your system to support one of the following locales: %s.', array($locales)));
?>
</span>
@@ -104,7 +147,7 @@ if (!$_['internetconnectionworking']) {
print_unescaped('checked="checked"');
} ?>>
<label for="backgroundjobs_webcron">Webcron</label><br/>
- <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php once a minute over http.")); ?></em>
+ <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 15 minutes over http.")); ?></em>
</p>
<p>
<input type="radio" name="mode" value="cron"
@@ -112,13 +155,13 @@ if (!$_['internetconnectionworking']) {
print_unescaped('checked="checked"');
} ?>>
<label for="backgroundjobs_cron">Cron</label><br/>
- <em><?php p($l->t("Use systems cron service to call the cron.php file once a minute.")); ?></em>
+ <em><?php p($l->t("Use systems cron service to call the cron.php file every 15 minutes.")); ?></em>
</p>
</fieldset>
<fieldset class="personalblock" id="shareAPI">
<h2><?php p($l->t('Sharing'));?></h2>
- <table class="shareAPI nostyle">
+ <table class="shareAPI">
<tr>
<td id="enable">
<input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled"
@@ -176,10 +219,10 @@ if (!$_['internetconnectionworking']) {
<fieldset class="personalblock" id="security">
<h2><?php p($l->t('Security'));?></h2>
- <table class="nostyle">
+ <table>
<tr>
<td id="enable">
- <input type="checkbox" name="forcessl" id="enforceHTTPSEnabled"
+ <input type="checkbox" name="forcessl" id="forcessl"
<?php if ($_['enforceHTTPSEnabled']) {
print_unescaped('checked="checked" ');
print_unescaped('value="false"');
@@ -210,14 +253,15 @@ if (!$_['internetconnectionworking']) {
<fieldset class="personalblock">
<h2><?php p($l->t('Log'));?></h2>
<?php p($l->t('Log level'));?> <select name='loglevel' id='loglevel'>
- <option value='<?php p($_['loglevel'])?>'><?php p($levels[$_['loglevel']])?></option>
- <?php for ($i = 0; $i < 5; $i++):
- if ($i !== $_['loglevel']):?>
- <option value='<?php p($i)?>'><?php p($levels[$i])?></option>
- <?php endif;
-endfor;?>
+<?php for ($i = 0; $i < 5; $i++):
+ $selected = '';
+ if ($i == $_['loglevel']):
+ $selected = 'selected="selected"';
+ endif; ?>
+ <option value='<?php p($i)?>' <?php p($selected) ?>><?php p($levelLabels[$i])?></option>
+<?php endfor;?>
</select>
- <table id="log">
+ <table id="log" class="grid">
<?php foreach ($_['entries'] as $entry): ?>
<tr>
<td>
@@ -229,7 +273,7 @@ endfor;?>
<td>
<?php p($entry->message);?>
</td>
- <td>
+ <td class="date">
<?php if(is_int($entry->time)){
p(OC_Util::formatDate($entry->time));
} else {
@@ -248,7 +292,7 @@ endfor;?>
<fieldset class="personalblock">
<h2><?php p($l->t('Version'));?></h2>
- <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getVersionString()); ?>
+ <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?>
<?php if (OC_Util::getEditionString() === ''): ?>
<p>
<?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?>
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 47227d6ea0f..1518b48b979 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -44,6 +44,8 @@ if($_['passwordChangeSupported']) {
placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" />
<input type="checkbox" id="personal-show" name="show" /><label for="personal-show"></label>
<input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" />
+ <br/>
+ <div class="strengthify-wrapper"></div>
</fieldset>
</form>
<?php
@@ -55,7 +57,7 @@ if($_['displayNameChangeSupported']) {
?>
<form id="displaynameform">
<fieldset class="personalblock">
- <h2><?php echo $l->t('Display Name');?></h2>
+ <h2><?php echo $l->t('Full Name');?></h2>
<input type="text" id="displayName" name="displayName" value="<?php p($_['displayName'])?>" />
<span class="msg"></span>
<input type="hidden" id="oldDisplayName" name="oldDisplayName" value="<?php p($_['displayName'])?>" />
@@ -87,11 +89,15 @@ if($_['passwordChangeSupported']) {
<div id="displayavatar">
<div class="avatardiv"></div><br>
<div class="warning hidden"></div>
+ <?php if ($_['avatarChangeSupported']): ?>
<div class="inlineblock button" id="uploadavatarbutton"><?php p($l->t('Upload new')); ?></div>
<input type="file" class="hidden" name="files[]" id="uploadavatar">
<div class="inlineblock button" id="selectavatar"><?php p($l->t('Select new from Files')); ?></div>
<div class="inlineblock button" id="removeavatar"><?php p($l->t('Remove image')); ?></div><br>
<?php p($l->t('Either png or jpg. Ideally square but you will be able to crop it.')); ?>
+ <?php else: ?>
+ <?php p($l->t('Your avatar is provided by your original account.')); ?>
+ <?php endif; ?>
</div>
<div id="cropper" class="hidden">
<div class="inlineblock button" id="abortcropperbutton"><?php p($l->t('Abort')); ?></div>
@@ -104,19 +110,27 @@ if($_['passwordChangeSupported']) {
<form>
<fieldset class="personalblock">
<h2><?php p($l->t('Language'));?></h2>
- <select id="languageinput" class="chzen-select" name="lang" data-placeholder="<?php p($l->t('Language'));?>">
- <option value="<?php p($_['activelanguage']['code']);?>"><?php p($_['activelanguage']['name']);?></option>
- <?php foreach($_['commonlanguages'] as $language):?>
- <option value="<?php p($language['code']);?>"><?php p($language['name']);?></option>
- <?php endforeach;?>
- <optgroup label="––––––––––"><option class="languagedivider">-</option></optgroup>
- <?php foreach($_['languages'] as $language):?>
- <option value="<?php p($language['code']);?>"><?php p($language['name']);?></option>
- <?php endforeach;?>
+ <select id="languageinput" name="lang" data-placeholder="<?php p($l->t('Language'));?>">
+ <option value="<?php p($_['activelanguage']['code']);?>">
+ <?php p($_['activelanguage']['name']);?>
+ </option>
+ <?php foreach($_['commonlanguages'] as $language):?>
+ <option value="<?php p($language['code']);?>">
+ <?php p($language['name']);?>
+ </option>
+ <?php endforeach;?>
+ <optgroup label="––––––––––"></optgroup>
+ <?php foreach($_['languages'] as $language):?>
+ <option value="<?php p($language['code']);?>">
+ <?php p($language['name']);?>
+ </option>
+ <?php endforeach;?>
</select>
<?php if (OC_Util::getEditionString() === ''): ?>
<a href="https://www.transifex.com/projects/p/owncloud/team/<?php p($_['activelanguage']['code']);?>/"
- target="_blank"><em><?php p($l->t('Help translate'));?></em></a>
+ target="_blank">
+ <em><?php p($l->t('Help translate'));?></em>
+ </a>
<?php endif; ?>
</fieldset>
</form>
@@ -124,7 +138,7 @@ if($_['passwordChangeSupported']) {
<fieldset class="personalblock">
<h2><?php p($l->t('WebDAV'));?></h2>
<code><?php print_unescaped(OC_Helper::linkToRemote('webdav')); ?></code><br />
- <em><?php print_unescaped($l->t('Use this address to <a href="%s/server/5.0/user_manual/files/files.html" target="_blank">access your Files via WebDAV</a>', array($theme->getDocBaseUrl())));?></em>
+ <em><?php print_unescaped($l->t('Use this address to <a href="%s" target="_blank">access your Files via WebDAV</a>', array(link_to_docs('user-webdav'))));?></em>
</fieldset>
<?php foreach($_['forms'] as $form) {
@@ -137,7 +151,7 @@ if($_['passwordChangeSupported']) {
<h2>
<?php p( $l->t( 'Encryption' ) ); ?>
</h2>
- <?php p($l->t( "The encryption app is no longer enabled, decrypt all your file" )); ?>
+ <?php p($l->t( "The encryption app is no longer enabled, please decrypt all your files" )); ?>
<p>
<input
type="password"
@@ -159,7 +173,7 @@ if($_['passwordChangeSupported']) {
<fieldset class="personalblock">
<h2><?php p($l->t('Version'));?></h2>
- <strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getVersionString()); ?><br/>
+ <strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?><br />
<?php if (OC_Util::getEditionString() === ''): ?>
<?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?>
<?php endif; ?>
diff --git a/settings/templates/users.php b/settings/templates/users.php
index 747d052a7bd..aabda0fac2f 100644
--- a/settings/templates/users.php
+++ b/settings/templates/users.php
@@ -41,7 +41,7 @@ $_['subadmingroups'] = array_flip($items);
<div class="quota">
<span><?php p($l->t('Default Storage'));?></span>
<?php if((bool) $_['isadmin']): ?>
- <select class='quota'>
+ <select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>">
<option
<?php if($_['default_quota'] === 'none') print_unescaped('selected="selected"');?>
value='none'>
@@ -78,14 +78,14 @@ $_['subadmingroups'] = array_flip($items);
</div>
</div>
-<table class="hascontrols" data-groups="<?php p(json_encode($allGroups));?>">
+<table class="hascontrols grid" data-groups="<?php p(json_encode($allGroups));?>">
<thead>
<tr>
<?php if ($_['enableAvatars']): ?>
<th id='headerAvatar'></th>
<?php endif; ?>
<th id='headerName'><?php p($l->t('Username'))?></th>
- <th id="headerDisplayName"><?php p($l->t( 'Display Name' )); ?></th>
+ <th id="headerDisplayName"><?php p($l->t( 'Full Name' )); ?></th>
<th id="headerPassword"><?php p($l->t( 'Password' )); ?></th>
<th id="headerGroups"><?php p($l->t( 'Groups' )); ?></th>
<?php if(is_array($_['subadmins']) || $_['subadmins']): ?>
@@ -105,7 +105,7 @@ $_['subadmingroups'] = array_flip($items);
<td class="name"><?php p($user["name"]); ?></td>
<td class="displayName"><span><?php p($user["displayName"]); ?></span> <img class="svg action"
src="<?php p(image_path('core', 'actions/rename.svg'))?>"
- alt="<?php p($l->t("change display name"))?>" title="<?php p($l->t("change display name"))?>"/>
+ alt="<?php p($l->t("change full name"))?>" title="<?php p($l->t("change full name"))?>"/>
</td>
<td class="password"><span>●●●●●●●</span> <img class="svg action"
src="<?php print_unescaped(image_path('core', 'actions/rename.svg'))?>"
@@ -136,7 +136,7 @@ $_['subadmingroups'] = array_flip($items);
</td>
<?php endif;?>
<td class="quota">
- <select class='quota-user'>
+ <select class='quota-user' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>">
<option
<?php if($user['quota'] === 'default') print_unescaped('selected="selected"');?>
value='default'>