From 6b7fdda4f5b11c1ec92cd66270c2aa37f7324432 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 4 Dec 2013 14:20:29 +0100 Subject: [PATCH 01/31] config switch to disable auto expire for the trash bin --- apps/files_trashbin/lib/trashbin.php | 7 ++++++- config/config.sample.php | 7 +++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 48d43b059f..567f88b91b 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -778,8 +778,13 @@ class Trashbin { */ private static function expire($trashbinSize, $user) { + // let the admin disable auto expire + $autoExpire = \OC_Config::getValue('trashbin_auto_expire', true); + if ($autoExpire === false) { + return 0; + } + $user = \OCP\User::getUser(); - $view = new \OC\Files\View('/' . $user); $availableSpace = self::calculateFreeSpace($trashbinSize); $size = 0; diff --git a/config/config.sample.php b/config/config.sample.php index 7b533a8b9c..ba06896832 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -117,6 +117,9 @@ $CONFIG = array( /* How long should ownCloud keep deleted files in the trash bin, default value: 30 days */ 'trashbin_retention_obligation' => 30, +/* Disable/Enable auto expire for the trash bin, by default auto expire is enabled */ +'trashbin_auto_expire' => true, + /* allow user to change his display name, if it is supported by the back-end */ 'allow_user_to_change_display_name' => true, @@ -185,8 +188,8 @@ $CONFIG = array( // "datadirectory" => "", /* Enable maintenance mode to disable ownCloud - If you want to prevent users to login to ownCloud before you start doing some maintenance work, - you need to set the value of the maintenance parameter to true. + If you want to prevent users to login to ownCloud before you start doing some maintenance work, + you need to set the value of the maintenance parameter to true. Please keep in mind that users who are already logged-in are kicked out of ownCloud instantly. */ "maintenance" => false, From 1c6568cf687b395ce67a5bbea0e0c87bbe8fb41e Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 4 Dec 2013 13:14:05 +0100 Subject: [PATCH 02/31] LDAP: make unsetting checkboxes from Advanced tab work again, fixes #6143 --- apps/user_ldap/ajax/setConfiguration.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/user_ldap/ajax/setConfiguration.php b/apps/user_ldap/ajax/setConfiguration.php index 94de8835fb..84acecee5d 100644 --- a/apps/user_ldap/ajax/setConfiguration.php +++ b/apps/user_ldap/ajax/setConfiguration.php @@ -27,6 +27,18 @@ OCP\JSON::checkAppEnabled('user_ldap'); OCP\JSON::callCheck(); $prefix = $_POST['ldap_serverconfig_chooser']; + +// Checkboxes are not submitted, when they are unchecked. Set them manually. +// only legacy checkboxes (Advanced and Expert tab) need to be handled here, +// the Wizard-like tabs handle it on their own +$chkboxes = array('ldap_configuration_active', 'ldap_override_main_server', + 'ldap_nocase', 'ldap_turn_off_cert_check'); +foreach($chkboxes as $boxid) { + if(!isset($_POST[$boxid])) { + $_POST[$boxid] = 0; + } +} + $ldapWrapper = new OCA\user_ldap\lib\LDAP(); $connection = new \OCA\user_ldap\lib\Connection($ldapWrapper, $prefix); $connection->setConfiguration($_POST); From 430f85cc59ec8cbd229748d678c6da0f2de337eb Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 4 Dec 2013 14:01:31 +0100 Subject: [PATCH 03/31] LDAP Wizard: avoid a manually deactivated LDAP configuration is enabled by just opening the admin page --- apps/user_ldap/js/settings.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 5b5f203063..801de12ea9 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -489,13 +489,17 @@ var LdapWizard = { loginfilter = $('#ldap_login_filter').val(); //FIXME: activates a manually deactivated configuration. - if(host && port && base && userfilter && loginfilter) { + if(host && port && base && userfilter && loginfilter) { LdapWizard.updateStatusIndicator(true); if($('#ldap_configuration_active').is(':checked')) { return; } - $('#ldap_configuration_active').prop('checked', true); - LdapWizard.save($('#ldap_configuration_active')[0]); + if(!LdapWizard.isConfigurationActiveControlLocked) { + //avoids a manually deactivated connection will be activated + //upon opening the admin page + $('#ldap_configuration_active').prop('checked', true); + LdapWizard.save($('#ldap_configuration_active')[0]); + } } else { if($('#ldap_configuration_active').is(':checked')) { $('#ldap_configuration_active').prop('checked', false); @@ -517,9 +521,12 @@ var LdapWizard = { $(id + " + button").css('display', 'inline'); }, + isConfigurationActiveControlLocked: true, + init: function() { LdapWizard.basicStatusCheck(); LdapWizard.functionalityCheck(); + LdapWizard.isConfigurationActiveControlLocked = false; }, initGroupFilter: function() { From 9808dee14904ddff050de83b546b116dea6d7e20 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 2 Dec 2013 21:11:20 +0100 Subject: [PATCH 04/31] LDAP Wizard: don't send ldap_tls change back to the interface as the element was removed, for it is detected fully automatically. Resolves an JS error and thus an ever-spinning spinner --- apps/user_ldap/lib/wizard.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 84b397cf5e..85bc5b7086 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -432,7 +432,6 @@ class Wizard extends LDAPUtility { $this->configuration->setConfiguration($config); \OCP\Util::writeLog('user_ldap', 'Wiz: detected Port '. $p, \OCP\Util::DEBUG); $this->result->addChange('ldap_port', $p); - $this->result->addChange('ldap_tls', intval($t)); return $this->result; } } From a10d1977b5e2561d20dc96828f38a33b989d3ba8 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 3 Dec 2013 12:11:43 +0100 Subject: [PATCH 05/31] LDAP: set default value for login filter to empty, otherwise the wizard signals completed configuration too early when it might be not correct, i.e. login won't work --- apps/user_ldap/lib/configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/configuration.php index c396d5b4bf..874082f78f 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/configuration.php @@ -308,7 +308,7 @@ class Configuration { 'ldap_user_filter_mode' => 0, 'ldap_userfilter_objectclass' => '', 'ldap_userfilter_groups' => '', - 'ldap_login_filter' => 'uid=%uid', + 'ldap_login_filter' => '', 'ldap_login_filter_mode' => 0, 'ldap_loginfilter_email' => 0, 'ldap_loginfilter_username' => 1, From cc725674e058b44b0b931ed3d33aef7e0ac109c8 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 3 Dec 2013 13:21:55 +0100 Subject: [PATCH 06/31] LDAP: on testing configuration, set active property to true, otherwise inactive connections cannot be tested properly --- apps/user_ldap/ajax/testConfiguration.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/user_ldap/ajax/testConfiguration.php b/apps/user_ldap/ajax/testConfiguration.php index b31fd98399..a637520961 100644 --- a/apps/user_ldap/ajax/testConfiguration.php +++ b/apps/user_ldap/ajax/testConfiguration.php @@ -30,6 +30,8 @@ $l=OC_L10N::get('user_ldap'); $ldapWrapper = new OCA\user_ldap\lib\LDAP(); $connection = new \OCA\user_ldap\lib\Connection($ldapWrapper, '', null); +//needs to be true, otherwise it will also fail with an irritating message +$_POST['ldap_configuration_active'] = 1; if($connection->setConfiguration($_POST)) { //Configuration is okay if($connection->bind()) { From 06577f1fe2d3a164b188cf303b0077f6b54b9f57 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 3 Dec 2013 13:27:45 +0100 Subject: [PATCH 07/31] LDAP Wizard: make sure auto-detected suggestions are really applied initially. Also make initial filter compilation and user counting robust against race conditions. --- apps/user_ldap/js/settings.js | 57 +++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 801de12ea9..a6bfa7549f 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -407,6 +407,7 @@ var LdapWizard = { if($('#rawLoginFilterContainer').hasClass('invisible')) { $('#ldap_loginfilter_attributes').multiselect('enable'); } + LdapWizard.postInitLoginFilter(); }, function (result) { //deactivate if no attributes found @@ -443,10 +444,24 @@ var LdapWizard = { //enable only when raw filter editing is not turned on $('#'+multisel).multiselect('enable'); } + if(type == 'Users') { + //required for initial save + filter = $('#ldap_userlist_filter').val(); + if(!filter) { + LdapWizard.saveMultiSelect(multisel, + $('#'+multisel).multiselect("getChecked")); + } + LdapWizard.userFilterAvailableGroupsHasRun = true; + LdapWizard.postInitUserFilter(); + } }, function (result) { LdapWizard.hideSpinner('#'+multisel); $('#'+multisel).multiselect('disable'); + if(type == 'Users') { + LdapWizard.userFilterAvailableGroupsHasRun = true; + LdapWizard.postInitUserFilter(); + } } ); }, @@ -471,9 +486,23 @@ var LdapWizard = { LdapWizard.hideSpinner('#'+multisel); LdapWizard.applyChanges(result); $('#'+multisel).multiselect('refresh'); + if(type == 'User') { + //required for initial save + filter = $('#ldap_userlist_filter').val(); + if(!filter) { + LdapWizard.saveMultiSelect(multisel, + $('#'+multisel).multiselect("getChecked")); + } + LdapWizard.userFilterObjectClassesHasRun = true; + LdapWizard.postInitUserFilter(); + } }, function (result) { LdapWizard.hideSpinner('#'+multisel); + if(type == 'User') { + LdapWizard.userFilterObjectClassesHasRun = true; + LdapWizard.postInitUserFilter(); + } //TODO: error handling } ); @@ -536,11 +565,19 @@ var LdapWizard = { LdapWizard.countGroups(); }, + /** init login filter tab section **/ + initLoginFilter: function() { LdapWizard.regardFilterMode('Login'); LdapWizard.findAttributes(); }, + postInitLoginFilter: function() { + LdapWizard.composeFilter('login'); + }, + + /** end of init user filter tab section **/ + initMultiSelect: function(object, id, caption) { object.multiselect({ header: false, @@ -553,13 +590,29 @@ var LdapWizard = { }); }, + /** init user filter tab section **/ + + userFilterObjectClassesHasRun: false, + userFilterAvailableGroupsHasRun: false, + initUserFilter: function() { + LdapWizard.userFilterObjectClassesHasRun = false; + LdapWizard.userFilterAvailableGroupsHasRun = false; LdapWizard.regardFilterMode('User'); LdapWizard.findObjectClasses('ldap_userfilter_objectclass', 'User'); LdapWizard.findAvailableGroups('ldap_userfilter_groups', 'Users'); - LdapWizard.countUsers(); }, + postInitUserFilter: function() { + if(LdapWizard.userFilterObjectClassesHasRun + && LdapWizard.userFilterAvailableGroupsHasRun) { + LdapWizard.composeFilter('user'); + LdapWizard.countUsers(); + } + }, + + /** end of init user filter tab section **/ + onTabChange: function(event, ui) { newTabIndex = 0; if(ui.newTab[0].id === '#ldapWizard2') { @@ -626,8 +679,6 @@ var LdapWizard = { } else if(mode == LdapWizard.filterModeAssisted && !$('#raw'+subject+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+subject+'Filter'](); - } else { - c = $('#raw'+subject+'FilterContainer').hasClass('invisible'); } }, function (result) { From 01af3bdb0520de720b286a31cb1bb2b0e0c6f21c Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 3 Dec 2013 16:37:11 +0100 Subject: [PATCH 08/31] LDAP Wizard: return correct var --- apps/user_ldap/lib/wizard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 85bc5b7086..348a871e2b 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -1000,7 +1000,7 @@ class Wizard extends LDAPUtility { private function getConnection() { if(!is_null($this->cr)) { - return $cr; + return $this->cr; } $cr = $this->ldap->connect( $this->configuration->ldapHost.':'.$this->configuration->ldapPort, From 60b1191c889baeaa408e6e923da4f630bbecb3ff Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 3 Dec 2013 20:45:05 +0100 Subject: [PATCH 09/31] some equals are more equal than other equals --- apps/user_ldap/js/settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index a6bfa7549f..b87590d975 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -444,7 +444,7 @@ var LdapWizard = { //enable only when raw filter editing is not turned on $('#'+multisel).multiselect('enable'); } - if(type == 'Users') { + if(type === 'Users') { //required for initial save filter = $('#ldap_userlist_filter').val(); if(!filter) { @@ -486,7 +486,7 @@ var LdapWizard = { LdapWizard.hideSpinner('#'+multisel); LdapWizard.applyChanges(result); $('#'+multisel).multiselect('refresh'); - if(type == 'User') { + if(type === 'User') { //required for initial save filter = $('#ldap_userlist_filter').val(); if(!filter) { From 3480766a78e61d58fea4fd01336558d5562e0576 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 3 Dec 2013 20:50:46 +0100 Subject: [PATCH 10/31] LDAP Wizard: don't generate filter when not allowed --- apps/user_ldap/js/settings.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index b87590d975..acf88ef58a 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -573,7 +573,9 @@ var LdapWizard = { }, postInitLoginFilter: function() { - LdapWizard.composeFilter('login'); + if($('#rawLoginFilterContainer').hasClass('invisible')) { + LdapWizard.composeFilter('login'); + } }, /** end of init user filter tab section **/ From 7e702f294fd622a943e1de91965bb639dfd62335 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 4 Dec 2013 18:14:17 -0500 Subject: [PATCH 11/31] [tx-robot] updated from transifex --- apps/files/l10n/it.php | 1 + apps/files_encryption/l10n/it.php | 1 + apps/files_encryption/l10n/ja_JP.php | 1 + apps/user_ldap/l10n/ko.php | 4 + apps/user_ldap/l10n/uk.php | 1 + core/l10n/it.php | 3 +- core/l10n/ko.php | 24 +++- core/l10n/uk.php | 72 ++++++++++- l10n/ach/settings.po | 79 +++++++------ l10n/ady/settings.po | 79 +++++++------ l10n/af/settings.po | 79 +++++++------ l10n/af_ZA/settings.po | 79 +++++++------ l10n/ar/settings.po | 79 +++++++------ l10n/be/settings.po | 79 +++++++------ l10n/bg_BG/settings.po | 79 +++++++------ l10n/bn_BD/settings.po | 79 +++++++------ l10n/bs/settings.po | 79 +++++++------ l10n/ca/settings.po | 81 +++++++------ l10n/cs_CZ/settings.po | 81 +++++++------ l10n/cy_GB/settings.po | 79 +++++++------ l10n/da/settings.po | 79 +++++++------ l10n/de/settings.po | 81 +++++++------ l10n/de_AT/settings.po | 79 +++++++------ l10n/de_CH/settings.po | 81 +++++++------ l10n/de_DE/settings.po | 83 +++++++------ l10n/el/settings.po | 79 +++++++------ l10n/en@pirate/settings.po | 79 +++++++------ l10n/en_GB/settings.po | 81 +++++++------ l10n/eo/settings.po | 79 +++++++------ l10n/es/settings.po | 81 +++++++------ l10n/es_AR/settings.po | 79 +++++++------ l10n/es_MX/settings.po | 79 +++++++------ l10n/et_EE/settings.po | 85 +++++++------ l10n/eu/settings.po | 79 +++++++------ l10n/fa/settings.po | 79 +++++++------ l10n/fi_FI/settings.po | 79 +++++++------ l10n/fr/settings.po | 81 +++++++------ l10n/fr_CA/settings.po | 79 +++++++------ l10n/gl/settings.po | 81 +++++++------ l10n/he/settings.po | 79 +++++++------ l10n/hi/settings.po | 79 +++++++------ l10n/hr/settings.po | 79 +++++++------ l10n/hu_HU/settings.po | 79 +++++++------ l10n/hy/settings.po | 79 +++++++------ l10n/ia/settings.po | 79 +++++++------ l10n/id/settings.po | 79 +++++++------ l10n/is/settings.po | 79 +++++++------ l10n/it/core.po | 24 ++-- l10n/it/files.po | 8 +- l10n/it/files_encryption.po | 8 +- l10n/it/settings.po | 87 ++++++++------ l10n/ja_JP/files_encryption.po | 8 +- l10n/ja_JP/settings.po | 81 +++++++------ l10n/ka/settings.po | 79 +++++++------ l10n/ka_GE/settings.po | 79 +++++++------ l10n/km/settings.po | 79 +++++++------ l10n/kn/settings.po | 79 +++++++------ l10n/ko/core.po | 53 +++++---- l10n/ko/settings.po | 79 +++++++------ l10n/ko/user_ldap.po | 45 +++---- l10n/ku_IQ/settings.po | 79 +++++++------ l10n/lb/settings.po | 79 +++++++------ l10n/lt_LT/settings.po | 79 +++++++------ l10n/lv/settings.po | 79 +++++++------ l10n/mk/settings.po | 79 +++++++------ l10n/ml_IN/settings.po | 79 +++++++------ l10n/ms_MY/settings.po | 79 +++++++------ l10n/my_MM/settings.po | 79 +++++++------ l10n/nb_NO/settings.po | 79 +++++++------ l10n/nds/settings.po | 79 +++++++------ l10n/ne/settings.po | 79 +++++++------ l10n/nl/settings.po | 81 +++++++------ l10n/nn_NO/settings.po | 79 +++++++------ l10n/nqo/settings.po | 79 +++++++------ l10n/oc/settings.po | 79 +++++++------ l10n/pa/settings.po | 79 +++++++------ l10n/pl/settings.po | 79 +++++++------ l10n/pt_BR/settings.po | 81 +++++++------ l10n/pt_PT/lib.po | 53 +++++---- l10n/pt_PT/settings.po | 118 +++++++++--------- l10n/ro/settings.po | 79 +++++++------ l10n/ru/settings.po | 79 +++++++------ l10n/ru_RU/settings.po | 79 +++++++------ l10n/si_LK/settings.po | 79 +++++++------ l10n/sk/settings.po | 79 +++++++------ l10n/sk_SK/settings.po | 81 +++++++------ l10n/sl/settings.po | 81 +++++++------ l10n/sq/settings.po | 79 +++++++------ l10n/sr/settings.po | 79 +++++++------ l10n/sr@latin/settings.po | 79 +++++++------ l10n/sv/settings.po | 79 +++++++------ l10n/sw_KE/settings.po | 79 +++++++------ l10n/ta_LK/settings.po | 79 +++++++------ l10n/te/settings.po | 79 +++++++------ l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 8 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 4 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 28 ++--- l10n/templates/private.pot | 22 ++-- l10n/templates/settings.pot | 77 ++++++------ l10n/templates/user_ldap.pot | 32 ++--- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 79 +++++++------ l10n/tr/settings.po | 81 +++++++------ l10n/tzm/settings.po | 79 +++++++------ l10n/ug/settings.po | 79 +++++++------ l10n/uk/core.po | 171 ++++++++++++++------------- l10n/uk/lib.po | 48 ++++---- l10n/uk/settings.po | 79 +++++++------ l10n/uk/user_ldap.po | 36 +++--- l10n/ur_PK/settings.po | 79 +++++++------ l10n/uz/settings.po | 79 +++++++------ l10n/vi/settings.po | 79 +++++++------ l10n/zh_CN/settings.po | 79 +++++++------ l10n/zh_HK/settings.po | 79 +++++++------ l10n/zh_TW/settings.po | 79 +++++++------ lib/l10n/pt_PT.php | 7 ++ lib/l10n/uk.php | 10 +- settings/l10n/et_EE.php | 3 + settings/l10n/it.php | 6 +- settings/l10n/pt_PT.php | 19 +++ 125 files changed, 4557 insertions(+), 3427 deletions(-) diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 06e8d52647..9e5d82296b 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -73,6 +73,7 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Dimensione massima per i file ZIP", "Save" => "Salva", "New" => "Nuovo", +"New text file" => "Nuovo file di testo", "Text file" => "File di testo", "New folder" => "Nuova cartella", "Folder" => "Cartella", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 420454afdb..fc1aaffc02 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Missing requirements." => "Requisiti mancanti.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", +"Initial encryption started... This can take some time. Please wait." => "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.", "Saving..." => "Salvataggio in corso...", "Go directly to your " => "Passa direttamente a", "personal settings" => "impostazioni personali", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index da9a4940f4..1206969746 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Missing requirements." => "必要要件が満たされていません。", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", "Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", +"Initial encryption started... This can take some time. Please wait." => "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。今しばらくお待ちください。", "Saving..." => "保存中...", "Go directly to your " => "あなたのディレクトリへ", "personal settings" => "秘密鍵をアンロックできます", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index ff93b1f7cb..bac25ec96b 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -6,10 +6,12 @@ $TRANSLATIONS = array( "Select groups" => "그룹 선택", "Connection test succeeded" => "연결 시험 성공", "Connection test failed" => "연결 시험 실패", +"Do you really want to delete the current Server Configuration?" => "현재 서버 설정을 지우시겠습니까?", "_%s group found_::_%s groups found_" => array(""), "_%s user found_::_%s users found_" => array(""), "Save" => "저장", "Help" => "도움말", +"Add Server Configuration" => "서버 설정 추가", "Host" => "호스트", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", "Port" => "포트", @@ -20,9 +22,11 @@ $TRANSLATIONS = array( "One Base DN per line" => "기본 DN을 한 줄에 하나씩 입력하십시오", "You can specify Base DN for users and groups in the Advanced tab" => "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다.", "Back" => "뒤로", +"Continue" => "계속", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "경고: PHP LDAP 모듈이 비활성화되어 있거나 설치되어 있지 않습니다. 백엔드를 사용할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "Connection Settings" => "연결 설정", "Configuration Active" => "구성 활성화", +"When unchecked, this configuration will be skipped." => "선택하지 않으시면, 설정은 무시됩니다.", "Backup (Replica) Host" => "백업 (복제) 포트", "Backup (Replica) Port" => "백업 (복제) 포트", "Disable Main Server" => "주 서버 비활성화", diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index 0592aa4597..e87348ec44 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -30,6 +30,7 @@ $TRANSLATIONS = array( "One Base DN per line" => "Один Base DN на одній строчці", "You can specify Base DN for users and groups in the Advanced tab" => "Ви можете задати Базовий DN для користувачів і груп на вкладинці Додатково", "Back" => "Назад", +"Continue" => "Продовжити", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його.", "Connection Settings" => "Налаштування З'єднання", "Configuration Active" => "Налаштування Активне", diff --git a/core/l10n/it.php b/core/l10n/it.php index 8a0a133e0d..135ce9ebe5 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -102,6 +102,7 @@ $TRANSLATIONS = array( "Edit tags" => "Modifica etichette", "Error loading dialog template: {error}" => "Errore durante il caricamento del modello di finestra: {error}", "No tags selected for deletion." => "Nessuna etichetta selezionata per l'eliminazione.", +"Please reload the page." => "Ricarica la pagina.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.", "%s password reset" => "Ripristino password di %s", @@ -166,7 +167,7 @@ $TRANSLATIONS = array( "Alternative Logins" => "Accessi alternativi", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Ciao,

volevo informarti che %s ha condiviso %s con te.
Vedi!

", "This ownCloud instance is currently in single user mode." => "Questa istanza di ownCloud è in modalità utente singolo.", -"This means only administrators can use the instance." => "Questo significa che solo gli amministratori possono utilizzare l'istanza.", +"This means only administrators can use the instance." => "Ciò significa che solo gli amministratori possono utilizzare l'istanza.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.", "Thank you for your patience." => "Grazie per la pazienza.", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo.", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 551992cc78..a25197cec3 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,13 +1,17 @@ "%s에게 메일을 보낼 수 없습니다.", "Turned on maintenance mode" => "유지보수 모드 켜기", "Turned off maintenance mode" => "유지보수 모드 끄기", "Updated database" => "데이터베이스 업데이트 됨", "Updating filecache, this may take really long..." => "파일 캐시 업데이트중, 시간이 약간 걸릴수 있습니다...", "Updated filecache" => "파일캐시 업데이트 됨", "... %d%% done ..." => "... %d%% 완료됨 ...", +"No image or file provided" => "이미지나 파일이 없음", "Unknown filetype" => "알려지지 않은 파일형식", "Invalid image" => "잘못된 이미지", +"No temporary profile picture available, try again" => "사용가능한 프로파일 사진이 없습니다. 재시도 하세요.", +"No crop data provided" => "선택된 데이터가 없습니다.", "Sunday" => "일요일", "Monday" => "월요일", "Tuesday" => "화요일", @@ -43,8 +47,14 @@ $TRANSLATIONS = array( "Yes" => "예", "No" => "아니요", "Ok" => "승락", -"_{count} file conflict_::_{count} file conflicts_" => array(""), +"_{count} file conflict_::_{count} file conflicts_" => array("{count} 파일 중복"), +"One file conflict" => "하나의 파일이 충돌", +"Which files do you want to keep?" => "어느 파일들을 보관하고 싶습니까?", +"If you select both versions, the copied file will have a number added to its name." => "두 버전을 모두 선택하면, 파일이름에 번호가 추가될 것입니다.", "Cancel" => "취소", +"Continue" => "계속", +"(all selected)" => "(모두 선택됨)", +"({count} selected)" => "({count}개가 선택됨)", "Shared" => "공유됨", "Share" => "공유", "Error" => "오류", @@ -81,14 +91,19 @@ $TRANSLATIONS = array( "The object type is not specified." => "객체 유형이 지정되지 않았습니다.", "Delete" => "삭제", "Add" => "추가", +"Edit tags" => "태크 편집", "Please reload the page." => "페이지를 새로고침 해주세요", "The update was unsuccessful. Please report this issue to the ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", +"%s password reset" => "%s 비밀번호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "비밀번호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
만약 수분이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하세요.
만약 없다면, 메일 관리자에게 문의하세요.", "Request failed!
Did you make sure your email/username was right?" => "요청이 실패했습니다!
email 주소와 사용자 명을 정확하게 넣으셨나요?", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", "Username" => "사용자 이름", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "당신의 파일은 암호화 되어있습니다. 만약 복구키를 가지고 있지 않다면, 비밀번호를 초기화한 후에, 당신의 데이터를 복구할 수 없을 것입니다. 당신이 원하는 것이 확실하지 않다면, 계속진행하기 전에 관리자에게 문의하세요. 계속 진행하시겠습니까?", "Yes, I really want to reset my password now" => "네, 전 제 비밀번호를 리셋하길 원합니다", +"Reset" => "재설정", "Your password was reset" => "암호가 재설정되었습니다", "To login page" => "로그인 화면으로", "New password" => "새 암호", @@ -101,11 +116,14 @@ $TRANSLATIONS = array( "Tag already exists" => "태그가 이미 존재합니다", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", +"Cheers!" => "화이팅!", "Security Warning" => "보안 경고", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "%s의 보안을 위하여 PHP 버전을 업데이트하십시오.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "안전한 난수 생성기를 사용할 수 없습니다. PHP의 OpenSSL 확장을 활성화해 주십시오.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "안전한 난수 생성기를 사용하지 않으면 공격자가 암호 초기화 토큰을 추측하여 계정을 탈취할 수 있습니다.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파일을 인터넷에서 접근할 수 없을 수도 있습니다.", +"For information how to properly configure your server, please see the documentation." => "올바른 서버 설정을 위한 정보는 문서를 참조하세요.", "Create an admin account" => "관리자 계정 만들기", "Advanced" => "고급", "Data folder" => "데이터 폴더", @@ -117,10 +135,14 @@ $TRANSLATIONS = array( "Database tablespace" => "데이터베이스 테이블 공간", "Database host" => "데이터베이스 호스트", "Finish setup" => "설치 완료", +"Finishing …" => "종료중 ...", +"%s is available. Get more information on how to update." => "%s는 사용가능합니다. 업데이트방법에 대해서 더 많은 정보를 얻으세요.", "Log out" => "로그아웃", "Automatic logon rejected!" => "자동 로그인이 거부되었습니다!", "If you did not change your password recently, your account may be compromised!" => "최근에 암호를 변경하지 않았다면 계정이 탈취되었을 수도 있습니다!", "Please change your password to secure your account again." => "계정의 안전을 위하여 암호를 변경하십시오.", +"Server side authentication failed!" => "서버 인증 실패!", +"Please contact your administrator." => "관리자에게 문의하세요.", "Lost your password?" => "암호를 잊으셨습니까?", "remember" => "기억하기", "Log in" => "로그인", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index bc14349402..3cc151f5a2 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,5 +1,18 @@ "%s розподілено »%s« з тобою", +"Couldn't send mail to following users: %s " => "Неможливо надіслати пошту наступним користувачам: %s ", +"Turned on maintenance mode" => "Увімкнено захищений режим", +"Turned off maintenance mode" => "Вимкнено захищений режим", +"Updated database" => "Базу даних оновлено", +"Updating filecache, this may take really long..." => "Оновлення файлового кешу, це може тривати доволі довго...", +"Updated filecache" => "Файловий кеш оновлено", +"... %d%% done ..." => "... %d%% виконано ...", +"No image or file provided" => "Немає наданого зображення або файлу", +"Unknown filetype" => "Невідомий тип файлу", +"Invalid image" => "Невірне зображення", +"No temporary profile picture available, try again" => "Немає доступного тимчасового профілю для малюнків, спробуйте ще раз", +"No crop data provided" => "Немає інформації щодо обрізки даних", "Sunday" => "Неділя", "Monday" => "Понеділок", "Tuesday" => "Вівторок", @@ -21,22 +34,31 @@ $TRANSLATIONS = array( "December" => "Грудень", "Settings" => "Налаштування", "seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n minute ago_::_%n minutes ago_" => array("%n хвилину тому","%n хвилини тому","%n хвилин тому"), +"_%n hour ago_::_%n hours ago_" => array("%n годину тому","%n години тому","%n годин тому"), "today" => "сьогодні", "yesterday" => "вчора", -"_%n day ago_::_%n days ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("%n день тому","%n дні тому","%n днів тому"), "last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("%n місяць тому","%n місяці тому","%n місяців тому"), "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", "Choose" => "Обрати", +"Error loading file picker template: {error}" => "Помилка при завантаженні шаблону вибору: {error}", "Yes" => "Так", "No" => "Ні", "Ok" => "Ok", -"_{count} file conflict_::_{count} file conflicts_" => array("","",""), +"Error loading message template: {error}" => "Помилка при завантаженні шаблону повідомлення: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} файловий конфлікт","{count} файлових конфліктів","{count} файлових конфліктів"), +"One file conflict" => "Один файловий конфлікт", +"Which files do you want to keep?" => "Які файли ви хочете залишити?", +"If you select both versions, the copied file will have a number added to its name." => "Якщо ви оберете обидві версії, скопійований файл буде мати номер, доданий у його ім'я.", "Cancel" => "Відмінити", +"Continue" => "Продовжити", +"(all selected)" => "(все вибрано)", +"({count} selected)" => "({count} вибрано)", +"Error loading file exists template" => "Помилка при завантаженні файлу існуючого шаблону", "Shared" => "Опубліковано", "Share" => "Поділитися", "Error" => "Помилка", @@ -45,8 +67,11 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Помилка при зміні повноважень", "Shared with you and the group {group} by {owner}" => " {owner} опублікував для Вас та для групи {group}", "Shared with you by {owner}" => "{owner} опублікував для Вас", +"Share with user or group …" => "Поділитися з користувачем або групою ...", +"Share link" => "Опублікувати посилання", "Password protect" => "Захистити паролем", "Password" => "Пароль", +"Allow Public Upload" => "Дозволити Публічне Завантаження", "Email link to person" => "Ел. пошта належить Пану", "Send" => "Надіслати", "Set expiration date" => "Встановити термін дії", @@ -57,6 +82,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Пере-публікація не дозволяється", "Shared in {item} with {user}" => "Опубліковано {item} для {user}", "Unshare" => "Закрити доступ", +"notify by email" => "повідомити по Email", "can edit" => "може редагувати", "access control" => "контроль доступу", "create" => "створити", @@ -70,13 +96,24 @@ $TRANSLATIONS = array( "Email sent" => "Ел. пошта надіслана", "Warning" => "Попередження", "The object type is not specified." => "Не визначено тип об'єкту.", +"Enter new" => "Введіть новий", "Delete" => "Видалити", "Add" => "Додати", +"Edit tags" => "Редагувати теги", +"Error loading dialog template: {error}" => "Помилка при завантаженні шаблону діалогу: {error}", +"No tags selected for deletion." => "Жодних тегів не обрано для видалення.", +"Please reload the page." => "Будь ласка, перезавантажте сторінку.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud.", +"%s password reset" => "%s пароль скинуто", "Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Посилання для того, щоб скинути ваш пароль було надіслано на ваший Email.
Якщо ви не отримали його найближчим часом, перевірте ваший спам каталог.
Якщо і там немає, спитайте вашого місцевого Адміністратора.", +"Request failed!
Did you make sure your email/username was right?" => "Запит завершився невдало !
Ви переконані, що ваша адреса Email/ім'я користувача вірні ?", "You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту.", "Username" => "Ім'я користувача", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Ваші файли зашифровані. Якщо ви не зробили придатний ключ відновлення, не буде ніякої можливості отримати дані назад після того, як ваш пароль буде скинутий. Якщо ви не знаєте, що робити, будь ласка, зверніться до адміністратора, щоб продовжити. Ви дійсно хочете продовжити?", +"Yes, I really want to reset my password now" => "Так, я справді бажаю скинути мій пароль зараз", +"Reset" => "Перевстановити", "Your password was reset" => "Ваш пароль був скинутий", "To login page" => "До сторінки входу", "New password" => "Новий пароль", @@ -86,13 +123,25 @@ $TRANSLATIONS = array( "Apps" => "Додатки", "Admin" => "Адмін", "Help" => "Допомога", +"Error loading tags" => "Помилка завантаження тегів.", +"Tag already exists" => "Тег вже існує", +"Error deleting tag(s)" => "Помилка видалення тегу(ів)", +"Error tagging" => "Помилка встановлення тегів", +"Error untagging" => "Помилка зняття тегів", +"Error favoriting" => "Помилка позначення улюблених", +"Error unfavoriting" => "Помилка зняття позначки улюблених", "Access forbidden" => "Доступ заборонено", "Cloud not found" => "Cloud не знайдено", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Агов,\n\nпросто щоб ви знали, що %s поділився %s з вами.\nПодивіться: %s\n\n", +"The share will expire on %s." => "Доступ до спільних даних вичерпається %s.", +"Cheers!" => "Будьмо!", "Security Warning" => "Попередження про небезпеку", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Будь ласка, оновіть вашу інсталяцію PHP для використання %s безпеки.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без безпечного генератора випадкових чисел зловмисник може визначити токени скидання пароля і заволодіти Вашим обліковим записом.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює.", +"For information how to properly configure your server, please see the documentation." => "Для отримання інформації, як правильно налаштувати сервер, див. документацію.", "Create an admin account" => "Створити обліковий запис адміністратора", "Advanced" => "Додатково", "Data folder" => "Каталог даних", @@ -104,14 +153,25 @@ $TRANSLATIONS = array( "Database tablespace" => "Таблиця бази даних", "Database host" => "Хост бази даних", "Finish setup" => "Завершити налаштування", +"Finishing …" => "Завершується ...", +"%s is available. Get more information on how to update." => "%s доступний. Отримай більше інформації про те, як оновити.", "Log out" => "Вихід", "Automatic logon rejected!" => "Автоматичний вхід в систему відхилений!", "If you did not change your password recently, your account may be compromised!" => "Якщо Ви не міняли пароль останнім часом, Ваш обліковий запис може бути скомпрометованим!", "Please change your password to secure your account again." => "Будь ласка, змініть свій пароль, щоб знову захистити Ваш обліковий запис.", +"Server side authentication failed!" => "Помилка аутентифікації на боці Сервера !", +"Please contact your administrator." => "Будь ласка, зверніться до вашого Адміністратора.", "Lost your password?" => "Забули пароль?", "remember" => "запам'ятати", "Log in" => "Вхід", "Alternative Logins" => "Альтернативні Логіни", -"Updating ownCloud to version %s, this may take a while." => "Оновлення ownCloud до версії %s, це може зайняти деякий час." +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Агов,

просто щоб ви знали, що %s поділився »%s« з вами.
Подивіться на це !

", +"This ownCloud instance is currently in single user mode." => "Цей екземпляр OwnCloud зараз працює в монопольному режимі одного користувача", +"This means only administrators can use the instance." => "Це означає, що лише адміністратори можуть використовувати цей екземпляр.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Зверніться до системного адміністратора, якщо це повідомлення зберігається або з'являєтья несподівано.", +"Thank you for your patience." => "Дякуємо за ваше терпіння.", +"Updating ownCloud to version %s, this may take a while." => "Оновлення ownCloud до версії %s, це може зайняти деякий час.", +"This ownCloud instance is currently being updated, which may take a while." => "Цей ownCloud зараз оновлюється, це може тривати певний час.", +"Please reload this page after a short time to continue using ownCloud." => "Будь ласка, перезавантажте незабаром цю сторінку, щоб продовжити користуватися OwnCloud." ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 1691948230..8b891176d1 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "حماية" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "سجل" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "المزيد" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "أقل" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "إصدار" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Крон" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Още" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "По-малко" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Версия" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "বেশী" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "কম" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,31 +286,42 @@ msgid "" msgstr "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale no funciona" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No s'ha pogut establir cap localització del sistema amb suport per UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Us recomanem que instal·leu els paquets necessaris en el sistema per donar suport a alguna de les localitzacions següents: %s" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permet pujada pública" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Registre" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Més" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menys" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versió" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -290,31 +290,42 @@ msgid "" msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalizace nefunguje" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Není možné nastavit znakovou sadu, která podporuje UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Důrazně doporučujeme nainstalovat do vašeho systém balíčky nutné pro podporu některé z následujících znakových sad: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Připojení k internetu nefunguje" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -323,118 +334,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Záznam" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Více" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Méně" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Verze" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -287,31 +287,42 @@ msgid "" msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -320,118 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Tillad offentlig upload" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Tillad mail underretninger" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Tillad brugere at sende mail underretninger for delte filer" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mere" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -291,31 +291,42 @@ msgid "" msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -324,118 +335,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mehr" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Weniger" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -293,31 +293,42 @@ msgid "" msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -326,118 +337,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mehr" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Weniger" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the , 2013 # arkascha , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 # noxin , 2013 # Mirodin , 2013 # kabum , 2013 @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-28 12:30+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -291,31 +291,42 @@ msgid "" msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -324,118 +335,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mehr" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Weniger" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -291,31 +291,42 @@ msgid "" msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -324,118 +335,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,31 +285,42 @@ msgid "" msgstr "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale not working" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "System locale can not be set to a one which supports UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "This means that there might be problems with certain characters in file names." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "We strongly suggest installing the required packages on your system to support one of the following locales: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internet connection not working" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use system's cron service to call the cron.php file every 15 minutes." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Allow users to share items to the public with links" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Allow users to enable others to upload into their publicly shared folders" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Allow users to only share with users in their groups" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Allow mail notification" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Allow user to send mail notification for shared files" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Security" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Log level" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "More" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Less" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Pli" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Malpli" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Eldono" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -296,31 +296,42 @@ msgid "" msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No se puede escoger una configuración regional que soporte UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +340,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Registro" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Más" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versión" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -287,31 +287,42 @@ msgid "" msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -320,118 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Más" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versión" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -249,7 +249,7 @@ msgstr "Turvahoiatus" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i." #: templates/admin.php:39 msgid "" @@ -286,31 +286,42 @@ msgid "" msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Käivita toiming igal lehe laadimisel" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Luba kasutajatel üleslaadimine teiste poolt oma avalikult jagatud kataloogidesse " -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Logi" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Rohkem" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Vähem" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versioon" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -287,31 +287,42 @@ msgid "" msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -320,118 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Baimendu igoera publikoak" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Gehiago" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "امنیت" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "نسخه" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Maa-asetus ei toimi" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Salli julkiset lähetykset" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Loki" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Enemmän" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versio" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -292,31 +292,42 @@ msgid "" msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Nous conseillons vivement d'installer les paquets requis sur votre système pour supporter l'un des paramètres régionaux suivants : %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -325,118 +336,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet d'autoriser les autres utilisateurs à téléverser dans le dossier partagé public de l'utilisateur" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Plus" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Moins" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,31 +285,42 @@ msgid "" msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "A configuración rexional non funciona" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que os usuarios lle permitan a outros enviar aos seus cartafoles compartidos publicamente" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Máis" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versión" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "יומן" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "יותר" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "פחות" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "גרסא" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "više" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -288,31 +288,42 @@ msgid "" msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -321,118 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba." -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Több" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Verzió" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Registro" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Plus" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Catat" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Lainnya" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versi" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Meira" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Minna" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 06:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -317,7 +317,7 @@ msgstr "Condividi collegamento" msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:224 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:38 msgid "Password" msgstr "Password" @@ -393,7 +393,7 @@ msgstr "elimina" msgid "share" msgstr "condividi" -#: js/share.js:464 js/share.js:694 +#: js/share.js:694 msgid "Password protected" msgstr "Protetta da password" @@ -447,7 +447,7 @@ msgstr "Nessuna etichetta selezionata per l'eliminazione." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Ricarica la pagina." #: js/update.js:17 msgid "" @@ -485,7 +485,7 @@ msgid "You will receive a link to reset your password via Email." msgstr "Riceverai un collegamento per ripristinare la tua password via email" #: lostpassword/templates/lostpassword.php:21 templates/installation.php:51 -#: templates/login.php:25 +#: templates/login.php:31 msgid "Username" msgstr "Nome utente" @@ -716,19 +716,19 @@ msgstr "Autenticazione lato server non riuscita!" msgid "Please contact your administrator." msgstr "Contatta il tuo amministratore di sistema." -#: templates/login.php:38 +#: templates/login.php:44 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:43 +#: templates/login.php:49 msgid "remember" msgstr "ricorda" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Log in" msgstr "Accedi" -#: templates/login.php:52 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Accessi alternativi" @@ -745,7 +745,7 @@ msgstr "Questa istanza di ownCloud è in modalità utente singolo." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "Questo significa che solo gli amministratori possono utilizzare l'istanza." +msgstr "Ciò significa che solo gli amministratori possono utilizzare l'istanza." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 9a652f95d7..1174b53543 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 06:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -341,7 +341,7 @@ msgstr "Nuovo" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Nuovo file di testo" #: templates/index.php:8 msgid "Text file" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index f8db7574c4..c77b29e41a 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 06:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +100,7 @@ msgstr "I seguenti utenti non sono configurati per la cifratura:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi." #: js/settings-admin.js:13 msgid "Saving..." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 422f190b54..1551799fd8 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -251,7 +251,7 @@ msgstr "Avviso di sicurezza" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Sei connesso a %s con il protocollo HTTP. Ti suggeriamo fortemente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." #: templates/admin.php:39 msgid "" @@ -288,31 +288,42 @@ msgid "" msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "La localizzazione di sistema non può essere impostata a una che supporta UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -321,118 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Protezione" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Altro" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Meno" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versione" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 03:50+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +100,7 @@ msgstr "以下のユーザーは、暗号化設定がされていません:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。今しばらくお待ちください。" #: js/settings-admin.js:13 msgid "Saving..." diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 88c9e1b0d3..ec56624ae4 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 11:30+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -287,31 +287,42 @@ msgid "" msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "システムロケールを UTF-8 をサポートするロケールに設定できません。" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "これは、ファイル名の特定の文字に問題があることを意味しています。" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -320,118 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "共有" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "リンクによりアイテムを公開することを許可する" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "ユーザが共有しているアイテムの再共有を許可する" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "ユーザが誰とでも共有することを許可する" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "メール通知を許可" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "共有ファイルに関するメール通知の送信をユーザに許可する" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化する。" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "ログ" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "もっと見る" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "閉じる" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "バージョン" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the , 2013 # Shinjo Park , 2013 # 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 02:20+0000\n" -"Last-Translator: 책읽는달팽 \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 02:50+0000\n" +"Last-Translator: madeng \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "%s에게 메일을 보낼 수 없습니다." #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -56,7 +57,7 @@ msgstr "... %d%% 완료됨 ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "이미지나 파일이 없음" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -68,11 +69,11 @@ msgstr "잘못된 이미지" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "사용가능한 프로파일 사진이 없습니다. 재시도 하세요." #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "선택된 데이터가 없습니다." #: js/config.php:32 msgid "Sunday" @@ -229,21 +230,21 @@ msgstr "" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} 파일 중복" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "하나의 파일이 충돌" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "어느 파일들을 보관하고 싶습니까?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "두 버전을 모두 선택하면, 파일이름에 번호가 추가될 것입니다." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -251,15 +252,15 @@ msgstr "취소" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "계속" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(모두 선택됨)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count}개가 선택됨)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" @@ -428,7 +429,7 @@ msgstr "추가" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "태크 편집" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -456,7 +457,7 @@ msgstr "업데이트가 성공하였습니다. ownCloud로 돌아갑니다." #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s 비밀번호 재설정" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -467,7 +468,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "비밀번호를 초기화 하기 위한 링크가 이메일로 발송되었습니다.
만약 수분이내에 메일이 도착하지 않은 경우, 스팸 메일함을 확인하세요.
만약 없다면, 메일 관리자에게 문의하세요." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" @@ -488,7 +489,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "당신의 파일은 암호화 되어있습니다. 만약 복구키를 가지고 있지 않다면, 비밀번호를 초기화한 후에, 당신의 데이터를 복구할 수 없을 것입니다. 당신이 원하는 것이 확실하지 않다면, 계속진행하기 전에 관리자에게 문의하세요. 계속 진행하시겠습니까?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" @@ -496,7 +497,7 @@ msgstr "네, 전 제 비밀번호를 리셋하길 원합니다" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "재설정" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -587,7 +588,7 @@ msgstr "" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "화이팅!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -601,7 +602,7 @@ msgstr "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CV #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "%s의 보안을 위하여 PHP 버전을 업데이트하십시오." #: templates/installation.php:32 msgid "" @@ -626,7 +627,7 @@ msgstr ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파 msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "" +msgstr "올바른 서버 설정을 위한 정보는 문서를 참조하세요." #: templates/installation.php:47 msgid "Create an admin account" @@ -676,12 +677,12 @@ msgstr "설치 완료" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "종료중 ..." #: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s는 사용가능합니다. 업데이트방법에 대해서 더 많은 정보를 얻으세요." #: templates/layout.user.php:71 templates/singleuser.user.php:8 msgid "Log out" @@ -703,11 +704,11 @@ msgstr "계정의 안전을 위하여 암호를 변경하십시오." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "서버 인증 실패!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "관리자에게 문의하세요." #: templates/login.php:44 msgid "Lost your password?" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 14eef6f733..024b9957d9 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -286,31 +286,42 @@ msgid "" msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "로캘이 작동하지 않음" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "크론" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "공유" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "퍼블릭 업로드 허용" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "메일 알림을 허용" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "보안" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "로그" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "더 중요함" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "버전" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 02:50+0000\n" +"Last-Translator: madeng \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +87,43 @@ msgstr "" msgid "Error" msgstr "오류" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "그룹 선택" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "연결 시험 성공" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "연결 시험 실패" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "현재 서버 설정을 지우시겠습니까?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -138,11 +139,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" @@ -220,7 +221,7 @@ msgstr "" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "서버 설정 추가" #: templates/part.wizard-server.php:30 msgid "Host" @@ -283,7 +284,7 @@ msgstr "뒤로" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "계속" #: templates/settings.php:11 msgid "" @@ -308,7 +309,7 @@ msgstr "구성 활성화" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "선택하지 않으시면, 설정은 무시됩니다." #: templates/settings.php:23 msgid "Backup (Replica) Host" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 65e947b29d..cc492115e2 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Méi" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Manner" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -289,31 +289,42 @@ msgid "" msgstr "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalė neveikia" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Nėra interneto ryšio" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -322,118 +333,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Įjungti Share API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Leidžia programoms naudoti Share API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Leisti naudotojams viešai dalintis elementais su nuorodomis" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Leisti viešus įkėlimus" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Leisti naudotojams įgalinti kitus įkelti į savo viešai dalinamus aplankus" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Leisti naudotojams toliau dalintis elementais pasidalintais su jais" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Leisti naudotojams dalintis su bet kuo" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Daugiau" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versija" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Atļaut publisko augšupielādi" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Ļaut lietotājiem iespējot atļaut citiem augšupielādēt failus viņu publiskajās mapēs" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Drošība" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Vairāk" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versija" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Локалето не функционира" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Споделување" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Овозможи го API-то за споделување" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Дозволете апликациите да го користат API-то за споделување" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Дозволи врски" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Дозволи јавен аплоуд" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Овозможи повторно споделување" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Овозможи корисниците да споделуваат со секого" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Овозможи корисниците да споделуваат со корисници од своите групи" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Записник" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Повеќе" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Помалку" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Верзија" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -286,31 +286,42 @@ msgid "" msgstr "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer med lenker" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Logg" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mer" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versjon" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,31 +288,42 @@ msgid "" msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -321,118 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Meer" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Minder" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versie" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -287,31 +287,42 @@ msgid "" msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -320,118 +331,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Tillat offentlege opplastingar" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "La brukarar tillata andre å lasta opp i deira offentleg delte mapper" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Logg" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Meir" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Jornal" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -286,31 +286,42 @@ msgid "" msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Użytkownicy mogą włączyć dla innych wgrywanie do ich publicznych katalogów" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Logi" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Więcej" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mniej" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Wersja" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,31 +286,42 @@ msgid "" msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Localidade do sistema não pode ser definido como um que suporta UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Segurança" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Registro" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mais" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versão" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the , 2013 +# PapiMigas Migas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 12:00+0000\n" +"Last-Translator: PapiMigas Migas \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,15 +55,15 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" msgstr "Ficheiro desconhecido" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "serviços web sob o seu controlo" @@ -91,19 +92,19 @@ msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zi msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Por favor descarregue os ficheiros divididos em partes mais pequenas ou peça ajuda ao seu administrador." #: private/installer.php:63 msgid "No source specified when installing app" -msgstr "" +msgstr "Não foi especificada uma fonte de instalação desta aplicação" #: private/installer.php:70 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Não foi especificada uma href http para instalar esta aplicação" #: private/installer.php:75 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Não foi especificado o caminho de instalação desta aplicação" #: private/installer.php:89 #, php-format @@ -112,7 +113,7 @@ msgstr "Arquivos do tipo %s não são suportados" #: private/installer.php:103 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Ocorreu um erro ao abrir o ficheiro de instalação desta aplicação" #: private/installer.php:125 msgid "App does not provide an info.xml file" @@ -132,13 +133,13 @@ msgstr "A aplicação não pode ser instalada por não ser compatível com esta msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Esta aplicação não pode ser instalada por que contém o tag true que só é permitido para aplicações nativas" #: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Esta aplicação não pode ser instalada porque a versão no info.xml/version não coincide com a reportada na loja de aplicações" #: private/installer.php:169 msgid "App directory already exists" @@ -173,17 +174,17 @@ msgstr "Texto" msgid "Images" msgstr "Imagens" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s introduza o nome de utilizador da base de dados" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s introduza o nome da base de dados" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s não é permitido utilizar pontos (.) no nome da base de dados" @@ -204,11 +205,11 @@ msgid "MySQL username and/or password not valid" msgstr "Nome de utilizador/password do MySQL inválida" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +217,10 @@ msgid "DB Error: \"%s\"" msgstr "Erro na BD: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +253,7 @@ msgstr "Não foi possível estabelecer a ligação Oracle" msgid "Oracle username and/or password not valid" msgstr "Nome de utilizador/password do Oracle inválida" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index dfaecc0173..8a5015a249 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -8,12 +8,13 @@ # Duarte Velez Grilo , 2013 # Helder Meneses , 2013 # Nelson Rosado , 2013 +# PapiMigas Migas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -33,11 +34,11 @@ msgstr "Erro na autenticação" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "O seu nome completo foi alterado." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Não foi possível alterar o seu nome completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -112,7 +113,7 @@ msgstr "Palavra chave de recuperação de administrador errada. Por favor verifi msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" @@ -217,7 +218,7 @@ msgstr "Uma password válida deve ser fornecida" #: js/users.js:481 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -225,23 +226,23 @@ msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Tudo (problemas fatais, erros, avisos, informação, depuração)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Informação, avisos, erros e problemas fatais" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Avisos, erros e problemas fatais" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Erros e problemas fatais" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Apenas problemas fatais" #: templates/admin.php:22 templates/admin.php:36 msgid "Security Warning" @@ -252,7 +253,7 @@ msgstr "Aviso de Segurança" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Está a aceder %s via HTTP. Recomendamos vivamente que configure o servidor para forçar o uso de HTTPS." #: templates/admin.php:39 msgid "" @@ -289,31 +290,42 @@ msgid "" msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Internacionalização não está a funcionar" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Não é possível pôr as definições de sistema compatíveis com UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -322,118 +334,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permitir Envios Públicos" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Segurança" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Registo" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mais" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menos" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versão" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the access your Files via " "WebDAV" -msgstr "" +msgstr "Utilize esta ligação para aceder aos seus ficheiros via WebDAV" #: templates/personal.php:150 msgid "Encryption" @@ -597,7 +609,7 @@ msgstr "Encriptação" #: templates/personal.php:152 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros" #: templates/personal.php:158 msgid "Log-in password" @@ -631,7 +643,7 @@ msgstr "Armazenamento Padrão" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -651,7 +663,7 @@ msgstr "Armazenamento" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "alterar nome completo" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 89ca5454da..4841638de4 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -286,31 +286,42 @@ msgid "" msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Localizarea nu funcționează" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Permite încărcări publice" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Securitate" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mai mult" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -297,31 +297,42 @@ msgid "" msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +341,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Разрешить открытые загрузки" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Журнал" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Больше" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Меньше" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Версия" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Подробнее" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "වැඩි" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "අඩු" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,31 +286,42 @@ msgid "" msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Povoliť verejné nahrávanie súborov" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povoliť používateľom umožniť iným používateľom nahrávať do ich zdieľaného priečinka" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Povoliť upozornenia emailom" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Záznam" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Viac" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Menej" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Verzia" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,31 +286,42 @@ msgid "" msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8." -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Priporočljivo je namestiti zahtevane pakete v sistem za podporo ene izmed navedenih jezikovnih možnosti: %s" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -319,118 +330,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Dovoli javno pošiljanje datotek v oblak" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo." -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Varnost" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Več" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Manj" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Različica" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me këmbngulje të aktivizoni këtë modul për të arritur rezultate më të mirame identifikimin e tipeve te ndryshme MIME." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale nuk është funksional" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Lidhja me internetin nuk është funksionale" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Ndarje" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktivizo API për ndarjet" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Lejoni aplikacionet të përdorin share API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Lejo lidhjet" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Lejo ngarkimin publik" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Lejo ri-ndarjen" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Lejo përdoruesit të ndajnë me cilindo" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Siguria" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Më tepër" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Versioni" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Бележење" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Више" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Мање" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Верзија" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -293,31 +293,42 @@ msgid "" msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -326,118 +337,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Använd systemets cron service att ropa på cron.php filen varje 15 minuter." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Logg" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Mer" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Mindre" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Version" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5676c6c20d..75e8021acc 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ba25268409..c0871b60c4 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 1ce6ffd192..4f83f58694 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:466 +#: lib/config.php:467 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:470 +#: lib/config.php:471 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:473 +#: lib/config.php:474 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 09e1d01d73..e5a5bde1de 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 894ff8dc80..5de77ee194 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "" -#: lib/trashbin.php:900 lib/trashbin.php:902 +#: lib/trashbin.php:905 lib/trashbin.php:907 msgid "restored" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index cb893222ac..9e1749957c 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 67a9412081..2655c89dc8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -173,17 +173,17 @@ msgstr "" msgid "Images" msgstr "" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -204,11 +204,11 @@ msgid "MySQL username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -216,10 +216,10 @@ msgid "DB Error: \"%s\"" msgstr "" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -252,7 +252,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 3c88ff8d2b..4bf5ae6cbd 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -173,17 +173,17 @@ msgstr "" msgid "Images" msgstr "" -#: setup/abstractdatabase.php:22 +#: setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "" -#: setup/abstractdatabase.php:25 +#: setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "" -#: setup/abstractdatabase.php:28 +#: setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "" @@ -202,18 +202,18 @@ msgstr "" msgid "MySQL username and/or password not valid" msgstr "" -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:144 +#: setup/oci.php:151 setup/oci.php:162 setup/oci.php:169 setup/oci.php:178 +#: setup/oci.php:186 setup/oci.php:195 setup/oci.php:201 #: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 #: setup/postgresql.php:125 setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:145 +#: setup/oci.php:152 setup/oci.php:163 setup/oci.php:179 setup/oci.php:187 +#: setup/oci.php:196 setup/postgresql.php:90 setup/postgresql.php:99 #: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" @@ -245,7 +245,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "" -#: setup/oci.php:173 setup/oci.php:205 +#: setup/oci.php:170 setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d1af78c31d..a93a21ff6d 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -283,31 +283,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -316,117 +327,117 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" @@ -26,17 +26,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 43390187d6..cb1187c918 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 8a9b53d0f5..6713c82ea4 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "มาก" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "น้อย" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,31 +288,42 @@ msgid "" msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir." -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s." -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -321,118 +332,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedildi." -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan." -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Bağlantılara izin ver" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver." -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Kayıtlar" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Az" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "ئاز" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-26 10:45-0500\n" -"PO-Revision-Date: 2013-11-26 15:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 13:50+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,57 +21,57 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s розподілено »%s« з тобою" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Неможливо надіслати пошту наступним користувачам: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Увімкнено захищений режим" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Вимкнено захищений режим" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Базу даних оновлено" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Оновлення файлового кешу, це може тривати доволі довго..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Файловий кеш оновлено" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% виконано ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Немає наданого зображення або файлу" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Невідомий тип файлу" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Невірне зображення" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Немає доступного тимчасового профілю для малюнків, спробуйте ще раз" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Немає інформації щодо обрізки даних" #: js/config.php:32 msgid "Sunday" @@ -159,16 +160,16 @@ msgstr "секунди тому" #: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n хвилину тому" +msgstr[1] "%n хвилини тому" +msgstr[2] "%n хвилин тому" #: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n годину тому" +msgstr[1] "%n години тому" +msgstr[2] "%n годин тому" #: js/js.js:861 msgid "today" @@ -181,9 +182,9 @@ msgstr "вчора" #: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n день тому" +msgstr[1] "%n дні тому" +msgstr[2] "%n днів тому" #: js/js.js:864 msgid "last month" @@ -192,9 +193,9 @@ msgstr "минулого місяця" #: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%n місяць тому" +msgstr[1] "%n місяці тому" +msgstr[2] "%n місяців тому" #: js/js.js:866 msgid "months ago" @@ -214,7 +215,7 @@ msgstr "Обрати" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Помилка при завантаженні шаблону вибору: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -230,28 +231,28 @@ msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Помилка при завантаженні шаблону повідомлення: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{count} файловий конфлікт" +msgstr[1] "{count} файлових конфліктів" +msgstr[2] "{count} файлових конфліктів" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Один файловий конфлікт" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Які файли ви хочете залишити?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Якщо ви оберете обидві версії, скопійований файл буде мати номер, доданий у його ім'я." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -259,19 +260,19 @@ msgstr "Відмінити" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Продовжити" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(все вибрано)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} вибрано)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Помилка при завантаженні файлу існуючого шаблону" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -308,23 +309,23 @@ msgstr "{owner} опублікував для Вас" #: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Поділитися з користувачем або групою ..." #: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Опублікувати посилання" #: js/share.js:222 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:224 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:38 msgid "Password" msgstr "Пароль" #: js/share.js:229 msgid "Allow Public Upload" -msgstr "" +msgstr "Дозволити Публічне Завантаження" #: js/share.js:233 msgid "Email link to person" @@ -368,7 +369,7 @@ msgstr "Закрити доступ" #: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "повідомити по Email" #: js/share.js:408 msgid "can edit" @@ -394,7 +395,7 @@ msgstr "видалити" msgid "share" msgstr "опублікувати" -#: js/share.js:464 js/share.js:694 +#: js/share.js:694 msgid "Password protected" msgstr "Захищено паролем" @@ -424,7 +425,7 @@ msgstr "Не визначено тип об'єкту." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Введіть новий" #: js/tags.js:27 msgid "Delete" @@ -436,19 +437,19 @@ msgstr "Додати" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Редагувати теги" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Помилка при завантаженні шаблону діалогу: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Жодних тегів не обрано для видалення." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Будь ласка, перезавантажте сторінку." #: js/update.js:17 msgid "" @@ -464,7 +465,7 @@ msgstr "Оновлення виконалось успішно. Перенапр #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s пароль скинуто" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -475,18 +476,18 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Посилання для того, щоб скинути ваш пароль було надіслано на ваший Email.
Якщо ви не отримали його найближчим часом, перевірте ваший спам каталог.
Якщо і там немає, спитайте вашого місцевого Адміністратора." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Запит завершився невдало !
Ви переконані, що ваша адреса Email/ім'я користувача вірні ?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." #: lostpassword/templates/lostpassword.php:21 templates/installation.php:51 -#: templates/login.php:25 +#: templates/login.php:31 msgid "Username" msgstr "Ім'я користувача" @@ -496,15 +497,15 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Ваші файли зашифровані. Якщо ви не зробили придатний ключ відновлення, не буде ніякої можливості отримати дані назад після того, як ваш пароль буде скинутий. Якщо ви не знаєте, що робити, будь ласка, зверніться до адміністратора, щоб продовжити. Ви дійсно хочете продовжити?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Так, я справді бажаю скинути мій пароль зараз" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Перевстановити" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -544,31 +545,31 @@ msgstr "Допомога" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Помилка завантаження тегів." #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Тег вже існує" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Помилка видалення тегу(ів)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Помилка встановлення тегів" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Помилка зняття тегів" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Помилка позначення улюблених" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Помилка зняття позначки улюблених" #: templates/403.php:12 msgid "Access forbidden" @@ -586,16 +587,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Агов,\n\nпросто щоб ви знали, що %s поділився %s з вами.\nПодивіться: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Доступ до спільних даних вичерпається %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Будьмо!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -609,7 +610,7 @@ msgstr "Ваша версія PHP вразлива для атак NULL Byte (CV #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Будь ласка, оновіть вашу інсталяцію PHP для використання %s безпеки." #: templates/installation.php:32 msgid "" @@ -634,7 +635,7 @@ msgstr "Ваші дані каталогів і файлів, ймовірно, msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "" +msgstr "Для отримання інформації, як правильно налаштувати сервер, див. документацію." #: templates/installation.php:47 msgid "Create an admin account" @@ -684,12 +685,12 @@ msgstr "Завершити налаштування" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Завершується ..." #: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s доступний. Отримай більше інформації про те, як оновити." #: templates/layout.user.php:71 templates/singleuser.user.php:8 msgid "Log out" @@ -711,25 +712,25 @@ msgstr "Будь ласка, змініть свій пароль, щоб зно #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Помилка аутентифікації на боці Сервера !" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Будь ласка, зверніться до вашого Адміністратора." -#: templates/login.php:38 +#: templates/login.php:44 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:43 +#: templates/login.php:49 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:46 +#: templates/login.php:52 msgid "Log in" msgstr "Вхід" -#: templates/login.php:52 +#: templates/login.php:58 msgid "Alternative Logins" msgstr "Альтернативні Логіни" @@ -738,25 +739,25 @@ msgstr "Альтернативні Логіни" msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" -msgstr "" +msgstr "Агов,

просто щоб ви знали, що %s поділився »%s« з вами.
Подивіться на це !

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Цей екземпляр OwnCloud зараз працює в монопольному режимі одного користувача" #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Це означає, що лише адміністратори можуть використовувати цей екземпляр." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Зверніться до системного адміністратора, якщо це повідомлення зберігається або з'являєтья несподівано." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Дякуємо за ваше терпіння." #: templates/update.admin.php:3 #, php-format @@ -766,8 +767,8 @@ msgstr "Оновлення ownCloud до версії %s, це може зайн #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Цей ownCloud зараз оновлюється, це може тривати певний час." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Будь ласка, перезавантажте незабаром цю сторінку, щоб продовжити користуватися OwnCloud." diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 5df09e88f1..3fa79218bb 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-03 13:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -53,15 +53,15 @@ msgstr "Адмін" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Невідомий тип файлу" -#: private/avatar.php:65 +#: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Невірне зображення" -#: private/defaults.php:36 +#: private/defaults.php:34 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" @@ -172,17 +172,17 @@ msgstr "Текст" msgid "Images" msgstr "Зображення" -#: private/setup/abstractdatabase.php:22 +#: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." msgstr "%s введіть ім'я користувача бази даних." -#: private/setup/abstractdatabase.php:25 +#: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." msgstr "%s введіть назву бази даних." -#: private/setup/abstractdatabase.php:28 +#: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" msgstr "%s не можна використовувати крапки в назві бази даних" @@ -203,11 +203,11 @@ msgid "MySQL username and/or password not valid" msgstr "MySQL ім'я користувача та/або пароль не дійсні" #: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:147 -#: private/setup/oci.php:154 private/setup/oci.php:165 -#: private/setup/oci.php:172 private/setup/oci.php:181 -#: private/setup/oci.php:189 private/setup/oci.php:198 -#: private/setup/oci.php:204 private/setup/postgresql.php:89 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 #: private/setup/postgresql.php:98 private/setup/postgresql.php:115 #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format @@ -215,10 +215,10 @@ msgid "DB Error: \"%s\"" msgstr "Помилка БД: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:148 -#: private/setup/oci.php:155 private/setup/oci.php:166 -#: private/setup/oci.php:182 private/setup/oci.php:190 -#: private/setup/oci.php:199 private/setup/postgresql.php:90 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 #: private/setup/postgresql.php:99 private/setup/postgresql.php:116 #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format @@ -251,7 +251,7 @@ msgstr "" msgid "Oracle username and/or password not valid" msgstr "Oracle ім'я користувача та/або пароль не дійсні" -#: private/setup/oci.php:173 private/setup/oci.php:205 +#: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s" @@ -293,14 +293,14 @@ msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n хвилин тому" #: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n годин тому" #: private/template/functions.php:133 msgid "today" @@ -315,7 +315,7 @@ msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n днів тому" #: private/template/functions.php:138 msgid "last month" @@ -326,7 +326,7 @@ msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "%n місяців тому" #: private/template/functions.php:141 msgid "last year" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 9be92bc3c9..f941a9e46c 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "Безпека" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Протокол" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "Більше" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "Менше" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Версія" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "Не вдалося видалити конфігурацію сервера" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "Конфігурація вірна і зв'язок може бути встановлений ​​!" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані." -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "Успіх" msgid "Error" msgstr "Помилка" -#: js/settings.js:777 +#: js/settings.js:837 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:846 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:855 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:872 js/settings.js:881 msgid "Select groups" msgstr "Оберіть групи" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:875 js/settings.js:884 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:878 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:905 msgid "Connection test succeeded" msgstr "Перевірка з'єднання пройшла успішно" -#: js/settings.js:852 +#: js/settings.js:912 msgid "Connection test failed" msgstr "Перевірка з'єднання завершилась неуспішно" -#: js/settings.js:861 +#: js/settings.js:921 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ви дійсно бажаєте видалити поточну конфігурацію сервера ?" -#: js/settings.js:862 +#: js/settings.js:922 msgid "Confirm Deletion" msgstr "Підтвердіть Видалення" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:778 lib/wizard.php:790 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:951 msgid "Could not find the desired feature" msgstr "" @@ -287,7 +287,7 @@ msgstr "Назад" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Продовжити" #: templates/settings.php:11 msgid "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 81522ce007..616f657a6f 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" +"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"PO-Revision-Date: 2013-12-04 23:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "Log" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "hơn" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "ít" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -289,31 +289,42 @@ msgid "" msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -322,118 +333,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "共享" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "允许公开上传" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "用户可让其他人上传到他的公开共享文件夹" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "安全" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "日志" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "更多" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "更少" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "版本" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -284,31 +284,42 @@ msgid "" msgstr "" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -317,118 +328,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -285,31 +285,42 @@ msgid "" msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" #: templates/admin.php:79 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:82 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:93 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:84 +#: templates/admin.php:98 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:102 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:106 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:104 +#: templates/admin.php:118 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:107 +#: templates/admin.php:121 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -318,118 +329,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:121 +#: templates/admin.php:135 msgid "Cron" msgstr "Cron" -#: templates/admin.php:128 +#: templates/admin.php:142 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:136 +#: templates/admin.php:150 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php" -#: templates/admin.php:144 +#: templates/admin.php:158 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次" -#: templates/admin.php:149 +#: templates/admin.php:163 msgid "Sharing" msgstr "分享" -#: templates/admin.php:155 +#: templates/admin.php:169 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:156 +#: templates/admin.php:170 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:163 +#: templates/admin.php:177 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:164 +#: templates/admin.php:178 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:172 +#: templates/admin.php:186 msgid "Allow public uploads" msgstr "允許任何人上傳" -#: templates/admin.php:173 +#: templates/admin.php:187 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:181 +#: templates/admin.php:195 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:182 +#: templates/admin.php:196 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:189 +#: templates/admin.php:203 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:192 +#: templates/admin.php:206 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:199 +#: templates/admin.php:213 msgid "Allow mail notification" msgstr "允許郵件通知" -#: templates/admin.php:200 +#: templates/admin.php:214 msgid "Allow user to send mail notification for shared files" msgstr "允許使用者分享檔案時寄出通知郵件" -#: templates/admin.php:207 +#: templates/admin.php:221 msgid "Security" msgstr "安全性" -#: templates/admin.php:220 +#: templates/admin.php:234 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:222 +#: templates/admin.php:236 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:228 +#: templates/admin.php:242 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:240 +#: templates/admin.php:254 msgid "Log" msgstr "紀錄" -#: templates/admin.php:241 +#: templates/admin.php:255 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:273 +#: templates/admin.php:287 msgid "More" msgstr "更多" -#: templates/admin.php:274 +#: templates/admin.php:288 msgid "Less" msgstr "更少" -#: templates/admin.php:280 templates/personal.php:173 +#: templates/admin.php:294 templates/personal.php:173 msgid "Version" msgstr "版本" -#: templates/admin.php:284 templates/personal.php:176 +#: templates/admin.php:298 templates/personal.php:176 msgid "" "Developed by the ownCloud community, the "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Por favor descarregue os ficheiros divididos em partes mais pequenas ou peça ajuda ao seu administrador.", +"No source specified when installing app" => "Não foi especificada uma fonte de instalação desta aplicação", +"No href specified when installing app from http" => "Não foi especificada uma href http para instalar esta aplicação", +"No path specified when installing app from local file" => "Não foi especificado o caminho de instalação desta aplicação", "Archives of type %s are not supported" => "Arquivos do tipo %s não são suportados", +"Failed to open archive when installing app" => "Ocorreu um erro ao abrir o ficheiro de instalação desta aplicação", "App does not provide an info.xml file" => "A aplicação não disponibiliza um ficheiro info.xml", "App can't be installed because of not allowed code in the App" => "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação", "App can't be installed because it is not compatible with this version of ownCloud" => "A aplicação não pode ser instalada por não ser compatível com esta versão do ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Esta aplicação não pode ser instalada por que contém o tag true que só é permitido para aplicações nativas", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Esta aplicação não pode ser instalada porque a versão no info.xml/version não coincide com a reportada na loja de aplicações", "App directory already exists" => "A directoria da aplicação já existe", "Can't create app folder. Please fix permissions. %s" => "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s", "Application is not enabled" => "A aplicação não está activada", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 906c93b567..32e010f1d4 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Налаштування", "Users" => "Користувачі", "Admin" => "Адмін", +"Unknown filetype" => "Невідомий тип файлу", +"Invalid image" => "Невірне зображення", "web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", "Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.", @@ -37,13 +39,13 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Будь ласка, перевірте інструкції по встановленню.", "Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"", "seconds ago" => "секунди тому", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n minute ago_::_%n minutes ago_" => array("","","%n хвилин тому"), +"_%n hour ago_::_%n hours ago_" => array("","","%n годин тому"), "today" => "сьогодні", "yesterday" => "вчора", -"_%n day go_::_%n days ago_" => array("","",""), +"_%n day go_::_%n days ago_" => array("","","%n днів тому"), "last month" => "минулого місяця", -"_%n month ago_::_%n months ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","%n місяців тому"), "last year" => "минулого року", "years ago" => "роки тому" ); diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 83828a30e2..ae3afe4070 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -54,6 +54,7 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Veateated ja tõsised probleemid", "Fatal issues only" => "Ainult tõsised probleemid", "Security Warning" => "Turvahoiatus", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale.", "Setup Warning" => "Paigalduse hoiatus", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", @@ -122,6 +123,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Vali failidest uus", "Remove image" => "Eemalda pilt", "Either png or jpg. Ideally square but you will be able to crop it." => "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata.", +"Your avatar is provided by your original account." => "Sinu avatari pakub sinu algne konto.", "Abort" => "Katkesta", "Choose as profile image" => "Vali profiilipildiks", "Language" => "Keel", @@ -129,6 +131,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu", "Encryption" => "Krüpteerimine", +"The encryption app is no longer enabled, please decrypt all your files" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid", "Log-in password" => "Sisselogimise parool", "Decrypt all Files" => "Dekrüpteeri kõik failid", "Login Name" => "Kasutajanimi", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 4b0b32cea7..d2118e36b4 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -54,6 +54,7 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Errori e problemi gravi", "Fatal issues only" => "Solo problemi gravi", "Security Warning" => "Avviso di sicurezza", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Sei connesso a %s con il protocollo HTTP. Ti suggeriamo fortemente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", "Setup Warning" => "Avviso di configurazione", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", @@ -113,7 +114,7 @@ $TRANSLATIONS = array( "Current password" => "Password attuale", "New password" => "Nuova password", "Change password" => "Modifica password", -"Full Name" => "Nome Completo", +"Full Name" => "Nome completo", "Email" => "Posta elettronica", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", @@ -122,6 +123,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Seleziona nuova da file", "Remove image" => "Rimuovi immagine", "Either png or jpg. Ideally square but you will be able to crop it." => "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla.", +"Your avatar is provided by your original account." => "Il tuo avatar è ottenuto da tuo account originale.", "Abort" => "Interrompi", "Choose as profile image" => "Scegli come immagine del profilo", "Language" => "Lingua", @@ -142,7 +144,7 @@ $TRANSLATIONS = array( "Other" => "Altro", "Username" => "Nome utente", "Storage" => "Archiviazione", -"change full name" => "Modica nome completo", +"change full name" => "modica nome completo", "set new password" => "imposta una nuova password", "Default" => "Predefinito" ); diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 0de416d37f..fe79c23cd2 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro na autenticação", +"Your full name has been changed." => "O seu nome completo foi alterado.", +"Unable to change full name" => "Não foi possível alterar o seu nome completo", "Group already exists" => "O grupo já existe", "Unable to add group" => "Impossível acrescentar o grupo", "Email saved" => "Email guardado", @@ -18,6 +20,7 @@ $TRANSLATIONS = array( "No user supplied" => "Nenhum utilizador especificado.", "Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor forneça uma palavra chave de recuperação de administrador, caso contrário todos os dados de utilizador serão perdidos", "Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada.", "Unable to change password" => "Não foi possível alterar a sua password", "Update to {appversion}" => "Actualizar para a versão {appversion}", "Disable" => "Desactivar", @@ -43,8 +46,15 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Um nome de utilizador válido deve ser fornecido", "Error creating user" => "Erro a criar utilizador", "A valid password must be provided" => "Uma password válida deve ser fornecida", +"Warning: Home directory for user \"{user}\" already exists" => "Atenção: a pasta pessoal do utilizador \"{user}\" já existe", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Tudo (problemas fatais, erros, avisos, informação, depuração)", +"Info, warnings, errors and fatal issues" => "Informação, avisos, erros e problemas fatais", +"Warnings, errors and fatal issues" => "Avisos, erros e problemas fatais", +"Errors and fatal issues" => "Erros e problemas fatais", +"Fatal issues only" => "Apenas problemas fatais", "Security Warning" => "Aviso de Segurança", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está a aceder %s via HTTP. Recomendamos vivamente que configure o servidor para forçar o uso de HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", "Setup Warning" => "Aviso de setup", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", @@ -52,6 +62,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Locale not working" => "Internacionalização não está a funcionar", +"System locale can not be set to a one which supports UTF-8." => "Não é possível pôr as definições de sistema compatíveis com UTF-8.", +"This means that there might be problems with certain characters in file names." => "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", "Cron" => "Cron", @@ -101,6 +114,7 @@ $TRANSLATIONS = array( "Current password" => "Palavra-chave actual", "New password" => "Nova palavra-chave", "Change password" => "Alterar palavra-chave", +"Full Name" => "Nome completo", "Email" => "Email", "Your email address" => "O seu endereço de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", @@ -109,12 +123,15 @@ $TRANSLATIONS = array( "Select new from Files" => "Seleccionar novo a partir dos ficheiros", "Remove image" => "Remover imagem", "Either png or jpg. Ideally square but you will be able to crop it." => "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois.", +"Your avatar is provided by your original account." => "O seu avatar é fornecido pela sua conta original.", "Abort" => "Abortar", "Choose as profile image" => "Escolha uma fotografia de perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Utilize esta ligação para aceder aos seus ficheiros via WebDAV", "Encryption" => "Encriptação", +"The encryption app is no longer enabled, please decrypt all your files" => "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros", "Log-in password" => "Password de entrada", "Decrypt all Files" => "Desencriptar todos os ficheiros", "Login Name" => "Nome de utilizador", @@ -122,10 +139,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Recuperar password de administrador", "Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação, a fim de recuperar os arquivos de usuários durante a mudança de senha", "Default Storage" => "Armazenamento Padrão", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Outro", "Username" => "Nome de utilizador", "Storage" => "Armazenamento", +"change full name" => "alterar nome completo", "set new password" => "definir nova palavra-passe", "Default" => "Padrão" ); From 125dff89975e84a3dddcdd93afb5babd096e9cc1 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Thu, 5 Dec 2013 10:35:19 +0100 Subject: [PATCH 12/31] master is ownCloud 7 pre alpha now --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 4f50b62748..2e1fc7e17f 100644 --- a/version.php +++ b/version.php @@ -1,10 +1,10 @@ Date: Thu, 5 Dec 2013 11:23:30 +0100 Subject: [PATCH 13/31] fix appearance of error message - .errors is outdated --- core/templates/installation.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index 3457a3c9a9..325eb20486 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -6,18 +6,19 @@
0): ?> -
    +
    + t('Error'));?> -
  • +

    -

    + -
  • +

    -
+
From 2a7380cc21e56ce12b1a0e1460fabc978a83090b Mon Sep 17 00:00:00 2001 From: Nico Kaiser Date: Thu, 5 Dec 2013 14:18:32 +0100 Subject: [PATCH 14/31] Fix user's displayName being overwritten by (old) cookie --- lib/base.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 2feedd81d8..baf73b2fb9 100644 --- a/lib/base.php +++ b/lib/base.php @@ -866,7 +866,6 @@ class OC { OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); // login OC_User::setUserId($_COOKIE['oc_username']); - OC_User::setDisplayName($_COOKIE['oc_username'], $_COOKIE['display_name']); OC_Util::redirectToDefaultPage(); // doesn't return } From eba35d28cd974507f9e81e15430d3d33dbbd9973 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 5 Dec 2013 16:12:46 +0100 Subject: [PATCH 15/31] Revert "Fix user's displayName being overwritten by (old) cookie" This reverts commit 2a7380cc21e56ce12b1a0e1460fabc978a83090b. --- lib/base.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base.php b/lib/base.php index baf73b2fb9..2feedd81d8 100644 --- a/lib/base.php +++ b/lib/base.php @@ -866,6 +866,7 @@ class OC { OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); // login OC_User::setUserId($_COOKIE['oc_username']); + OC_User::setDisplayName($_COOKIE['oc_username'], $_COOKIE['display_name']); OC_Util::redirectToDefaultPage(); // doesn't return } From ace1d40ed69e464b58cc39cc1924fb43b9f2722a Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 5 Dec 2013 17:25:01 +0100 Subject: [PATCH 16/31] get owner from share item, if we expire a share while the user updates his /Shared folder than the owner is different from the currently logged in user --- apps/files_sharing/lib/updater.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index 44ebb5cd3c..23ebc9fb81 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -112,8 +112,12 @@ class Shared_Updater { */ static public function shareHook($params) { if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { - $uidOwner = \OCP\User::getUser(); - $users = \OCP\Share::getUsersItemShared($params['itemType'], $params['fileSource'], $uidOwner, true); + if (isset($params['uidOwner'])) { + $uidOwner = $params['uidOwner']; + } else { + $uidOwner = \OCP\User::getUser(); + } + $users = \OCP\Share::getUsersItemShared($params['itemType'], $params['fileSource'], $uidOwner, true, false); if (!empty($users)) { while (!empty($users)) { $reshareUsers = array(); From 3f7aac1a794dc2e988776a28ced268bb41f7c9e0 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 5 Dec 2013 17:26:30 +0100 Subject: [PATCH 17/31] add a optional parameter to skip check for expired files, this is necessary to find out to whom a file was shared after it was expired. --- lib/public/share.php | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/lib/public/share.php b/lib/public/share.php index 6dbcd5b67b..6b3397c85c 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -423,11 +423,13 @@ class Share { * @param string Item source * @param string Owner * @param bool Include collections + * @praram bool check expire date * @return Return array of users */ - public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false) { + public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) { + $users = array(); - $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections); + $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections, false, $checkExpireDate); if ($items) { foreach ($items as $item) { if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { @@ -866,12 +868,14 @@ class Share { protected static function unshareItem(array $item) { // Pass all the vars we have for now, they may be useful $hookParams = array( - 'itemType' => $item['item_type'], - 'itemSource' => $item['item_source'], - 'shareType' => $item['share_type'], - 'shareWith' => $item['share_with'], - 'itemParent' => $item['parent'], + 'itemType' => $item['item_type'], + 'itemSource' => $item['item_source'], + 'shareType' => $item['share_type'], + 'shareWith' => $item['share_with'], + 'itemParent' => $item['parent'], + 'uidOwner' => $item['uid_owner'], ); + \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( 'fileSource' => $item['file_source'], )); @@ -961,6 +965,7 @@ class Share { * @param int Number of items to return, -1 to return all matches (optional) * @param bool Include collection item types (optional) * @param bool TODO (optional) + * @prams bool check expire date * @return mixed * * See public functions getItem(s)... for parameter usage @@ -968,7 +973,7 @@ class Share { */ private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, - $includeCollections = false, $itemShareWithBySource = false) { + $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { if (!self::isEnabled()) { if ($limit == 1 || (isset($uidOwner) && isset($item))) { return false; @@ -1108,19 +1113,19 @@ class Share { if ($format == self::FORMAT_STATUSES) { if ($itemType == 'file' || $itemType == 'folder') { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `file_source`, `path`, `expiration`, `storage`, `mail_send`'; + .' `share_type`, `file_source`, `path`, `expiration`, `storage`, `share_with`, `mail_send`, `uid_owner`'; } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `expiration`, `mail_send`'; + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `expiration`, `mail_send`, `uid_owner`'; } } else { if (isset($uidOwner)) { if ($itemType == 'file' || $itemType == 'folder') { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' - .' `expiration`, `token`, `storage`, `mail_send`'; + .' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; } else { $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' - .' `stime`, `file_source`, `expiration`, `token`, `mail_send`'; + .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; } } else { if ($fileDependent) { @@ -1234,8 +1239,10 @@ class Share { } } } - if (self::expireItem($row)) { - continue; + if($checkExpireDate) { + if (self::expireItem($row)) { + continue; + } } // Check if resharing is allowed, if not remove share permission if (isset($row['permissions']) && !self::isResharingAllowed()) { From fd3aae66912d55eddb5400d1f06fc13d3ceb7b6b Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 5 Dec 2013 13:15:52 -0500 Subject: [PATCH 18/31] Changed duration of slideDown, slideUp and fadeOut to 200ms --- core/js/multiselect.js | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/core/js/multiselect.js b/core/js/multiselect.js index 2210df3bc7..158bc0ca0c 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -8,7 +8,7 @@ * @param 'labels' The corresponding labels to show for the checked items. * @param 'oncheck' Callback function which will be called when a checkbox/radiobutton is selected. If the function returns false the input will be unchecked. * @param 'onuncheck' @see 'oncheck'. - * @param 'singleSelect' If true radiobuttons will be used instead of checkboxes. + * @param 'singleSelect' If true radiobuttons will be used instead of checkboxes. */ (function( $ ){ var multiSelectId=-1; @@ -27,6 +27,7 @@ 'onuncheck':false, 'minWidth': 'default;' }; + var slideDuration = 200; $(this).attr('data-msid', multiSelectId); $.extend(settings,options); $.each(this.children(),function(i,option) { @@ -64,16 +65,16 @@ var self = this; self.menuDirection = 'down'; button.click(function(event){ - + var button=$(this); if(button.parent().children('ul').length>0) { if(self.menuDirection === 'down') { - button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').slideUp(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active down'); }); } else { - button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').fadeOut(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active up'); }); @@ -81,7 +82,7 @@ return; } var lists=$('ul.multiselectoptions'); - lists.slideUp(400,function(){ + lists.slideUp(slideDuration,function(){ lists.remove(); $('div.multiselect').removeClass('active'); button.addClass('active'); @@ -150,7 +151,7 @@ settings.labels.splice(index,1); } var oldWidth=button.width(); - button.children('span').first().text(settings.labels.length > 0 + button.children('span').first().text(settings.labels.length > 0 ? settings.labels.join(', ') : settings.title); var newOuterWidth=Math.max((button.outerWidth()-2),settings.minOuterWidth)+'px'; @@ -221,7 +222,7 @@ select.append(option); li.prev().children('input').prop('checked', true).trigger('change'); button.parent().data('preventHide',false); - button.children('span').first().text(settings.labels.length > 0 + button.children('span').first().text(settings.labels.length > 0 ? settings.labels.join(', ') : settings.title); if(self.menuDirection === 'up') { @@ -242,7 +243,7 @@ }); list.append(li); } - + var doSort = function(list, selector) { var rows = list.find('li'+selector).get(); @@ -276,14 +277,14 @@ }); list.addClass('down'); button.addClass('down'); - list.slideDown(); + list.slideDown(slideDuration); } else { list.css('max-height', $(document).height()-($(document).height()-(pos.top)+50)+'px'); list.css({ top:pos.top - list.height(), left:pos.left+3, width:(button.outerWidth()-2)+'px' - + }); list.detach().insertBefore($(this)); list.addClass('up'); @@ -299,19 +300,19 @@ if(!button.parent().data('preventHide')) { // How can I save the effect in a var? if(self.menuDirection === 'down') { - button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').slideUp(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active down'); }); } else { - button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').fadeOut(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active up'); }); } } }); - + return span; }; })( jQuery ); From 9c4bbf9ad7bce25153a54c2b10a5f11cec6fa04e Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 5 Dec 2013 20:53:11 +0100 Subject: [PATCH 19/31] Revert "Revert "Fix user's displayName being overwritten by (old) cookie"" This reverts commit eba35d28cd974507f9e81e15430d3d33dbbd9973. --- lib/base.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 2feedd81d8..baf73b2fb9 100644 --- a/lib/base.php +++ b/lib/base.php @@ -866,7 +866,6 @@ class OC { OC_User::setMagicInCookie($_COOKIE['oc_username'], $token); // login OC_User::setUserId($_COOKIE['oc_username']); - OC_User::setDisplayName($_COOKIE['oc_username'], $_COOKIE['display_name']); OC_Util::redirectToDefaultPage(); // doesn't return } From ec0aa6bb6514cc161c718b0c7439fe5c036416e5 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 5 Dec 2013 21:03:17 +0100 Subject: [PATCH 20/31] Revert "Merge pull request #6210 from owncloud/fix-5865" This reverts commit f12363d90b31e03a9f2e95911dda54af728a2df6, reversing changes made to eba35d28cd974507f9e81e15430d3d33dbbd9973. --- core/js/multiselect.js | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/core/js/multiselect.js b/core/js/multiselect.js index 158bc0ca0c..2210df3bc7 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -8,7 +8,7 @@ * @param 'labels' The corresponding labels to show for the checked items. * @param 'oncheck' Callback function which will be called when a checkbox/radiobutton is selected. If the function returns false the input will be unchecked. * @param 'onuncheck' @see 'oncheck'. - * @param 'singleSelect' If true radiobuttons will be used instead of checkboxes. + * @param 'singleSelect' If true radiobuttons will be used instead of checkboxes. */ (function( $ ){ var multiSelectId=-1; @@ -27,7 +27,6 @@ 'onuncheck':false, 'minWidth': 'default;' }; - var slideDuration = 200; $(this).attr('data-msid', multiSelectId); $.extend(settings,options); $.each(this.children(),function(i,option) { @@ -65,16 +64,16 @@ var self = this; self.menuDirection = 'down'; button.click(function(event){ - + var button=$(this); if(button.parent().children('ul').length>0) { if(self.menuDirection === 'down') { - button.parent().children('ul').slideUp(slideDuration,function() { + button.parent().children('ul').slideUp(400,function() { button.parent().children('ul').remove(); button.removeClass('active down'); }); } else { - button.parent().children('ul').fadeOut(slideDuration,function() { + button.parent().children('ul').fadeOut(400,function() { button.parent().children('ul').remove(); button.removeClass('active up'); }); @@ -82,7 +81,7 @@ return; } var lists=$('ul.multiselectoptions'); - lists.slideUp(slideDuration,function(){ + lists.slideUp(400,function(){ lists.remove(); $('div.multiselect').removeClass('active'); button.addClass('active'); @@ -151,7 +150,7 @@ settings.labels.splice(index,1); } var oldWidth=button.width(); - button.children('span').first().text(settings.labels.length > 0 + button.children('span').first().text(settings.labels.length > 0 ? settings.labels.join(', ') : settings.title); var newOuterWidth=Math.max((button.outerWidth()-2),settings.minOuterWidth)+'px'; @@ -222,7 +221,7 @@ select.append(option); li.prev().children('input').prop('checked', true).trigger('change'); button.parent().data('preventHide',false); - button.children('span').first().text(settings.labels.length > 0 + button.children('span').first().text(settings.labels.length > 0 ? settings.labels.join(', ') : settings.title); if(self.menuDirection === 'up') { @@ -243,7 +242,7 @@ }); list.append(li); } - + var doSort = function(list, selector) { var rows = list.find('li'+selector).get(); @@ -277,14 +276,14 @@ }); list.addClass('down'); button.addClass('down'); - list.slideDown(slideDuration); + list.slideDown(); } else { list.css('max-height', $(document).height()-($(document).height()-(pos.top)+50)+'px'); list.css({ top:pos.top - list.height(), left:pos.left+3, width:(button.outerWidth()-2)+'px' - + }); list.detach().insertBefore($(this)); list.addClass('up'); @@ -300,19 +299,19 @@ if(!button.parent().data('preventHide')) { // How can I save the effect in a var? if(self.menuDirection === 'down') { - button.parent().children('ul').slideUp(slideDuration,function() { + button.parent().children('ul').slideUp(400,function() { button.parent().children('ul').remove(); button.removeClass('active down'); }); } else { - button.parent().children('ul').fadeOut(slideDuration,function() { + button.parent().children('ul').fadeOut(400,function() { button.parent().children('ul').remove(); button.removeClass('active up'); }); } } }); - + return span; }; })( jQuery ); From 853373348cff49ac3246729c4570c3d5051050cc Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 5 Dec 2013 15:46:13 -0500 Subject: [PATCH 21/31] Slide duration set to 200ms for multiselect (same duration as user menu) --- core/js/multiselect.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/core/js/multiselect.js b/core/js/multiselect.js index 2210df3bc7..02699636a2 100644 --- a/core/js/multiselect.js +++ b/core/js/multiselect.js @@ -27,6 +27,7 @@ 'onuncheck':false, 'minWidth': 'default;' }; + var slideDuration = 200; $(this).attr('data-msid', multiSelectId); $.extend(settings,options); $.each(this.children(),function(i,option) { @@ -68,12 +69,12 @@ var button=$(this); if(button.parent().children('ul').length>0) { if(self.menuDirection === 'down') { - button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').slideUp(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active down'); }); } else { - button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').fadeOut(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active up'); }); @@ -81,7 +82,7 @@ return; } var lists=$('ul.multiselectoptions'); - lists.slideUp(400,function(){ + lists.slideUp(slideDuration,function(){ lists.remove(); $('div.multiselect').removeClass('active'); button.addClass('active'); @@ -276,7 +277,7 @@ }); list.addClass('down'); button.addClass('down'); - list.slideDown(); + list.slideDown(slideDuration); } else { list.css('max-height', $(document).height()-($(document).height()-(pos.top)+50)+'px'); list.css({ @@ -299,12 +300,12 @@ if(!button.parent().data('preventHide')) { // How can I save the effect in a var? if(self.menuDirection === 'down') { - button.parent().children('ul').slideUp(400,function() { + button.parent().children('ul').slideUp(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active down'); }); } else { - button.parent().children('ul').fadeOut(400,function() { + button.parent().children('ul').fadeOut(slideDuration,function() { button.parent().children('ul').remove(); button.removeClass('active up'); }); From 008bfc67930c7eb9837be4ac0628def754b88075 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 5 Dec 2013 23:44:59 +0100 Subject: [PATCH 22/31] Fix full name edit for repetive edit fixes #6212 fixes the data attributes after edit fixes markup to successfully re-edit display name --- settings/js/users.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/settings/js/users.js b/settings/js/users.js index 6222c0e70c..f19b196640 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -423,7 +423,10 @@ $(document).ready(function () { } }); input.blur(function () { - $(this).replaceWith(escapeHTML($(this).val())); + var input = $(this), + displayName = input.val(); + input.parent().parent().data('displayname', displayName); + input.replaceWith('' + escapeHTML(displayName) + ''); img.css('display', ''); }); }); From 4dd84b3627d5667b61638363244621ad93a5632f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 5 Dec 2013 22:24:39 -0500 Subject: [PATCH 23/31] [tx-robot] updated from transifex --- apps/files/l10n/ru_RU.php | 3 ++ l10n/ar/files.po | 4 +-- l10n/bn_BD/files.po | 4 +-- l10n/ca/files.po | 4 +-- l10n/cs_CZ/files.po | 4 +-- l10n/cy_GB/files.po | 4 +-- l10n/da/files.po | 4 +-- l10n/de/files.po | 4 +-- l10n/de/settings.po | 10 +++--- l10n/de_CH/files.po | 4 +-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/settings.po | 10 +++--- l10n/el/files.po | 4 +-- l10n/en_GB/files.po | 4 +-- l10n/en_GB/settings.po | 10 +++--- l10n/eo/files.po | 4 +-- l10n/es/files.po | 4 +-- l10n/es/settings.po | 10 +++--- l10n/es_AR/files.po | 4 +-- l10n/et_EE/files.po | 4 +-- l10n/eu/files.po | 4 +-- l10n/fa/files.po | 4 +-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/settings.po | 12 +++---- l10n/fr/files.po | 4 +-- l10n/gl/files.po | 4 +-- l10n/gl/settings.po | 10 +++--- l10n/he/files.po | 4 +-- l10n/hu_HU/files.po | 4 +-- l10n/id/files.po | 4 +-- l10n/is/files.po | 4 +-- l10n/it/files.po | 4 +-- l10n/it/settings.po | 10 +++--- l10n/ja_JP/files.po | 4 +-- l10n/ka_GE/files.po | 4 +-- l10n/ko/files.po | 4 +-- l10n/lt_LT/files.po | 4 +-- l10n/lv/files.po | 4 +-- l10n/mk/files.po | 4 +-- l10n/nb_NO/files.po | 4 +-- l10n/nl/files.po | 4 +-- l10n/nn_NO/files.po | 4 +-- l10n/pl/files.po | 4 +-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/settings.po | 10 +++--- l10n/pt_PT/files.po | 4 +-- l10n/ro/files.po | 4 +-- l10n/ru/files.po | 4 +-- l10n/ru_RU/files.po | 10 +++--- l10n/sk_SK/files.po | 4 +-- l10n/sl/files.po | 4 +-- l10n/sl/settings.po | 10 +++--- l10n/sq/files.po | 4 +-- l10n/sr/files.po | 4 +-- l10n/sv/files.po | 4 +-- l10n/ta_LK/files.po | 4 +-- l10n/templates/core.pot | 52 ++++++++++++++--------------- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 4 +-- l10n/tr/files.po | 4 +-- l10n/tr/settings.po | 10 +++--- l10n/uk/files.po | 4 +-- l10n/vi/files.po | 4 +-- l10n/zh_CN/files.po | 4 +-- l10n/zh_TW/files.po | 4 +-- settings/l10n/de.php | 2 ++ settings/l10n/de_DE.php | 2 ++ settings/l10n/en_GB.php | 2 ++ settings/l10n/es.php | 2 ++ settings/l10n/fi_FI.php | 3 ++ settings/l10n/gl.php | 2 ++ settings/l10n/it.php | 2 ++ settings/l10n/pt_BR.php | 2 ++ settings/l10n/sl.php | 2 ++ settings/l10n/tr.php | 2 ++ 85 files changed, 219 insertions(+), 195 deletions(-) diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 649ec594cd..0df5b9c8c8 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,11 +1,14 @@ "Имя файла не может быть пустым.", "Files" => "Файлы", "Share" => "Сделать общим", "Rename" => "Переименовать", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), +"'.' is an invalid file name." => "'.' является неверным именем файла.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы.", "Error" => "Ошибка", "Size" => "Размер", "Upload" => "Загрузка", diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 49d63f4ac2..e55bddf0e2 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index de9646480f..15267793e2 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 61726cfc93..16ebbe9333 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 11:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 0ec5fb8141..08d7dffffc 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 19:51+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index df4bc6e43c..1cb861cd0a 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index b672fc2dd2..76f7d67cf8 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 34d961fc63..dfc07dfc2c 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index eb6c6a5368..2824738323 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 13:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -292,14 +292,14 @@ msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Deine PHP-Version ist veraltet" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 16e4ece75d..a1abcbec8a 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 2c49a4e42d..9f476a3fd2 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 23:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 4065ff6172..42e8c8dc24 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 13:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -292,14 +292,14 @@ msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu akti #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Ihre PHP-Version ist veraltet" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/el/files.po b/l10n/el/files.po index 66e88fc0bf..0925e467d2 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 8b29289586..40df6b8e5a 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 5ae8d8495f..d3903fba58 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 14:30+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,14 +286,14 @@ msgstr "The PHP module 'fileinfo' is missing. We strongly recommend enabling thi #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Your PHP version is outdated" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 19ddd9734a..8f870a6a30 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index 2d7d0a8b13..d7c6ca7208 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 22:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Raul Fernandez Garcia \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 633e31bcb8..6ff8c4bf8e 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 15:41+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -297,14 +297,14 @@ msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecida #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Su versión de PHP ha caducado" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 9db7069e4c..eeabfd7ab9 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 7f38ed4b1c..5c73689507 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 20:10+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index d8763e8b90..5b8d179d29 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 469db15f0b..436a1308cf 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index ce6a0ae14e..bc136a856b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 20:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 55842b90da..d06a815707 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 06:30+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,14 +286,14 @@ msgstr "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltava #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Käytössä oleva PHP-versio on vanhentunut" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla." #: templates/admin.php:93 msgid "Locale not working" @@ -307,7 +307,7 @@ msgstr "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi." msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia." #: templates/admin.php:106 #, php-format diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e057e2419c..4360292291 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 20:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index fc9e51d5d4..88d67c1155 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 11:50+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c1c99fb81c..c52ea62a0a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 08:40+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,14 +286,14 @@ msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar es #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "A versión de PHP está desactualizada" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "A versión de PHP está desactualizada. Recomendámoslle que a actualice á versión 5.3.8 ou posterior xa que as versións anteriores son coñecidas por estragarse. É probábel que esta instalación no estea a funcionar correctamente." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/he/files.po b/l10n/he/files.po index 7fd86c5c8c..ae4ef0c622 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1d5712ea7b..fc9101812c 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index 9848ad3fd9..c6c2be5735 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index e62d38c92d..a4f453e5ad 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index 1174b53543..073de0806f 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 06:40+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 1551799fd8..2b43e39615 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 23:10+0000\n" +"Last-Translator: polxmod \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,14 +289,14 @@ msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abili #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "La tua versione di PHP è superata" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "La tua versione di PHP è superata. Ti raccomandiamo di aggiornare alla versione 5.3.8 o superiore poiché è risaputo che le vecchie versioni siano fallate. L'installazione attuale potrebbe non funzionare correttamente." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 1276c4845e..e9f7fef380 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 668e3887e4..3333a56fb9 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 5466eb2490..77d48c9f15 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index c5cbf6b24d..8a23a72e6b 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index a15e3a9a36..b3619d5b7f 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 03b7811488..c1809e2679 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 0c05e0b347..a3b16c6c51 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 1306bae597..531fc978c2 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 19:00+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e7ae993050..c62256a796 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 8489502d93..3cd28d64ef 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 8998babeee..b60064449b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 16:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4b1c31e5f5..94e5cc8ff9 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 10:30+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -287,14 +287,14 @@ msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este mó #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Sua versão de PHP está desatualizada" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "A sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 8f100df4de..2df6e41448 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index f506ad2bd0..a716de999e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 300ec20bf1..071dbff284 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 10:50+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: vsapronov \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 35415fd6f2..a21a9b7bb1 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "" #: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." -msgstr "" +msgstr "Имя файла не может быть пустым." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." @@ -230,13 +230,13 @@ msgstr[2] "" #: js/files.js:72 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' является неверным именем файла." #: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы." #: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 1698d0bcb1..c8fb114e76 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 14:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index ab52955997..9ec7609710 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 23:30+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index becef3e599..5df294c597 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-05 18:30+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -287,14 +287,14 @@ msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za po #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Nameščena različica PHP je zastarela" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Nameščena različica PHP je zastarela. Priporočljivo je posodobiti namestitev na različico 5.3.8 ali novejše, saj starejše različice ne podpirajo vseh zmožnosti. Mogoče je, da namestitev ne deluje pravilno." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 9cc0425fc4..31e5de831e 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 2a9bd77bd1..939d9f4883 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index cb16a42354..1a58fa28ac 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 4d99ff4ba0..503e15baa2 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 681b035794..0cb3f79c1e 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -278,7 +278,7 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 +#: js/share.js:719 templates/installation.php:10 msgid "Error" msgstr "" @@ -314,7 +314,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:57 templates/login.php:38 +#: js/share.js:224 templates/installation.php:58 templates/login.php:38 msgid "Password" msgstr "" @@ -481,7 +481,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:51 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 #: templates/login.php:31 msgid "Username" msgstr "" @@ -593,92 +593,92 @@ msgstr "" msgid "Cheers!" msgstr "" -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:25 +#: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:33 +#: templates/installation.php:34 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" -#: templates/installation.php:39 +#: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:41 +#: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." msgstr "" -#: templates/installation.php:47 +#: templates/installation.php:48 msgid "Create an admin account" msgstr "" -#: templates/installation.php:66 +#: templates/installation.php:67 msgid "Advanced" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Data folder" msgstr "" -#: templates/installation.php:85 +#: templates/installation.php:86 msgid "Configure the database" msgstr "" -#: templates/installation.php:90 templates/installation.php:102 -#: templates/installation.php:113 templates/installation.php:124 -#: templates/installation.php:136 +#: templates/installation.php:91 templates/installation.php:103 +#: templates/installation.php:114 templates/installation.php:125 +#: templates/installation.php:137 msgid "will be used" msgstr "" -#: templates/installation.php:148 +#: templates/installation.php:149 msgid "Database user" msgstr "" -#: templates/installation.php:155 +#: templates/installation.php:156 msgid "Database password" msgstr "" -#: templates/installation.php:160 +#: templates/installation.php:161 msgid "Database name" msgstr "" -#: templates/installation.php:168 +#: templates/installation.php:169 msgid "Database tablespace" msgstr "" -#: templates/installation.php:175 +#: templates/installation.php:176 msgid "Database host" msgstr "" -#: templates/installation.php:184 +#: templates/installation.php:185 msgid "Finish setup" msgstr "" -#: templates/installation.php:184 +#: templates/installation.php:185 msgid "Finishing …" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 75e8021acc..abafb764e2 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index c0871b60c4..695aa18c32 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 4f83f58694..d560ac4f32 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e5a5bde1de..3692a7ef86 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 5de77ee194..4b01a73a2c 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 9e1749957c..52a0cd1b61 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 2655c89dc8..b9a3a9938a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 4bf5ae6cbd..cad41e8d12 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a93a21ff6d..2371f8efc9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index fc1382e781..7445088cb1 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index cb1187c918..e1116e0aa7 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 4df3a36e02..9ed6783e6e 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 916d9dc38b..2080433653 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 01:40+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index fecca0520d..6cfaab7153 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-04 23:20+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,14 +289,14 @@ msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları #: templates/admin.php:79 msgid "Your PHP version is outdated" -msgstr "" +msgstr "PHP sürümünüz eski" #: templates/admin.php:82 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır." #: templates/admin.php:93 msgid "Locale not working" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index b3013b5e65..2cb1c169f9 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 42d6f9f36d..e3b373b2dc 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index c1489f09e4..57a1fdcc6a 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 12c7fa1e1e..40f557f686 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:20+0000\n" +"POT-Creation-Date: 2013-12-05 22:23-0500\n" +"PO-Revision-Date: 2013-12-06 01:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/de.php b/settings/l10n/de.php index c78a2b1db5..b9432f187e 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Bitte überprüfe die Installationsanleitungen.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", +"Your PHP version is outdated" => "Deine PHP-Version ist veraltet", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert.", "Locale not working" => "Ländereinstellung funktioniert nicht", "System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.", "This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 9a14e89a8d..ce349b5fcb 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Bitte überprüfen Sie die Instalationsanleitungen.", "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", +"Your PHP version is outdated" => "Ihre PHP-Version ist veraltet", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert.", "Locale not working" => "Die Lokalisierung funktioniert nicht", "System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.", "This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index b0bf6de9aa..5f7b6e1fe0 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Please double check the installation guides.", "Module 'fileinfo' missing" => "Module 'fileinfo' missing", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.", +"Your PHP version is outdated" => "Your PHP version is outdated", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly.", "Locale not working" => "Locale not working", "System locale can not be set to a one which supports UTF-8." => "System locale can not be set to a one which supports UTF-8.", "This means that there might be problems with certain characters in file names." => "This means that there might be problems with certain characters in file names.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index af224648c4..fbd9840982 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", +"Your PHP version is outdated" => "Su versión de PHP ha caducado", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello.", "Locale not working" => "La configuración regional no está funcionando", "System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.", "This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index ed049b0244..0451703cc7 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -54,8 +54,11 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Lue asennusohjeet tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", +"Your PHP version is outdated" => "Käytössä oleva PHP-versio on vanhentunut", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla.", "Locale not working" => "Maa-asetus ei toimi", "System locale can not be set to a one which supports UTF-8." => "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi.", +"This means that there might be problems with certain characters in file names." => "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia.", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", "Use systems cron service to call the cron.php file every 15 minutes." => "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index b63a42c2f0..e345280bdd 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Volva comprobar as guías de instalación", "Module 'fileinfo' missing" => "Non se atopou o módulo «fileinfo»", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", +"Your PHP version is outdated" => "A versión de PHP está desactualizada", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A versión de PHP está desactualizada. Recomendámoslle que a actualice á versión 5.3.8 ou posterior xa que as versións anteriores son coñecidas por estragarse. É probábel que esta instalación no estea a funcionar correctamente.", "Locale not working" => "A configuración rexional non funciona", "System locale can not be set to a one which supports UTF-8." => "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8.", "This means that there might be problems with certain characters in file names." => "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index d2118e36b4..4e6e547b0e 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", +"Your PHP version is outdated" => "La tua versione di PHP è superata", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La tua versione di PHP è superata. Ti raccomandiamo di aggiornare alla versione 5.3.8 o superiore poiché è risaputo che le vecchie versioni siano fallate. L'installazione attuale potrebbe non funzionare correttamente.", "Locale not working" => "Locale non funzionante", "System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", "This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 975425015e..7577ea1d5f 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Por favor, verifique os guias de instalação.", "Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", +"Your PHP version is outdated" => "Sua versão de PHP está desatualizada", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "A sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente.", "Locale not working" => "Localização não funcionando", "System locale can not be set to a one which supports UTF-8." => "Localidade do sistema não pode ser definido como um que suporta UTF-8.", "This means that there might be problems with certain characters in file names." => "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index a6b110d78e..0bd4ef50fe 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Preverite vodnike namestitve.", "Module 'fileinfo' missing" => "Manjka modul 'fileinfo'.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", +"Your PHP version is outdated" => "Nameščena različica PHP je zastarela", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Nameščena različica PHP je zastarela. Priporočljivo je posodobiti namestitev na različico 5.3.8 ali novejše, saj starejše različice ne podpirajo vseh zmožnosti. Mogoče je, da namestitev ne deluje pravilno.", "Locale not working" => "Jezikovne prilagoditve ne delujejo.", "System locale can not be set to a one which supports UTF-8." => "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.", "This means that there might be problems with certain characters in file names." => "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index d54779334c..0631e63017 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -61,6 +61,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını tekrar kontrol edin.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", +"Your PHP version is outdated" => "PHP sürümünüz eski", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır.", "Locale not working" => "Locale çalışmıyor.", "System locale can not be set to a one which supports UTF-8." => "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı", "This means that there might be problems with certain characters in file names." => "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", From 54e47b4180ee93ce3fb6c78a7c08767b41ebb1d1 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 6 Dec 2013 12:04:17 +0100 Subject: [PATCH 24/31] correctly propagate the return value of ldap_set_option otherwise LDAP_OPT_REFERRALS won't be set to 0 and in turn active directory paging will stop working (Operations error on ldap_control_paged_result_response) --- apps/user_ldap/lib/ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index bc96319172..dda8533c41 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -91,7 +91,7 @@ class LDAP implements ILDAPWrapper { } public function setOption($link, $option, $value) { - $this->invokeLDAPMethod('set_option', $link, $option, $value); + return $this->invokeLDAPMethod('set_option', $link, $option, $value); } public function sort($link, $result, $sortfilter) { From 85467b973a45a45ae17c3deb5db29f89dddac6e7 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 5 Dec 2013 18:49:55 +0100 Subject: [PATCH 25/31] add method to check if users private/public key exists --- apps/files_encryption/lib/util.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 434ed22564..ed2c5aab92 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -101,15 +101,24 @@ class Util { or !$this->view->file_exists($this->publicKeyPath) or !$this->view->file_exists($this->privateKeyPath) ) { - return false; - } else { - return true; - } + } + /** + * @breif check if the users private & public key exists + * @return boolean + */ + public function userKeysExists() { + if ( + $this->view->file_exists($this->privateKeyPath) && + $this->view->file_exists($this->publicKeyPath)) { + return true; + } else { + return false; + } } /** From 8082ef2073ae2259480b73a056e982d71ebb4123 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 5 Dec 2013 18:50:52 +0100 Subject: [PATCH 26/31] show change password form if key couldn't be decrypted --- apps/files_encryption/templates/settings-personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index a4ed89b8a4..1b4239d82c 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -2,7 +2,7 @@

t( 'Encryption' ) ); ?>

- +

- t('Unshare'))?> - <?php p($l->t('Unshare'))?>" /> - - - - t('Delete'))?> - <?php p($l->t('Delete'))?>" /> - - + + t('Delete'))?> + <?php p($l->t('Delete'))?>" /> + From ac77218d570ca48da89ecfee7f055cf12a64015f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 6 Dec 2013 13:53:01 +0100 Subject: [PATCH 30/31] parent().parent() -> closest() --- settings/js/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/users.js b/settings/js/users.js index f19b196640..5ae157b07c 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -425,7 +425,7 @@ $(document).ready(function () { input.blur(function () { var input = $(this), displayName = input.val(); - input.parent().parent().data('displayname', displayName); + input.closest('tr').attr('data-displayName', displayName); input.replaceWith('' + escapeHTML(displayName) + ''); img.css('display', ''); }); From 9ff231590c7ae8395d6dd5b9a98c134289d81bf8 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 6 Dec 2013 16:11:41 +0100 Subject: [PATCH 31/31] set unencrypted_size to 0 after decryption... so that the unencrypted_size gets re-calculated if encryption was enabled again --- apps/files_encryption/lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 2ada62354c..ef8d0161f6 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -770,7 +770,7 @@ class Util { \OC\Files\Filesystem::putFileInfo($relPath, array( 'encrypted' => false, 'size' => $size, - 'unencrypted_size' => $size, + 'unencrypted_size' => 0, 'etag' => $fileInfo['etag'] ));