diff options
Diffstat (limited to 'settings')
67 files changed, 933 insertions, 359 deletions
diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php index b47a67c13bb..fb78cc89248 100644 --- a/settings/ajax/apps/ocs.php +++ b/settings/ajax/apps/ocs.php @@ -63,4 +63,3 @@ if(is_array($catagoryNames)) { } OCP\JSON::success(array('type' => 'external', 'data' => $apps)); - diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index b251fea504b..12d3b67037a 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -2,16 +2,15 @@ // Init owncloud require_once '../../lib/base.php'; + +// Check if we are a user OCP\JSON::callCheck(); +OC_JSON::checkLoggedIn(); $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $password = $_POST["password"]; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; -// Check if we are a user -OC_JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - $userstatus = null; if(OC_Group::inGroup(OC_User::getUser(), 'admin')) { $userstatus = 'admin'; @@ -19,8 +18,15 @@ if(OC_Group::inGroup(OC_User::getUser(), 'admin')) { if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } -if(OC_User::getUser() == $username && OC_User::checkPassword($username, $oldPassword)) { - $userstatus = 'user'; +if(OC_User::getUser() === $username) { + if (OC_User::checkPassword($username, $oldPassword)) + { + $userstatus = 'user'; + } else { + if (!OC_Util::isUserVerified()) { + $userstatus = null; + } + } } if(is_null($userstatus)) { @@ -28,6 +34,10 @@ if(is_null($userstatus)) { exit(); } +if($userstatus === 'admin' || $userstatus === 'subadmin') { + OC_JSON::verifyUser(); +} + // Return Success story if( OC_User::setPassword( $username, $password )) { OC_JSON::success(array("data" => array( "username" => $username ))); diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index 83733ac4d2d..431b449a811 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -3,14 +3,7 @@ // Init owncloud require_once '../../lib/base.php'; OCP\JSON::callCheck(); - -// Check if we are a user -if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )) { - OC_JSON::error(array("data" => array( "message" => $l->t("Authentication error") ))); - exit(); -} - -OCP\JSON::callCheck(); +OC_JSON::checkAdminUser(); $groupname = $_POST["groupname"]; diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php index bdf7e4983ac..b3e5c23de54 100644 --- a/settings/ajax/createuser.php +++ b/settings/ajax/createuser.php @@ -3,13 +3,7 @@ // Init owncloud require_once '../../lib/base.php'; OCP\JSON::callCheck(); - -// Check if we are a user -if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && !OC_SubAdmin::isSubAdmin(OC_User::getUser()))) { - OC_JSON::error(array("data" => array( "message" => "Authentication error" ))); - exit(); -} -OCP\JSON::callCheck(); +OC_JSON::checkSubAdminUser(); $isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false; diff --git a/settings/ajax/removeuser.php b/settings/ajax/removeuser.php index 6b11fa5c4fb..1e3cd2993b0 100644 --- a/settings/ajax/removeuser.php +++ b/settings/ajax/removeuser.php @@ -8,6 +8,11 @@ OCP\JSON::callCheck(); $username = $_POST["username"]; +// A user shouldn't be able to delete his own account +if(OC_User::getUser() === $username) { + exit; +} + if(!OC_Group::inGroup(OC_User::getUser(), 'admin') && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $l = OC_L10N::get('core'); OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); @@ -20,4 +25,4 @@ if( OC_User::deleteUser( $username )) { } else{ OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") ))); -} +}
\ No newline at end of file diff --git a/settings/apps.php b/settings/apps.php index e613814fe94..a1c1bf6aa53 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -29,45 +29,116 @@ OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "apps" ); OC_App::setActiveNavigationEntry( "core_apps" ); -$registeredApps=OC_App::getAllApps(); -$apps=array(); +$installedApps = OC_App::getAllApps(); -//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature -$blacklist=array('files');//we dont want to show configuration for these +//TODO which apps do we want to blacklist and how do we integrate blacklisting with the multi apps folder feature? -foreach($registeredApps as $app) { - if(array_search($app, $blacklist)===false) { +$blacklist = array('files');//we dont want to show configuration for these + +$appList = array(); + +foreach ( $installedApps as $app ) { + + if ( array_search( $app, $blacklist ) === false ) { + $info=OC_App::getAppInfo($app); + if (!isset($info['name'])) { + OC_Log::write('core', 'App id "'.$app.'" has no name in appinfo', OC_Log::ERROR); + continue; + } - $active=(OC_Appconfig::getValue($app, 'enabled', 'no')=='yes')?true:false; - $info['active']=$active; + + if ( OC_Appconfig::getValue( $app, 'enabled', 'no') == 'yes' ) { + + $active = true; + + } else { + + $active = false; + + } + + $info['active'] = $active; + if(isset($info['shipped']) and ($info['shipped']=='true')) { + $info['internal']=true; + $info['internallabel']='Internal App'; + }else{ + $info['internal']=false; + $info['internallabel']='3rd Party App'; + } - $info['preview']='trans.png'; - $info['version']=OC_App::getAppVersion($app); - $apps[]=$info; + + $info['preview'] = 'trans.png'; + + $info['version'] = OC_App::getAppVersion($app); + + $appList[] = $info; + } } -function app_sort($a, $b) { +$remoteApps = OC_App::getAppstoreApps(); + +if ( $remoteApps ) { + + // Remove duplicates + foreach ( $appList as $app ) { + + foreach ( $remoteApps AS $key => $remote ) { + + if ( + $app['name'] == $remote['name'] + // To set duplicate detection to use OCS ID instead of string name, + // enable this code, remove the line of code above, + // and add <ocs_id>[ID]</ocs_id> to info.xml of each 3rd party app: + // OR $app['ocs_id'] == $remote['ocs_id'] + ) { + + unset( $remoteApps[$key]); + + } + + } + + } + + $combinedApps = array_merge( $appList, $remoteApps ); + +} else { + + $combinedApps = $appList; + +} + +function app_sort( $a, $b ) { + if ($a['active'] != $b['active']) { + return $b['active'] - $a['active']; + } + return strcmp($a['name'], $b['name']); + } -usort($apps, 'app_sort'); + +usort( $combinedApps, 'app_sort' ); $tmpl = new OC_Template( "settings", "apps", "user" ); -$tmpl->assign('apps', $apps, false); + +$tmpl->assign('apps', $combinedApps, false); + $appid = (isset($_GET['appid'])?strip_tags($_GET['appid']):''); + $tmpl->assign('appid', $appid); $tmpl->printPage(); diff --git a/settings/css/settings.css b/settings/css/settings.css index 2015e93b43c..f5ee2124f0f 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -38,7 +38,7 @@ div.quota { float:right; display:block; position:absolute; right:25em; top:0; } div.quota-select-wrapper { position: relative; } select.quota { position:absolute; left:0; top:0; width:10em; } select.quota-user { position:relative; left:0; top:0; width:10em; } -input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; -webkit-box-shadow: none -mox-box-shadow:none ; box-shadow:none; } +input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; box-shadow:none; } div.quota>span { position:absolute; right:0em; white-space:nowrap; top: 0.7em } select.quota.active { background: #fff; } @@ -50,7 +50,7 @@ li { color:#888; } li.active { color:#000; } small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} small.externalapp.list { float: right; } -span.version { margin-left:3em; margin-right:3em; color:#555; } +span.version { margin-left:1em; margin-right:1em; color:#555; } .app { position: relative; display: inline-block; padding: 0.2em 0 0.2em 0 !important; text-overflow: hidden; overflow: hidden; white-space: nowrap; /*transition: .2s max-width linear; -o-transition: .2s max-width linear; -moz-transition: .2s max-width linear; -webkit-transition: .2s max-width linear; -ms-transition: .2s max-width linear;*/ } .app.externalapp { max-width: 12.5em; z-index: 100; } @@ -58,6 +58,7 @@ span.version { margin-left:3em; margin-right:3em; color:#555; } .app:hover, .app:active { max-width: inherit; } .appslink { text-decoration: underline; } +.score { color:#666; font-weight:bold; font-size:0.8em; } /* LOG */ #log { white-space:normal; } diff --git a/settings/js/apps.js b/settings/js/apps.js index bb931232763..e45abf9b3dd 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -7,18 +7,6 @@ OC.Settings = OC.Settings || {}; OC.Settings.Apps = OC.Settings.Apps || { - loadOCS:function() { - $.getJSON(OC.filePath('settings', 'ajax', 'apps/ocs.php'), function(jsondata) { - if(jsondata.status == 'success'){ - var apps = jsondata.data; - $.each(apps, function(b, appdata) { - OC.Settings.Apps.insertApp(appdata); - }); - } else { - OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); - } - }); - }, loadApp:function(app) { var page = $('#rightcontent'); page.find('p.license').show(); @@ -29,6 +17,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } else { page.find('span.version').text(''); } + page.find('span.score').html(app.score); page.find('p.description').html(app.description); page.find('img.preview').attr('src', app.preview); page.find('small.externalapp').attr('style', 'visibility:visible'); @@ -40,10 +29,13 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('input.enable').data('appid', app.id); page.find('input.enable').data('active', app.active); if (app.internal == false) { + page.find('span.score').show(); page.find('p.appslink').show(); page.find('a').attr('href', 'http://apps.owncloud.com/content/show.php?content=' + app.id); + page.find('small.externalapp').hide(); } else { page.find('p.appslink').hide(); + page.find('span.score').hide(); } }, enableApp:function(appid, active, element) { @@ -59,6 +51,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } else { element.data('active',false); + OC.Settings.Apps.removeNavigation(appid); element.val(t('settings','Enable')); } },'json'); @@ -69,6 +62,7 @@ OC.Settings.Apps = OC.Settings.Apps || { OC.dialogs.alert('Error while enabling app','Error'); } else { + OC.Settings.Apps.addNavigation(appid); element.data('active',true); element.val(t('settings','Disable')); } @@ -95,6 +89,38 @@ OC.Settings.Apps = OC.Settings.Apps || { applist.last().after(app); } return app; + }, + removeNavigation: function(appid){ + $.getJSON(OC.filePath('core','ajax','navigationdetect.php'), {app: appid}).done(function(response){ + if(response.status === 'success'){ + var navIds=response.nav_ids; + for(var i=0; i< navIds.length; i++){ + $('#apps').children('li[data-id="'+navIds[i]+'"]').remove(); + } + } + }); + }, + addNavigation: function(appid){ + $.getJSON(OC.filePath('core','ajax','navigationdetect.php'), {app: appid}).done(function(response){ + if(response.status === 'success'){ + var navEntries=response.nav_entries; + for(var i=0; i< navEntries.length; i++){ + var entry = navEntries[i]; + var container = $('#apps'); + + if(container.children('li[data-id="'+entry.id+'"]').length === 0){ + var li=$('<li></li>'); + li.attr('data-id', entry.id); + var a=$('<a></a>'); + a.attr('style', 'background-image: url('+entry.icon+')'); + a.text(entry.name); + a.attr('href', entry.href); + li.append(a); + container.append(li); + } + } + } + }); } }; @@ -137,6 +163,4 @@ $(document).ready(function(){ $('#leftcontent').animate({scrollTop: $(item).offset().top-70}, 'slow','swing'); } } - - OC.Settings.Apps.loadOCS(); }); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index eca8a300b1b..36cad27d3a3 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -8,9 +8,6 @@ "Problems connecting to help database." => "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح", "Go there manually." => "إذهب هنالك بنفسك", "Answer" => "الجواب", -"You use" => "أنت تستخدم", -"of the available" => "من الموجود", -"Your password got changed" => "لقد تم تغيير كلمات السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index b261c22b032..6a46348b300 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -13,10 +13,7 @@ "Problems connecting to help database." => "Проблеми при свързване с помощната база", "Go there manually." => "Отидете ръчно.", "Answer" => "Отговор", -"You use" => "Вие ползвате", -"of the available" => "от наличните", "Download" => "Изтегляне", -"Your password got changed" => "Вашата парола е сменена", "Unable to change your password" => "Невъзможна промяна на паролата", "Current password" => "Текуща парола", "New password" => "Нова парола", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index c549ef2262e..16660fb07d3 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -13,7 +13,6 @@ "Language changed" => "S'ha canviat l'idioma", "Unable to add user to group %s" => "No es pot afegir l'usuari al grup %s", "Unable to remove user from group %s" => "No es pot eliminar l'usuari del grup %s", -"Error" => "Error", "Disable" => "Desactiva", "Enable" => "Activa", "Saving..." => "S'està desant...", @@ -21,7 +20,10 @@ "Security Warning" => "Avís de seguretat", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 que ownCloud proporciona 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.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Executar una tasca de cada pàgina carregada", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu una crida a la pàgina cron.php a l'arrel de ownCloud cada minut a través de http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilitzeu el sistema de servei cron. Cridar el arxiu cron.php de la carpeta owncloud cada minut utilitzant el sistema de tasques cron.", +"Sharing" => "Compartir", "Enable Share API" => "Activa l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions usin l'API de compartir", "Allow links" => "Permet enllaços", @@ -34,6 +36,7 @@ "More" => "Més", "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>." => "Desenvolupat per la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitat ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">codi font</a> té llicència <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" => "Afegiu la vostra aplicació", +"More Apps" => "Més aplicacions", "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-propietat de <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "Problemes per connectar amb la base de dades d'ajuda.", "Go there manually." => "Vés-hi manualment.", "Answer" => "Resposta", -"You use" => "Esteu usant", -"of the available" => "d'un total disponible de", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Ha utilitzat <strong>%s</strong> de la <strong>%s</strong> disponible", "Desktop and Mobile Syncing Clients" => "Clients de sincronització d'escriptori i de mòbil", "Download" => "Baixada", -"Your password got changed" => "La contrasenya ha canviat", +"Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", "Current password" => "Contrasenya actual", "New password" => "Contrasenya nova", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 382c2e75b3c..c0f7ebd8686 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -13,7 +13,6 @@ "Language changed" => "Jazyk byl změněn", "Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", "Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", -"Error" => "Chyba", "Disable" => "Zakázat", "Enable" => "Povolit", "Saving..." => "Ukládám...", @@ -21,7 +20,10 @@ "Security Warning" => "Bezpečnostní varování", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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áš adresář dat a soubory jsou pravděpodobně přístupné z internetu. Soubor .htacces, který ownCloud poskytuje nefunguje. Doporučujeme Vám abyste nastavili Váš webový server tak, aby nebylo možno přistupovat do adresáře s daty, nebo přesunuli adresář dat mimo kořenovou složku dokumentů webového serveru.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu.", +"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í", "Allow links" => "Povolit odkazy", @@ -34,6 +36,7 @@ "More" => "Více", "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>." => "Vyvinuto <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencován pod <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" => "Přidat Vaší aplikaci", +"More Apps" => "Více aplikací", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencováno <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "Problémy s připojením k databázi s nápovědou.", "Go there manually." => "Přejít ručně.", "Answer" => "Odpověď", -"You use" => "Využíváte", -"of the available" => "z dostupných", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Použili jste <strong>%s</strong> z dostupných <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Klienti pro synchronizaci", "Download" => "Stáhnout", -"Your password got changed" => "Vaše heslo bylo změněno", +"Your password was changed" => "Vaše heslo bylo změněno", "Unable to change your password" => "Vaše heslo nelze změnit", "Current password" => "Současné heslo", "New password" => "Nové heslo", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 53e51111a21..f93d7b6cd11 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,41 +1,55 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", +"Group already exists" => "Gruppen findes allerede", +"Unable to add group" => "Gruppen kan ikke oprettes", +"Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "OpenID Changed" => "OpenID ændret", "Invalid request" => "Ugyldig forespørgsel", +"Unable to delete group" => "Gruppen kan ikke slettes", +"Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog ændret", -"Error" => "Fejl", +"Unable to add user to group %s" => "Brugeren kan ikke tilføjes til gruppen %s", +"Unable to remove user from group %s" => "Brugeren kan ikke fjernes fra gruppen %s", "Disable" => "Deaktiver", "Enable" => "Aktiver", "Saving..." => "Gemmer...", "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 datamappe og dine filer er formentligt tilgængelige fra internettet.\n.htaccess-filen, som ownCloud leverer, fungerer ikke. Vi anbefaler stærkt, at du opsætter din server på en måde, så datamappen ikke længere er direkte tilgængelig, eller at du flytter datamappen udenfor serverens tilgængelige rodfilsystem.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Udfør en opgave med hver side indlæst", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registreret hos en webcron-tjeneste. Kald cron.php-siden i ownClouds rodmappe en gang i minuttet over http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "vend systemets cron-tjeneste. Kald cron.php-filen i ownCloud-mappen ved hjælp af systemets cronjob en gang i minuttet.", +"Sharing" => "Deling", "Enable Share API" => "Aktiver dele API", "Allow apps to use the Share API" => "Tillad apps a bruge dele APIen", "Allow links" => "Tillad links", "Allow users to share items to the public with links" => "Tillad brugere at dele elementer med offentligheden med links", "Allow resharing" => "Tillad gendeling", +"Allow users to share items shared with them again" => "Tillad brugere at dele elementer, som er blevet delt med dem, videre til andre", "Allow users to share with anyone" => "Tillad brugere at dele med hvem som helst", "Allow users to only share with users in their groups" => "Tillad kun deling med brugere i brugerens egen gruppe", "Log" => "Log", "More" => "Mere", +"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>." => "Udviklet af <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownClouds community</a>, og <a href=\"https://github.com/owncloud\" target=\"_blank\">kildekoden</a> er underlagt licensen <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" => "Tilføj din App", +"More Apps" => "Flere Apps", "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenseret af <span class=\"author\"></span>", "Documentation" => "Dokumentation", "Managing Big Files" => "Håndter store filer", "Ask a question" => "Stil et spørgsmål", "Problems connecting to help database." => "Problemer med at forbinde til hjælpe-databasen.", "Go there manually." => "Gå derhen manuelt.", "Answer" => "Svar", -"You use" => "Du benytter", -"of the available" => "af det tilgængelige", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Du har brugt <strong>%s</strong> af de tilgængelige <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Synkroniserings programmer for desktop og mobil", "Download" => "Download", -"Your password got changed" => "Din adgangskode er blevet ændret", +"Your password was changed" => "Din adgangskode blev ændret", "Unable to change your password" => "Ude af stand til at ændre dit kodeord", "Current password" => "Nuværende adgangskode", "New password" => "Ny adgangskode", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 83a57cc196a..f010739d2c3 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,64 +1,66 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Die Liste der Apps im Store konnte nicht geladen werden.", -"Authentication error" => "Anmeldungsfehler", +"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Could not enable app. " => "App konnte nicht aktiviert werden.", -"Email saved" => "E-Mail gespeichert", -"Invalid email" => "Ungültige E-Mail", +"Email saved" => "E-Mail Adresse gespeichert", +"Invalid email" => "Ungültige E-Mail Adresse", "OpenID Changed" => "OpenID geändert", "Invalid request" => "Ungültige Anfrage", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", +"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", "Language changed" => "Sprache geändert", "Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", "Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", -"Error" => "Fehler", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Saving..." => "Speichern...", -"__language_name__" => "Deutsch", +"__language_name__" => "Deutsch (Persönlich)", "Security Warning" => "Sicherheitshinweis", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von OwnCloud 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.", -"Cron" => "Cron", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Rufen Sie die Seite cron.php im owncloud Root minütlich per HTTP auf.", -"Enable Share API" => "Teilungs-API aktivieren", -"Allow apps to use the Share API" => "Erlaubt Nutzern, die Teilungs-API zu nutzen", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 ist möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud funktioniert nicht. Wir raten Dir dringend, dass Du Deinen Webserver dahingehend konfigurieren, dass Dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", +"Cron" => "Cron-Jobs", +"Execute one task with each page loaded" => "Führe eine Aufgabe bei jeder geladenen Seite aus.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Benutze den System-Crondienst. Bitte ruf die cron.php im ownCloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", +"Enable Share API" => "Freigabe-API aktivieren", +"Allow apps to use the Share API" => "Erlaubt Anwendungen, die Freigabe-API zu nutzen", "Allow links" => "Links erlauben", -"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links mit der Öffentlichkeit zu teilen", +"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen", "Allow resharing" => "Erneutes Teilen erlauben", "Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", -"Allow users to share with anyone" => "Erlaube Nutzern mit jedem zu Teilen", -"Allow users to only share with users in their groups" => "Erlaube Nutzern nur das Teilen in ihrer Gruppe", +"Allow users to share with anyone" => "Erlaubt Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaubt Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", "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>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.", -"Add your App" => "Fügen Sie Ihre App hinzu", -"Select an App" => "Wählen Sie eine Anwendung aus", -"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"Add your App" => "Füge Deine Anwendung hinzu", +"More Apps" => "Weitere Anwendungen", +"Select an App" => "Wähle eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lizenziert von <span class=\"author\"></span>", "Documentation" => "Dokumentation", "Managing Big Files" => "Große Dateien verwalten", -"Ask a question" => "Stellen Sie eine Frage", +"Ask a question" => "Stelle eine Frage", "Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", "Go there manually." => "Datenbank direkt besuchen.", "Answer" => "Antwort", -"You use" => "Sie nutzen", -"of the available" => "der verfügbaren", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Synchronierungs-Clients", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s<strong>", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", "Download" => "Download", -"Your password got changed" => "Ihr Passwort wurde geändert.", +"Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", "Current password" => "Aktuelles Passwort", "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort ändern", "Email" => "E-Mail", -"Your email address" => "Ihre E-Mail-Adresse", -"Fill in an email address to enable password recovery" => "Tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", +"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.", "Language" => "Sprache", -"Help translate" => "Helfen Sie bei der Übersetzung", -"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", +"Help translate" => "Hilf bei der Übersetzung", +"use this address to connect to your ownCloud in your file manager" => "Verwende diese Adresse, um Deine ownCloud mit Deinem Dateimanager zu verbinden.", "Name" => "Name", "Password" => "Passwort", "Groups" => "Gruppen", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php new file mode 100644 index 00000000000..100cbfd113f --- /dev/null +++ b/settings/l10n/de_DE.php @@ -0,0 +1,73 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Group already exists" => "Gruppe existiert bereits", +"Unable to add group" => "Gruppe konnte nicht angelegt werden", +"Could not enable app. " => "App konnte nicht aktiviert werden.", +"Email saved" => "E-Mail Adresse gespeichert", +"Invalid email" => "Ungültige E-Mail Adresse", +"OpenID Changed" => "OpenID geändert", +"Invalid request" => "Ungültige Anfrage", +"Unable to delete group" => "Gruppe konnte nicht gelöscht werden", +"Authentication error" => "Fehler bei der Anmeldung", +"Unable to delete user" => "Benutzer konnte nicht gelöscht werden", +"Language changed" => "Sprache geändert", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", +"Disable" => "Deaktivieren", +"Enable" => "Aktivieren", +"Saving..." => "Speichern...", +"__language_name__" => "Deutsch (Förmlich)", +"Security Warning" => "Sicherheitshinweis", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 ist möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei von ownCloud 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.", +"Cron" => "Cron-Jobs", +"Execute one task with each page loaded" => "Führt eine Aufgabe bei jeder geladenen Seite aus.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Dienst registriert. Ruf die Seite cron.php im ownCloud-Root minütlich per HTTP auf.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Verwenden Sie den System-Crondienst. Bitte rufen Sie die cron.php im ownCloud-Ordner über einen System-Cronjob minütlich auf.", +"Sharing" => "Freigabe", +"Enable Share API" => "Freigabe-API aktivieren", +"Allow apps to use the Share API" => "Erlaubt Anwendungen, die Freigabe-API zu nutzen", +"Allow links" => "Links erlauben", +"Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen", +"Allow resharing" => "Erneutes Teilen erlauben", +"Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", +"Allow users to share with anyone" => "Erlaubet Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaubet Nutzern nur das Teilen in ihrer Gruppe", +"Log" => "Log", +"More" => "Mehr", +"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>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.", +"Add your App" => "Fügen Sie Ihre Anwendung hinzu", +"More Apps" => "Weitere Anwendungen", +"Select an App" => "Wählen Sie eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lizenziert von <span class=\"author\"></span>", +"Documentation" => "Dokumentation", +"Managing Big Files" => "Große Dateien verwalten", +"Ask a question" => "Stellen Sie eine Frage", +"Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", +"Go there manually." => "Datenbank direkt besuchen.", +"Answer" => "Antwort", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Sie verwenden <strong>%s</strong> der verfügbaren <strong>%s<strong>", +"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", +"Download" => "Download", +"Your password was changed" => "Ihr Passwort wurde geändert.", +"Unable to change your password" => "Passwort konnte nicht geändert werden", +"Current password" => "Aktuelles Passwort", +"New password" => "Neues Passwort", +"show" => "zeigen", +"Change password" => "Passwort ändern", +"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" => "Hilf bei der Übersetzung", +"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", +"Name" => "Name", +"Password" => "Passwort", +"Groups" => "Gruppen", +"Create" => "Anlegen", +"Default Quota" => "Standard-Quota", +"Other" => "Andere", +"Group Admin" => "Gruppenadministrator", +"Quota" => "Quota", +"Delete" => "Löschen" +); diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 075734fb5f9..bf74d0bde21 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,52 +1,73 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", -"Email saved" => "Το Email αποθηκεύτηκε ", +"Group already exists" => "Η ομάδα υπάρχει ήδη", +"Unable to add group" => "Αδυναμία προσθήκης ομάδας", +"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", +"Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "OpenID Changed" => "Το OpenID άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", +"Unable to delete group" => "Αδυναμία διαγραφής ομάδας", +"Unable to delete user" => "Αδυναμία διαγραφής χρήστη", "Language changed" => "Η γλώσσα άλλαξε", -"Error" => "Σφάλμα", +"Unable to add user to group %s" => "Αδυναμία προσθήκη χρήστη στην ομάδα %s", +"Unable to remove user from group %s" => "Αδυναμία αφαίρεσης χρήστη από την ομάδα %s", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Saving..." => "Αποθήκευση...", "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 που παρέχει το owncloud, δεν λειτουργεί. Σας συνιστούμε να ρυθμίσετε τον εξυπηρετητή σας έτσι ώστε ο κατάλογος δεδομένων να μην είναι πλεον προσβάσιμος ή μετακινήστε τον κατάλογο δεδομένων εκτός του καταλόγου document του εξυπηρετητή σας.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Εκτέλεση μιας εργασίας με κάθε σελίδα που φορτώνεται", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.", +"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 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" => "Να επιτρέπεται ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Log" => "Αρχείο καταγραφής", -"More" => "Περισσότερο", -"Add your App" => "Πρόσθεσε τη δικιά σου εφαρμογή ", -"Select an App" => "Επιλέξτε μια εφαρμογή", -"See application page at apps.owncloud.com" => "Η σελίδα εφαρμογών στο apps.owncloud.com", +"More" => "Περισσότερα", +"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</a>, ο <a href=\"https://github.com/owncloud\" target=\"_blank\">πηγαίος κώδικας</a> είναι υπό άδεια χρήσης <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" => "Πρόσθεστε τη Δικιά σας Εφαρμογή", +"More Apps" => "Περισσότερες Εφαρμογές", +"Select an App" => "Επιλέξτε μια Εφαρμογή", +"See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-άδεια από <span class=\"author\"></span>", "Documentation" => "Τεκμηρίωση", -"Managing Big Files" => "Διαχείριση μεγάλων αρχείων", +"Managing Big Files" => "Διαχείριση Μεγάλων Αρχείων", "Ask a question" => "Ρωτήστε μια ερώτηση", "Problems connecting to help database." => "Προβλήματα κατά τη σύνδεση με τη βάση δεδομένων βοήθειας.", "Go there manually." => "Χειροκίνητη μετάβαση.", "Answer" => "Απάντηση", -"You use" => "Χρησιμοποιείτε", -"of the available" => "από τα διαθέσιμα", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Έχετε χρησιμοποιήσει <strong>%s</strong> από τα διαθέσιμα <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Πελάτες συγχρονισμού για Desktop και Mobile", -"Download" => "Κατέβασε", -"Your password got changed" => "Ο κωδικός πρόσβασής σας άλλαξε", +"Download" => "Λήψη", +"Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", -"Current password" => "Τρέχων κωδικός πρόσβασης", -"New password" => "Νέος κωδικός", +"Current password" => "Τρέχων συνθηματικό", +"New password" => "Νέο συνθηματικό", "show" => "εμφάνιση", -"Change password" => "Αλλαγή κωδικού πρόσβασης", +"Change password" => "Αλλαγή συνθηματικού", "Email" => "Email", -"Your email address" => "Διεύθυνση ηλεκτρονικού ταχυδρομείου σας", -"Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση κωδικού πρόσβασης", +"Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", +"Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Language" => "Γλώσσα", -"Help translate" => "Βοηθήστε στην μετάφραση", -"use this address to connect to your ownCloud in your file manager" => "χρησιμοποιήστε αυτή τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας", +"Help translate" => "Βοηθήστε στη μετάφραση", +"use this address to connect to your ownCloud in your file manager" => "χρησιμοποιήστε αυτήν τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας", "Name" => "Όνομα", -"Password" => "Κωδικός", +"Password" => "Συνθηματικό", "Groups" => "Ομάδες", "Create" => "Δημιουργία", -"Default Quota" => "Προεπιλεγμένο όριο", +"Default Quota" => "Προεπιλεγμένο Όριο", "Other" => "Άλλα", -"Group Admin" => "Διαχειρηστής ομάδας", -"Quota" => "Σύνολο χώρου", +"Group Admin" => "Ομάδα Διαχειριστών", +"Quota" => "Σύνολο Χώρου", "Delete" => "Διαγραφή" ); diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index c3bfa63f154..2c8263d292f 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,34 +1,50 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ne eblis ŝargi liston el aplikaĵovendejo", "Authentication error" => "Aŭtentiga eraro", +"Group already exists" => "La grupo jam ekzistas", +"Unable to add group" => "Ne eblis aldoni la grupon", +"Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", "OpenID Changed" => "La agordo de OpenID estas ŝanĝita", "Invalid request" => "Nevalida peto", +"Unable to delete group" => "Ne eblis forigi la grupon", +"Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ŝanĝita", -"Error" => "Eraro", +"Unable to add user to group %s" => "Ne eblis aldoni la uzanton al la grupo %s", +"Unable to remove user from group %s" => "Ne eblis forigi la uzantan el la grupo %s", "Disable" => "Malkapabligi", "Enable" => "Kapabligi", "Saving..." => "Konservante...", "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", "Cron" => "Cron", +"Sharing" => "Kunhavigo", +"Enable Share API" => "Kapabligi API-on por Kunhavigo", +"Allow apps to use the Share API" => "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", +"Allow links" => "Kapabligi ligilojn", +"Allow users to share items to the public with links" => "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile", +"Allow resharing" => "Kapabligi rekunhavigon", +"Allow users to share items shared with them again" => "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili", +"Allow users to share with anyone" => "Kapabligi uzantojn kunhavigi kun ĉiu ajn", +"Allow users to only share with users in their groups" => "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj", "Log" => "Protokolo", "More" => "Pli", "Add your App" => "Aldonu vian aplikaĵon", +"More Apps" => "Pli da aplikaĵoj", "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"</span>-permesilhavigita de <span class=\"author\"></span>", "Documentation" => "Dokumentaro", "Managing Big Files" => "Administrante grandajn dosierojn", "Ask a question" => "Faru demandon", "Problems connecting to help database." => "Problemoj okazis dum konektado al la helpa datumbazo.", "Go there manually." => "Iri tien mane.", "Answer" => "Respondi", -"You use" => "Vi uzas", -"of the available" => "el la disponeblaj", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Vi uzas <strong>%s</strong> el la haveblaj <strong>%s</strong>", "Desktop and Mobile Syncing Clients" => "Labortablaj kaj porteblaj sinkronigoklientoj", "Download" => "Elŝuti", -"Your password got changed" => "Via pasvorto ŝanĝiĝis", +"Your password was changed" => "Via pasvorto ŝanĝiĝis", "Unable to change your password" => "Ne eblis ŝanĝi vian pasvorton", "Current password" => "Nuna pasvorto", "New password" => "Nova pasvorto", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index c9393994940..9a578fa6368 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -13,7 +13,6 @@ "Language changed" => "Idioma cambiado", "Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", "Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", -"Error" => "Error", "Disable" => "Desactivar", "Enable" => "Activar", "Saving..." => "Guardando...", @@ -21,7 +20,10 @@ "Security Warning" => "Advertencia de seguridad", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "El directorio de datos -data- y sus archivos probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configure su servidor web de forma que el directorio de datos ya no sea accesible o mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "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. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llama a la página de cron.php en la raíz de owncloud cada minuto sobre http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de cron del sitema. Llame al fichero cron.php en la carpeta de owncloud via servidor cronjob cada minuto.", +"Sharing" => "Compartir", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", "Allow links" => "Permitir enlaces", @@ -34,6 +36,7 @@ "More" => "Más", "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" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "Problemas al conectar con la base de datos de ayuda.", "Go there manually." => "Ir manualmente", "Answer" => "Respuesta", -"You use" => "Estás utilizando", -"of the available" => "del total disponible de", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Ha usado <strong>%s</strong> de <strong>%s<strong> disponible", "Desktop and Mobile Syncing Clients" => "Clientes de sincronización móviles y de escritorio", "Download" => "Descargar", -"Your password got changed" => "Tu contraseña ha sido cambiada", +"Your password was changed" => "Su contraseña ha sido cambiada", "Unable to change your password" => "No se ha podido cambiar tu contraseña", "Current password" => "Contraseña actual", "New password" => "Nueva contraseña:", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php new file mode 100644 index 00000000000..ee6ecceb139 --- /dev/null +++ b/settings/l10n/es_AR.php @@ -0,0 +1,73 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", +"Group already exists" => "El grupo ya existe", +"Unable to add group" => "No fue posible añadir el grupo", +"Could not enable app. " => "No se puede habilitar la aplicación.", +"Email saved" => "e-mail guardado", +"Invalid email" => "el e-mail no es válido ", +"OpenID Changed" => "OpenID cambiado", +"Invalid request" => "Solicitud no válida", +"Unable to delete group" => "No fue posible eliminar el grupo", +"Authentication error" => "Error al autenticar", +"Unable to delete user" => "No fue posible eliminar el usuario", +"Language changed" => "Idioma cambiado", +"Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", +"Disable" => "Desactivar", +"Enable" => "Activar", +"Saving..." => "Guardando...", +"__language_name__" => "Castellano (Argentina)", +"Security Warning" => "Advertencia de seguridad", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "El directorio de datos -data- y los archivos que contiene, probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configures su servidor web de forma que el directorio de datos ya no sea accesible o que muevas el directorio de datos fuera de la raíz de documentos del servidor web.", +"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. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Esto carga la página de cron.php en la raíz de ownCloud cada minuto sobre http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de cron del sistema. Esto carga el archivo cron.php en la carpeta de ownCloud via servidor cronjob cada minuto.", +"Sharing" => "Compartir", +"Enable Share API" => "Activar API de compartición", +"Allow apps to use the Share API" => "Permitir a las aplicaciones usar 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 públicamente con enlaces", +"Allow resharing" => "Permitir re-compartir", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos ya compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir con usuarios en sus grupos", +"Log" => "Registro", +"More" => "Más", +"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ñadí tu aplicación", +"More Apps" => "Más aplicaciones", +"Select an App" => "Seleccionar una aplicación", +"See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\">", +"Documentation" => "Documentación", +"Managing Big Files" => "Administrar archivos grandes", +"Ask a question" => "Hacer una pregunta", +"Problems connecting to help database." => "Problemas al conectar con la base de datos de ayuda.", +"Go there manually." => "Ir de forma manual", +"Answer" => "Respuesta", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Usaste <strong>%s</strong> de <strong>%s<strong> disponible", +"Desktop and Mobile Syncing Clients" => "Clientes de sincronización para celulares, tablets y de escritorio", +"Download" => "Descargar", +"Your password was changed" => "Tu contraseña fue cambiada", +"Unable to change your password" => "No fue posible cambiar tu contraseña", +"Current password" => "Contraseña actual", +"New password" => "Nueva contraseña:", +"show" => "mostrar", +"Change password" => "Cambiar contraseña", +"Email" => "Correo electrónico", +"Your email address" => "Tu dirección de e-mail", +"Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", +"Language" => "Idioma", +"Help translate" => "Ayudanos a traducir", +"use this address to connect to your ownCloud in your file manager" => "usá esta dirección para conectarte a tu ownCloud desde tu gestor de archivos", +"Name" => "Nombre", +"Password" => "Contraseña", +"Groups" => "Grupos", +"Create" => "Crear", +"Default Quota" => "Cuota predeterminada", +"Other" => "Otro", +"Group Admin" => "Grupo admin", +"Quota" => "Cuota", +"Delete" => "Borrar" +); diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 9a8dd9fe134..8c36f08fbb7 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,24 +1,25 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "App Sotre'i nimekirja laadimine ebaõnnestus", -"Authentication error" => "Autentimise viga", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", +"Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "OpenID Changed" => "OpenID on muudetud", "Invalid request" => "Vigane päring", "Unable to delete group" => "Keela grupi kustutamine", +"Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", "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", -"Error" => "Viga", "Disable" => "Lülita välja", "Enable" => "Lülita sisse", "Saving..." => "Salvestamine...", "__language_name__" => "Eesti", "Security Warning" => "Turvahoiatus", "Cron" => "Ajastatud töö", +"Sharing" => "Jagamine", "Enable Share API" => "Luba jagamise API", "Allow apps to use the Share API" => "Luba rakendustel kasutada jagamise API-t", "Allow links" => "Luba linke", @@ -30,6 +31,7 @@ "Log" => "Logi", "More" => "Veel", "Add your App" => "Lisa oma rakendus", +"More Apps" => "Veel rakendusi", "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-litsenseeritud <span class=\"author\"></span>", @@ -39,11 +41,9 @@ "Problems connecting to help database." => "Probleemid abiinfo andmebaasiga ühendumisel.", "Go there manually." => "Mine sinna käsitsi.", "Answer" => "Vasta", -"You use" => "Sa kasutad", -"of the available" => "saadaolevast", "Desktop and Mobile Syncing Clients" => "Töölaua ja mobiiliga sünkroniseerimise rakendused", "Download" => "Lae alla", -"Your password got changed" => "Sinu parooli on muudetud", +"Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", "Current password" => "Praegune parool", "New password" => "Uus parool", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 529b13df39e..4320b8ae693 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -13,7 +13,6 @@ "Language changed" => "Hizkuntza aldatuta", "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", -"Error" => "Errorea", "Disable" => "Ez-gaitu", "Enable" => "Gaitu", "Saving..." => "Gordetzen...", @@ -21,7 +20,10 @@ "Security Warning" => "Segurtasun abisua", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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. ownCloudek emandako .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.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exekutatu zeregin bat orri karga bakoitzean", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez.", +"Sharing" => "Partekatzea", "Enable Share API" => "Gaitu Partekatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Partekatze APIa erabiltzeko", "Allow links" => "Baimendu loturak", @@ -43,11 +45,10 @@ "Problems connecting to help database." => "Arazoak daude laguntza datubasera konektatzeko.", "Go there manually." => "Joan hara eskuz.", "Answer" => "Erantzun", -"You use" => "Erabiltzen ari zara ", -"of the available" => "eta guztira erabil dezakezu ", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Eskuragarri dituzun <strong>%s</strong>etik <strong>%s</strong> erabili duzu", "Desktop and Mobile Syncing Clients" => "Mahaigain eta mugikorren sinkronizazio bezeroak", "Download" => "Deskargatu", -"Your password got changed" => "Zure pasahitza aldatu da", +"Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", "Current password" => "Uneko pasahitza", "New password" => "Pasahitz berria", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 215966728d6..d8a49cc440b 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -4,7 +4,6 @@ "OpenID Changed" => "OpenID تغییر کرد", "Invalid request" => "درخواست غیر قابل قبول", "Language changed" => "زبان تغییر کرد", -"Error" => "خطا", "Disable" => "غیرفعال", "Enable" => "فعال", "Saving..." => "درحال ذخیره ...", @@ -21,11 +20,8 @@ "Problems connecting to help database." => "مشکلاتی برای وصل شدن به پایگاه داده کمکی", "Go there manually." => "بروید آنجا به صورت دستی", "Answer" => "پاسخ", -"You use" => "شما استفاده می کنید", -"of the available" => "از فعال ها", "Desktop and Mobile Syncing Clients" => " ابزار مدیریت با دسکتاپ و موبایل", "Download" => "بارگیری", -"Your password got changed" => "گذرواژه شما تغییر یافته", "Unable to change your password" => "ناتوان در تغییر گذرواژه", "Current password" => "گذرواژه کنونی", "New password" => "گذرواژه جدید", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index b5571ac9a58..dcd1bef95d7 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", -"Authentication error" => "Todennusvirhe", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", "Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", @@ -9,11 +8,11 @@ "OpenID Changed" => "OpenID on vaihdettu", "Invalid request" => "Virheellinen pyyntö", "Unable to delete group" => "Ryhmän poisto epäonnistui", +"Authentication error" => "Todennusvirhe", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", "Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", "Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", -"Error" => "Virhe", "Disable" => "Poista käytöstä", "Enable" => "Käytä", "Saving..." => "Tallennetaan...", @@ -21,6 +20,7 @@ "Security Warning" => "Turvallisuusvaroitus", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", "Cron" => "Cron", +"Sharing" => "Jakaminen", "Enable Share API" => "Ota käyttöön jaon ohjelmoitirajapinta (Share API)", "Allow apps to use the Share API" => "Salli sovellusten käyttää jaon ohjelmointirajapintaa (Share API)", "Allow links" => "Salli linkit", @@ -33,6 +33,7 @@ "More" => "Lisää", "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>." => "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> alaisena.", "Add your App" => "Lisää ohjelmasi", +"More Apps" => "Lisää sovelluksia", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisensoija <span class=\"author\"></span>", @@ -42,11 +43,10 @@ "Problems connecting to help database." => "Virhe yhdistettäessä tietokantaan.", "Go there manually." => "Ohje löytyy sieltä.", "Answer" => "Vastaus", -"You use" => "Olet käyttänyt", -"of the available" => ", käytettävissäsi on yhteensä", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Käytössäsi on <strong>%s</strong>/<strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Tietokoneen ja mobiililaitteiden synkronointisovellukset", "Download" => "Lataa", -"Your password got changed" => "Salasanasi on vaihdettu", +"Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", "Current password" => "Nykyinen salasana", "New password" => "Uusi salasana", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 2ef64e25312..3a7bf0749bf 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,18 +1,18 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", -"Authentication error" => "Erreur d'authentification", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", +"Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "OpenID Changed" => "Identifiant OpenID changé", "Invalid request" => "Requête invalide", "Unable to delete group" => "Impossible de supprimer le groupe", +"Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changée", "Unable to add user to group %s" => "Impossible d'ajouter l'utilisateur au groupe %s", "Unable to remove user from group %s" => "Impossible de supprimer l'utilisateur du groupe %s", -"Error" => "Erreur", "Disable" => "Désactiver", "Enable" => "Activer", "Saving..." => "Sauvegarde...", @@ -20,6 +20,10 @@ "Security Warning" => "Alertes de sécurité", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 répertoire de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni avec ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce répertoire ne soit plus accessible, ou bien de déplacer le répertoire de données à l'extérieur de la racine du serveur web.", "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. Call the cron.php page in the owncloud root once a minute over http." => "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système.", +"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", "Allow links" => "Autoriser les liens", @@ -32,6 +36,7 @@ "More" => "Plus", "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>." => "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <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" => "Ajoutez votre application", +"More Apps" => "Plus d'applications…", "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "Distribué sous licence <span class=\"licence\"></span>, par <span class=\"author\"></span>", @@ -41,11 +46,10 @@ "Problems connecting to help database." => "Problème de connexion à la base de données d'aide.", "Go there manually." => "S'y rendre manuellement.", "Answer" => "Réponse", -"You use" => "Vous utilisez", -"of the available" => "de votre espace de stockage d'une taille totale de", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Vous avez utilisé <strong>%s</strong> des <strong>%s<strong> disponibles", "Desktop and Mobile Syncing Clients" => "Clients de synchronisation Mobile et Ordinateur", "Download" => "Télécharger", -"Your password got changed" => "Votre mot de passe a été changé", +"Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", "Current password" => "Mot de passe actuel", "New password" => "Nouveau mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 0cb1fbd6460..a0fe0989149 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -6,7 +6,6 @@ "OpenID Changed" => "Mudou o OpenID", "Invalid request" => "Petición incorrecta", "Language changed" => "O idioma mudou", -"Error" => "Erro", "Disable" => "Deshabilitar", "Enable" => "Habilitar", "Saving..." => "Gardando...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problemas conectando coa base de datos de axuda", "Go there manually." => "Ir manualmente.", "Answer" => "Resposta", -"You use" => "Vostede usa", -"of the available" => "dun total de", "Desktop and Mobile Syncing Clients" => "Cliente de sincronización de escritorio e móbil", "Download" => "Descargar", -"Your password got changed" => "O seu contrasinal mudou", "Unable to change your password" => "Incapaz de trocar o seu contrasinal", "Current password" => "Contrasinal actual", "New password" => "Novo contrasinal", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index c7189e94354..bb98a876b82 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -19,11 +19,8 @@ "Problems connecting to help database." => "בעיות בהתחברות לבסיס נתוני העזרה", "Go there manually." => "גש לשם באופן ידני", "Answer" => "מענה", -"You use" => "הנך משתמש ", -"of the available" => "מתוך ", "Desktop and Mobile Syncing Clients" => "לקוחות סנכרון למחשב שולחני ולנייד", "Download" => "הורדה", -"Your password got changed" => "הססמה שלך שונתה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", "Current password" => "ססמה נוכחית", "New password" => "ססמה חדשה", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index de540cb50fe..587974c8c76 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID promijenjen", "Invalid request" => "Neispravan zahtjev", "Language changed" => "Jezik promijenjen", -"Error" => "Greška", "Disable" => "Isključi", "Enable" => "Uključi", "Saving..." => "Spremanje...", @@ -23,11 +22,8 @@ "Problems connecting to help database." => "Problem pri spajanju na bazu podataka pomoći", "Go there manually." => "Idite tamo ručno.", "Answer" => "Odgovor", -"You use" => "Koristite", -"of the available" => "od dostupno", "Desktop and Mobile Syncing Clients" => "Desktop i Mobile sinkronizaciji klijenti", "Download" => "preuzimanje", -"Your password got changed" => "Vaša lozinka je promijenjena", "Unable to change your password" => "Nemoguće promijeniti lozinku", "Current password" => "Trenutna lozinka", "New password" => "Nova lozinka", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 23534d85759..e58a0b6c199 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID megváltozott", "Invalid request" => "Érvénytelen kérés", "Language changed" => "A nyelv megváltozott", -"Error" => "Hiba", "Disable" => "Letiltás", "Enable" => "Engedélyezés", "Saving..." => "Mentés...", @@ -23,11 +22,8 @@ "Problems connecting to help database." => "Sikertelen csatlakozás a Súgó adatbázishoz", "Go there manually." => "Menj oda kézzel", "Answer" => "Válasz", -"You use" => "Használatban: ", -"of the available" => ", rendelkezésre áll: ", "Desktop and Mobile Syncing Clients" => "Asztali- és mobilkliensek kezelése", "Download" => "Letöltés", -"Your password got changed" => "A jelszavad megváltozott", "Unable to change your password" => "Nem lehet megváltoztatni a jelszavad", "Current password" => "Jelenlegi jelszó", "New password" => "Új jelszó", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index e9d6a065a21..398a59da135 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -10,10 +10,7 @@ "Documentation" => "Documentation", "Ask a question" => "Facer un question", "Answer" => "Responsa", -"You use" => "Tu usa", -"of the available" => "del disponibile", "Download" => "Discargar", -"Your password got changed" => "Tu contrasigno esseva cambiate", "Unable to change your password" => "Non pote cambiar tu contrasigno", "Current password" => "Contrasigno currente", "New password" => "Nove contrasigno", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 636be1af955..552c00c1728 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -3,12 +3,15 @@ "Invalid email" => "Email tidak sah", "OpenID Changed" => "OpenID telah dirubah", "Invalid request" => "Permintaan tidak valid", +"Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", "Disable" => "NonAktifkan", "Enable" => "Aktifkan", "Saving..." => "Menyimpan...", "__language_name__" => "__language_name__", "Security Warning" => "Peringatan Keamanan", +"Allow apps to use the Share API" => "perbolehkan aplikasi untuk menggunakan berbagi API", +"Allow links" => "perbolehkan link", "Log" => "Log", "More" => "Lebih", "Add your App" => "Tambahkan App anda", @@ -20,14 +23,11 @@ "Problems connecting to help database." => "Bermasalah saat menghubungi database bantuan.", "Go there manually." => "Pergi kesana secara manual.", "Answer" => "Jawab", -"You use" => "Anda menggunakan", -"of the available" => "dari yang tersedia", "Desktop and Mobile Syncing Clients" => "Klien sync Desktop dan Mobile", "Download" => "Unduh", -"Your password got changed" => "Password anda telah dirubah", "Unable to change your password" => "Tidak dapat merubah password anda", "Current password" => "Password saat ini", -"New password" => "Password baru", +"New password" => "kata kunci baru", "show" => "perlihatkan", "Change password" => "Rubah password", "Email" => "Email", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 6359655b55e..0fc32c0b931 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -13,7 +13,6 @@ "Language changed" => "Lingua modificata", "Unable to add user to group %s" => "Impossibile aggiungere l'utente al gruppo %s", "Unable to remove user from group %s" => "Impossibile rimuovere l'utente dal gruppo %s", -"Error" => "Errore", "Disable" => "Disabilita", "Enable" => "Abilita", "Saving..." => "Salvataggio in corso...", @@ -21,7 +20,10 @@ "Security Warning" => "Avviso di sicurezza", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 fornito da ownCloud non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile e spostare la cartella fuori dalla radice del server web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Esegui un'operazione per ogni pagina caricata", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un servizio webcron. Chiama la pagina cron.php nella radice di owncloud ogni minuto su http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa il servizio cron di sistema. Chiama il file cron.php nella cartella di owncloud tramite una pianificazione del cron di sistema ogni minuto.", +"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", "Allow links" => "Consenti collegamenti", @@ -34,6 +36,7 @@ "More" => "Altro", "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>." => "Sviluppato dalla <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunità di ownCloud</a>, il <a href=\"https://github.com/owncloud\" target=\"_blank\">codice sorgente</a> è licenziato nei termini della <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" => "Aggiungi la tua applicazione", +"More Apps" => "Altre applicazioni", "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenziato da <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "Problemi di connessione al database di supporto.", "Go there manually." => "Raggiungilo manualmente.", "Answer" => "Risposta", -"You use" => "Stai utilizzando", -"of the available" => "su un totale di", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Hai utilizzato <strong>%s</strong> dei <strong>%s<strong> disponibili", "Desktop and Mobile Syncing Clients" => "Client di sincronizzazione desktop e mobile", "Download" => "Scaricamento", -"Your password got changed" => "La tua password è stata cambiata", +"Your password was changed" => "La tua password è cambiata", "Unable to change your password" => "Modifica password non riuscita", "Current password" => "Password attuale", "New password" => "Nuova password", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index d675cc6836c..96bb4ba785e 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "アプリストアからリストをロードできません", -"Authentication error" => "認証エラー", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", "Could not enable app. " => "アプリを有効にできませんでした。", @@ -9,11 +8,11 @@ "OpenID Changed" => "OpenIDが変更されました", "Invalid request" => "無効なリクエストです", "Unable to delete group" => "グループを削除できません", +"Authentication error" => "認証エラー", "Unable to delete user" => "ユーザを削除できません", "Language changed" => "言語が変更されました", "Unable to add user to group %s" => "ユーザをグループ %s に追加できません", "Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", -"Error" => "エラー", "Disable" => "無効", "Enable" => "有効", "Saving..." => "保存中...", @@ -21,19 +20,23 @@ "Security Warning" => "セキュリティ警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。", "Cron" => "cron(自動定期実行)", +"Execute one task with each page loaded" => "各ページの読み込み時にタスクを1つ実行する", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。", -"Enable Share API" => "Share APIを有効", -"Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", -"Allow links" => "リンクを許可", -"Allow users to share items to the public with links" => "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする", -"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" => "ユーザーがグループの人にしか共有出来ないようにする", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "システムのcronサービスを利用する。1分に1回の頻度でシステムのcronジョブによりowncloudフォルダ内のcron.phpファイルを呼び出してください。", +"Sharing" => "共有中", +"Enable Share API" => "Share APIを有効にする", +"Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可する", +"Allow links" => "URLリンクによる共有を許可する", +"Allow users to share items to the public with links" => "ユーザーにURLリンクによるアイテム共有を許可する", +"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" => "ユーザーがグループ内の人とのみ共有できるようにする", "Log" => "ログ", "More" => "もっと", "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 community</a>により開発されています、<a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ライセンスは、<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" => "アプリを追加", +"More Apps" => "さらにアプリを表示", "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ライセンス: <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "ヘルプデータベースへの接続時に問題が発生しました", "Go there manually." => "手動で移動してください。", "Answer" => "解答", -"You use" => "あなたは", -"of the available" => "を利用しています。利用可能容量:", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "現在、 <strong>%s</strong> / <strong>%s<strong> を利用しています", "Desktop and Mobile Syncing Clients" => "デスクトップおよびモバイル用の同期クライアント", "Download" => "ダウンロード", -"Your password got changed" => "パスワードは変更されました", +"Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", "Current password" => "現在のパスワード", "New password" => "新しいパスワード", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php new file mode 100644 index 00000000000..d1d9c767069 --- /dev/null +++ b/settings/l10n/ka_GE.php @@ -0,0 +1,70 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", +"Group already exists" => "ჯგუფი უკვე არსებობს", +"Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", +"Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", +"Email saved" => "იმეილი შენახულია", +"Invalid email" => "არასწორი იმეილი", +"OpenID Changed" => "OpenID შეცვლილია", +"Invalid request" => "არასწორი მოთხოვნა", +"Unable to delete group" => "ჯგუფის წაშლა ვერ მოხერხდა", +"Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", +"Language changed" => "ენა შეცვლილია", +"Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", +"Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", +"Disable" => "გამორთვა", +"Enable" => "ჩართვა", +"Saving..." => "შენახვა...", +"__language_name__" => "__language_name__", +"Security Warning" => "უსაფრთხოების გაფრთხილება", +"Cron" => "Cron", +"Execute one task with each page loaded" => "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php რეგისტრირებულია webcron servisad. Call the cron.php page in the owncloud root once a minute over http.", +"Sharing" => "გაზიარება", +"Enable Share API" => "Share API–ის ჩართვა", +"Allow apps to use the Share API" => "დაუშვი აპლიკაციების უფლება Share API –ზე", +"Allow links" => "ლინკების დაშვება", +"Allow users to share items to the public with links" => "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით", +"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" => "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის", +"Log" => "ლოგი", +"More" => "უფრო მეტი", +"Add your App" => "დაამატე შენი აპლიკაცია", +"More Apps" => "უფრო მეტი აპლიკაციები", +"Select an App" => "აირჩიეთ აპლიკაცია", +"See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ლიცენსირებულია <span class=\"author\"></span>", +"Documentation" => "დოკუმენტაცია", +"Managing Big Files" => "დიდი ფაილების მენეჯმენტი", +"Ask a question" => "დასვით შეკითხვა", +"Problems connecting to help database." => "დახმარების ბაზასთან წვდომის პრობლემა", +"Go there manually." => "წადი იქ შენით.", +"Answer" => "პასუხი", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "თქვენ გამოყენებული გაქვთ <strong>%s</strong> –ი –<strong>%s<strong>–დან", +"Desktop and Mobile Syncing Clients" => "დესკტოპ და მობილური კლიენტების სინქრონიზაცია", +"Download" => "ჩამოტვირთვა", +"Your password was changed" => "თქვენი პაროლი შეიცვალა", +"Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", +"Current password" => "მიმდინარე პაროლი", +"New password" => "ახალი პაროლი", +"show" => "გამოაჩინე", +"Change password" => "პაროლის შეცვლა", +"Email" => "იმეილი", +"Your email address" => "თქვენი იმეილ მისამართი", +"Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", +"Language" => "ენა", +"Help translate" => "თარგმნის დახმარება", +"use this address to connect to your ownCloud in your file manager" => "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში", +"Name" => "სახელი", +"Password" => "პაროლი", +"Groups" => "ჯგუფი", +"Create" => "შექმნა", +"Default Quota" => "საწყისი ქვოტა", +"Other" => "სხვა", +"Group Admin" => "ჯგუფის ადმინისტრატორი", +"Quota" => "ქვოტა", +"Delete" => "წაშლა" +); diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 3ea2674a18c..b2c00808967 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID 변경됨", "Invalid request" => "잘못된 요청", "Language changed" => "언어가 변경되었습니다", -"Error" => "에러", "Disable" => "비활성화", "Enable" => "활성화", "Saving..." => "저장...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "데이터베이스에 연결하는 데 문제가 발생하였습니다.", "Go there manually." => "직접 갈 수 있습니다.", "Answer" => "대답", -"You use" => "현재 사용 중:", -"of the available" => "사용 가능:", "Desktop and Mobile Syncing Clients" => "데스크탑 및 모바일 동기화 클라이언트", "Download" => "다운로드", -"Your password got changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", "Current password" => "현재 암호", "New password" => "새 암호", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index d840a1d710d..abad102bb59 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID huet geännert", "Invalid request" => "Ongülteg Requête", "Language changed" => "Sprooch huet geännert", -"Error" => "Fehler", "Disable" => "Ofschalten", "Enable" => "Aschalten", "Saving..." => "Speicheren...", @@ -30,11 +29,8 @@ "Problems connecting to help database." => "Problemer sinn opgetrueden beim Versuch sech un d'Hëllef Datebank ze verbannen.", "Go there manually." => "Gei manuell dohinner.", "Answer" => "Äntwert", -"You use" => "Du benotz", -"of the available" => "vun den disponibelen", "Desktop and Mobile Syncing Clients" => "Desktop an Mobile Syncing Clienten", "Download" => "Download", -"Your password got changed" => "Däin Passwuert ass geännert ginn", "Unable to change your password" => "Konnt däin Passwuert net änneren", "Current password" => "Momentan 't Passwuert", "New password" => "Neit Passwuert", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 169892d6b21..95b999e29ee 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,29 +1,31 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Neįmanoma įkelti sąrašo iš Programų Katalogo", +"Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", "OpenID Changed" => "OpenID pakeistas", "Invalid request" => "Klaidinga užklausa", "Language changed" => "Kalba pakeista", -"Error" => "Klaida", "Disable" => "Išjungti", "Enable" => "Įjungti", "Saving..." => "Saugoma..", "__language_name__" => "Kalba", "Security Warning" => "Saugumo įspėjimas", "Cron" => "Cron", +"Sharing" => "Dalijimasis", "Log" => "Žurnalas", "More" => "Daugiau", "Add your App" => "Pridėti programėlę", +"More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>- autorius<span class=\"author\"></span>", "Documentation" => "Dokumentacija", "Ask a question" => "Užduoti klausimą", "Problems connecting to help database." => "Problemos jungiantis prie duomenų bazės", "Answer" => "Atsakyti", -"You use" => "Jūs naudojate", -"of the available" => "iš galimų", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Jūs panaudojote <strong>%s</strong> iš galimų <strong>%s<strong>", "Download" => "Atsisiųsti", -"Your password got changed" => "Jūsų slaptažodis buvo pakeistas", +"Your password was changed" => "Jūsų slaptažodis buvo pakeistas", "Unable to change your password" => "Neįmanoma pakeisti slaptažodžio", "Current password" => "Dabartinis slaptažodis", "New password" => "Naujas slaptažodis", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 9780127890a..829cda0f917 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID nomainīts", "Invalid request" => "Nepareizs vaicājums", "Language changed" => "Valoda tika nomainīta", -"Error" => "Kļūme", "Disable" => "Atvienot", "Enable" => "Pievienot", "Saving..." => "Saglabā...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problēmas ar datubāzes savienojumu", "Go there manually." => "Nokļūt tur pašrocīgi", "Answer" => "Atbildēt", -"You use" => "Jūs iymantojat", -"of the available" => "no pieejamajiem", "Desktop and Mobile Syncing Clients" => "Desktop un mobīlo ierīču sinhronizācijas rīks", "Download" => "Lejuplādēt", -"Your password got changed" => "Jūsu parole tika nomainīta", "Unable to change your password" => "Nav iespējams nomainīt jūsu paroli", "Current password" => "Pašreizējā parole", "New password" => "Jauna parole", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index ce89f3b40c7..78d05660e71 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -19,11 +19,8 @@ "Problems connecting to help database." => "Проблем при поврзување со базата за помош", "Go there manually." => "Оди таму рачно.", "Answer" => "Одговор", -"You use" => "Вие користите", -"of the available" => "од достапните", "Desktop and Mobile Syncing Clients" => "Десктоп и мобилник клиенти за синхронизирање", "Download" => "Преземање", -"Your password got changed" => "Вашата лозинка беше сменета", "Unable to change your password" => "Вашата лозинка неможе да се смени", "Current password" => "Моментална лозинка", "New password" => "Нова лозинка", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index a1d3007c895..18719989462 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -21,11 +21,8 @@ "Problems connecting to help database." => "Masalah menghubung untuk membantu pengkalan data", "Go there manually." => "Pergi ke sana secara manual", "Answer" => "Jawapan", -"You use" => "Anda menggunakan", -"of the available" => "yang tersedia", "Desktop and Mobile Syncing Clients" => "Klien Selarian untuk Desktop dan Mobile", "Download" => "Muat turun", -"Your password got changed" => "Kata laluan anda diubah", "Unable to change your password" => "Gagal mengubah kata laluan anda ", "Current password" => "Kata laluan semasa", "New password" => "Kata laluan baru", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 8a1f42b7bfb..daeb1b78e7f 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID endret", "Invalid request" => "Ugyldig forespørsel", "Language changed" => "Språk endret", -"Error" => "Feil", "Disable" => "Slå avBehandle ", "Enable" => "Slå på", "Saving..." => "Lagrer...", @@ -24,11 +23,8 @@ "Problems connecting to help database." => "Problemer med å koble til hjelp-databasen", "Go there manually." => "Gå dit manuelt", "Answer" => "Svar", -"You use" => "Du bruker", -"of the available" => "av den tilgjengelige", "Desktop and Mobile Syncing Clients" => "Klienter for datamaskiner og mobile enheter", "Download" => "Last ned", -"Your password got changed" => "Passordet ditt ble endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", "Current password" => "Nåværende passord", "New password" => "Nytt passord", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 098f29a06e7..d24c4f04ad1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -13,7 +13,6 @@ "Language changed" => "Taal aangepast", "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", -"Error" => "Fout", "Disable" => "Uitschakelen", "Enable" => "Inschakelen", "Saving..." => "Aan het bewaren.....", @@ -21,7 +20,10 @@ "Security Warning" => "Veiligheidswaarschuwing", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 hoogst waarschijnlijk vanaf het internet bereikbaar. Het .htaccess bestand dat ownCloud meelevert werkt niet. Het is ten zeerste aangeraden om uw webserver zodanig te configureren, dat de data folder niet bereikbaar is vanaf het internet of verplaatst uw data folder naar een locatie buiten de webserver document root.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Voer één taak uit met elke pagina die wordt geladen", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is bij een webcron dienst geregistreerd. Roep de cron.php pagina in de owncloud root via http één maal per minuut op.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gebruik de systeem cron dienst. Gebruik, eens per minuut, het bestand cron.php in de owncloud map via de systeem cronjob.", +"Sharing" => "Delen", "Enable Share API" => "Zet de Deel API aan", "Allow apps to use the Share API" => "Sta apps toe om de Deel API te gebruiken", "Allow links" => "Sta links toe", @@ -34,6 +36,7 @@ "More" => "Meer", "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>." => "Ontwikkeld door de <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud gemeenschap</a>, de <a href=\"https://github.com/owncloud\" target=\"_blank\">bron code</a> is gelicenseerd onder de <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" => "Voeg je App toe", +"More Apps" => "Meer apps", "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-Gelicenseerd door <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "Problemen bij het verbinden met de helpdatabank.", "Go there manually." => "Ga er zelf heen.", "Answer" => "Beantwoord", -"You use" => "U gebruikt", -"of the available" => "van de beschikbare", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Je hebt <strong>%s</strong> gebruikt van de beschikbare <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Desktop en mobiele synchronisatie apparaten", "Download" => "Download", -"Your password got changed" => "Uw wachtwoord is aangepast", +"Your password was changed" => "Je wachtwoord is veranderd", "Unable to change your password" => "Niet in staat om uw wachtwoord te wijzigen", "Current password" => "Huidig wachtwoord", "New password" => "Nieuw wachtwoord", @@ -65,7 +67,7 @@ "Create" => "Creëer", "Default Quota" => "Standaard limiet", "Other" => "Andere", -"Group Admin" => "Groep Administrator", +"Group Admin" => "Groep beheerder", "Quota" => "Limieten", "Delete" => "verwijderen" ); diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 25cf29b91d5..d712f749bbf 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -6,7 +6,6 @@ "OpenID Changed" => "OpenID endra", "Invalid request" => "Ugyldig førespurnad", "Language changed" => "Språk endra", -"Error" => "Feil", "Disable" => "Slå av", "Enable" => "Slå på", "__language_name__" => "Nynorsk", @@ -15,9 +14,6 @@ "Problems connecting to help database." => "Problem ved tilkopling til hjelpedatabasen.", "Go there manually." => "Gå der på eigen hand.", "Answer" => "Svar", -"You use" => "Du bruker", -"of the available" => "av dei tilgjengelege", -"Your password got changed" => "Passordet ditt er endra", "Unable to change your password" => "Klarte ikkje å endra passordet", "Current password" => "Passord", "New password" => "Nytt passord", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php new file mode 100644 index 00000000000..28835df95c1 --- /dev/null +++ b/settings/l10n/oc.php @@ -0,0 +1,61 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Pas possible de cargar la tièra dempuèi App Store", +"Authentication error" => "Error d'autentificacion", +"Group already exists" => "Lo grop existís ja", +"Unable to add group" => "Pas capable d'apondre un grop", +"Could not enable app. " => "Pòt pas activar app. ", +"Email saved" => "Corrièl enregistrat", +"Invalid email" => "Corrièl incorrècte", +"OpenID Changed" => "OpenID cambiat", +"Invalid request" => "Demanda invalida", +"Unable to delete group" => "Pas capable d'escafar un grop", +"Unable to delete user" => "Pas capable d'escafar un usancièr", +"Language changed" => "Lengas cambiadas", +"Unable to add user to group %s" => "Pas capable d'apondre un usancièr al grop %s", +"Unable to remove user from group %s" => "Pas capable de tira un usancièr del grop %s", +"Disable" => "Desactiva", +"Enable" => "Activa", +"Saving..." => "Enregistra...", +"__language_name__" => "__language_name__", +"Security Warning" => "Avertiment de securitat", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Executa un prètfach amb cada pagina cargada", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta.", +"Sharing" => "Al partejar", +"Enable Share API" => "Activa API partejada", +"Log" => "Jornal", +"More" => "Mai d'aquò", +"Add your App" => "Ajusta ton App", +"Select an App" => "Selecciona una applicacion", +"See application page at apps.owncloud.com" => "Agacha la pagina d'applications en cò de apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licençiat per <span class=\"author\"></span>", +"Documentation" => "Documentacion", +"Managing Big Files" => "Al bailejar de fichièrs pesucasses", +"Ask a question" => "Respond a una question", +"Problems connecting to help database." => "Problemas al connectar de la basa de donadas d'ajuda", +"Go there manually." => "Vas çai manualament", +"Answer" => "Responsa", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "As utilizat <strong>%s</strong> dels <strong>%s<strong> disponibles", +"Download" => "Avalcarga", +"Your password was changed" => "Ton senhal a cambiat", +"Unable to change your password" => "Pas possible de cambiar ton senhal", +"Current password" => "Senhal en cors", +"New password" => "Senhal novèl", +"show" => "mòstra", +"Change password" => "Cambia lo senhal", +"Email" => "Corrièl", +"Your email address" => "Ton adreiça de corrièl", +"Fill in an email address to enable password recovery" => "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut", +"Language" => "Lenga", +"Help translate" => "Ajuda a la revirada", +"use this address to connect to your ownCloud in your file manager" => "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs", +"Name" => "Nom", +"Password" => "Senhal", +"Groups" => "Grops", +"Create" => "Crea", +"Default Quota" => "Quota per defaut", +"Other" => "Autres", +"Group Admin" => "Grop Admin", +"Quota" => "Quota", +"Delete" => "Escafa" +); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 7a3dfdfdde0..5ea1f022c66 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -3,6 +3,7 @@ "Authentication error" => "Błąd uwierzytelniania", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", +"Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "OpenID Changed" => "Zmieniono OpenID", @@ -12,14 +13,17 @@ "Language changed" => "Język zmieniony", "Unable to add user to group %s" => "Nie można dodać użytkownika do grupy %s", "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", -"Error" => "Błąd", -"Disable" => "Wyłączone", -"Enable" => "Włączone", +"Disable" => "Wyłącz", +"Enable" => "Włącz", "Saving..." => "Zapisywanie...", "__language_name__" => "Polski", "Security Warning" => "Ostrzeżenia bezpieczeństwa", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Wykonanie jednego zadania z każdej strony wczytywania", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym owncloud raz na minute przez http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Użyj usługi systemowej cron. Przywołaj plik cron.php z katalogu owncloud przez systemowe cronjob raz na minute.", +"Sharing" => "Udostępnianij", "Enable Share API" => "Włącz udostępniane API", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na używanie API", "Allow links" => "Zezwalaj na łącza", @@ -32,6 +36,7 @@ "More" => "Więcej", "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>." => "Stwirzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\"> społeczność ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródłowy</a> na licencji <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" => "Dodaj aplikacje", +"More Apps" => "Więcej aplikacji", "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencjonowane przez <span class=\"author\"></span>", @@ -41,11 +46,10 @@ "Problems connecting to help database." => "Problem z połączeniem z bazą danych.", "Go there manually." => "Przejdź na stronę ręcznie.", "Answer" => "Odpowiedź", -"You use" => "Używane", -"of the available" => "z dostępnych", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Używasz <strong>%s</strong> z dostępnych <strong>%s</strong>", "Desktop and Mobile Syncing Clients" => "Klienci synchronizacji", "Download" => "Ściągnij", -"Your password got changed" => "Zmieniono hasło", +"Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", "Current password" => "Bieżące hasło", "New password" => "Nowe hasło", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index b5579d4f9e8..7ca5160d9a8 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,32 +1,55 @@ <?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Não foi possivel carregar lista da App Store", "Authentication error" => "erro de autenticação", +"Group already exists" => "Grupo já existe", +"Unable to add group" => "Não foi possivel adicionar grupo", +"Could not enable app. " => "Não pôde habilitar aplicação", "Email saved" => "Email gravado", "Invalid email" => "Email inválido", "OpenID Changed" => "Mudou OpenID", "Invalid request" => "Pedido inválido", +"Unable to delete group" => "Não foi possivel remover grupo", +"Unable to delete user" => "Não foi possivel remover usuário", "Language changed" => "Mudou Idioma", -"Error" => "Erro", +"Unable to add user to group %s" => "Não foi possivel adicionar usuário ao grupo %s", +"Unable to remove user from group %s" => "Não foi possivel remover usuário ao grupo %s", "Disable" => "Desabilitado", "Enable" => "Habilitado", "Saving..." => "Gravando...", "__language_name__" => "Português", "Security Warning" => "Aviso de Segurança", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Executa uma tarefa com cada página carregada", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado no serviço webcron. Chama a página cron.php na raíz do owncloud uma vez por minuto via http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa o serviço cron do sistema. Chama o arquivo cron.php na pasta do owncloud através do cronjob do sistema uma vez a cada minuto.", +"Sharing" => "Compartilhamento", +"Enable Share API" => "Habilitar API de Compartilhamento", +"Allow apps to use the Share API" => "Permitir aplicações a usar a API de Compartilhamento", +"Allow links" => "Permitir links", +"Allow users to share items to the public with links" => "Permitir usuários a compartilhar itens para o público com links", +"Allow resharing" => "Permitir re-compartilhamento", +"Allow users to share items shared with them again" => "Permitir usuário a compartilhar itens compartilhados com eles novamente", +"Allow users to share with anyone" => "Permitir usuários a compartilhar com qualquer um", +"Allow users to only share with users in their groups" => "Permitir usuários a somente compartilhar com usuários em seus respectivos grupos", "Log" => "Log", "More" => "Mais", +"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>." => "Desenvolvido pela <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está licenciado sob <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" => "Adicione seu Aplicativo", +"More Apps" => "Mais Apps", "Select an App" => "Selecione uma Aplicação", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\"></span>", "Documentation" => "Documentação", "Managing Big Files" => "Gerênciando Arquivos Grandes", "Ask a question" => "Faça uma pergunta", "Problems connecting to help database." => "Problemas ao conectar na base de dados.", "Go there manually." => "Ir manualmente.", "Answer" => "Resposta", -"You use" => "Você usa", -"of the available" => "do disponível", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Você usou <strong>%s</strong> do espaço disponível de <strong>%s</strong> ", "Desktop and Mobile Syncing Clients" => "Sincronizando Desktop e Mobile", "Download" => "Download", -"Your password got changed" => "Sua senha foi modificada", +"Your password was changed" => "Sua senha foi alterada", "Unable to change your password" => "Não é possivel alterar a sua senha", "Current password" => "Senha atual", "New password" => "Nova senha", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index bf5a742e1b0..a5eb8c399be 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,36 +1,57 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro de autenticação", +"Group already exists" => "O grupo já existe", +"Unable to add group" => "Impossível acrescentar o grupo", +"Could not enable app. " => "Não foi possível activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", "OpenID Changed" => "OpenID alterado", "Invalid request" => "Pedido inválido", +"Unable to delete group" => "Impossível apagar grupo", +"Unable to delete user" => "Impossível apagar utilizador", "Language changed" => "Idioma alterado", -"Error" => "Erro", -"Disable" => "Desativar", -"Enable" => "Ativar", +"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", +"Disable" => "Desactivar", +"Enable" => "Activar", "Saving..." => "A guardar...", "__language_name__" => "__language_name__", "Security Warning" => "Aviso de Segurança", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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. 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.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Executar uma tarefa ao carregar cada página", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registado num serviço webcron. Chame a página cron.php na raiz owncloud por http uma vez por minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar o serviço cron do sistema. Chame a página cron.php na pasta owncloud via um cronjob do sistema uma vez por minuto.", +"Sharing" => "Partilhando", +"Enable Share API" => "Activar API de partilha", +"Allow apps to use the Share API" => "Permitir que as aplicações usem a API de partilha", +"Allow links" => "Permitir ligações", +"Allow users to share items to the public with links" => "Permitir que os utilizadores partilhem itens com o público com ligações", +"Allow resharing" => "Permitir voltar a partilhar", +"Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens que foram partilhados com eles", +"Allow users to share with anyone" => "Permitir que os utilizadores partilhem com toda a gente", +"Allow users to only share with users in their groups" => "Permitir que os utilizadores apenas partilhem com utilizadores do seu grupo", "Log" => "Log", "More" => "Mais", +"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>." => "Desenvolvido pela <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o<a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está licenciado sob a <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" => "Adicione a sua aplicação", +"More Apps" => "Mais Aplicações", "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\"></span>", "Documentation" => "Documentação", "Managing Big Files" => "Gestão de ficheiros grandes", "Ask a question" => "Coloque uma questão", -"Problems connecting to help database." => "Problemas ao conectar à base de dados de ajuda", +"Problems connecting to help database." => "Problemas ao ligar à base de dados de ajuda", "Go there manually." => "Vá lá manualmente", "Answer" => "Resposta", -"You use" => "Está a usar", -"of the available" => "do disponível", -"Desktop and Mobile Syncing Clients" => "Clientes de sincronização desktop e movel", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Usou <strong>%s</strong> dos <strong>%s<strong> disponíveis.", +"Desktop and Mobile Syncing Clients" => "Clientes de sincronização desktop e móvel", "Download" => "Transferir", -"Your password got changed" => "A sua palavra-chave foi alterada", +"Your password was changed" => "A sua palavra-passe foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", -"Current password" => "Palavra-chave atual", +"Current password" => "Palavra-chave actual", "New password" => "Nova palavra-chave", "show" => "mostrar", "Change password" => "Alterar palavra-chave", @@ -39,12 +60,12 @@ "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", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", -"use this address to connect to your ownCloud in your file manager" => "utilize este endereço para conectar ao seu ownCloud através do seu gerenciador de ficheiros", +"use this address to connect to your ownCloud in your file manager" => "utilize este endereço para ligar ao seu ownCloud através do seu gestor de ficheiros", "Name" => "Nome", "Password" => "Palavra-chave", "Groups" => "Grupos", "Create" => "Criar", -"Default Quota" => "Quota por defeito", +"Default Quota" => "Quota por padrão", "Other" => "Outro", "Group Admin" => "Grupo Administrador", "Quota" => "Quota", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index e072daa9913..ee0d804716b 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,34 +1,54 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposibil de încărcat lista din App Store", "Authentication error" => "Eroare de autentificare", +"Group already exists" => "Grupul există deja", +"Unable to add group" => "Nu s-a putut adăuga grupul", +"Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "OpenID Changed" => "OpenID schimbat", "Invalid request" => "Cerere eronată", +"Unable to delete group" => "Nu s-a putut șterge grupul", +"Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", -"Error" => "Erroare", +"Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", +"Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Disable" => "Dezactivați", "Enable" => "Activați", "Saving..." => "Salvez...", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Execută o sarcină la fiecare pagină încărcată", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut.", +"Sharing" => "Partajare", +"Enable Share API" => "Activare API partajare", +"Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", +"Allow links" => "Pemite legături", +"Allow users to share items to the public with links" => "Permite utilizatorilor să partajeze fișiere în mod public prin legături", +"Allow resharing" => "Permite repartajarea", +"Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", +"Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", +"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", "Log" => "Jurnal de activitate", "More" => "Mai mult", +"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>." => "Dezvoltat de the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitatea ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">codul sursă</a> este licențiat sub <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" => "Adaugă aplicația ta", "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licențiat <span class=\"author\"></span>", "Documentation" => "Documetație", "Managing Big Files" => "Gestionînd fișiere mari", "Ask a question" => "Întreabă", "Problems connecting to help database." => "Probleme de conectare la baza de date.", "Go there manually." => "Pe cale manuală.", "Answer" => "Răspuns", -"You use" => "Utilizezi", -"of the available" => "din cele diponibile", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Ai utilizat <strong>%s</strong> din <strong>%s<strong> spațiu disponibil", "Desktop and Mobile Syncing Clients" => "Clienți de sincronizare pentru telefon mobil și desktop", "Download" => "Descărcări", -"Your password got changed" => "Parola ta s-a schimbat", +"Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", "Current password" => "Parola curentă", "New password" => "Noua parolă", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 7ae8d53174a..33d378cdf38 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,18 +1,18 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Загрузка из App Store запрещена", -"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось включить приложение.", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", "OpenID Changed" => "OpenID изменён", "Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", +"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменён", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", -"Error" => "Ошибка", "Disable" => "Выключить", "Enable" => "Включить", "Saving..." => "Сохранение...", @@ -20,6 +20,10 @@ "Security Warning" => "Предупреждение безопасности", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 и ваши файлы в нем доступны из интернета. Предоставляемый ownCloud файл htaccess не работает. Настоятельно рекомендуем настроить сервер таким образом, чтобы закрыть доступ к каталогу data или вынести каталог data за пределы корневого каталога веб-сервера.", "Cron" => "Задание", +"Execute one task with each page loaded" => "Выполнять одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Общий доступ", "Enable Share API" => "Включить API публикации", "Allow apps to use the Share API" => "Разрешить API публикации для приложений", "Allow links" => "Разрешить ссылки", @@ -32,6 +36,7 @@ "More" => "Ещё", "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</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">исходный код</a> доступен под лицензией <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" => "Добавить приложение", +"More Apps" => "Больше приложений", "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>", @@ -41,11 +46,10 @@ "Problems connecting to help database." => "Проблема соединения с базой данных помощи.", "Go there manually." => "Войти самостоятельно.", "Answer" => "Ответ", -"You use" => "Вы используете", -"of the available" => "из доступных", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Вы использовали <strong>%s</strong> из доступных <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Клиенты синхронизации для рабочих станций и мобильных устройств", "Download" => "Загрузка", -"Your password got changed" => "Ваш пароль был изменён", +"Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", "Current password" => "Текущий пароль", "New password" => "Новый пароль", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 2b7400968a0..48190a68455 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,42 +1,55 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Невозможно загрузить список из App Store", -"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось запустить приложение", "Email saved" => "Email сохранен", "Invalid email" => "Неверный email", "OpenID Changed" => "OpenID изменен", "Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", +"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", -"Error" => "Ошибка", "Disable" => "Отключить", "Enable" => "Включить", "Saving..." => "Сохранение", "__language_name__" => "__язык_имя__", "Security Warning" => "Предупреждение системы безопасности", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем Вам настроить сервер таким образом, чтобы каталог данных был бы больше не доступен, или переместить каталог данных за пределы корневой папки веб-сервера.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Выполняйте одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Совместное использование", "Enable Share API" => "Включить разделяемые API", +"Allow apps to use the Share API" => "Разрешить приложениям использовать Share API", "Allow links" => "Предоставить ссылки", +"Allow users to share items to the public with links" => "Позволяет пользователям добавлять объекты в общий доступ по ссылке", +"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" => "Разрешить пользователям разделение только с пользователями в их группах", "Log" => "Вход", "More" => "Подробнее", +"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 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>.", "Add your App" => "Добавить Ваше приложение", +"More Apps" => "Больше приложений", "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>", "Documentation" => "Документация", "Managing Big Files" => "Управление большими файлами", "Ask a question" => "Задать вопрос", +"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных", "Go there manually." => "Сделать вручную.", "Answer" => "Ответ", -"You use" => "Вы используете", -"of the available" => "из доступных", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Вы использовали <strong>%s</strong> из доступных<strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Клиенты синхронизации настольной и мобильной систем", "Download" => "Загрузка", -"Your password got changed" => "Ваш пароль был изменен", +"Your password was changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", "Current password" => "Текущий пароль", "New password" => "Новый пароль", @@ -54,6 +67,7 @@ "Create" => "Создать", "Default Quota" => "Квота по умолчанию", "Other" => "Другой", +"Group Admin" => "Группа Admin", "Quota" => "квота", "Delete" => "Удалить" ); diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php new file mode 100644 index 00000000000..ecd2403c293 --- /dev/null +++ b/settings/l10n/si_LK.php @@ -0,0 +1,51 @@ +<?php $TRANSLATIONS = array( +"Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", +"Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", +"Could not enable app. " => "යෙදුම සක්රීය කළ නොහැකි විය.", +"Invalid request" => "අවලංගු අයදුම", +"Unable to delete group" => "කණ්ඩායම මැකීමට නොහැක", +"Unable to delete user" => "පරිශීලකයා මැකීමට නොහැක", +"Language changed" => "භාෂාව ාවනස් කිරීම", +"Unable to add user to group %s" => "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", +"Unable to remove user from group %s" => "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක", +"Disable" => "අක්රිය කරන්න", +"Enable" => "ක්රියත්මක කරන්න", +"Saving..." => "සුරැකෙමින් පවතී...", +"Sharing" => "හුවමාරු කිරීම", +"Allow links" => "යොමු සලසන්න", +"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" => "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි", +"Log" => "ලඝුව", +"More" => "තවත්", +"Add your App" => "යෙදුමක් එක් කිරීම", +"More Apps" => "තවත් යෙදුම්", +"Select an App" => "යෙදුමක් තොරන්න", +"Documentation" => "ලේඛන", +"Managing Big Files" => "විශාල ගොනු කළමණාකරනය", +"Ask a question" => "ප්රශ්ණයක් අසන්න", +"Problems connecting to help database." => "උදව් දත්ත ගබඩාව හා සම්බන්ධවීමේදී ගැටළු ඇතිවිය.", +"Answer" => "පිළිතුර", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "ඔබ <strong>%s</strong>ක් භාවිතා කර ඇත. මුළු ප්රමාණය <strong>%s</strong>කි", +"Download" => "භාගත කරන්න", +"Your password was changed" => "ඔබගේ මුර පදය වෙනස් කෙරුණි", +"Unable to change your password" => "මුර පදය වෙනස් කළ නොහැකි විය", +"Current password" => "නූතන මුරපදය", +"New password" => "නව මුරපදය", +"show" => "ප්රදර්ශනය කිරීම", +"Change password" => "මුරපදය වෙනස් කිරීම", +"Email" => "විද්යුත් තැපෑල", +"Your email address" => "ඔබගේ විද්යුත් තැපෑල", +"Fill in an email address to enable password recovery" => "මුරපද ප්රතිස්ථාපනය සඳහා විද්යුත් තැපැල් විස්තර ලබා දෙන්න", +"Language" => "භාෂාව", +"Help translate" => "පරිවර්ථන සහය", +"Name" => "නාමය", +"Password" => "මුරපදය", +"Groups" => "සමූහය", +"Create" => "තනනවා", +"Other" => "වෙනත්", +"Group Admin" => "කාණ්ඩ පරිපාලක", +"Quota" => "සලාකය", +"Delete" => "මකා දමනවා" +); diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index f8032afe5b4..8309c0f12c7 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,30 +1,56 @@ <?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store", +"Group already exists" => "Skupina už existuje", +"Unable to add group" => "Nie je možné pridať skupinu", +"Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "OpenID Changed" => "OpenID zmenené", "Invalid request" => "Neplatná požiadavka", +"Unable to delete group" => "Nie je možné odstrániť skupinu", +"Authentication error" => "Chyba pri autentifikácii", +"Unable to delete user" => "Nie je možné odstrániť používateľa", "Language changed" => "Jazyk zmenený", +"Unable to add user to group %s" => "Nie je možné pridať užívateľa do skupiny %s", +"Unable to remove user from group %s" => "Nie je možné odstrániť používateľa zo skupiny %s", "Disable" => "Zakázať", "Enable" => "Povoliť", "Saving..." => "Ukladám...", "__language_name__" => "Slovensky", +"Security Warning" => "Bezpečnostné varovanie", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 a vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Vykonať jednu úlohu každým nahraním stránky", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je zaregistrovaný v službe webcron. Tá zavolá stránku cron.php v koreňovom adresári owncloud každú minútu cez http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Používať systémovú službu cron. Každú minútu bude spustený súbor cron.php v priečinku owncloud pomocou systémového programu cronjob.", +"Sharing" => "Zdieľanie", +"Enable Share API" => "Zapnúť API zdieľania", +"Allow apps to use the Share API" => "Povoliť aplikáciam používať API pre zdieľanie", +"Allow links" => "Povoliť odkazy", +"Allow users to share items to the public with links" => "Povoliť používateľom zdieľať obsah pomocou verejných odkazov", +"Allow resharing" => "Povoliť opakované zdieľanie", +"Allow users to share items shared with them again" => "Povoliť zdieľanie zdielaného obsahu iného užívateľa", +"Allow users to share with anyone" => "Povoliť používateľom zdieľať s každým", +"Allow users to only share with users in their groups" => "Povoliť používateľom zdieľanie iba s používateľmi ich vlastnej skupiny", "Log" => "Záznam", "More" => "Viac", +"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>." => "Vyvinuté <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencovaný pod <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" => "Pridať vašu aplikáciu", +"More Apps" => "Viac aplikácií", "Select an App" => "Vyberte aplikáciu", -"See application page at apps.owncloud.com" => "Pozrite si stránku aplikácie na apps.owncloud.com", +"See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencované <span class=\"author\"></span>", "Documentation" => "Dokumentácia", -"Managing Big Files" => "Spravovanie veľké súbory", -"Ask a question" => "Opýtajte sa otázku", -"Problems connecting to help database." => "Problémy spojené s pomocnou databázou.", +"Managing Big Files" => "Správa veľkých súborov", +"Ask a question" => "Opýtať sa otázku", +"Problems connecting to help database." => "Problémy s pripojením na databázu pomocníka.", "Go there manually." => "Prejsť tam ručne.", "Answer" => "Odpoveď", -"You use" => "Používate", -"of the available" => "z dostupných", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Použili ste <strong>%s</strong> dostupného <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Klienti pre synchronizáciu", "Download" => "Stiahnúť", -"Your password got changed" => "Vaše heslo sa zmenilo", -"Unable to change your password" => "Nedokážem zmeniť vaše heslo", +"Your password was changed" => "Heslo bolo zmenené", +"Unable to change your password" => "Nie je možné zmeniť vaše heslo", "Current password" => "Aktuálne heslo", "New password" => "Nové heslo", "show" => "zobraziť", @@ -41,6 +67,7 @@ "Create" => "Vytvoriť", "Default Quota" => "Predvolená kvóta", "Other" => "Iné", +"Group Admin" => "Správca skupiny", "Quota" => "Kvóta", "Delete" => "Odstrániť" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index b15a70aef1d..1aa5de80596 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,29 +1,31 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Ne morem naložiti seznama iz App Store", -"Authentication error" => "Napaka overitve", +"Unable to load list from App Store" => "Ni mogoče naložiti seznama iz App Store", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoče dodati skupine", -"Could not enable app. " => "Aplikacije ni bilo mogoče omogočiti.", -"Email saved" => "E-poštni naslov je bil shranjen", -"Invalid email" => "Neveljaven e-poštni naslov", +"Could not enable app. " => "Programa ni mogoče omogočiti.", +"Email saved" => "Elektronski naslov je shranjen", +"Invalid email" => "Neveljaven elektronski naslov", "OpenID Changed" => "OpenID je bil spremenjen", -"Invalid request" => "Neveljaven zahtevek", +"Invalid request" => "Neveljavna zahteva", "Unable to delete group" => "Ni mogoče izbrisati skupine", +"Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "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", -"Error" => "Napaka", "Disable" => "Onemogoči", "Enable" => "Omogoči", -"Saving..." => "Shranjevanje...", +"Saving..." => "Poteka shranjevanje ...", "__language_name__" => "__ime_jezika__", "Security Warning" => "Varnostno opozorilo", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni omogočena. Močno priporočamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", -"Enable Share API" => "Omogoči API souporabe", -"Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", +"Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem izmed ponudnikov spletnih storitev za periodična opravila. Preko protokola HTTP pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemske storitve za periodična opravila. Preko sistema povežite datoteko cron.php, ki se nahaja v korenski mapi ownCloud , enkrat na minuto.", +"Sharing" => "Souporaba", +"Enable Share API" => "Omogoči vmesnik souporabe", +"Allow apps to use the Share API" => "Programom dovoli uporabo vmesnika souporabe", "Allow links" => "Dovoli povezave", "Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami", "Allow resharing" => "Dovoli nadaljnjo souporabo", @@ -32,40 +34,40 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", -"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>." => "Razvija ga <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud skupnost</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <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" => "Dodajte vašo aplikacijo", -"Select an App" => "Izberite aplikacijo", -"See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", -"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencirana s strani <span class=\"author\"></span>", +"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>." => "Programski paket razvija <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnost ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je objavljena pod pogoji dovoljenja <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Splošno javno dovoljenje Affero\">AGPL</abbr></a>.", +"Add your App" => "Dodaj program", +"More Apps" => "Več programov", +"Select an App" => "Izberite program", +"See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-z dovoljenjem s strani <span class=\"author\"></span>", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", -"Ask a question" => "Postavi vprašanje", -"Problems connecting to help database." => "Težave pri povezovanju s podatkovno zbirko pomoči.", -"Go there manually." => "Pojdi tja ročno.", +"Ask a question" => "Zastavi vprašanje", +"Problems connecting to help database." => "Težave med povezovanjem s podatkovno zbirko pomoči.", +"Go there manually." => "Ustvari povezavo ročno.", "Answer" => "Odgovor", -"You use" => "Uporabljate", -"of the available" => "od razpoložljivih", -"Desktop and Mobile Syncing Clients" => "Namizni in mobilni odjemalci za sinhronizacijo", -"Download" => "Prenesi", -"Your password got changed" => "Vaše geslo je bilo spremenjeno", -"Unable to change your password" => "Vašega gesla ni bilo mogoče spremeniti.", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Uporabili ste <strong>%s</strong> od razpoložljivih <strong>%s<strong>", +"Desktop and Mobile Syncing Clients" => "Namizni in mobilni odjemalci za usklajevanje", +"Download" => "Prejmi", +"Your password was changed" => "Vaše geslo je spremenjeno", +"Unable to change your password" => "Gesla ni mogoče spremeniti.", "Current password" => "Trenutno geslo", "New password" => "Novo geslo", -"show" => "prikaži", +"show" => "pokaži", "Change password" => "Spremeni geslo", -"Email" => "E-pošta", -"Your email address" => "Vaš e-poštni naslov", -"Fill in an email address to enable password recovery" => "Vpišite vaš e-poštni naslov in s tem omogočite obnovitev gesla", +"Email" => "Elektronska pošta", +"Your email address" => "Vaš elektronski poštni naslov", +"Fill in an email address to enable password recovery" => "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla", "Language" => "Jezik", "Help translate" => "Pomagajte pri prevajanju", -"use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek.", +"use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v upravljalniku datotek.", "Name" => "Ime", "Password" => "Geslo", "Groups" => "Skupine", "Create" => "Ustvari", "Default Quota" => "Privzeta količinska omejitev", "Other" => "Drugo", -"Group Admin" => "Administrator skupine", +"Group Admin" => "Skrbnik skupine", "Quota" => "Količinska omejitev", "Delete" => "Izbriši" ); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 84881c2f1a8..3fc1cd8c1ec 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -7,9 +7,6 @@ "Problems connecting to help database." => "Проблем у повезивању са базом помоћи", "Go there manually." => "Отиђите тамо ручно.", "Answer" => "Одговор", -"You use" => "Користите", -"of the available" => "од доступних", -"Your password got changed" => "Ваша лозинка је измењена", "Unable to change your password" => "Не могу да изменим вашу лозинку", "Current password" => "Тренутна лозинка", "New password" => "Нова лозинка", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 8bfc0fa989f..5a85856979d 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -7,9 +7,6 @@ "Problems connecting to help database." => "Problem u povezivanju sa bazom pomoći", "Go there manually." => "Otiđite tamo ručno.", "Answer" => "Odgovor", -"You use" => "Koristite", -"of the available" => "od dostupnih", -"Your password got changed" => "Vaša lozinka je izmenjena", "Unable to change your password" => "Ne mogu da izmenim vašu lozinku", "Current password" => "Trenutna lozinka", "New password" => "Nova lozinka", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 88865020444..17d33896423 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -13,7 +13,6 @@ "Language changed" => "Språk ändrades", "Unable to add user to group %s" => "Kan inte lägga till användare i gruppen %s", "Unable to remove user from group %s" => "Kan inte radera användare från gruppen %s", -"Error" => "Fel", "Disable" => "Deaktivera", "Enable" => "Aktivera", "Saving..." => "Sparar...", @@ -21,7 +20,10 @@ "Security Warning" => "Säkerhetsvarning", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 datamapp och dina filer kan möjligen vara nåbara från internet. Filen .htaccess som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du ställer in din webbserver på ett sätt så att datamappen inte är nåbar. Alternativt att ni flyttar datamappen utanför webbservern.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut.", +"Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", @@ -34,6 +36,7 @@ "More" => "Mera", "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>." => "Utvecklad av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kommunity</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">källkoden</a> är licenserad under <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" => "Lägg till din applikation", +"More Apps" => "Fler Appar", "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensierad av <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "Problem med att ansluta till hjälpdatabasen.", "Go there manually." => "Gå dit manuellt.", "Answer" => "Svar", -"You use" => "Du använder", -"of the available" => "av tillgängliga", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Du har använt <strong>%s</strong> av tillgängliga <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Synkroniseringsklienter för dator och mobil", "Download" => "Ladda ner", -"Your password got changed" => "Ditt lösenord har ändrats", +"Your password was changed" => "Ditt lösenord har ändrats", "Unable to change your password" => "Kunde inte ändra ditt lösenord", "Current password" => "Nuvarande lösenord", "New password" => "Nytt lösenord", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 074c8128b41..0b2d1ecfb54 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -13,7 +13,6 @@ "Language changed" => "เปลี่ยนภาษาเรียบร้อยแล้ว", "Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", "Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", -"Error" => "ข้อผิดพลาด", "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", "Saving..." => "กำลังบันทึุกข้อมูล...", @@ -21,7 +20,10 @@ "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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 ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", +"Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", +"Sharing" => "การแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", "Allow links" => "อนุญาตให้ใช้งานลิงก์ได้", @@ -34,6 +36,7 @@ "More" => "เพิ่มเติม", "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>." => "พัฒนาโดย the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ชุมชนผู้ใช้งาน ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">ซอร์สโค้ด</a>อยู่ภายใต้สัญญาอนุญาตของ <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" => "เพิ่มแอปของคุณ", +"More Apps" => "แอปฯอื่นเพิ่มเติม", "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ลิขสิทธิ์การใช้งานโดย <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "เกิดปัญหาในการเชื่อมต่อกับฐานข้อมูลช่วยเหลือ", "Go there manually." => "ไปที่นั่นด้วยตนเอง", "Answer" => "คำตอบ", -"You use" => "คุณใช้พื้นที่ไป", -"of the available" => "จากจำนวนที่ใช้ได้", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "คุณได้ใช้ <strong>%s</strong> จากที่สามารถใช้ได้ <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "โปรแกรมเชื่อมข้อมูลไฟล์สำหรับเครื่องเดสก์ท็อปและมือถือ", "Download" => "ดาวน์โหลด", -"Your password got changed" => "เปลี่ยนรหัสผ่านเรียบร้อยแล้ว", +"Your password was changed" => "รหัสผ่านของคุณถูกเปลี่ยนแล้ว", "Unable to change your password" => "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", "Current password" => "รหัสผ่านปัจจุบัน", "New password" => "รหัสผ่านใหม่", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 6e68d792e74..31486c7776a 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -21,11 +21,8 @@ "Problems connecting to help database." => "Yardım veritabanına bağlanmada sorunlar var.", "Go there manually." => "Oraya elle gidin.", "Answer" => "Cevap", -"You use" => "Kullanıyorsunuz", -"of the available" => "mevcut olandan", "Desktop and Mobile Syncing Clients" => "Masaüstü ve Mobil Senkron İstemcileri", "Download" => "İndir", -"Your password got changed" => "Parolanız değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", "Current password" => "Mevcut parola", "New password" => "Yeni parola", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 37ecd73fb68..82b6881dfc1 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -5,9 +5,6 @@ "Select an App" => "Вибрати додаток", "Ask a question" => "Запитати", "Problems connecting to help database." => "Проблема при з'єднані з базою допомоги", -"You use" => "Ви використовуєте", -"of the available" => "з доступної", -"Your password got changed" => "Ваш пароль змінено", "Current password" => "Поточний пароль", "New password" => "Новий пароль", "show" => "показати", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index ade8a02131e..7486f7f8d14 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,18 +1,18 @@ <?php $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", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", +"Could not enable app. " => "không thể kích hoạt ứng dụng.", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", "OpenID Changed" => "Đổi OpenID", "Invalid request" => "Yêu cầu không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", +"Authentication error" => "Lỗi xác thực", "Unable to delete user" => "Không thể xóa người dùng", "Language changed" => "Ngôn ngữ đã được thay đổi", "Unable to add user to group %s" => "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" => "Không thể xóa người dùng từ nhóm %s", -"Error" => "Lỗi", "Disable" => "Vô hiệu", "Enable" => "Cho phép", "Saving..." => "Đang tiến hành lưu ...", @@ -20,6 +20,10 @@ "Security Warning" => "Cảnh bảo bảo mật", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ internet. Tập tin .htaccess của ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ webserver của bạn để thư mục dữ liệu không còn bị truy cập hoặc bạn di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Thực thi tác vụ mỗi khi trang được tải", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php đã được đăng ký tại một dịch vụ webcron. Gọi trang cron.php mỗi phút một lần thông qua giao thức http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Sử dụng dịch vụ cron của hệ thống. Gọi tệp tin cron.php mỗi phút một lần.", +"Sharing" => "Chia sẻ", "Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", "Allow links" => "Cho phép liên kết", @@ -32,6 +36,7 @@ "More" => "nhiều hơ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>." => "Được phát triển bởi <a href=\"http://ownCloud.org/contact\" target=\"_blank\">cộng đồng ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">mã nguồn </a> đã được cấp phép theo chuẩn <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" => "Thêm ứng dụng của bạn", +"More Apps" => "Nhiều ứng dụng hơn", "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem ứng dụng tại apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-Giấy phép được cấp bởi <span class=\"author\"></span>", @@ -41,11 +46,10 @@ "Problems connecting to help database." => "Vấn đề kết nối đến cơ sở dữ liệu.", "Go there manually." => "Đến bằng thủ công", "Answer" => "trả lời", -"You use" => "Bạn sử dụng", -"of the available" => "có sẵn", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Bạn đã sử dụng <strong>%s</strong> trong <strong>%s</strong> được phép.", "Desktop and Mobile Syncing Clients" => "Đồng bộ dữ liệu", "Download" => "Tải về", -"Your password got changed" => "Mật khẩu đã được thay đổi", +"Your password was changed" => "Mật khẩu của bạn đã được thay đổi.", "Unable to change your password" => "Không thể đổi mật khẩu", "Current password" => "Mật khẩu cũ", "New password" => "Mật khẩu mới ", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 83111beb10e..ea4d00bfcd3 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,34 +1,55 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "不能从App Store 中加载列表", -"Authentication error" => "认证错误", +"Group already exists" => "群组已存在", +"Unable to add group" => "未能添加群组", +"Could not enable app. " => "未能启用应用", "Email saved" => "Email 保存了", "Invalid email" => "非法Email", "OpenID Changed" => "OpenID 改变了", "Invalid request" => "非法请求", +"Unable to delete group" => "未能删除群组", +"Authentication error" => "认证错误", +"Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", -"Error" => "错误", +"Unable to add user to group %s" => "未能添加用户到群组 %s", +"Unable to remove user from group %s" => "未能将用户从群组 %s 移除", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "保存中...", "__language_name__" => "Chinese", "Security Warning" => "安全警告", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "您的数据文件夹和您的文件可能可以从互联网访问。ownCloud 提供的 .htaccess 文件未工作。我们强烈建议您配置您的网络服务器,让数据文件夹不能访问,或将数据文件夹移出网络服务器文档根目录。", "Cron" => "定时", +"Execute one task with each page loaded" => "在每个页面载入时执行一项任务", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 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 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" => "只允许用户与群组内用户分享", "Log" => "日志", "More" => "更多", +"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 社区</a>开发,<a href=\"https://github.com/owncloud\" target=\"_blank\">s源代码</a> 以 <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" => "添加你的应用程序", +"More Apps" => "更多应用", "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>授权协议 <span class=\"author\"></span>", "Documentation" => "文档", "Managing Big Files" => "管理大文件", "Ask a question" => "提一个问题", "Problems connecting to help database." => "连接到帮助数据库时的问题", "Go there manually." => "收到转到.", "Answer" => "回答", -"You use" => "你使用", -"of the available" => "可用的", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "您已使用了 <strong>%s</strong>,总可用 <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "桌面和移动同步客户端", "Download" => "下载", -"Your password got changed" => "你的密码已经改变", +"Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", "Current password" => "现在的密码", "New password" => "新密码", @@ -46,6 +67,7 @@ "Create" => "新建", "Default Quota" => "默认限额", "Other" => "其他的", +"Group Admin" => "群组管理员", "Quota" => "限额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 89115f6c7c1..3425beec8b6 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,27 +1,29 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "无法从应用商店载入列表", -"Authentication error" => "认证错误", -"Group already exists" => "已存在组", -"Unable to add group" => "不能添加组", +"Group already exists" => "已存在该组", +"Unable to add group" => "无法添加组", "Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", -"Unable to delete group" => "不能删除组", -"Unable to delete user" => "不能删除用户", +"Unable to delete group" => "无法删除组", +"Authentication error" => "认证错误", +"Unable to delete user" => "无法删除用户", "Language changed" => "语言已修改", -"Unable to add user to group %s" => "不能把用户添加到组 %s", -"Unable to remove user from group %s" => "不能从组%s中移除用户", -"Error" => "错误", +"Unable to add user to group %s" => "无法把用户添加到组 %s", +"Unable to remove user from group %s" => "无法从组%s中移除用户", "Disable" => "禁用", "Enable" => "启用", "Saving..." => "正在保存", "__language_name__" => "简体中文", "Security Warning" => "安全警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides 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." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。", "Cron" => "计划任务", +"Execute one task with each page loaded" => "每次页面加载完成后执行任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", +"Sharing" => "分享", "Enable Share API" => "开启共享API", "Allow apps to use the Share API" => "允许 应用 使用共享API", "Allow links" => "允许连接", @@ -34,6 +36,7 @@ "More" => "更多", "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社区</a>开发, <a href=\"https://github.com/owncloud\" target=\"_blank\">源代码</a>在<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" => "添加应用", +"More Apps" => "更多应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", @@ -43,11 +46,10 @@ "Problems connecting to help database." => "连接帮助数据库错误 ", "Go there manually." => "手动访问", "Answer" => "回答", -"You use" => "您使用了", -"of the available" => "的空间,总容量为", -"Desktop and Mobile Syncing Clients" => "桌面和移动设备同步程序", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "您已使用空间: <strong>%s</strong>,总空间: <strong>%s</strong>", +"Desktop and Mobile Syncing Clients" => "桌面和移动设备同步客户端", "Download" => "下载", -"Your password got changed" => "密码已修改", +"Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", "Current password" => "当前密码", "New password" => "新密码", @@ -55,17 +57,17 @@ "Change password" => "修改密码", "Email" => "电子邮件", "Your email address" => "您的电子邮件", -"Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复", +"Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", -"use this address to connect to your ownCloud in your file manager" => "在文件管理器中使用这个地址来连接到您的 ownCloud", +"use this address to connect to your ownCloud in your file manager" => "您可在文件管理器中使用该地址连接到ownCloud", "Name" => "名称", "Password" => "密码", "Groups" => "组", "Create" => "创建", "Default Quota" => "默认配额", "Other" => "其它", -"Group Admin" => "组管理", +"Group Admin" => "组管理员", "Quota" => "配额", "Delete" => "删除" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 1a162152302..ccf67cef035 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -12,7 +12,6 @@ "Language changed" => "語言已變更", "Unable to add user to group %s" => "使用者加入群組%s錯誤", "Unable to remove user from group %s" => "使用者移出群組%s錯誤", -"Error" => "錯誤", "Disable" => "停用", "Enable" => "啟用", "Saving..." => "儲存中...", @@ -36,11 +35,8 @@ "Problems connecting to help database." => "連接到求助資料庫發生問題", "Go there manually." => "手動前往", "Answer" => "答案", -"You use" => "你使用", -"of the available" => "可用", "Desktop and Mobile Syncing Clients" => "桌機與手機同步客戶端", "Download" => "下載", -"Your password got changed" => "你的密碼已變更", "Unable to change your password" => "無法變更你的密碼", "Current password" => "目前密碼", "New password" => "新密碼", diff --git a/settings/languageCodes.php b/settings/languageCodes.php index 6d3b6ebe634..221aa13cf6a 100644 --- a/settings/languageCodes.php +++ b/settings/languageCodes.php @@ -9,7 +9,8 @@ return array( 'ca'=>'Català', 'cs_CZ'=>'Čeština', 'da'=>'Dansk', -'de'=>'Deutsch', +'de'=>'Deutsch (Persönlich)', +'de_DE'=>'Deutsch (Förmlich)', 'el'=>'Ελληνικά', 'en'=>'English', 'es'=>'Español', diff --git a/settings/personal.php b/settings/personal.php index 4f92985c797..2031edd8df8 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -18,12 +18,8 @@ OC_App::setActiveNavigationEntry( 'personal' ); // calculate the disc space $rootInfo=OC_FileCache::get(''); $sharedInfo=OC_FileCache::get('/Shared'); -if (!isset($sharedInfo['size'])) { - $sharedSize = 0; -} else { - $sharedSize = $sharedInfo['size']; -} -$used=$rootInfo['size']-$sharedSize; +$used=$rootInfo['size']; +if($used<0) $used=0; $free=OC_Filesystem::free_space(); $total=$free+$used; if($total==0) $total=1; // prevent division by zero diff --git a/settings/settings.php b/settings/settings.php index 24099ef5742..68c07ff60f0 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -7,6 +7,7 @@ require_once '../lib/base.php'; OC_Util::checkLoggedIn(); +OC_Util::verifyUser(); OC_Util::addStyle( 'settings', 'settings' ); OC_App::setActiveNavigationEntry( 'settings' ); diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 30f919ac753..1e9598de1e3 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -8,10 +8,11 @@ </script> <div id="controls"> <a class="button" target="_blank" href="http://owncloud.org/dev/apps/getting-started/"><?php echo $l->t('Add your App');?></a> + <a class="button" target="_blank" href="http://apps.owncloud.com"><?php echo $l->t('More Apps');?></a> </div> <ul id="leftcontent" class="applist"> <?php foreach($_['apps'] as $app):?> - <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>" + <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>" <?php if ( isset( $app['ocs_id'] ) ) { echo "data-id-ocs=\"{$app['ocs_id']}\""; } ?> data-type="<?php echo $app['internal'] ? 'internal' : 'external' ?>" data-installed="1"> <a class="app<?php if(!$app['internal']) echo ' externalapp' ?>" href="?appid=<?php echo $app['id'] ?>"><?php echo htmlentities($app['name']) ?></a> <script type="application/javascript"> @@ -24,6 +25,7 @@ <div id="rightcontent"> <div class="appinfo"> <h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span class="version"></span><small class="externalapp" style="visibility:hidden;"></small></h3> + <span class="score"></span> <p class="description"></p> <img src="" class="preview" /> <p class="appslink hidden"><a href="#" target="_blank"><?php echo $l->t('See application page at apps.owncloud.com');?></a></p> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 4503f3d50b4..55ff24b4223 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -5,7 +5,7 @@ */?> <div id="quota" class="personalblock"><div style="width:<?php echo $_['usage_relative'];?>%;"> - <p id="quotatext"><?php echo $l->t('You use');?> <strong><?php echo $_['usage'];?></strong> <?php echo $l->t('of the available');?> <strong><?php echo $_['total_space'];?></strong></p> + <p id="quotatext"><?php echo $l->t('You have used <strong>%s</strong> of the available <strong>%s<strong>', array($_['usage'], $_['total_space']));?></p> </div></div> <div class="personalblock"> @@ -16,7 +16,7 @@ <form id="passwordform"> <fieldset class="personalblock"> - <div id="passwordchanged"><?php echo $l->t('Your password got changed');?></div> + <div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div> <div id="passworderror"><?php echo $l->t('Unable to change your password');?></div> <input type="password" id="pass1" name="oldpassword" placeholder="<?php echo $l->t('Current password');?>" /> <input type="password" id="pass2" name="password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#show" /> |